X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9fa72bd2a637cee761c56e2ce61cec3e43c62765..3d3f3e3749fa5812c1937736b8745d696263a8b5:/src/gtk/minifram.cpp diff --git a/src/gtk/minifram.cpp b/src/gtk/minifram.cpp index 76a7e8d499..952ed022d6 100644 --- a/src/gtk/minifram.cpp +++ b/src/gtk/minifram.cpp @@ -10,11 +10,13 @@ // 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" @@ -24,13 +26,6 @@ #include #include -//----------------------------------------------------------------------------- -// idle system -//----------------------------------------------------------------------------- - -extern void wxapp_install_idle_handler(); -extern bool g_isIdle; - //----------------------------------------------------------------------------- // data //----------------------------------------------------------------------------- @@ -53,12 +48,12 @@ static void DrawFrame( GtkWidget *widget, int x, int y, int w, int 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); } //----------------------------------------------------------------------------- @@ -75,12 +70,13 @@ static void gtk_window_own_expose_callback( GtkWidget *widget, GdkEventExpose *g GtkPizza *pizza = GTK_PIZZA(widget); - gtk_draw_shadow( widget->style, - pizza->bin_window, - GTK_STATE_NORMAL, - GTK_SHADOW_OUT, - 0, 0, - win->m_width, win->m_height ); + gtk_paint_shadow (widget->style, + pizza->bin_window, + GTK_STATE_NORMAL, + GTK_SHADOW_OUT, + NULL, NULL, NULL, // FIXME: No clipping? + 0, 0, + win->m_width, win->m_height); if (!win->GetTitle().empty() && ((win->GetWindowStyle() & wxCAPTION) || @@ -98,7 +94,7 @@ static void gtk_window_own_expose_callback( GtkWidget *widget, GdkEventExpose *g 3, win->m_width - 7, height+1 ); - gdk_gc_unref( gc ); + g_object_unref (gc); // Hack alert dc.m_window = pizza->bin_window; @@ -173,7 +169,7 @@ static gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButto 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; @@ -187,7 +183,7 @@ static gint gtk_window_button_release_callback( GtkWidget *widget, GdkEventButto y += org_y - win->m_diffY; win->m_x = x; win->m_y = y; - gtk_widget_set_uposition( win->m_widget, x, y ); + gtk_window_move( GTK_WINDOW(win->m_widget), x, y ); return TRUE; } @@ -247,29 +243,15 @@ static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxMiniFram static const char *cross_xpm[] = { /* columns rows colors chars-per-pixel */ -"5 5 16 1", -" c Gray0", -". c #bf0000", -"X c #00bf00", -"o c #bfbf00", -"O c #0000bf", -"+ c #bf00bf", -"@ c #00bfbf", -"# c None", -"$ c #808080", -"% c Red", -"& c Green", -"* c Yellow", -"= c Blue", -"- c Magenta", -"; c Cyan", -": c Gray100", +"5 5 2 1", +"# c Gray0", +" c None", /* pixels */ -" ### ", -"# # #", -"## ##", -"# # #", -" ### ", +"# #", +" # # ", +" # ", +" # # ", +"# #", }; IMPLEMENT_DYNAMIC_CLASS(wxMiniFrame,wxFrame) @@ -310,11 +292,15 @@ bool wxMiniFrame::Create( wxWindow *parent, wxWindowID id, const wxString &title ); GtkWidget *pw = gtk_pixmap_new( pixmap, mask ); - gdk_bitmap_unref( mask ); - gdk_pixmap_unref( pixmap ); + g_object_unref (mask); + g_object_unref (pixmap); gtk_widget_show( pw ); GtkWidget *close_button = gtk_button_new(); +#ifdef __WXGTK24__ + if (!gtk_check_version(2,4,0)) + gtk_button_set_focus_on_click( GTK_BUTTON(close_button), FALSE ); +#endif gtk_container_add( GTK_CONTAINER(close_button), pw ); gtk_pizza_put( GTK_PIZZA(m_mainWidget), @@ -350,4 +336,4 @@ void wxMiniFrame::SetTitle( const wxString &title ) gdk_window_invalidate_rect( GTK_PIZZA(m_mainWidget)->bin_window, NULL, true ); } -#endif +#endif // wxUSE_MINIFRAME