From: Andrei Zmievski <[EMAIL PROTECTED]> > > Is there a way to find out toplevel window dimensions if the user has > resized it? I realize it depends on the window manager, but still..
Sure. If your top level window widget is "GtkWidget* window", then gint width, height; gdk_drawable_get_size(window->window, &width, &height); If you're using 1.2, use gdk_window_get_size() instead, with the same syntax. Ron Steinke _______________________________________________ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list
