X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4bb6408c2631988fab9925014c6619358bf867de..f21fcc9d2e6ba3e02a686b4ed11102fdcc4c49bb:/src/motif/checkbox.cpp diff --git a/src/motif/checkbox.cpp b/src/motif/checkbox.cpp index 8755f5d5a4..ee64792d71 100644 --- a/src/motif/checkbox.cpp +++ b/src/motif/checkbox.cpp @@ -13,55 +13,81 @@ #pragma implementation "checkbox.h" #endif -#include "wx/checkbox.h" - -#if !USE_SHARED_LIBRARY -IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl) -IMPLEMENT_DYNAMIC_CLASS(wxBitmapCheckBox, wxCheckBox) +#ifdef __VMS +#define XtDisplay XTDISPLAY #endif -// Single check box item -bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, - const wxPoint& pos, - const wxSize& size, long style, - const wxValidator& validator, - const wxString& name) -{ - SetName(name); - SetValidator(validator); - m_windowStyle = style; +#include "wx/defs.h" - if (parent) parent->AddChild(this); +#include "wx/checkbox.h" +#include "wx/utils.h" - if ( id == -1 ) - m_windowId = NewControlId(); - else - m_windowId = id; +#ifdef __VMS__ +#pragma message disable nosimpint +#endif +#include +#include +#include +#include +#ifdef __VMS__ +#pragma message enable nosimpint +#endif - // TODO: create checkbox +#include "wx/motif/private.h" - return FALSE; -} +void wxCheckBoxCallback (Widget w, XtPointer clientData, + XtPointer ptr); -void wxCheckBox::SetLabel(const wxString& label) -{ - // TODO -} +IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl) -void wxCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags) +// Single check box item +bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, + const wxPoint& pos, + const wxSize& size, long style, + const wxValidator& validator, + const wxString& name) { - // TODO + if( !wxControl::CreateControl( parent, id, pos, size, style, validator, + name ) ) + return FALSE; + + wxString label1(wxStripMenuCodes(label)); + wxXmString text( label1 ); + + Widget parentWidget = (Widget) parent->GetClientWidget(); + XmFontList fontList = + (XmFontList) m_font.GetFontList(1.0, XtDisplay(parentWidget)); + + m_mainWidget = (WXWidget) XtVaCreateManagedWidget ("toggle", + xmToggleButtonWidgetClass, parentWidget, + XmNfontList, fontList, + XmNlabelString, text(), + NULL); + + XtAddCallback( (Widget)m_mainWidget, + XmNvalueChangedCallback, (XtCallbackProc)wxCheckBoxCallback, + (XtPointer)this ); + + XmToggleButtonSetState ((Widget) m_mainWidget, FALSE, TRUE); + + SetCanAddEventHandler(TRUE); + AttachWidget( parent, m_mainWidget, (WXWidget)NULL, + pos.x, pos.y, size.x, size.y ); + + ChangeBackgroundColour(); + return TRUE; } void wxCheckBox::SetValue(bool val) { - // TODO + m_inSetValue = TRUE; + XmToggleButtonSetState ((Widget) m_mainWidget, (Boolean) val, TRUE); + m_inSetValue = FALSE; } bool wxCheckBox::GetValue() const { - // TODO - return FALSE; + return (XmToggleButtonGetState ((Widget) m_mainWidget) != 0); } void wxCheckBox::Command (wxCommandEvent & event) @@ -70,48 +96,37 @@ void wxCheckBox::Command (wxCommandEvent & event) ProcessCommand (event); } -// Bitmap checkbox -bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id, const wxBitmap *label, - const wxPoint& pos, - const wxSize& size, long style, - const wxValidator& validator, - const wxString& name) -{ - SetName(name); - SetValidator(validator); - m_windowStyle = style; - - if (parent) parent->AddChild(this); - - if ( id == -1 ) - m_windowId = NewControlId(); - else - m_windowId = id; - - // TODO: Create the bitmap checkbox - - return FALSE; -} - -void wxBitmapCheckBox::SetLabel(const wxBitmap *bitmap) +void wxCheckBoxCallback (Widget WXUNUSED(w), XtPointer clientData, + XtPointer WXUNUSED(ptr)) { - // TODO -} + wxCheckBox *item = (wxCheckBox *) clientData; -void wxBitmapCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags) -{ - // TODO -} + if (item->InSetValue()) + return; -void wxBitmapCheckBox::SetValue(bool val) -{ - // TODO + wxCommandEvent event (wxEVT_COMMAND_CHECKBOX_CLICKED, item->GetId()); + event.SetInt((int) item->GetValue ()); + event.SetEventObject(item); + item->ProcessCommand (event); } -bool wxBitmapCheckBox::GetValue() const +void wxCheckBox::ChangeBackgroundColour() { - // TODOD - return FALSE; + wxComputeColours (XtDisplay((Widget) m_mainWidget), & m_backgroundColour, + (wxColour*) NULL); + + XtVaSetValues ((Widget) m_mainWidget, + XmNbackground, g_itemColors[wxBACK_INDEX].pixel, + XmNtopShadowColor, g_itemColors[wxTOPS_INDEX].pixel, + XmNbottomShadowColor, g_itemColors[wxBOTS_INDEX].pixel, + XmNforeground, g_itemColors[wxFORE_INDEX].pixel, + NULL); + + int selectPixel = wxBLACK->AllocColour(wxGetDisplay()); + + // Better to have the checkbox selection in black, or it's + // hard to determine what state it is in. + XtVaSetValues ((Widget) m_mainWidget, + XmNselectColor, selectPixel, + NULL); } - -