1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/tglbtn.cpp
3 // Purpose: Definition of the wxToggleButton class, which implements a
4 // toggle button under wxMSW.
5 // Author: John Norris, minor changes by Axel Schlueter
9 // Copyright: (c) 2000 Johnny C. Norris II
10 // License: Rocketeer license
11 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
21 #include "wx/wxprec.h"
27 #include "wx/tglbtn.h"
32 #include "wx/button.h"
34 #include "wx/dcscreen.h"
35 #include "wx/settings.h"
40 #include "wx/msw/private.h"
42 // ----------------------------------------------------------------------------
44 // ----------------------------------------------------------------------------
46 IMPLEMENT_DYNAMIC_CLASS(wxToggleButton
, wxControl
)
47 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
)
49 #define BUTTON_HEIGHT_FROM_CHAR_HEIGHT(cy) (11*EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy)/10)
51 // ============================================================================
53 // ============================================================================
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
59 bool wxToggleButton::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
61 wxCommandEvent
event(wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, m_windowId
);
62 event
.SetInt(GetValue());
63 event
.SetEventObject(this);
64 ProcessCommand(event
);
68 // Single check box item
69 bool wxToggleButton::Create(wxWindow
*parent
, wxWindowID id
,
70 const wxString
& label
,
72 const wxSize
& size
, long style
,
73 const wxValidator
& validator
,
76 if (!CreateBase(parent
, id
, pos
, size
, style
, validator
, name
))
79 parent
->AddChild(this);
81 m_backgroundColour
= parent
->GetBackgroundColour();
82 m_foregroundColour
= parent
->GetForegroundColour();
84 long msStyle
= BS_AUTOCHECKBOX
| BS_PUSHLIKE
| WS_TABSTOP
| WS_CHILD
| WS_VISIBLE
;
86 if(m_windowStyle
& wxBU_LEFT
)
88 if(m_windowStyle
& wxBU_RIGHT
)
90 if(m_windowStyle
& wxBU_TOP
)
92 if(m_windowStyle
& wxBU_BOTTOM
)
96 m_hWnd
= (WXHWND
)CreateWindowEx(MakeExtendedStyle(m_windowStyle
),
99 (HWND
)parent
->GetHWND(),
101 wxGetInstance(), NULL
);
105 wxLogError(_T("Failed to create a toggle button"));
110 // Subclass again for purposes of dialog editing mode
113 SetFont(parent
->GetFont());
115 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
120 void wxToggleButton::SetLabel(const wxString
& label
)
122 SetWindowText(GetHwnd(), label
);
125 wxSize
wxToggleButton::DoGetBestSize() const
127 wxString label
= wxGetWindowText(GetHWND());
129 GetTextExtent(label
, &wBtn
, NULL
);
132 wxGetCharSize(GetHWND(), &wChar
, &hChar
, &GetFont());
134 // add a margin - the button is wider than just its label
137 // the button height is proportional to the height of the font used
138 int hBtn
= BUTTON_HEIGHT_FROM_CHAR_HEIGHT(hChar
);
140 wxSize sz
= wxButton::GetDefaultSize();
149 void wxToggleButton::SetValue(bool val
)
151 SendMessage(GetHwnd(), BM_SETCHECK
, val
, 0);
155 #define BST_CHECKED 0x0001
158 bool wxToggleButton::GetValue() const
161 return (SendMessage(GetHwnd(), BM_GETCHECK
, 0, 0) == BST_CHECKED
);
163 return ((0x001 & SendMessage(GetHwnd(), BM_GETCHECK
, 0, 0)) == 0x001);
167 void wxToggleButton::Command(wxCommandEvent
& event
)
169 SetValue((event
.GetInt() != 0));
170 ProcessCommand(event
);
173 #endif // wxUSE_TOGGLEBTN