Re: GTK Socket and reparenting

2013-11-27 Thread Denis Linvinus
i'm not sure that understand you correctly but, try to return true on connect event of the socket. for example var sock = new Gtk.Socket(); sock.plug_removed.connect(()={ return true;//important! allow reuse of socket }); 2013/11/26 Michal Fizek fizek.mic...@centrum.cz Hi, i have a

Re: GList empty after iteration?

2011-09-12 Thread Denis Washington
, -1); } for (l = events; l; l = l-next) { g_print(midi event \n); } Regards, Denis ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app

Re: gtk_tree_selection_select_iter after gtk_tree_store_append not working

2011-07-23 Thread Denis Washington
Am 23.07.2011 18:11, schrieb Kristian Rietveld: On Fri, Jul 22, 2011 at 8:40 PM, Denis Washingtonden...@online.de wrote: However, this doesn't work. Removing the if conditional and printing out gtk_tree_selection_get_selected (selection, NULL, NULL) right after select_iter reveals that only

gtk_tree_selection_select_iter after gtk_tree_store_append not working

2011-07-22 Thread Denis Washington
the model buildup, if that matters; the model is, however, set as model of the tree view.) Regards, Denis Washington ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

GTK+ and Xmodmap

2008-01-02 Thread Denis
= Multi_key all of this works to type accents in emacs, in QT apps and used to work with gtk but it does not anymore. However I could not track whether it is a X version change of a GTK version change which broke it. Does someone know how to make gtk understand/use my .Xmodmap settings ? Denis PS

Re: debugging information

2006-06-20 Thread Denis
) in gdb and see the stack trace. Denis Yiannis wrote: Sorry if this is beyond the scope of this list but on the following message (md:2198): GLib-GObject-CRITICAL **: g_object_unref: assertion `G_IS_OBJECT (object)' failed which is a runtime error I am wondering what is the (md:2198). Yes md

Re: GLib-GObject-CRITICAL debugging

2005-05-13 Thread Denis
with -g in order to also have the stack in the libs : it is very useful to understand errors in you code when the doc lacks some explanations. Hope this helps. Denis. Daniel Piccoli wrote: Hi all, Is there any easy way to debug GLib-GObject-CRITICAL runtime errors? I am currently getting

TreeView and Pixbuf

2005-05-13 Thread Denis
how i can change pixbuf in gtk_tree_view? -- ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

gtkhtml tutorial

2005-05-08 Thread Denis
where i can download gtkhtml tutorial? -- Denis [EMAIL PROTECTED] ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

report generator

2005-05-08 Thread Denis
need some report generator without using qt. -- Denis [EMAIL PROTECTED] ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

node that change its has-child state in treemodel

2005-03-16 Thread Denis
I am wrong ? Thanks by advance, Denis ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Developer mode ?

2005-02-26 Thread Denis
Hi ! Is there a way to tell gtk that when there is a line such as this one : Gtk-CRITICAL **: gtk_tree_view_unref_tree_helper: assertion `node != NULL' failed ... it must do something which enable me to know where is happens and understand why it happens ? Denis

On GtkTreeModelFilters

2005-02-23 Thread Denis
Hi ! Again a question on treemodels : I saw that the GtkTreeModelFilters where introduced in gtk 2.4 but is documented only in 2.6 Does this mean that the feature should be considered as experimental in 2.4 ? or can I rely on it ? Thank you by advance for your help, Denis

Telling a tree_view a model has changed

2005-02-15 Thread Denis
Hi, What is the best way to tell a tree_view that its model has changed ? (ie the model must be reread) Currently, I use gtk_tree_view_set_model to set the model to NULL and back to mine but I do not find it very ... pretty ! Denis ___ gtk-app-devel

Re: Telling a tree_view a model has changed

2005-02-15 Thread Denis
Maulet wrote: Denis wrote: Hi, What is the best way to tell a tree_view that its model has changed ? (ie the model must be reread) Currently, I use gtk_tree_view_set_model to set the model to NULL and back to mine but I do not find it very ... pretty ! Denis You have to do nothing. The tree

Re: Telling a tree_view a model has changed

2005-02-15 Thread Denis
Maulet wrote: Denis wrote: Maulet wrote: You have to do nothing. The tree view does the job for you! When a model is connected to a tree view with gtk_tree_view_set_model() or gtk_tree_view_new_with_model(), the tree view reflects any change in the model automatically. I understand that but my

Re: gtktreeview / multiple cell renderers

2005-02-11 Thread Denis
Martyn Russell wrote: On Thu, 2005-02-10 at 14:46 +0100, Denis wrote: Hi everybody, Hi, I am trying to build a tree_view on top of a GtkTreeModel I made and I would like to see in each cell an icon of the gtk stock by giving its stock-id and a text. Instead of using the pixbuf