/* How to get the widget's size before it has been shown?
 *
 * There are two "printf" statements below. I want to get the widget's
size at the first printf.
 * How to do this?
 */
#include <gtk/gtk.h>

int main( int   argc, char *argv[] )
{
    GtkWidget *window;
    gtk_init (&argc, &argv);

    window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
printf("width=%d \n", window->allocation.width); // return 1
    gtk_widget_show  (window);
printf("width=%d \n", window->allocation.width); // return 200
    gtk_main ();
    return 0;
}
_______________________________________________
gtk-app-devel-list mailing list
gtk-app-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Reply via email to