Re: Fulscreen mode

2013-06-17 Thread Florian Müllner
On Mon, Jun 17, 2013 at 6:46 PM, John Coppens wrote: > I would like to make DArea full-screen, if possible even hiding the > window borders. gtk_window_fullscreen() will ask the window manager to fullscreen the window, which should work as expected on most commonly used WMs. The canonical way of

Re: Fulscreen mode

2013-06-17 Thread John Coppens
On Sun, 16 Jun 2013 09:09:52 +0300 Dov Grobgeld wrote: > You just need to use gtk_widget_hide() on the widget and it and its child > widgets will not be shown. Hi Dov, I don't really understand that... I have (more or less) this: ++ + Menu

Re: Fulscreen mode

2013-06-15 Thread Dov Grobgeld
You just need to use gtk_widget_hide() on the widget and it and its child widgets will not be shown. On Sun, Jun 16, 2013 at 4:28 AM, John Coppens wrote: > Hi... > > I created a program with three elements in an HBox (gtk2): two > treeviews and a GtkGlExt drawing area. I'd like to toggle the dr

Fulscreen mode

2013-06-15 Thread John Coppens
Hi... I created a program with three elements in an HBox (gtk2): two treeviews and a GtkGlExt drawing area. I'd like to toggle the drawing area fullscreen/normal. Ie., not show the treeviews (or any other element - such as menus) while in fullscreen mode. Is that possible somehow? Thanks for any