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
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
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
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