Re: Learning Glade

2008-09-26 Thread Ruben Safir
On Mon, Apr 28, 2008 at 08:01:13PM +0200, Luis Menina wrote: If you have a recent version of GTK+ (= 2.12), just go with GtkBuilder instead of libglade: this is the way things should be done nowadays, if you create a simple interface (GtkBuilder is still young). You can design your

simple question about gtk_notebook

2008-09-26 Thread Vasiliy Tolstov
Hello. I have this code (window with 2 tabs), if i'm try to run - displays only window without tabs, where is error ? gtk_init (argc, argv); window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_window_set_title (GTK_WINDOW (window), Services); gtk_window_set_position

Re: simple question about gtk_notebook

2008-09-26 Thread Damien Caliste
Hello, Le 26/09/2008, Vasiliy Tolstov [EMAIL PROTECTED] a écrit : Hello. I have this code (window with 2 tabs), if i'm try to run - displays only window without tabs, where is error ? Isn't the gtk_container_add(GTK_CONTAINER(window), notebook); missing? Damien.

Re: simple question about gtk_notebook

2008-09-26 Thread Vasiliy Tolstov
On Fri, 2008-09-26 at 11:26 +0200, Damien Caliste wrote: Hello, Le 26/09/2008, Vasiliy Tolstov [EMAIL PROTECTED] a écrit : Hello. I have this code (window with 2 tabs), if i'm try to run - displays only window without tabs, where is error ? Isn't the

gtk+ signal handler problem

2008-09-26 Thread Orcan Kolankaya
Hi, i will really appreciate if anyone can help me! I have just started to use gtk+ and glade with dev-cpp in windows, and i ve been following the tutorial, http://www.micahcarrick.com/12-24-2007/gtk-glade-tutorial-part-1.html#Introduction_to_Glade3.. Finally i have managed to compile and run the

Transparent Draw Area

2008-09-26 Thread michael
Hi all, I want to create a transparent draw area and using cairo to draw line with the window background. My backed is directfb and I don't know if it is supported. I want to start with an example working on X. Is there somenthing attribute or function to do this? Regards Michael

Re: Learning Glade

2008-09-26 Thread Murray Cumming
On Fri, 2008-09-26 at 02:31 -0400, Ruben Safir wrote: On Mon, Apr 28, 2008 at 08:01:13PM +0200, Luis Menina wrote: If you have a recent version of GTK+ (= 2.12), just go with GtkBuilder instead of libglade: this is the way things should be done nowadays, if you create a simple interface

GtkFileChooserDialog: something funny?

2008-09-26 Thread Allin Cottrell
After updating to glib 2.18.1, gtk 2.14.3 and pango 1.22.0 I'm seeing some funny behavior from GtkFileChooserDialog, which has started to emit a GLib-GObject-CRITICAL message on destruction. Simple test case, based on the example in the documentation for GtkFileChooserDialog: void

Re: GtkFileChooserDialog: something funny?

2008-09-26 Thread Tor Lillqvist
Any ideas on what's going on? http://bugzilla.gnome.org/show_bug.cgi?id=553135#c8 ? --tml ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Why is minimizing an app and switching the desktop resulting in the same window-event: ICONIFIED ?

2008-09-26 Thread Rorschach
Really noone any ideo how to hide a window to tray when minimized but not when moving to another desktop with gtk? On Wed, 17 Sep 2008 19:57:05 +0200 Rorschach [EMAIL PROTECTED] wrote: Hi, I'm writing a trayicon (gtk-status-icon) in C for a linux-application. I created an event-handler

Re: GtkFileChooserDialog: something funny?

2008-09-26 Thread Allin Cottrell
On Fri, 26 Sep 2008, Tor Lillqvist wrote: Any ideas on what's going on? http://bugzilla.gnome.org/show_bug.cgi?id=553135#c8 ? Thanks, got it. -- Allin Cottrell Department of Economics Wake Forest University ___ gtk-app-devel-list mailing list

Re: GtkFileChooserDialog: something funny?

2008-09-26 Thread Allin Cottrell
On Fri, 26 Sep 2008, Tor Lillqvist wrote: Any ideas on what's going on? http://bugzilla.gnome.org/show_bug.cgi?id=553135#c8 ? On closer inspection, I see that Michael Natterer's patch is already in gtk 2.14.3, and does not solve the problem I mentioned, namely GLib-GObject-CRITICAL **:

possible memory leak help.

2008-09-26 Thread alee
Hi, I have a memory leak problem which I can't seem to understand. I have a GtkTreeview/ GtkTreeModelFilter/ GtkTreeStore setup. I have traced it to a case where memory leaks when I call gtk_tree_store_set multiple times. Here is a snipnet of my code demonstrating the problem. Am I suppose

Re: GtkFileChooserDialog: something funny?

2008-09-26 Thread Allin Cottrell
On Fri, 26 Sep 2008, Michael Natterer wrote: On Fri, 2008-09-26 at 14:29 -0400, Allin Cottrell wrote: On Fri, 26 Sep 2008, Tor Lillqvist wrote: Any ideas on what's going on? http://bugzilla.gnome.org/show_bug.cgi?id=553135#c8 ? On closer inspection, I see that Michael