wxFLAGS_MEMBER(wxBORDER_RAISED)
wxFLAGS_MEMBER(wxBORDER_STATIC)
wxFLAGS_MEMBER(wxBORDER_NONE)
-
+
// old style border flags
wxFLAGS_MEMBER(wxSIMPLE_BORDER)
wxFLAGS_MEMBER(wxSUNKEN_BORDER)
wxBEGIN_HANDLERS_TABLE(wxCheckBox)
wxEND_HANDLERS_TABLE()
-wxCONSTRUCTOR_6( wxCheckBox , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle )
+wxCONSTRUCTOR_6( wxCheckBox , wxWindow* , Parent , wxWindowID , Id , wxString , Label , wxPoint , Position , wxSize , Size , long , WindowStyle )
#else
IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl)
#endif
event.SetEventObject(this);
ProcessCommand(event);
- return TRUE;
+ return true;
}
bool wxCheckBox::Create(wxWindow *parent,
const wxString& name)
{
if ( !CreateControl(parent, id, pos, size, style, validator, name) )
- return FALSE;
+ return false;
long msStyle = WS_TABSTOP;
return wxSize(wCheckbox, hCheckbox);
}
+WXHBRUSH wxCheckBox::MSWGetDefaultBgBrush()
+{
+ return ::GetStockObject(NULL_BRUSH);
+}
+
void wxCheckBox::SetValue(bool val)
{
if (val)
bool wxCheckBox::GetValue() const
{
- return (Get3StateValue() != 0);
+ return (Get3StateValue() != wxCHK_UNCHECKED);
}
void wxCheckBox::Command(wxCommandEvent& event)