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