event.SetInt(GetValue());
event.SetEventObject(this);
ProcessCommand(event);
- return TRUE;
+ return true;
}
// Single check box item
const wxString& name)
{
if ( !CreateControl(parent, id, pos, size, style, validator, name) )
- return FALSE;
-
+ return false;
+
if ( !MSWCreateControl(wxT("BUTTON"), label, pos, size) )
- return FALSE;
-
- return TRUE;
+ return false;
+
+ return true;
}
wxBorder wxToggleButton::GetDefaultBorder() const
GetTextExtent(label, &wBtn, NULL);
int wChar, hChar;
- wxGetCharSize(GetHWND(), &wChar, &hChar, &GetFont());
+ wxGetCharSize(GetHWND(), &wChar, &hChar, GetFont());
// add a margin - the button is wider than just its label
wBtn += 3*wChar;
void wxToggleButton::SetValue(bool val)
{
- SendMessage(GetHwnd(), BM_SETCHECK, val, 0);
+ ::SendMessage(GetHwnd(), BM_SETCHECK, val, 0);
}
#ifndef BST_CHECKED
bool wxToggleButton::GetValue() const
{
#ifdef __WIN32__
- return (SendMessage(GetHwnd(), BM_GETCHECK, 0, 0) == BST_CHECKED);
+ return (::SendMessage(GetHwnd(), BM_GETCHECK, 0, 0) == BST_CHECKED);
#else
- return ((0x001 & SendMessage(GetHwnd(), BM_GETCHECK, 0, 0)) == 0x001);
+ return ((0x001 & ::SendMessage(GetHwnd(), BM_GETCHECK, 0, 0)) == 0x001);
#endif
}