]> git.saurik.com Git - wxWidgets.git/blob - src/msw/control.cpp
More build system polishing.. mostly. Some stuff ported over from
[wxWidgets.git] / src / msw / control.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/control.cpp
3 // Purpose: wxControl class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "control.h"
14 #endif
15
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #if wxUSE_CONTROLS
24
25 #ifndef WX_PRECOMP
26 #include "wx/event.h"
27 #include "wx/app.h"
28 #include "wx/dcclient.h"
29 #include "wx/log.h"
30 #endif
31
32 #include "wx/control.h"
33
34 #include "wx/msw/private.h"
35
36 #if defined(__WIN95__) && !((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__))
37 #include <commctrl.h>
38 #endif
39
40 IMPLEMENT_ABSTRACT_CLASS(wxControl, wxWindow)
41
42 BEGIN_EVENT_TABLE(wxControl, wxWindow)
43 EVT_ERASE_BACKGROUND(wxControl::OnEraseBackground)
44 END_EVENT_TABLE()
45
46 // Item members
47 wxControl::wxControl()
48 {
49 m_backgroundColour = *wxWHITE;
50 m_foregroundColour = *wxBLACK;
51
52 #if WXWIN_COMPATIBILITY
53 m_callback = 0;
54 #endif // WXWIN_COMPATIBILITY
55 }
56
57 wxControl::~wxControl()
58 {
59 m_isBeingDeleted = TRUE;
60 }
61
62
63 bool wxControl::Create(wxWindow *parent, wxWindowID id,
64 const wxPoint& pos,
65 const wxSize& size, long style,
66 const wxValidator& validator,
67 const wxString& name)
68 {
69 bool rval = wxWindow::Create(parent, id, pos, size, style, name);
70 if (rval) {
71 #if wxUSE_VALIDATORS
72 SetValidator(validator);
73 #endif
74 }
75 return rval;
76 }
77
78 bool wxControl::MSWCreateControl(const wxChar *classname,
79 WXDWORD style,
80 const wxPoint& pos,
81 const wxSize& size,
82 const wxString& label,
83 WXDWORD exstyle)
84 {
85 // want3D tells us whether or not the style specified a 3D border.
86 // If so, under WIN16 we can use Ctl3D to give it an appropriate style.
87 // Sometimes want3D is used to indicate that the non-extended style should have
88 // WS_BORDER.
89 bool want3D = TRUE;
90
91 // if no extended style given, determine it ourselves
92 if ( exstyle == (WXDWORD)-1 )
93 {
94 exstyle = GetExStyle(style, &want3D);
95 }
96
97 // all controls have these styles (wxWindows creates all controls visible
98 // by default)
99 style |= WS_CHILD | WS_VISIBLE;
100
101 m_hWnd = (WXHWND)::CreateWindowEx
102 (
103 exstyle, // extended style
104 classname, // the kind of control to create
105 label, // the window name
106 style, // the window style
107 pos.x, pos.y, // the window position
108 size.x, size.y, // and size
109 GetHwndOf(GetParent()), // parent
110 (HMENU)GetId(), // child id
111 wxGetInstance(), // app instance
112 NULL // creation parameters
113 );
114
115 if ( !m_hWnd )
116 {
117 wxLogDebug(wxT("Failed to create a control of class '%s'"), classname);
118 wxFAIL_MSG(_T("something is very wrong"));
119
120 return FALSE;
121 }
122
123 #if wxUSE_CTL3D
124 if ( want3D )
125 {
126 Ctl3dSubclassCtl(GetHwnd());
127 m_useCtl3D = TRUE;
128 }
129 #endif // wxUSE_CTL3D
130
131 // subclass again for purposes of dialog editing mode
132 SubclassWin(m_hWnd);
133
134 // controls use the same font and colours as their parent dialog by default
135 InheritAttributes();
136
137 return TRUE;
138 }
139
140 wxSize wxControl::DoGetBestSize() const
141 {
142 return wxSize(DEFAULT_ITEM_WIDTH, DEFAULT_ITEM_HEIGHT);
143 }
144
145 bool wxControl::ProcessCommand(wxCommandEvent& event)
146 {
147 #if WXWIN_COMPATIBILITY
148 if ( m_callback )
149 {
150 (void)(*m_callback)(*this, event);
151
152 return TRUE;
153 }
154 else
155 #endif // WXWIN_COMPATIBILITY
156
157 return GetEventHandler()->ProcessEvent(event);
158 }
159
160 #ifdef __WIN95__
161 bool wxControl::MSWOnNotify(int idCtrl,
162 WXLPARAM lParam,
163 WXLPARAM* result)
164 {
165 wxEventType eventType = wxEVT_NULL;
166
167 NMHDR *hdr = (NMHDR*) lParam;
168 switch ( hdr->code )
169 {
170 case NM_CLICK:
171 eventType = wxEVT_COMMAND_LEFT_CLICK;
172 break;
173
174 case NM_DBLCLK:
175 eventType = wxEVT_COMMAND_LEFT_DCLICK;
176 break;
177
178 case NM_RCLICK:
179 eventType = wxEVT_COMMAND_RIGHT_CLICK;
180 break;
181
182 case NM_RDBLCLK:
183 eventType = wxEVT_COMMAND_RIGHT_DCLICK;
184 break;
185
186 case NM_SETFOCUS:
187 eventType = wxEVT_COMMAND_SET_FOCUS;
188 break;
189
190 case NM_KILLFOCUS:
191 eventType = wxEVT_COMMAND_KILL_FOCUS;
192 break;
193
194 case NM_RETURN:
195 eventType = wxEVT_COMMAND_ENTER;
196 break;
197
198 default:
199 return wxWindow::MSWOnNotify(idCtrl, lParam, result);
200 }
201
202 wxCommandEvent event(wxEVT_NULL, m_windowId);
203 event.SetEventType(eventType);
204 event.SetEventObject(this);
205
206 return GetEventHandler()->ProcessEvent(event);
207 }
208 #endif // Win95
209
210 void wxControl::OnEraseBackground(wxEraseEvent& event)
211 {
212 // notice that this 'dumb' implementation may cause flicker for some of the
213 // controls in which case they should intercept wxEraseEvent and process it
214 // themselves somehow
215
216 RECT rect;
217 ::GetClientRect(GetHwnd(), &rect);
218
219 HBRUSH hBrush = ::CreateSolidBrush(wxColourToRGB(GetBackgroundColour()));
220
221 HDC hdc = GetHdcOf((*event.GetDC()));
222 int mode = ::SetMapMode(hdc, MM_TEXT);
223
224 ::FillRect(hdc, &rect, hBrush);
225 ::DeleteObject(hBrush);
226 ::SetMapMode(hdc, mode);
227 }
228
229 WXHBRUSH wxControl::OnCtlColor(WXHDC pDC, WXHWND WXUNUSED(pWnd), WXUINT WXUNUSED(nCtlColor),
230 #if wxUSE_CTL3D
231 WXUINT message,
232 WXWPARAM wParam,
233 WXLPARAM lParam
234 #else
235 WXUINT WXUNUSED(message),
236 WXWPARAM WXUNUSED(wParam),
237 WXLPARAM WXUNUSED(lParam)
238 #endif
239 )
240 {
241 #if wxUSE_CTL3D
242 if ( m_useCtl3D )
243 {
244 HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam);
245 return (WXHBRUSH) hbrush;
246 }
247 #endif // wxUSE_CTL3D
248
249 HDC hdc = (HDC)pDC;
250 if (GetParent()->GetTransparentBackground())
251 SetBkMode(hdc, TRANSPARENT);
252 else
253 SetBkMode(hdc, OPAQUE);
254
255 wxColour colBack = GetBackgroundColour();
256
257 ::SetBkColor(hdc, wxColourToRGB(colBack));
258 ::SetTextColor(hdc, wxColourToRGB(GetForegroundColour()));
259
260 wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBack, wxSOLID);
261
262 return (WXHBRUSH)brush->GetResourceHandle();
263 }
264
265 WXDWORD wxControl::GetExStyle(WXDWORD& style, bool *want3D) const
266 {
267 WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, want3D);
268
269 // Even with extended styles, need to combine with WS_BORDER for them to
270 // look right.
271 if ( *want3D || wxStyleHasBorder(m_windowStyle) )
272 style |= WS_BORDER;
273
274 return exStyle;
275 }
276
277 // ---------------------------------------------------------------------------
278 // global functions
279 // ---------------------------------------------------------------------------
280
281 // Call this repeatedly for several wnds to find the overall size
282 // of the widget.
283 // Call it initially with -1 for all values in rect.
284 // Keep calling for other widgets, and rect will be modified
285 // to calculate largest bounding rectangle.
286 void wxFindMaxSize(WXHWND wnd, RECT *rect)
287 {
288 int left = rect->left;
289 int right = rect->right;
290 int top = rect->top;
291 int bottom = rect->bottom;
292
293 GetWindowRect((HWND) wnd, rect);
294
295 if (left < 0)
296 return;
297
298 if (left < rect->left)
299 rect->left = left;
300
301 if (right > rect->right)
302 rect->right = right;
303
304 if (top < rect->top)
305 rect->top = top;
306
307 if (bottom > rect->bottom)
308 rect->bottom = bottom;
309 }
310
311 #endif // wxUSE_CONTROLS