On Wed, Feb 12, 2003 at 06:57:51PM +0800, anukeey wrote: > Has anyone known how to do in this case? > I want to one wigdet is in full screen mode, and > the other widget is used to setting the forward one, > as a control widget. The full screen widget is created > in "GTK_WINDOW_POPUP" type, and when I created the > control wodget with "GTK_WINDOW_TOPLEVEL" type, the > result are the olny full screen widget shown. Although > I can create both widget with "GTK_WINDOW_POPUP" type, > but in this case, I cann't move the control widget! > I had seen the XINE can do what I want, but it is > designd with X API, has anyone do known this with > Gtk+? >
GTK_WINDOW_POPUP won't work very well for this. In GTK 2.2, use gtk_window_make_fullscreen() on a GTK_WINDOW_TOPLEVEL (only works on newer window managers) Havoc _______________________________________________ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list
