// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#include "wx/minifram.h"
-
#if wxUSE_MINIFRAME
-#include "wx/dcscreen.h"
+#include "wx/minifram.h"
+
+#ifndef WX_PRECOMP
+ #include "wx/dcscreen.h"
+#endif
#include "gtk/gtk.h"
#include "wx/gtk/win_gtk.h"
x += org_x;
y += org_y;
- GdkGC *gc = gdk_gc_new( GDK_ROOT_PARENT() );
+ GdkGC *gc = gdk_gc_new( gdk_get_default_root_window() );
gdk_gc_set_subwindow( gc, GDK_INCLUDE_INFERIORS );
gdk_gc_set_function( gc, GDK_INVERT );
- gdk_draw_rectangle( GDK_ROOT_PARENT(), gc, FALSE, x, y, w, h );
- gdk_gc_unref( gc );
+ gdk_draw_rectangle( gdk_get_default_root_window(), gc, FALSE, x, y, w, h );
+ g_object_unref (gc);
}
//-----------------------------------------------------------------------------
3,
win->m_width - 7,
height+1 );
- gdk_gc_unref( gc );
+ g_object_unref (gc);
// Hack alert
dc.m_window = pizza->bin_window;
if (!win->m_isDragging) return TRUE;
- win->m_isDragging = FALSE;
+ win->m_isDragging = false;
int x = (int)gdk_event->x;
int y = (int)gdk_event->y;
);
GtkWidget *pw = gtk_pixmap_new( pixmap, mask );
- gdk_drawable_unref( mask );
- gdk_drawable_unref( pixmap );
+ g_object_unref (mask);
+ g_object_unref (pixmap);
gtk_widget_show( pw );
GtkWidget *close_button = gtk_button_new();
gdk_window_invalidate_rect( GTK_PIZZA(m_mainWidget)->bin_window, NULL, true );
}
-#endif
+#endif // wxUSE_MINIFRAME