X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3e0071d949c302b17d6459de98c5cf42600d96fe..a766986f6d443ba1d50e3af25f3306fa56e4518e:/src/motif/checkbox.cpp?ds=sidebyside diff --git a/src/motif/checkbox.cpp b/src/motif/checkbox.cpp index 84dfd520a8..e6fc7d7314 100644 --- a/src/motif/checkbox.cpp +++ b/src/motif/checkbox.cpp @@ -12,10 +12,6 @@ // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" -#ifdef __VMS -#define XtDisplay XTDISPLAY -#endif - #include "wx/checkbox.h" #ifndef WX_PRECOMP @@ -44,7 +40,6 @@ #define wxHAS_3STATE 0 #endif - #include "wx/motif/private.h" void wxCheckBoxCallback (Widget w, XtPointer clientData, @@ -62,6 +57,7 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, if( !wxControl::CreateControl( parent, id, pos, size, style, validator, name ) ) return false; + PreCreation(); wxXmString text( GetLabelText(label) ); @@ -85,10 +81,10 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, XmToggleButtonSetState ((Widget) m_mainWidget, False, True); + PostCreation(); AttachWidget( parent, m_mainWidget, (WXWidget)NULL, pos.x, pos.y, size.x, size.y ); - ChangeBackgroundColour(); return true; } @@ -144,6 +140,9 @@ void wxCheckBoxCallback (Widget WXUNUSED(w), XtPointer clientData, void wxCheckBox::ChangeBackgroundColour() { + if (!m_backgroundColour.Ok()) + return; + wxComputeColours (XtDisplay((Widget) m_mainWidget), & m_backgroundColour, (wxColour*) NULL); @@ -254,4 +253,4 @@ bool wxToggleButton::Create( wxWindow* parent, wxWindowID id, return true; } -#endif // wxUSE_TOGGLEBUTTON +#endif // wxUSE_TOGGLEBTN