Re: BadDrawable or BadWindow error

2007-06-13 Thread omar . crea
Fixed... The problem is that the GStreamer pipeline don't free properly when the window's exit button was pressed: it can be fixed using a quit function that frees the pipeline prior to close the GTK main loop. GstElement *pipeline; // global now // prototype void destroy (GtkWidget *,

Drag and drop on tables and notebooks

2007-06-13 Thread Yann Renard
Chears people, I would like to implement drag and drop of objects. The destination of the dropped objects is either a table, either a notebook. My wish would be to know the row/column index in the destination table or the tab index/out-of-tab status for the notebook (out of tab status means in

How to Customize buttons in gtk

2007-06-13 Thread p z
Hello, I am developing a application in gtk and would like to change shape of buttons to oval or round of the edges.How is this possible in gtk...? Do i need to use styles or gtk_window_shape Thanks and Cheers, Prashant ___

Re: How to build a GtkTree?

2007-06-13 Thread Michelle Konzack
Hello Guenther, I have read the thread and I have the same proble, since YOUR structure is exactly the same as the Maildir format :-) I have problems getting the parent itter... ...and then, if a tree is there and in the server sice appear a new directory HOW to add this to the existing tree?

Re: How to build a GtkTree?

2007-06-13 Thread JAMES SCOTT
Guenther Michelle, Here is the tutorial for TreeViews, which explains how to create, add/remove, and destroy a treeview. Not to mention the gtk-demo program contains examples and source. http://scentric.net/tutorial/treeview-tutorial.html James, - Original Message From: Michelle

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Matthias Clasen
On 6/13/07, Yevgen Muntyan [EMAIL PROTECTED] wrote: Um, then gtk_widget_get/set_name is going to be deprecated? gtk_widget_set_name() sets widget-name member, and that structure member is used (in particular?) by themes, that's how it works. What does name of GtkBuildable mean? In

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Kalle Vahlman
2007/6/13, Havoc Pennington [EMAIL PROTECTED]: - connect_signals - for apps who will use this feature, they're going to type this line every time... new_from_file_and_connect()? kinda clunky. But it sucks to have a boilerplate line everyone has to type. There was discussion of

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Yevgen Muntyan
Matthias Clasen wrote: On 6/13/07, Yevgen Muntyan [EMAIL PROTECTED] wrote: Um, then gtk_widget_get/set_name is going to be deprecated? gtk_widget_set_name() sets widget-name member, and that structure member is used (in particular?) by themes, that's how it works. What does name of

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Kalle Vahlman
2007/6/13, Yevgen Muntyan [EMAIL PROTECTED]: Right, GtkUIManager as well as libglade hardly use non-stock widgets now (see above). How many glade files use GtkSourceView for instance? (or GtkUIManager xml description, for that matter) I would assume 0 for UIManager descriptions, since it's not

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Paolo Maggi
Hi, why do gtk_builder_add_from_file and gtk_builder_add_from_string return a guint instead of a gboolean? If the positive number returned on success has a special meaning it should be documented, otherwise I think it is better to use a gboolean like you do in gtk_builder_value_from_string and

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Kalle Vahlman
2007/6/13, Paolo Maggi [EMAIL PROTECTED]: Hi, why do gtk_builder_add_from_file and gtk_builder_add_from_string return a guint instead of a gboolean? If the positive number returned on success has a special meaning it should be documented, otherwise I think it is better to use a gboolean

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Johan Dahlin
Paolo Maggi wrote: Hi, why do gtk_builder_add_from_file and gtk_builder_add_from_string return a guint instead of a gboolean? If the positive number returned on success has a special meaning it should be documented, otherwise I think it is better to use a gboolean like you do in

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Murray Cumming
On Wed, 2007-06-13 at 03:40 -0500, Yevgen Muntyan wrote: [snip] Right, GtkUIManager as well as libglade hardly use non-stock widgets now (see above). How many glade files use GtkSourceView for instance? (or GtkUIManager xml description, for that matter) [snip] I do that for Glom's .glade file.

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Christian Persch
Hi; typedef void (*GtkBuilderConnectFunc) (GtkBuilder *builder, const gchar *handler_name, GObject *object, const gchar *signal_name,

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Tim Janik
On Tue, 12 Jun 2007, Johan Dahlin wrote: Havoc Pennington wrote: Is the Hello, World simplest use case as short and simple as it possibly could be? That's always a handy final litmus test for an API. How do you do an hello world in a ui toolkit? this page shows the very first hello-world

Re: GtkBuilder types (Re: GtkBuilder Public API - Last call)

2007-06-13 Thread Johan Dahlin
Tim Janik wrote: On Tue, 12 Jun 2007, Johan Dahlin wrote: Hi, During the Gtk+ developer meeting today it was decided that there will be a final GtkBuilder discussion before it gets committed to trunk. The current plan is that there will be a new developer release in the end of the

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Johan Dahlin
Johan Dahlin wrote: Christian Persch wrote: Hi; typedef void (*GtkBuilderConnectFunc) (GtkBuilder *builder, const gchar *handler_name, GObject *object, const gchar

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Christian Persch
Hi; Le mercredi 13 juin 2007 à 10:01 -0300, Johan Dahlin a écrit : Johan Dahlin wrote: Christian Persch wrote: Hi; typedef void (*GtkBuilderConnectFunc) (GtkBuilder *builder, const gchar *handler_name,

Re: GtkBuilder Public API - Last call

2007-06-13 Thread markku . vire
Hi, Perhaps gtk_builder_connect_signals_with_data (or something like that) is the way to go. At least in a case we plan to include the DestroyNotify. Otherwise we could tolerate one extra parameter into connect_signals, right? Putting a DestroyNotify there will create the following (easy) bug

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Matthias Clasen
On 6/13/07, Yevgen Muntyan [EMAIL PROTECTED] wrote: Widgets which set a name in a constructor are already semi-broken anyway. Widget names are supposed to be an application/user feature, not something thats used in the implementation of a widget. Programmers are also not supposed to set

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Johan Dahlin
[EMAIL PROTECTED] wrote: Hi, Perhaps gtk_builder_connect_signals_with_data (or something like that) is the way to go. At least in a case we plan to include the DestroyNotify. Otherwise we could tolerate one extra parameter into connect_signals, right? I think so, one extra parameter is not

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Johan Dahlin
Christian Persch wrote: Hi; Le mercredi 13 juin 2007 à 10:01 -0300, Johan Dahlin a écrit : Johan Dahlin wrote: Christian Persch wrote: Hi; typedef void (*GtkBuilderConnectFunc) (GtkBuilder *builder, const gchar *handler_name,

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Christian Persch
Hi; Le mercredi 13 juin 2007 à 11:07 -0300, Johan Dahlin a écrit : Is there are reason to prefer glade_xml_signal_connect[data] to the connect_signals() api? Assuming we add a user data argument to connect_signals, see separate discussion. I don't think we need a separate connect_data if we

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Johan Dahlin
Christian Persch wrote: Hi; Le mercredi 13 juin 2007 à 11:07 -0300, Johan Dahlin a écrit : Is there are reason to prefer glade_xml_signal_connect[data] to the connect_signals() api? Assuming we add a user data argument to connect_signals, see separate discussion. I don't think we need a

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Tristan Van Berkom
Good morning folks, What I really want to discuss in this thread is properties, packing properties and also more specifically, packing properties on non-GtkContainer GObjects - I use a custom gtk+ based toolkit that makes heavy use of delagate GObjects in the widget hierarchy (objects that define

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Tristan Van Berkom
On Wed, 2007-06-13 at 10:44 -0400, Tristan Van Berkom wrote: Good morning folks, [...] Can we please not swap signal handlers unless they are explicitly specified ? object class=GtkEntry id=entry signal name=activate handler=button_clicked object=button/ /object Oops, have to

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Johan Dahlin
Tristan Van Berkom wrote: Good morning folks, Thanks for the comments! What I really want to discuss in this thread is properties, packing properties and also more specifically, packing properties on non-GtkContainer GObjects - I use a custom gtk+ based toolkit that makes heavy use of

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Steve Frécinaux
On Wed, 2007-06-13 at 10:48 -0400, Tristan Van Berkom wrote: object class=GtkEntry id=entry signal name=activate handler=button_clicked swapped=True/ /object Why should swapped be a property of the xml ? it looks closely tied to the code, to me, and should not be specified in the XML

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Kalle Vahlman
2007/6/13, Matthias Clasen [EMAIL PROTECTED]: On 6/13/07, Yevgen Muntyan [EMAIL PROTECTED] wrote: Widgets which set a name in a constructor are already semi-broken anyway. Widget names are supposed to be an application/user feature, not something thats used in the implementation of a

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Tristan Van Berkom
On Wed, 2007-06-13 at 12:13 -0300, Johan Dahlin wrote: [...] Ideally not. It seems to me that most of the virtual properties were hacks. Preferably the widgets should be fixed upstream instead. Yes, there are also special cases such as visibility of windows and focus/default. I think they

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Yevgen Muntyan
Kalle Vahlman wrote: 2007/6/13, Matthias Clasen [EMAIL PROTECTED]: On 6/13/07, Yevgen Muntyan [EMAIL PROTECTED] wrote: Widgets which set a name in a constructor are already semi-broken anyway. Widget names are supposed to be an application/user feature, not something thats used in

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Tristan Van Berkom
On Wed, 2007-06-13 at 10:57 -0500, Yevgen Muntyan wrote: Kalle Vahlman wrote: 2007/6/13, Matthias Clasen [EMAIL PROTECTED]: On 6/13/07, Yevgen Muntyan [EMAIL PROTECTED] wrote: Widgets which set a name in a constructor are already semi-broken anyway. Widget names are supposed

GtkBuilderConnectFunc and signal tag

2007-06-13 Thread Johan Dahlin
Tristan Van Berkom wrote: [..] Another important point that was raised: On Wed, 2007-06-13 at 10:01 -0300, Johan Dahlin wrote: [...] Well, actually swapped handlers are supported, using the object attribute, eg: object class=GtkButton id=button/ object class=GtkEntry id=entry

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Yevgen Muntyan
Tristan Van Berkom wrote: On Wed, 2007-06-13 at 10:57 -0500, Yevgen Muntyan wrote: Kalle Vahlman wrote: 2007/6/13, Matthias Clasen [EMAIL PROTECTED]: On 6/13/07, Yevgen Muntyan [EMAIL PROTECTED] wrote: Widgets which set a name in a constructor are already

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Samuel Cormier-Iijima
/** * gtk_builder_enum_from_string: * @type: a #GType * @string: string containing an enum * * This function is used to convert a string to a enum value. You can use the * enums nick or blurb representations to convert from. * * Return value: converted enum value * * Since: 2.12 */ gint

Re: GtkBuilderConnectFunc and signal tag

2007-06-13 Thread Tristan Van Berkom
On Wed, 2007-06-13 at 13:25 -0300, Johan Dahlin wrote: [...] Let's do something a little cleaner and more flexible; typedef void (*GtkBuilderConnectFunc) (GtkBuilder *builder, const gchar *handler_name, GObject

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Johan Dahlin
Samuel Cormier-Iijima wrote: /** * gtk_builder_enum_from_string: * @type: a #GType * @string: string containing an enum * * This function is used to convert a string to a enum value. You can use the * enums nick or blurb representations to convert

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Morten Welinder
Since it accepts a nick, name or number, it's using g_enum_get_value_by_nick/name internally. ...in which case it belongs in glib. Morten ___ gtk-devel-list mailing list gtk-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-devel-list

Re: GtkBuilder Public API - Last call

2007-06-13 Thread Johan Dahlin
Morten Welinder wrote: Since it accepts a nick, name or number, it's using g_enum_get_value_by_nick/name internally. ...in which case it belongs in glib. Large parts of GtkBuilder belongs to glib, (de)serialization of objects is not tied to a graphical toolkit. It's difficult as it is to get

Menu groups vs. use of separators

2007-06-13 Thread Alex Jones
Hi list I've been looking at how Rhythmbox allows plugins to manipulate menus (via UI manager magic), and it dawned on me that there is no way to separate these out visually, other than to attempt to guess whether there should be a separator placed above and/or below what you're trying to insert.