]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dialog.cpp | |
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 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "dialog.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/dialog.h" | |
25 | #include "wx/utils.h" | |
26 | #include "wx/frame.h" | |
27 | #include "wx/app.h" | |
28 | #include "wx/settings.h" | |
29 | #endif | |
30 | ||
31 | #include "wx/msw/private.h" | |
dbda9e86 | 32 | #include "wx/log.h" |
2bda0e17 | 33 | |
47d67540 | 34 | #if wxUSE_COMMON_DIALOGS |
2bda0e17 KB |
35 | #include <commdlg.h> |
36 | #endif | |
37 | ||
38 | #define wxDIALOG_DEFAULT_X 300 | |
39 | #define wxDIALOG_DEFAULT_Y 300 | |
40 | ||
41 | // Lists to keep track of windows, so we can disable/enable them | |
42 | // for modal dialogs | |
43 | wxList wxModalDialogs; | |
44 | wxList wxModelessWindows; // Frames and modeless dialogs | |
cde9f08e | 45 | extern wxList WXDLLEXPORT wxPendingDelete; |
2bda0e17 KB |
46 | |
47 | #if !USE_SHARED_LIBRARY | |
462e2437 VZ |
48 | IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxPanel) |
49 | ||
50 | BEGIN_EVENT_TABLE(wxDialog, wxPanel) | |
51 | EVT_SIZE(wxDialog::OnSize) | |
52 | EVT_BUTTON(wxID_OK, wxDialog::OnOK) | |
53 | EVT_BUTTON(wxID_APPLY, wxDialog::OnApply) | |
54 | EVT_BUTTON(wxID_CANCEL, wxDialog::OnCancel) | |
55 | EVT_CHAR_HOOK(wxDialog::OnCharHook) | |
56 | EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged) | |
57 | EVT_CLOSE(wxDialog::OnCloseWindow) | |
58 | END_EVENT_TABLE() | |
2bda0e17 KB |
59 | #endif |
60 | ||
2bda0e17 KB |
61 | bool wxDialog::MSWProcessMessage(WXMSG* pMsg) |
62 | { | |
63 | return (::IsDialogMessage((HWND) GetHWND(), (MSG*)pMsg) != 0); | |
64 | } | |
65 | ||
66 | bool wxDialog::MSWOnClose(void) | |
67 | { | |
68 | return Close(); | |
69 | } | |
70 | ||
71 | wxDialog::wxDialog(void) | |
72 | { | |
73 | m_isShown = FALSE; | |
74 | m_modalShowing = FALSE; | |
75 | ||
76 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE)); | |
2bda0e17 KB |
77 | } |
78 | ||
debe6624 | 79 | bool wxDialog::Create(wxWindow *parent, wxWindowID id, |
462e2437 VZ |
80 | const wxString& title, |
81 | const wxPoint& pos, | |
82 | const wxSize& size, | |
83 | long style, | |
84 | const wxString& name) | |
2bda0e17 | 85 | { |
462e2437 VZ |
86 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE)); |
87 | SetName(name); | |
88 | ||
89 | if (!parent) | |
90 | wxTopLevelWindows.Append(this); | |
2bda0e17 | 91 | |
462e2437 | 92 | // windowFont = wxTheFontList->FindOrCreateFont(11, wxSWISS, wxNORMAL, wxNORMAL); |
2bda0e17 | 93 | |
462e2437 | 94 | if (parent) parent->AddChild(this); |
2bda0e17 | 95 | |
462e2437 VZ |
96 | if ( id == -1 ) |
97 | m_windowId = (int)NewControlId(); | |
98 | else | |
99 | m_windowId = id; | |
100 | ||
101 | int x = pos.x; | |
102 | int y = pos.y; | |
103 | int width = size.x; | |
104 | int height = size.y; | |
105 | ||
106 | if (x < 0) x = wxDIALOG_DEFAULT_X; | |
107 | if (y < 0) y = wxDIALOG_DEFAULT_Y; | |
108 | ||
109 | m_windowStyle = style; | |
110 | ||
111 | m_isShown = FALSE; | |
112 | m_modalShowing = FALSE; | |
113 | ||
114 | if (width < 0) | |
115 | width = 500; | |
116 | if (height < 0) | |
117 | height = 500; | |
118 | ||
119 | WXDWORD extendedStyle = MakeExtendedStyle(m_windowStyle); | |
120 | if (m_windowStyle & wxSTAY_ON_TOP) | |
121 | extendedStyle |= WS_EX_TOPMOST; | |
122 | ||
123 | // Allows creation of dialogs with & without captions under MSWindows, | |
124 | // resizeable or not (but a resizeable dialog always has caption - | |
125 | // otherwise it would look too strange) | |
126 | const char *dlg; | |
127 | if ( style & wxTHICK_FRAME ) | |
128 | dlg = "wxResizeableDialog"; | |
129 | else if ( style & wxCAPTION ) | |
130 | dlg = "wxCaptionDialog"; | |
131 | else | |
132 | dlg = "wxNoCaptionDialog"; | |
133 | MSWCreate(m_windowId, parent, NULL, this, NULL, | |
134 | x, y, width, height, | |
135 | 0, // style is not used if we have dlg template | |
136 | dlg, | |
137 | extendedStyle); | |
2bda0e17 | 138 | |
462e2437 | 139 | HWND hwnd = (HWND)GetHWND(); |
2bda0e17 | 140 | |
462e2437 VZ |
141 | if ( !hwnd ) |
142 | { | |
143 | wxLogError(_("Failed to created dialog.")); | |
2bda0e17 | 144 | |
462e2437 VZ |
145 | return FALSE; |
146 | } | |
2bda0e17 | 147 | |
462e2437 VZ |
148 | SubclassWin(GetHWND()); |
149 | ||
150 | SetWindowText(hwnd, title); | |
151 | SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT)); | |
2bda0e17 | 152 | |
462e2437 | 153 | return TRUE; |
2bda0e17 KB |
154 | } |
155 | ||
debe6624 | 156 | void wxDialog::SetModal(bool flag) |
2bda0e17 | 157 | { |
dc1c4b62 VZ |
158 | if ( flag ) |
159 | m_windowStyle |= wxDIALOG_MODAL ; | |
160 | else | |
161 | if ( m_windowStyle & wxDIALOG_MODAL ) | |
162 | m_windowStyle -= wxDIALOG_MODAL ; | |
2bda0e17 KB |
163 | |
164 | wxModelessWindows.DeleteObject(this); | |
165 | if (!flag) | |
166 | wxModelessWindows.Append(this); | |
167 | } | |
168 | ||
169 | wxDialog::~wxDialog() | |
170 | { | |
171 | m_isBeingDeleted = TRUE; | |
172 | ||
173 | wxTopLevelWindows.DeleteObject(this); | |
174 | ||
175 | if (m_modalShowing) | |
176 | { | |
177 | Show(FALSE); | |
178 | // For some reason, wxWindows can activate another task altogether | |
179 | // when a frame is destroyed after a modal dialog has been invoked. | |
180 | // Try to bring the parent to the top. | |
181 | // dfgg: I moved this following line from end of function - | |
182 | // must not call if another window is on top!! | |
183 | // This can often happen with Close() and delayed deleting | |
184 | if (GetParent() && GetParent()->GetHWND()) | |
185 | ::BringWindowToTop((HWND) GetParent()->GetHWND()); | |
186 | } | |
187 | ||
188 | m_modalShowing = FALSE; | |
189 | if ( GetHWND() ) | |
190 | ShowWindow((HWND) GetHWND(), SW_HIDE); | |
191 | ||
192 | if ( (GetWindowStyleFlag() & wxDIALOG_MODAL) != wxDIALOG_MODAL ) | |
193 | wxModelessWindows.DeleteObject(this); | |
194 | ||
195 | UnsubclassWin(); | |
196 | ||
197 | // If this is the last top-level window, exit. | |
198 | if (wxTheApp && (wxTopLevelWindows.Number() == 0)) | |
199 | { | |
200 | wxTheApp->SetTopWindow(NULL); | |
201 | ||
202 | if (wxTheApp->GetExitOnFrameDelete()) | |
203 | { | |
204 | PostQuitMessage(0); | |
205 | } | |
206 | } | |
207 | } | |
208 | ||
209 | // By default, pressing escape cancels the dialog | |
210 | void wxDialog::OnCharHook(wxKeyEvent& event) | |
211 | { | |
212 | if (GetHWND()) | |
213 | { | |
214 | if (event.m_keyCode == WXK_ESCAPE) | |
215 | { | |
dc1c4b62 VZ |
216 | // Behaviour changed in 2.0: we'll send a Cancel message |
217 | // to the dialog instead of Close. | |
218 | wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); | |
219 | cancelEvent.SetEventObject( this ); | |
220 | GetEventHandler()->ProcessEvent(cancelEvent); | |
2bda0e17 | 221 | |
dc1c4b62 | 222 | return; |
2bda0e17 KB |
223 | } |
224 | } | |
225 | // We didn't process this event. | |
226 | event.Skip(); | |
227 | } | |
228 | ||
229 | void wxDialog::OnPaint(wxPaintEvent& event) | |
230 | { | |
dc1c4b62 VZ |
231 | // No: if you call the default procedure, it makes |
232 | // the following painting code not work. | |
233 | // wxWindow::OnPaint(event); | |
2bda0e17 KB |
234 | } |
235 | ||
236 | void wxDialog::Fit(void) | |
237 | { | |
238 | wxWindow::Fit(); | |
239 | } | |
240 | ||
debe6624 | 241 | void wxDialog::Iconize(bool WXUNUSED(iconize)) |
2bda0e17 KB |
242 | { |
243 | // Windows dialog boxes can't be iconized | |
244 | } | |
245 | ||
246 | bool wxDialog::IsIconized(void) const | |
247 | { | |
248 | return FALSE; | |
249 | } | |
250 | ||
debe6624 | 251 | void wxDialog::SetClientSize(int width, int height) |
2bda0e17 KB |
252 | { |
253 | HWND hWnd = (HWND) GetHWND(); | |
254 | RECT rect; | |
255 | GetClientRect(hWnd, &rect); | |
256 | ||
257 | RECT rect2; | |
258 | GetWindowRect(hWnd, &rect2); | |
259 | ||
260 | // Find the difference between the entire window (title bar and all) | |
261 | // and the client area; add this to the new client size to move the | |
262 | // window | |
263 | int actual_width = rect2.right - rect2.left - rect.right + width; | |
264 | int actual_height = rect2.bottom - rect2.top - rect.bottom + height; | |
265 | ||
266 | MoveWindow(hWnd, rect2.left, rect2.top, actual_width, actual_height, TRUE); | |
debe6624 | 267 | |
2bda0e17 | 268 | wxSizeEvent event(wxSize(actual_width, actual_height), m_windowId); |
debe6624 | 269 | event.SetEventObject( this ); |
2bda0e17 | 270 | GetEventHandler()->ProcessEvent(event); |
2bda0e17 KB |
271 | } |
272 | ||
273 | void wxDialog::GetPosition(int *x, int *y) const | |
274 | { | |
275 | HWND hWnd = (HWND) GetHWND(); | |
276 | RECT rect; | |
277 | GetWindowRect(hWnd, &rect); | |
278 | ||
279 | *x = rect.left; | |
280 | *y = rect.top; | |
281 | } | |
282 | ||
283 | bool wxDialog::IsShown(void) const | |
284 | { | |
285 | return m_isShown; | |
286 | } | |
287 | ||
debe6624 | 288 | bool wxDialog::Show(bool show) |
2bda0e17 KB |
289 | { |
290 | m_isShown = show; | |
291 | ||
292 | if (show) | |
293 | InitDialog(); | |
294 | ||
295 | bool modal = ((GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL) ; | |
296 | ||
297 | #if WXGARBAGE_COLLECTION_ON /* MATTHEW: GC */ | |
298 | if (!modal) { | |
299 | if (show) { | |
300 | if (!wxModelessWindows.Member(this)) | |
dc1c4b62 | 301 | wxModelessWindows.Append(this); |
2bda0e17 KB |
302 | } else |
303 | wxModelessWindows.DeleteObject(this); | |
304 | } | |
305 | if (show) { | |
306 | if (!wxTopLevelWindows.Member(this)) | |
307 | wxTopLevelWindows.Append(this); | |
308 | } else | |
309 | wxTopLevelWindows.DeleteObject(this); | |
310 | #endif | |
311 | ||
312 | if (modal) | |
313 | { | |
314 | if (show) | |
315 | { | |
dc1c4b62 VZ |
316 | m_hwndOldFocus = (WXHWND)::GetFocus(); |
317 | ||
2bda0e17 KB |
318 | if (m_modalShowing) |
319 | { | |
320 | BringWindowToTop((HWND) GetHWND()); | |
321 | return TRUE; | |
322 | } | |
323 | ||
324 | m_modalShowing = TRUE; | |
325 | wxNode *node = wxModalDialogs.First(); | |
326 | while (node) | |
327 | { | |
328 | wxDialog *box = (wxDialog *)node->Data(); | |
329 | if (box != this) | |
330 | ::EnableWindow((HWND) box->GetHWND(), FALSE); | |
331 | node = node->Next(); | |
332 | } | |
9c9cff0b VZ |
333 | |
334 | // if we don't do it, some window might be deleted while we have pointers | |
335 | // to them in our disabledWindows list and the program will crash when it | |
336 | // will try to reenable them after the modal dialog end | |
337 | wxTheApp->DeletePendingObjects(); | |
338 | wxList disabledWindows; | |
339 | ||
2bda0e17 KB |
340 | node = wxModelessWindows.First(); |
341 | while (node) | |
342 | { | |
343 | wxWindow *win = (wxWindow *)node->Data(); | |
dc1c4b62 VZ |
344 | if (::IsWindowEnabled((HWND) win->GetHWND())) |
345 | { | |
2bda0e17 | 346 | ::EnableWindow((HWND) win->GetHWND(), FALSE); |
9c9cff0b | 347 | disabledWindows.Append(win); |
dc1c4b62 | 348 | } |
2bda0e17 KB |
349 | node = node->Next(); |
350 | } | |
351 | ||
352 | ShowWindow((HWND) GetHWND(), SW_SHOW); | |
353 | EnableWindow((HWND) GetHWND(), TRUE); | |
354 | BringWindowToTop((HWND) GetHWND()); | |
355 | ||
356 | if (!wxModalDialogs.Member(this)) | |
357 | wxModalDialogs.Append(this); | |
358 | ||
359 | MSG msg; | |
360 | // Must test whether this dialog still exists: we may not process | |
361 | // a message before the deletion. | |
362 | while (wxModalDialogs.Member(this) && m_modalShowing && GetMessage(&msg, NULL, 0, 0)) | |
363 | { | |
567da5c6 JS |
364 | if (m_acceleratorTable.Ok() && |
365 | ::TranslateAccelerator((HWND) GetHWND(), (HACCEL) m_acceleratorTable.GetHACCEL(), &msg)) | |
366 | { | |
367 | // Have processed the message | |
368 | } | |
369 | else if (!IsDialogMessage((HWND) GetHWND(), &msg)) | |
2bda0e17 KB |
370 | { |
371 | TranslateMessage(&msg); | |
372 | DispatchMessage(&msg); | |
373 | } | |
9838df2c JS |
374 | |
375 | // If we get crashes (as per George Tasker's message) with nested modal dialogs, | |
376 | // we should try removing the m_modalShowing test | |
377 | ||
2bda0e17 | 378 | if (m_modalShowing && !::PeekMessage(&msg, 0, 0, 0, PM_NOREMOVE)) |
dc1c4b62 VZ |
379 | // dfgg: NB MUST test m_modalShowing again as the message loop could have triggered |
380 | // a Show(FALSE) in the mean time!!! | |
381 | // Without the test, we might delete the dialog before the end of modal showing. | |
2bda0e17 KB |
382 | { |
383 | while (wxTheApp->ProcessIdle() && m_modalShowing) | |
384 | { | |
385 | // Keep going until we decide we've done enough | |
386 | } | |
387 | } | |
388 | } | |
389 | // dfgg: now must specifically re-enable all other app windows that we disabled earlier | |
9c9cff0b | 390 | node=disabledWindows.First(); |
2bda0e17 | 391 | while(node) { |
dc1c4b62 | 392 | wxWindow* win = (wxWindow*) node->Data(); |
9838df2c JS |
393 | if (wxModalDialogs.Member(win) || wxModelessWindows.Member(win)) |
394 | { | |
395 | HWND hWnd = (HWND) win->GetHWND(); | |
396 | if (::IsWindow(hWnd)) | |
397 | ::EnableWindow(hWnd,TRUE); | |
398 | } | |
2bda0e17 KB |
399 | node=node->Next(); |
400 | } | |
401 | } | |
dc1c4b62 | 402 | else // !show |
2bda0e17 | 403 | { |
dc1c4b62 VZ |
404 | ::SetFocus((HWND)m_hwndOldFocus); |
405 | ||
2bda0e17 KB |
406 | wxModalDialogs.DeleteObject(this); |
407 | ||
408 | wxNode *last = wxModalDialogs.Last(); | |
409 | ||
410 | // If there's still a modal dialog active, we | |
411 | // enable it, else we enable all modeless windows | |
412 | if (last) | |
413 | { | |
414 | wxDialog *box = (wxDialog *)last->Data(); | |
415 | HWND hwnd = (HWND) box->GetHWND(); | |
416 | if (box->m_winEnabled) | |
417 | EnableWindow(hwnd, TRUE); | |
418 | BringWindowToTop(hwnd); | |
419 | } | |
420 | else | |
421 | { | |
422 | wxNode *node = wxModelessWindows.First(); | |
423 | while (node) | |
424 | { | |
425 | wxWindow *win = (wxWindow *)node->Data(); | |
426 | HWND hwnd = (HWND) win->GetHWND(); | |
427 | // Only enable again if not user-disabled. | |
428 | if (win->IsUserEnabled()) | |
429 | EnableWindow(hwnd, TRUE); | |
430 | node = node->Next(); | |
431 | } | |
432 | } | |
433 | // Try to highlight the correct window (the parent) | |
434 | HWND hWndParent = 0; | |
435 | if (GetParent()) | |
436 | { | |
437 | hWndParent = (HWND) GetParent()->GetHWND(); | |
438 | if (hWndParent) | |
439 | ::BringWindowToTop(hWndParent); | |
440 | } | |
441 | ShowWindow((HWND) GetHWND(), SW_HIDE); | |
442 | m_modalShowing = FALSE; | |
443 | } | |
444 | } | |
dc1c4b62 | 445 | else // !modal |
2bda0e17 KB |
446 | { |
447 | if (show) | |
448 | { | |
449 | ShowWindow((HWND) GetHWND(), SW_SHOW); | |
450 | BringWindowToTop((HWND) GetHWND()); | |
451 | } | |
452 | else | |
453 | { | |
454 | // Try to highlight the correct window (the parent) | |
455 | HWND hWndParent = 0; | |
456 | if (GetParent()) | |
457 | { | |
458 | hWndParent = (HWND) GetParent()->GetHWND(); | |
459 | if (hWndParent) | |
460 | ::BringWindowToTop(hWndParent); | |
461 | } | |
462 | ShowWindow((HWND) GetHWND(), SW_HIDE); | |
463 | } | |
464 | } | |
465 | return TRUE; | |
466 | } | |
467 | ||
468 | void wxDialog::SetTitle(const wxString& title) | |
469 | { | |
470 | SetWindowText((HWND) GetHWND(), (const char *)title); | |
471 | } | |
472 | ||
473 | wxString wxDialog::GetTitle(void) const | |
474 | { | |
475 | GetWindowText((HWND) GetHWND(), wxBuffer, 1000); | |
476 | return wxString(wxBuffer); | |
477 | } | |
478 | ||
debe6624 | 479 | void wxDialog::Centre(int direction) |
2bda0e17 KB |
480 | { |
481 | int x_offset,y_offset ; | |
482 | int display_width, display_height; | |
483 | int width, height, x, y; | |
dfc54541 JS |
484 | wxWindow *parent = GetParent(); |
485 | if ((direction & wxCENTER_FRAME) && parent) | |
2bda0e17 | 486 | { |
dfc54541 JS |
487 | parent->GetPosition(&x_offset,&y_offset) ; |
488 | parent->GetSize(&display_width,&display_height) ; | |
2bda0e17 KB |
489 | } |
490 | else | |
2bda0e17 KB |
491 | { |
492 | wxDisplaySize(&display_width, &display_height); | |
493 | x_offset = 0 ; | |
494 | y_offset = 0 ; | |
495 | } | |
496 | ||
2bda0e17 KB |
497 | GetSize(&width, &height); |
498 | GetPosition(&x, &y); | |
499 | ||
500 | if (direction & wxHORIZONTAL) | |
501 | x = (int)((display_width - width)/2); | |
502 | if (direction & wxVERTICAL) | |
503 | y = (int)((display_height - height)/2); | |
504 | ||
505 | SetSize(x+x_offset, y+y_offset, width, height); | |
506 | } | |
507 | ||
508 | // Replacement for Show(TRUE) for modal dialogs - returns return code | |
509 | int wxDialog::ShowModal(void) | |
510 | { | |
dc1c4b62 VZ |
511 | m_windowStyle |= wxDIALOG_MODAL; |
512 | Show(TRUE); | |
513 | return GetReturnCode(); | |
2bda0e17 KB |
514 | } |
515 | ||
516 | void wxDialog::EndModal(int retCode) | |
517 | { | |
dc1c4b62 VZ |
518 | SetReturnCode(retCode); |
519 | Show(FALSE); | |
2bda0e17 KB |
520 | } |
521 | ||
522 | // Define for each class of dialog and control | |
debe6624 | 523 | WXHBRUSH wxDialog::OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, |
dc1c4b62 | 524 | WXUINT message, WXWPARAM wParam, WXLPARAM lParam) |
2bda0e17 | 525 | { |
1f112209 | 526 | #if wxUSE_CTL3D |
2bda0e17 KB |
527 | HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam); |
528 | return (WXHBRUSH) hbrush; | |
529 | #else | |
530 | return 0; | |
531 | #endif | |
532 | } | |
533 | ||
534 | // Standard buttons | |
535 | void wxDialog::OnOK(wxCommandEvent& event) | |
536 | { | |
dc1c4b62 VZ |
537 | if ( Validate() && TransferDataFromWindow() ) |
538 | { | |
2bda0e17 KB |
539 | if ( IsModal() ) |
540 | EndModal(wxID_OK); | |
541 | else | |
542 | { | |
387a3b02 JS |
543 | SetReturnCode(wxID_OK); |
544 | this->Show(FALSE); | |
2bda0e17 | 545 | } |
dc1c4b62 | 546 | } |
2bda0e17 KB |
547 | } |
548 | ||
549 | void wxDialog::OnApply(wxCommandEvent& event) | |
550 | { | |
dc1c4b62 VZ |
551 | if (Validate()) |
552 | TransferDataFromWindow(); | |
553 | // TODO probably need to disable the Apply button until things change again | |
2bda0e17 KB |
554 | } |
555 | ||
556 | void wxDialog::OnCancel(wxCommandEvent& event) | |
557 | { | |
558 | if ( IsModal() ) | |
559 | EndModal(wxID_CANCEL); | |
560 | else | |
561 | { | |
562 | SetReturnCode(wxID_CANCEL); | |
dc1c4b62 | 563 | this->Show(FALSE); |
2bda0e17 KB |
564 | } |
565 | } | |
566 | ||
e3065973 | 567 | void wxDialog::OnCloseWindow(wxCloseEvent& event) |
2bda0e17 | 568 | { |
e3065973 | 569 | // We'll send a Cancel message by default, |
2bda0e17 | 570 | // which may close the dialog. |
e3065973 JS |
571 | // Check for looping if the Cancel event handler calls Close(). |
572 | ||
573 | // Note that if a cancel button and handler aren't present in the dialog, | |
574 | // nothing will happen when you close the dialog via the window manager, or | |
575 | // via Close(). | |
576 | // We wouldn't want to destroy the dialog by default, since the dialog may have been | |
577 | // created on the stack. | |
578 | // However, this does mean that calling dialog->Close() won't delete the dialog | |
579 | // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be | |
580 | // sure to destroy the dialog. | |
581 | // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog. | |
2bda0e17 KB |
582 | |
583 | static wxList closing; | |
e3065973 | 584 | |
2bda0e17 | 585 | if ( closing.Member(this) ) |
e3065973 JS |
586 | return; |
587 | ||
2bda0e17 | 588 | closing.Append(this); |
e3065973 | 589 | |
387a3b02 JS |
590 | wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); |
591 | cancelEvent.SetEventObject( this ); | |
e3065973 | 592 | GetEventHandler()->ProcessEvent(cancelEvent); // This may close the dialog |
2bda0e17 KB |
593 | |
594 | closing.DeleteObject(this); | |
e3065973 | 595 | } |
2bda0e17 | 596 | |
e3065973 JS |
597 | // Destroy the window (delayed, if a managed window) |
598 | bool wxDialog::Destroy(void) | |
599 | { | |
600 | if (!wxPendingDelete.Member(this)) | |
601 | wxPendingDelete.Append(this); | |
602 | return TRUE; | |
2bda0e17 KB |
603 | } |
604 | ||
94b49b93 JS |
605 | void wxDialog::OnSize(wxSizeEvent& WXUNUSED(event)) |
606 | { | |
607 | // if we're using constraints - do use them | |
608 | #if wxUSE_CONSTRAINTS | |
609 | if ( GetAutoLayout() ) { | |
610 | Layout(); | |
611 | } | |
612 | #endif | |
613 | } | |
614 | ||
2bda0e17 KB |
615 | void wxDialog::OnSysColourChanged(wxSysColourChangedEvent& event) |
616 | { | |
1f112209 | 617 | #if wxUSE_CTL3D |
2bda0e17 KB |
618 | Ctl3dColorChange(); |
619 | #else | |
620 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE)); | |
2bda0e17 KB |
621 | Refresh(); |
622 | #endif | |
462e2437 | 623 | } |