]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: button.cpp | |
3 | // Purpose: wxButton | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
edccf428 | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
edccf428 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 19 | #ifdef __GNUG__ |
edccf428 | 20 | #pragma implementation "button.h" |
2bda0e17 KB |
21 | #endif |
22 | ||
23 | // For compilers that support precompilation, includes "wx.h". | |
24 | #include "wx/wxprec.h" | |
25 | ||
26 | #ifdef __BORLANDC__ | |
edccf428 | 27 | #pragma hdrstop |
2bda0e17 KB |
28 | #endif |
29 | ||
30 | #ifndef WX_PRECOMP | |
edccf428 VZ |
31 | #include "wx/button.h" |
32 | #include "wx/brush.h" | |
2bda0e17 KB |
33 | #endif |
34 | ||
35 | #include "wx/msw/private.h" | |
36 | ||
edccf428 VZ |
37 | // ---------------------------------------------------------------------------- |
38 | // macros | |
39 | // ---------------------------------------------------------------------------- | |
40 | ||
2bda0e17 | 41 | #if !USE_SHARED_LIBRARY |
edccf428 | 42 | IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl) |
2bda0e17 KB |
43 | #endif |
44 | ||
edccf428 VZ |
45 | // this macro tries to adjust the default button height to a reasonable value |
46 | // using the char height as the base | |
1c4a764c | 47 | #define BUTTON_HEIGHT_FROM_CHAR_HEIGHT(cy) (11*EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy)/10) |
2bda0e17 | 48 | |
edccf428 VZ |
49 | // ============================================================================ |
50 | // implementation | |
51 | // ============================================================================ | |
52 | ||
53 | // ---------------------------------------------------------------------------- | |
54 | // creation/destruction | |
55 | // ---------------------------------------------------------------------------- | |
56 | ||
57 | bool wxButton::Create(wxWindow *parent, | |
58 | wxWindowID id, | |
59 | const wxString& label, | |
60 | const wxPoint& pos, | |
61 | const wxSize& size, | |
62 | long style, | |
63 | const wxValidator& validator, | |
64 | const wxString& name) | |
2bda0e17 | 65 | { |
edccf428 VZ |
66 | if ( !CreateBase(parent, id, pos, size, style, name) ) |
67 | return FALSE; | |
68 | ||
69 | SetValidator(validator); | |
70 | ||
71 | parent->AddChild((wxButton *)this); | |
72 | ||
73 | m_backgroundColour = parent->GetBackgroundColour() ; | |
74 | m_foregroundColour = parent->GetForegroundColour() ; | |
75 | ||
76 | m_hWnd = (WXHWND)CreateWindowEx | |
77 | ( | |
78 | MakeExtendedStyle(m_windowStyle), | |
79 | _T("BUTTON"), | |
80 | label, | |
81 | WS_VISIBLE | WS_TABSTOP | WS_CHILD, | |
82 | 0, 0, 0, 0, | |
83 | GetWinHwnd(parent), | |
84 | (HMENU)m_windowId, | |
85 | wxGetInstance(), | |
86 | NULL | |
87 | ); | |
88 | ||
89 | // Subclass again for purposes of dialog editing mode | |
90 | SubclassWin(m_hWnd); | |
91 | ||
92 | SetFont(parent->GetFont()); | |
93 | ||
94 | SetSize(pos.x, pos.y, size.x, size.y); | |
95 | ||
2bda0e17 | 96 | return TRUE; |
2bda0e17 KB |
97 | } |
98 | ||
edccf428 | 99 | wxButton::~wxButton() |
2bda0e17 | 100 | { |
edccf428 VZ |
101 | wxPanel *panel = wxDynamicCast(GetParent(), wxPanel); |
102 | if ( panel ) | |
103 | { | |
104 | if ( panel->GetDefaultItem() == this ) | |
105 | { | |
106 | // don't leave the panel with invalid default item | |
107 | panel->SetDefaultItem(NULL); | |
108 | } | |
109 | } | |
2bda0e17 KB |
110 | } |
111 | ||
edccf428 VZ |
112 | // ---------------------------------------------------------------------------- |
113 | // size management including autosizing | |
114 | // ---------------------------------------------------------------------------- | |
115 | ||
4438caf4 | 116 | wxSize wxButton::DoGetBestSize() |
2bda0e17 | 117 | { |
4438caf4 VZ |
118 | wxString label = wxGetWindowText(GetHWND()); |
119 | int wBtn; | |
120 | GetTextExtent(label, &wBtn, NULL); | |
edccf428 | 121 | |
4438caf4 VZ |
122 | int wChar, hChar; |
123 | wxGetCharSize(GetHWND(), &wChar, &hChar, &GetFont()); | |
124 | ||
125 | // add a margin - the button is wider than just its label | |
126 | wBtn += 3*wChar; | |
127 | ||
128 | // the button height is proportional to the height of the font used | |
129 | int hBtn = BUTTON_HEIGHT_FROM_CHAR_HEIGHT(hChar); | |
edccf428 | 130 | |
4438caf4 | 131 | return wxSize(wBtn, hBtn); |
2bda0e17 KB |
132 | } |
133 | ||
4438caf4 VZ |
134 | // ---------------------------------------------------------------------------- |
135 | // set this button as the default one in its panel | |
136 | // ---------------------------------------------------------------------------- | |
137 | ||
edccf428 | 138 | void wxButton::SetDefault() |
2bda0e17 | 139 | { |
edccf428 VZ |
140 | wxWindow *parent = GetParent(); |
141 | wxPanel *panel = wxDynamicCast(parent, wxPanel); | |
142 | if ( panel ) | |
143 | panel->SetDefaultItem(this); | |
2bda0e17 | 144 | |
edccf428 VZ |
145 | if ( parent ) |
146 | { | |
147 | SendMessage(GetWinHwnd(parent), DM_SETDEFID, m_windowId, 0L); | |
148 | } | |
8ed57d93 | 149 | |
edccf428 | 150 | SendMessage(GetHwnd(), BM_SETSTYLE, BS_DEFPUSHBUTTON, 1L); |
2bda0e17 KB |
151 | } |
152 | ||
edccf428 VZ |
153 | // ---------------------------------------------------------------------------- |
154 | // helpers | |
155 | // ---------------------------------------------------------------------------- | |
156 | ||
157 | bool wxButton::SendClickEvent() | |
2bda0e17 | 158 | { |
edccf428 VZ |
159 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, GetId()); |
160 | event.SetEventObject(this); | |
161 | ||
162 | return ProcessCommand(event); | |
2bda0e17 KB |
163 | } |
164 | ||
edccf428 | 165 | void wxButton::Command(wxCommandEvent & event) |
2bda0e17 | 166 | { |
edccf428 | 167 | ProcessCommand(event); |
2bda0e17 KB |
168 | } |
169 | ||
edccf428 VZ |
170 | // ---------------------------------------------------------------------------- |
171 | // event/message handlers | |
172 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 173 | |
edccf428 VZ |
174 | bool wxButton::MSWCommand(WXUINT param, WXWORD id) |
175 | { | |
176 | bool processed = FALSE; | |
57c0af52 | 177 | switch ( param ) |
edccf428 | 178 | { |
57c0af52 VZ |
179 | case 1: // 1 for accelerator |
180 | case BN_CLICKED: | |
181 | processed = SendClickEvent(); | |
182 | break; | |
edccf428 | 183 | } |
2bda0e17 | 184 | |
edccf428 | 185 | return processed; |
2bda0e17 KB |
186 | } |
187 | ||
edccf428 VZ |
188 | WXHBRUSH wxButton::OnCtlColor(WXHDC pDC, |
189 | WXHWND pWnd, | |
190 | WXUINT nCtlColor, | |
191 | WXUINT message, | |
192 | WXWPARAM wParam, | |
193 | WXLPARAM lParam) | |
2bda0e17 | 194 | { |
edccf428 | 195 | wxBrush *backgroundBrush = wxTheBrushList->FindOrCreateBrush(GetBackgroundColour(), wxSOLID); |
2bda0e17 | 196 | |
edccf428 VZ |
197 | return (WXHBRUSH) backgroundBrush->GetResourceHandle(); |
198 | } | |
2bda0e17 | 199 |