Re: [gtk-list] gtk, etc



On Thu, 16 Oct 1997, Pavel Greenfield wrote:

> 
> To Quartic:

[snip]

> Also, here's a question that I think I've asked before:
> Suppose, we stick an additional widget into an existing gtkwindow. The
> window expands. Then we hide the widget. The window remains roughly the
> same size with blank space. Same happens if a preview increases in size
> and then shrinks. The frame it's in still occupies the larger space...
> 
> Is that a bug or a feature?

Hmm.. spose it's a feature of the resize code :)  Anyway, you can tell a
window to shrink by using:

void gtk_window_set_policy (GtkWindow *window,
                            gint allow_shrink,
                            gint allow_grow,
                            gint auto_shrink);

and setting auto_shrink to TRUE.

eg:

gtk_window_set_policy(GTK_WINDOW(window), TRUE, TRUE, TRUE);


Hope that helps,

Ian



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]