]> git.saurik.com Git - wxWidgets.git/blame - src/msw/dialog.cpp
Committing in .
[wxWidgets.git] / src / msw / dialog.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
b6c588e1 2// Name: src/msw/dialog.cpp
2bda0e17
KB
3// Purpose: wxDialog 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
dc1c4b62 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
b6c588e1
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17 20#ifdef __GNUG__
b6c588e1 21 #pragma implementation "dialog.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
b6c588e1 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
31#ifndef WX_PRECOMP
b6c588e1
VZ
32 #include "wx/dialog.h"
33 #include "wx/utils.h"
34 #include "wx/frame.h"
35 #include "wx/app.h"
36 #include "wx/settings.h"
37 #include "wx/intl.h"
38 #include "wx/log.h"
2bda0e17
KB
39#endif
40
41#include "wx/msw/private.h"
dbda9e86 42#include "wx/log.h"
2bda0e17 43
47d67540 44#if wxUSE_COMMON_DIALOGS
b6c588e1 45 #include <commdlg.h>
2bda0e17
KB
46#endif
47
b6c588e1
VZ
48// ----------------------------------------------------------------------------
49// constants
50// ----------------------------------------------------------------------------
51
52// default dialog pos and size
53
2bda0e17
KB
54#define wxDIALOG_DEFAULT_X 300
55#define wxDIALOG_DEFAULT_Y 300
56
b6c588e1
VZ
57#define wxDIALOG_DEFAULT_WIDTH 500
58#define wxDIALOG_DEFAULT_HEIGHT 500
59
60// ----------------------------------------------------------------------------
61// globals
62// ----------------------------------------------------------------------------
63
64// all objects to be deleted during next idle processing - from window.cpp
cde9f08e 65extern wxList WXDLLEXPORT wxPendingDelete;
2bda0e17 66
b6c588e1
VZ
67// all frames and modeless dialogs - not static, used in frame.cpp, mdi.cpp &c
68wxWindowList wxModelessWindows;
69
70// all modal dialogs currently shown
71static wxWindowList wxModalDialogs;
72
73// ----------------------------------------------------------------------------
74// wxWin macros
75// ----------------------------------------------------------------------------
76
1b6452df
VZ
77IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxPanel)
78
79BEGIN_EVENT_TABLE(wxDialog, wxPanel)
1b6452df
VZ
80 EVT_BUTTON(wxID_OK, wxDialog::OnOK)
81 EVT_BUTTON(wxID_APPLY, wxDialog::OnApply)
82 EVT_BUTTON(wxID_CANCEL, wxDialog::OnCancel)
b6c588e1 83
1b6452df 84 EVT_CHAR_HOOK(wxDialog::OnCharHook)
b6c588e1 85
1b6452df 86 EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged)
b6c588e1 87
1b6452df
VZ
88 EVT_CLOSE(wxDialog::OnCloseWindow)
89END_EVENT_TABLE()
2bda0e17 90
b6c588e1
VZ
91// ============================================================================
92// implementation
93// ============================================================================
94
95// ----------------------------------------------------------------------------
96// wxDialog construction
97// ----------------------------------------------------------------------------
98
a23fd0e1 99wxDialog::wxDialog()
2bda0e17 100{
52a07708 101 m_oldFocus = (wxWindow *)NULL;
b6c588e1 102 m_isShown = FALSE;
2bda0e17 103
b6c588e1 104 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE));
2bda0e17
KB
105}
106
debe6624 107bool wxDialog::Create(wxWindow *parent, wxWindowID id,
462e2437
VZ
108 const wxString& title,
109 const wxPoint& pos,
110 const wxSize& size,
111 long style,
112 const wxString& name)
2bda0e17 113{
abceee76
VZ
114 m_oldFocus = FindFocus();
115
462e2437
VZ
116 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE));
117 SetName(name);
bd9d76cb 118
f6bcfd97 119 wxTopLevelWindows.Append(this);
2bda0e17 120
462e2437 121 // windowFont = wxTheFontList->FindOrCreateFont(11, wxSWISS, wxNORMAL, wxNORMAL);
2bda0e17 122
462e2437 123 if (parent) parent->AddChild(this);
2bda0e17 124
462e2437
VZ
125 if ( id == -1 )
126 m_windowId = (int)NewControlId();
127 else
128 m_windowId = id;
129
130 int x = pos.x;
131 int y = pos.y;
132 int width = size.x;
133 int height = size.y;
134
b6c588e1
VZ
135 if (x < 0)
136 x = wxDIALOG_DEFAULT_X;
137 if (y < 0)
138 y = wxDIALOG_DEFAULT_Y;
462e2437
VZ
139
140 m_windowStyle = style;
141
142 m_isShown = FALSE;
462e2437
VZ
143
144 if (width < 0)
b6c588e1 145 width = wxDIALOG_DEFAULT_WIDTH;
462e2437 146 if (height < 0)
b6c588e1 147 height = wxDIALOG_DEFAULT_HEIGHT;
462e2437 148
706bb5f9
JS
149 // All dialogs should really have this style
150 m_windowStyle |= wxTAB_TRAVERSAL;
151
462e2437
VZ
152 WXDWORD extendedStyle = MakeExtendedStyle(m_windowStyle);
153 if (m_windowStyle & wxSTAY_ON_TOP)
154 extendedStyle |= WS_EX_TOPMOST;
155
4204da65
JS
156#ifndef __WIN16__
157 if (m_exStyle & wxDIALOG_EX_CONTEXTHELP)
158 extendedStyle |= WS_EX_CONTEXTHELP;
159#endif
462e2437
VZ
160 // Allows creation of dialogs with & without captions under MSWindows,
161 // resizeable or not (but a resizeable dialog always has caption -
162 // otherwise it would look too strange)
837e5743 163 const wxChar *dlg;
257bf510 164 if ( style & wxRESIZE_BORDER )
223d09f6 165 dlg = wxT("wxResizeableDialog");
462e2437 166 else if ( style & wxCAPTION )
223d09f6 167 dlg = wxT("wxCaptionDialog");
462e2437 168 else
223d09f6 169 dlg = wxT("wxNoCaptionDialog");
462e2437
VZ
170 MSWCreate(m_windowId, parent, NULL, this, NULL,
171 x, y, width, height,
172 0, // style is not used if we have dlg template
173 dlg,
174 extendedStyle);
2bda0e17 175
462e2437 176 HWND hwnd = (HWND)GetHWND();
2bda0e17 177
462e2437
VZ
178 if ( !hwnd )
179 {
f6bcfd97 180 wxFAIL_MSG(_("Failed to create dialog. You probably forgot to include wx/msw/wx.rc in your resources."));
2bda0e17 181
462e2437
VZ
182 return FALSE;
183 }
2bda0e17 184
462e2437 185 SubclassWin(GetHWND());
bd9d76cb 186
462e2437
VZ
187 SetWindowText(hwnd, title);
188 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
2bda0e17 189
462e2437 190 return TRUE;
2bda0e17
KB
191}
192
debe6624 193void wxDialog::SetModal(bool flag)
2bda0e17 194{
b6c588e1
VZ
195 if ( flag )
196 {
197 m_windowStyle |= wxDIALOG_MODAL;
198
199 wxModelessWindows.DeleteObject(this);
200 }
201 else
202 {
203 m_windowStyle &= ~wxDIALOG_MODAL;
204
205 wxModelessWindows.Append(this);
206 }
2bda0e17
KB
207}
208
209wxDialog::~wxDialog()
210{
b6c588e1 211 m_isBeingDeleted = TRUE;
2bda0e17 212
b6c588e1 213 wxTopLevelWindows.DeleteObject(this);
2bda0e17 214
abceee76
VZ
215 // this will call BringWindowToTop() if necessary to bring back our parent
216 // window to top
b6c588e1 217 Show(FALSE);
edccf428 218
b6c588e1
VZ
219 if ( !IsModal() )
220 wxModelessWindows.DeleteObject(this);
2bda0e17 221
b6c588e1
VZ
222 // If this is the last top-level window, exit.
223 if ( wxTheApp && (wxTopLevelWindows.Number() == 0) )
2bda0e17 224 {
b6c588e1
VZ
225 wxTheApp->SetTopWindow(NULL);
226
227 if ( wxTheApp->GetExitOnFrameDelete() )
228 {
229 ::PostQuitMessage(0);
230 }
2bda0e17 231 }
2bda0e17
KB
232}
233
b6c588e1
VZ
234// ----------------------------------------------------------------------------
235// kbd handling
236// ----------------------------------------------------------------------------
237
2bda0e17
KB
238// By default, pressing escape cancels the dialog
239void wxDialog::OnCharHook(wxKeyEvent& event)
240{
cbc66a27 241 if (GetHWND())
2bda0e17 242 {
cbc66a27
VZ
243 // "Esc" works as an accelerator for the "Cancel" button, but it
244 // shouldn't close the dialog which doesn't have any cancel button
245 if ( (event.m_keyCode == WXK_ESCAPE) && FindWindow(wxID_CANCEL) )
246 {
247 wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
248 cancelEvent.SetEventObject( this );
249 GetEventHandler()->ProcessEvent(cancelEvent);
250
251 // ensure that there is another message for this window so the
252 // ShowModal loop will exit and won't get stuck in GetMessage().
253 ::PostMessage(GetHwnd(), WM_NULL, 0, 0);
254
255 return;
256 }
2bda0e17 257 }
cbc66a27
VZ
258
259 // We didn't process this event.
260 event.Skip();
2bda0e17
KB
261}
262
b6c588e1
VZ
263// ----------------------------------------------------------------------------
264// Windows dialog boxes can't be iconized
265// ----------------------------------------------------------------------------
2bda0e17 266
debe6624 267void wxDialog::Iconize(bool WXUNUSED(iconize))
2bda0e17 268{
2bda0e17
KB
269}
270
a23fd0e1 271bool wxDialog::IsIconized() const
2bda0e17 272{
b6c588e1 273 return FALSE;
2bda0e17
KB
274}
275
b6c588e1
VZ
276// ----------------------------------------------------------------------------
277// size/position handling
278// ----------------------------------------------------------------------------
279
721b32e0 280void wxDialog::DoSetClientSize(int width, int height)
2bda0e17 281{
b6c588e1
VZ
282 HWND hWnd = (HWND) GetHWND();
283 RECT rect;
284 ::GetClientRect(hWnd, &rect);
2bda0e17 285
b6c588e1
VZ
286 RECT rect2;
287 GetWindowRect(hWnd, &rect2);
2bda0e17 288
b6c588e1
VZ
289 // Find the difference between the entire window (title bar and all)
290 // and the client area; add this to the new client size to move the
291 // window
292 int actual_width = rect2.right - rect2.left - rect.right + width;
293 int actual_height = rect2.bottom - rect2.top - rect.bottom + height;
2bda0e17 294
b6c588e1 295 MoveWindow(hWnd, rect2.left, rect2.top, actual_width, actual_height, TRUE);
debe6624 296
b6c588e1
VZ
297 wxSizeEvent event(wxSize(actual_width, actual_height), m_windowId);
298 event.SetEventObject( this );
299 GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
300}
301
b6c588e1 302void wxDialog::DoGetPosition(int *x, int *y) const
2bda0e17 303{
b6c588e1
VZ
304 RECT rect;
305 GetWindowRect(GetHwnd(), &rect);
2bda0e17 306
b6c588e1
VZ
307 if ( x )
308 *x = rect.left;
309 if ( y )
310 *y = rect.top;
2bda0e17
KB
311}
312
b6c588e1
VZ
313// ----------------------------------------------------------------------------
314// showing the dialogs
315// ----------------------------------------------------------------------------
22cf5fec
VZ
316
317bool wxDialog::IsModal() const
318{
b6c588e1 319 return (GetWindowStyleFlag() & wxDIALOG_MODAL) != 0;
2bda0e17
KB
320}
321
b6c588e1 322bool wxDialog::IsModalShowing() const
2bda0e17 323{
b6c588e1 324 return wxModalDialogs.Find((wxDialog *)this) != NULL; // const_cast
2bda0e17
KB
325}
326
b6c588e1 327void wxDialog::DoShowModal()
2bda0e17 328{
b6c588e1 329 wxCHECK_RET( !IsModalShowing(), _T("DoShowModal() called twice") );
f6bcfd97 330 wxCHECK_RET( IsModal(), _T("can't DoShowModal() modeless dialog") );
b6c588e1
VZ
331
332 wxModalDialogs.Append(this);
333
334 wxWindow *parent = GetParent();
335
f6bcfd97 336 wxWindow* oldFocus = m_oldFocus;
b6c588e1 337
f6bcfd97
BP
338 // We have to remember the HWND because we need to check
339 // the HWND still exists (oldFocus can be garbage when the dialog
340 // exits, if it has been destroyed)
341 HWND hwndOldFocus = 0;
342 if (oldFocus)
343 hwndOldFocus = (HWND) oldFocus->GetHWND();
b6c588e1 344
f6bcfd97 345 // inside this block, all app windows are disabled
b6c588e1 346 {
f6bcfd97
BP
347 wxWindowDisabler wd(this);
348
349 // remember where the focus was
350 if ( !oldFocus )
351 {
352 oldFocus = parent;
353 if (parent)
354 hwndOldFocus = (HWND) parent->GetHWND();
355 }
356
357 // enter the modal loop
358 while ( IsModalShowing() )
359 {
b6c588e1 360#if wxUSE_THREADS
f6bcfd97 361 wxMutexGuiLeaveOrEnter();
b6c588e1
VZ
362#endif // wxUSE_THREADS
363
f6bcfd97
BP
364 while ( !wxTheApp->Pending() && wxTheApp->ProcessIdle() )
365 ;
b6c588e1 366
f6bcfd97
BP
367 // a message came or no more idle processing to do
368 wxTheApp->DoMessage();
369 }
b6c588e1
VZ
370 }
371
f6bcfd97
BP
372#ifdef __WIN32__
373 if ( parent )
374 ::SetActiveWindow(GetHwndOf(parent));
375#endif // __WIN32__
b6c588e1
VZ
376
377 // and restore focus
f6bcfd97
BP
378 // Note that this code MUST NOT access the dialog object's data
379 // in case the object has been deleted (which will be the case
380 // for a modal dialog that has been destroyed before calling EndModal).
381 if ( oldFocus && (oldFocus != this) && ::IsWindow(hwndOldFocus))
b6c588e1 382 {
f6bcfd97
BP
383 // This is likely to prove that the object still exists
384 if (wxFindWinFromHandle((WXHWND) hwndOldFocus) == oldFocus)
385 oldFocus->SetFocus();
b6c588e1 386 }
2bda0e17
KB
387}
388
b6c588e1 389bool wxDialog::Show(bool show)
2bda0e17 390{
abceee76
VZ
391 // The following is required when the parent has been disabled, (modal
392 // dialogs, or modeless dialogs with disabling such as wxProgressDialog).
393 // Otherwise the parent disappears behind other windows when the dialog is
394 // hidden.
395 if ( !show )
86ad564e 396 {
abceee76
VZ
397 wxWindow *parent = GetParent();
398 if ( parent )
86ad564e 399 {
abceee76 400 ::BringWindowToTop(GetHwndOf(parent));
86ad564e
JS
401 }
402 }
403
abceee76
VZ
404 // ShowModal() may be called for already shown dialog
405 if ( !wxDialogBase::Show(show) && !(show && IsModal()) )
b6c588e1
VZ
406 {
407 // nothing to do
408 return FALSE;
409 }
2bda0e17 410
b6c588e1
VZ
411 if ( show )
412 {
413 // usually will result in TransferDataToWindow() being called
414 InitDialog();
415 }
2bda0e17 416
b6c588e1
VZ
417 if ( IsModal() )
418 {
419 if ( show )
420 {
f6bcfd97
BP
421 // modal dialog needs a parent window, so try to find one
422 if ( !GetParent() )
423 {
424 wxWindow *parent = wxTheApp->GetTopWindow();
425 if ( parent && parent != this && parent->IsShown() )
426 {
427 // use it
428 m_parent = parent;
429 }
430 }
431
b6c588e1
VZ
432 DoShowModal();
433 }
434 else // end of modal dialog
435 {
436 // this will cause IsModalShowing() return FALSE and our local
437 // message loop will terminate
438 wxModalDialogs.DeleteObject(this);
439 }
440 }
2bda0e17 441
b6c588e1 442 return TRUE;
2bda0e17
KB
443}
444
f6bcfd97 445// a special version for Show(TRUE) for modal dialogs which returns return code
a23fd0e1 446int wxDialog::ShowModal()
2bda0e17 447{
f6bcfd97 448 if ( !IsModal() )
5e1febfa 449 {
f6bcfd97 450 SetModal(TRUE);
5e1febfa
VZ
451 }
452
b6c588e1 453 Show(TRUE);
5e1febfa 454
b6c588e1 455 return GetReturnCode();
2bda0e17
KB
456}
457
b6c588e1
VZ
458// NB: this function (surprizingly) may be called for both modal and modeless
459// dialogs and should work for both of them
2bda0e17
KB
460void wxDialog::EndModal(int retCode)
461{
b6c588e1 462 SetReturnCode(retCode);
6a088435 463
b6c588e1 464 Show(FALSE);
2bda0e17
KB
465}
466
b6c588e1
VZ
467// ----------------------------------------------------------------------------
468// wxWin event handlers
469// ----------------------------------------------------------------------------
2bda0e17
KB
470
471// Standard buttons
472void wxDialog::OnOK(wxCommandEvent& event)
473{
dc1c4b62
VZ
474 if ( Validate() && TransferDataFromWindow() )
475 {
b6c588e1 476 EndModal(wxID_OK);
dc1c4b62 477 }
2bda0e17
KB
478}
479
480void wxDialog::OnApply(wxCommandEvent& event)
481{
b6c588e1
VZ
482 if ( Validate() )
483 TransferDataFromWindow();
484
485 // TODO probably need to disable the Apply button until things change again
2bda0e17
KB
486}
487
488void wxDialog::OnCancel(wxCommandEvent& event)
489{
b6c588e1 490 EndModal(wxID_CANCEL);
2bda0e17
KB
491}
492
e3065973 493void wxDialog::OnCloseWindow(wxCloseEvent& event)
2bda0e17 494{
b6c588e1 495 // We'll send a Cancel message by default, which may close the dialog.
e3065973
JS
496 // Check for looping if the Cancel event handler calls Close().
497
498 // Note that if a cancel button and handler aren't present in the dialog,
499 // nothing will happen when you close the dialog via the window manager, or
b6c588e1
VZ
500 // via Close(). We wouldn't want to destroy the dialog by default, since
501 // the dialog may have been created on the stack. However, this does mean
502 // that calling dialog->Close() won't delete the dialog unless the handler
503 // for wxID_CANCEL does so. So use Destroy() if you want to be sure to
504 // destroy the dialog. The default OnCancel (above) simply ends a modal
505 // dialog, and hides a modeless dialog.
506
507 // VZ: this is horrible and MT-unsafe. Can't we reuse some of these global
508 // lists here? don't dare to change it now, but should be done later!
2bda0e17 509 static wxList closing;
bd9d76cb 510
2bda0e17 511 if ( closing.Member(this) )
e3065973 512 return;
bd9d76cb 513
2bda0e17 514 closing.Append(this);
bd9d76cb 515
387a3b02
JS
516 wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
517 cancelEvent.SetEventObject( this );
e3065973 518 GetEventHandler()->ProcessEvent(cancelEvent); // This may close the dialog
2bda0e17
KB
519
520 closing.DeleteObject(this);
e3065973 521}
2bda0e17 522
e3065973 523// Destroy the window (delayed, if a managed window)
a23fd0e1 524bool wxDialog::Destroy()
e3065973 525{
b6c588e1
VZ
526 wxCHECK_MSG( !wxPendingDelete.Member(this), FALSE,
527 _T("wxDialog destroyed twice") );
528
e3065973 529 wxPendingDelete.Append(this);
2bda0e17 530
b6c588e1 531 return TRUE;
94b49b93
JS
532}
533
2bda0e17
KB
534void wxDialog::OnSysColourChanged(wxSysColourChangedEvent& event)
535{
1f112209 536#if wxUSE_CTL3D
b6c588e1 537 Ctl3dColorChange();
2bda0e17 538#else
b6c588e1
VZ
539 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE));
540 Refresh();
2bda0e17 541#endif
68ad65f8 542}
42e69d6b
VZ
543
544// ---------------------------------------------------------------------------
545// dialog window proc
546// ---------------------------------------------------------------------------
547
548long wxDialog::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
549{
550 long rc = 0;
551 bool processed = FALSE;
552
553 switch ( message )
554 {
5e1febfa
VZ
555 case WM_ACTIVATE:
556 switch ( LOWORD(wParam) )
557 {
558 case WA_ACTIVE:
559 case WA_CLICKACTIVE:
560 if ( IsModalShowing() && GetParent() )
561 {
562 // bring the owner window to top as the standard dialog
563 // boxes do
564 if ( !::SetWindowPos
565 (
566 GetHwndOf(GetParent()),
567 GetHwnd(),
568 0, 0,
569 0, 0,
570 SWP_NOACTIVATE |
571 SWP_NOMOVE |
572 SWP_NOSIZE
573 ) )
574 {
f6bcfd97 575 wxLogLastError(wxT("SetWindowPos(SWP_NOACTIVATE)"));
5e1febfa
VZ
576 }
577 }
578 // fall through to process it normally as well
579 }
580 break;
581
42e69d6b
VZ
582 case WM_CLOSE:
583 // if we can't close, tell the system that we processed the
584 // message - otherwise it would close us
585 processed = !Close();
586 break;
abceee76
VZ
587
588 case WM_SETCURSOR:
589 // we want to override the busy cursor for modal dialogs:
590 // typically, wxBeginBusyCursor() is called and then a modal dialog
bfbd6dc1 591 // is shown, but the modal dialog shouldn't have hourglass cursor
d1477745 592 if ( IsModalShowing() && wxIsBusy() )
abceee76 593 {
bfbd6dc1
VZ
594 // set our cursor for all windows (but see below)
595 wxCursor cursor = m_cursor;
596 if ( !cursor.Ok() )
597 cursor = wxCURSOR_ARROW;
abceee76 598
bfbd6dc1
VZ
599 ::SetCursor(GetHcursorOf(cursor));
600
601 // in any case, stop here and don't let wxWindow process this
602 // message (it would set the busy cursor)
abceee76 603 processed = TRUE;
bfbd6dc1
VZ
604
605 // but return FALSE to tell the child window (if the event
606 // comes from one of them and not from ourselves) that it can
607 // set its own cursor if it has one: thus, standard controls
608 // (e.g. text ctrl) still have correct cursors in a dialog
609 // invoked while wxIsBusy()
610 rc = FALSE;
abceee76 611 }
bfbd6dc1 612 break;
42e69d6b
VZ
613 }
614
615 if ( !processed )
616 rc = wxWindow::MSWWindowProc(message, wParam, lParam);
617
618 return rc;
619}
b6c588e1
VZ
620
621#if wxUSE_CTL3D
622
623// Define for each class of dialog and control
624WXHBRUSH wxDialog::OnCtlColor(WXHDC WXUNUSED(pDC),
625 WXHWND WXUNUSED(pWnd),
626 WXUINT WXUNUSED(nCtlColor),
627 WXUINT message,
628 WXWPARAM wParam,
629 WXLPARAM lParam)
630{
631 return (WXHBRUSH)Ctl3dCtlColorEx(message, wParam, lParam);
632}
633
634#endif // wxUSE_CTL3D
635