X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/94aff5ff86189e39b7a95fc62e886374c060a2cf..f31bbefd1070af6162b9deeda9d4e528efbc1b31:/src/gtk/button.cpp diff --git a/src/gtk/button.cpp b/src/gtk/button.cpp index 004b1cb41b..61e1ad1396 100644 --- a/src/gtk/button.cpp +++ b/src/gtk/button.cpp @@ -19,7 +19,6 @@ #include "wx/stockitem.h" #include "wx/gtk/private.h" -#include "wx/gtk/win_gtk.h" //----------------------------------------------------------------------------- // classes @@ -40,9 +39,6 @@ extern bool g_blockEventsOnDrag; extern "C" { static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton *button ) { - if (g_isIdle) - wxapp_install_idle_handler(); - if (!button->m_hasVMT) return; if (g_blockEventsOnDrag) return; @@ -59,9 +55,6 @@ static void gtk_button_clicked_callback( GtkWidget *WXUNUSED(widget), wxButton * static gint gtk_button_style_set_callback( GtkWidget *m_widget, GtkStyle *WXUNUSED(style), wxButton *win ) { - if (g_isIdle) - wxapp_install_idle_handler(); - int left_border = 0; int right_border = 0; int top_border = 0; @@ -78,11 +71,11 @@ gtk_button_style_set_callback( GtkWidget *m_widget, GtkStyle *WXUNUSED(style), w right_border += default_border->right; top_border += default_border->top; bottom_border += default_border->bottom; - g_free( default_border ); + gtk_border_free( default_border ); } win->MoveWindow( - win->m_x - top_border, - win->m_y - left_border, + win->m_x - left_border, + win->m_y - top_border, win->m_width + left_border + right_border, win->m_height + top_border + bottom_border); } @@ -104,12 +97,15 @@ wxButton::~wxButton() { } -bool wxButton::Create( wxWindow *parent, wxWindowID id, const wxString &label, - const wxPoint &pos, const wxSize &size, - long style, const wxValidator& validator, const wxString &name ) +bool wxButton::Create(wxWindow *parent, + wxWindowID id, + const wxString &label, + const wxPoint& pos, + const wxSize& size, + long style, + const wxValidator& validator, + const wxString& name) { - m_needParent = true; - if (!PreCreation( parent, pos, size ) || !CreateBase( parent, id, pos, size, style, validator, name )) {