Re: Invisible GtkImage

2013-06-21 Thread Kip Warner
On Fri, 2013-06-21 at 11:46 +0300, אנטולי קרסנר wrote: Hey Kip, Hey Tom. You can try to place your image into a 1x1 GtkGrid and see if it works. If not... hmmm... I'm trying to think of an existing Gnome app which has scaling images. Hmmm... probably none. Scaling images (unless in

Remove Minimize Button from GTK Window?

2013-06-21 Thread Mitchell Verter
Is there any way to remove the Minimize button by hacking the gtk+-2.24.18 code, or at least to prevent it from minimizing? I have been fiddling around with gtkwindow.c and gtkwindow-decorate.c, playing with gtk_window_iconify() and GtkWindow:decorated (Whether the window should be decorated by

Re: Remove Minimize Button from GTK Window?

2013-06-21 Thread Jasper St. Pierre
If you have a GdkWindow, you can tell the window manager to disable the minimize button with MWM hints using gdk_window_set_functions along with GDK_FUNC_MINIMIZE. On Fri, Jun 21, 2013 at 3:52 PM, Mitchell Verter mitchell.ver...@gmail.comwrote: Is there any way to remove the Minimize button by