Parent window for other GtkWindow-s

2006-07-12 Thread Atanas Atanasov
I have a set of GtkWindow-s and I would like to enclose them in a single frame - something very similar to the MDI interface. What widget can I use for the parent frame / window? It is important that the child windows will appear inside the parent window and one will not see them outside its

Re: why button is hidden behind drawing area(win32)

2006-07-12 Thread Atanas Atanasov
I am trying to avoid libgnome and to stick to the pure gtk. Therefore GnomeCanvas is not really a solution. In reality my project is not yet in the stage where I require specific z-order and the problem is not so apparent yet. However I will have to face it one day, sooner or later. I guess the

GtkWindow show and move

2006-07-12 Thread Atanas Atanasov
I have a fragment of code similar to this: gtk_widget_show_all (window); gtk_window_resize (window, ...); The problem is that sometimes the specified window starts with the size I set and sometimes it doesn't. This problem occurs in both debug release versions, and it seems to be completely

Re: why button is hidden behind drawing area(win32)

2006-07-12 Thread Atanas Atanasov
In this case what solution can be used to force the display order? Should one check the code of the respective functions and make a local copy of the code, modifying it as appropriate? I am afraid this will change too quickly and my code might not be compatible with future versions of gtk. Atanas

Re: why button is hidden behind drawing area(win32)

2006-07-12 Thread Tristan Van Berkom
Atanas Atanasov wrote: In this case what solution can be used to force the display order? Should one check the code of the respective functions and make a local copy of the code, modifying it as appropriate? I am afraid this will change too quickly and my code might not be compatible with

Re: RADiola, a GTK RAD tool

2006-07-12 Thread Santhosh
Why dont you host your project in http://sourceforge.net (any hosting site for that matter) and do frequent releases of your project...? Regards, Santhosh. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

g_queue_find problems

2006-07-12 Thread Adam Tee
Hi all, I am having an issue when using g_queue_find. Basically, I am using it to find a filename in a queue but it is returning NULL all the time even when the filename is there. The code I am using is: if(g_queue_find(gui-prefs-history, gui-si-filename-str)) { #ifdef DEBUG

Problems using g_queue_find

2006-07-12 Thread Adam Tee
Hi all, I am having an issue when using g_queue_find. Basically, I am using it to find a filename in a queue but it is returning NULL all the time even when the filename is there. The code I am using is: if(g_queue_find(gui-prefs-history, gui-si-filename-str)) { #ifdef DEBUG

Re: Problems using g_queue_find

2006-07-12 Thread Yeti
On Wed, Jul 12, 2006 at 08:05:56PM +0100, Adam Tee wrote: I am having an issue when using g_queue_find. Basically, I am using it to find a filename in a queue but it is returning NULL all the time even when the filename is there. The code I am using is:

Re: Parent window for other GtkWindow-s

2006-07-12 Thread Vincent Geddes
On Wed, 2006-07-12 at 22:45 +0200, David Nečas (Yeti) wrote: Which, beside being nonportable, would be confusing as well because the *behaviour* of windows will not follow user's window manager preferences even if we assume the window manager incidentally was metacity. Haha, I was just

Re: gtk-app-devel-list Digest, Vol 27, Issue 15

2006-07-12 Thread Adam Tee
Date: Wed, 12 Jul 2006 22:51:57 +0200 From: David Ne?as (Yeti) [EMAIL PROTECTED] Subject: Re: Problems using g_queue_find Is the string gui-si-filename-str *physically* the same string (i.e. the same pointer) as some data in the queue? No there are not, which explains the problem.

Re: Pango-1.13.3 released [unstable]

2006-07-12 Thread Sergei Steshenko
--- Behdad Esfahbod [EMAIL PROTECTED] wrote: On Tue, 2006-07-11 at 00:06 -0400, Sergei Steshenko wrote: --- Behdad Esfahbod [EMAIL PROTECTED] wrote: * Installing this version will overwrite your existing copy of Pango-1.12. Shameless plug - my tool

g_io_channel_write_chars with timeout

2006-07-12 Thread Ady Wicaksono
how to make timeout I/O using select() or pool with g_io_channel_write_chars? any example please? ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: why button is hidden behind drawing area(win32)

2006-07-12 Thread Atanas Atanasov
I cant count how many time's I've said this: widgets do not overlap in gtk+. I'm sure that whatever design you want to achieve can be done by packing widgets into containers normally. My project is still in an early stage and I have other things to worry about. However I do need overlapping