-- Original Message --
To: Matthew Allen (l...@sydneyband.com.au)
From: Tristan Van Berkom (t...@gnome.org)
Subject: Re: Top down layout
Date: 9/6/2010 1:44:30p
> On Tue, Jun 8, 2010 at 11:09 PM, Matthew Allen
> > wrote: -- Original Message --
> > To: Matthew Alle
On Tue, Jun 8, 2010 at 11:09 PM, Matthew Allen wrote:
> -- Original Message --
> To: Matthew Allen (l...@sydneyband.com.au)
> From: Tristan Van Berkom (t...@gnome.org)
> Subject: Re: Top down layout
> Date: 9/6/2010 12:55:44p
>
>> On Tue, Jun 8, 2010 at 10:36 PM, Matthew Allen
>>
-- Original Message --
To: Matthew Allen (l...@sydneyband.com.au)
From: Tristan Van Berkom (t...@gnome.org)
Subject: Re: Top down layout
Date: 9/6/2010 12:55:44p
> On Tue, Jun 8, 2010 at 10:36 PM, Matthew Allen
> >> wrote: This sort of behaviour might not be possible with GTK. Bu
On Tue, Jun 8, 2010 at 10:36 PM, Matthew Allen wrote:
>> This sort of behaviour might not be possible with GTK. But at least I
>> thought I'd ask.
>
> Actually whats the first signal generated when the user attempts to resize
> the GtkWindow?
>
> I should hook that and stop it get limited to the
GTK+ 2.90.2 is now available for download at:
ftp://ftp.gtk.org/pub/gtk/2.90/
http://download.gnome.org/sources/gtk+/2.90/
d8010a92297f4f926c73d6afa67d9f63032c2a827324b9590bc034efcd4f3a3f gtk
+-2.90.2.tar.bz2
6d8d3c57f77169d1a2fac0e9dde5bf0287f867d9199490a0f1dc6b9a024f9c6f gtk
+-2.90.2.tar.g
> This sort of behaviour might not be possible with GTK. But at least I
> thought I'd ask.
Actually whats the first signal generated when the user attempts to resize the
GtkWindow?
I should hook that and stop it get limited to the requested size... then my
window is free to resize arbitrarily,
I'm trying to port an application to GTK that uses top down layout... i.e.
given a window of size 1000x700 it knows how to fill that space with widgets.
However GTK seems adamant to do layout in a bottom up fashion... i.e. given
buttons and lists and splitters it'll work out how big the window n
I am using the following code (stripped):
8<
drawing = gtk_drawing_area_new ();
gc = gdk_gc_new (drawing->window);
image = gdk_image_new (GDK_IMAGE_FASTEST,
gdk_visual_get_system(), w, h );
paint_image (image->mem); // custom painting function
gdk_draw_image (drawi
On Tue, Jun 8, 2010 at 1:43 AM, Mick wrote:
> On Mon, 07 Jun 2010 22:12:57 -0700
> Steve Harrington wrote:
>
>> On 06/07/2010 09:36 PM, Mick wrote:
>> > I've spent the last month struggling with glade to layout the
>> > interface for my app, especially creating an incoming text pane and
>> > plac