]>
Commit | Line | Data |
---|---|---|
e37feda2 | 1 | ///////////////////////////////////////////////////////////////////////////// |
f1e01716 | 2 | // Name: src/common/dlgcmn.cpp |
e37feda2 VZ |
3 | // Purpose: common (to all ports) wxDialog functions |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 28.06.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
65571936 | 9 | // Licence: wxWindows licence |
e37feda2 VZ |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
e37feda2 VZ |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
fdf565fe WS |
27 | #include "wx/dialog.h" |
28 | ||
e37feda2 | 29 | #ifndef WX_PRECOMP |
f6bcfd97 | 30 | #include "wx/button.h" |
e37feda2 | 31 | #include "wx/dcclient.h" |
9f3a38fc | 32 | #include "wx/intl.h" |
e37feda2 | 33 | #include "wx/settings.h" |
9f3a38fc | 34 | #include "wx/stattext.h" |
92afa2b1 | 35 | #include "wx/sizer.h" |
7d9f12f3 | 36 | #include "wx/containr.h" |
e37feda2 VZ |
37 | #endif |
38 | ||
897b24cf WS |
39 | #include "wx/statline.h" |
40 | #include "wx/sysopt.h" | |
41 | ||
5d1b4919 VZ |
42 | #if wxUSE_STATTEXT |
43 | ||
44 | // ---------------------------------------------------------------------------- | |
45 | // wxTextWrapper | |
46 | // ---------------------------------------------------------------------------- | |
47 | ||
48 | // this class is used to wrap the text on word boundary: wrapping is done by | |
49 | // calling OnStartLine() and OnOutputLine() functions | |
50 | class wxTextWrapper | |
51 | { | |
52 | public: | |
53 | wxTextWrapper() { m_eol = false; } | |
54 | ||
55 | // win is used for getting the font, text is the text to wrap, width is the | |
56 | // max line width or -1 to disable wrapping | |
57 | void Wrap(wxWindow *win, const wxString& text, int widthMax); | |
58 | ||
0db7dfb0 VZ |
59 | // we don't need it, but just to avoid compiler warnings |
60 | virtual ~wxTextWrapper() { } | |
61 | ||
5d1b4919 VZ |
62 | protected: |
63 | // line may be empty | |
64 | virtual void OnOutputLine(const wxString& line) = 0; | |
65 | ||
66 | // called at the start of every new line (except the very first one) | |
67 | virtual void OnNewLine() { } | |
68 | ||
69 | private: | |
70 | // call OnOutputLine() and set m_eol to true | |
71 | void DoOutputLine(const wxString& line) | |
72 | { | |
73 | OnOutputLine(line); | |
74 | ||
75 | m_eol = true; | |
76 | } | |
77 | ||
78 | // this function is a destructive inspector: when it returns true it also | |
79 | // resets the flag to false so calling it again woulnd't return true any | |
80 | // more | |
81 | bool IsStartOfNewLine() | |
82 | { | |
83 | if ( !m_eol ) | |
84 | return false; | |
85 | ||
86 | m_eol = false; | |
87 | ||
88 | return true; | |
89 | } | |
90 | ||
91 | ||
92 | bool m_eol; | |
93 | }; | |
94 | ||
95 | #endif // wxUSE_STATTEXT | |
96 | ||
97 | // ---------------------------------------------------------------------------- | |
92afa2b1 | 98 | // wxDialogBase |
5d1b4919 | 99 | // ---------------------------------------------------------------------------- |
e37feda2 | 100 | |
7d9f12f3 | 101 | BEGIN_EVENT_TABLE(wxDialogBase, wxTopLevelWindow) |
a9f620da | 102 | EVT_BUTTON(wxID_ANY, wxDialogBase::OnButton) |
2158f4d7 VZ |
103 | |
104 | EVT_CLOSE(wxDialogBase::OnCloseWindow) | |
105 | ||
0be27418 | 106 | EVT_CHAR_HOOK(wxDialogBase::OnCharHook) |
2158f4d7 | 107 | |
7d9f12f3 VS |
108 | WX_EVENT_TABLE_CONTROL_CONTAINER(wxDialogBase) |
109 | END_EVENT_TABLE() | |
110 | ||
6c20e8f8 | 111 | WX_DELEGATE_TO_CONTROL_CONTAINER(wxDialogBase, wxTopLevelWindow) |
7d9f12f3 VS |
112 | |
113 | void wxDialogBase::Init() | |
114 | { | |
115 | m_returnCode = 0; | |
9ceeecb9 | 116 | m_affirmativeId = wxID_OK; |
c6ece595 VZ |
117 | m_escapeId = wxID_ANY; |
118 | ||
e4b713a2 VZ |
119 | // the dialogs have this flag on by default to prevent the events from the |
120 | // dialog controls from reaching the parent frame which is usually | |
121 | // undesirable and can lead to unexpected and hard to find bugs | |
122 | SetExtraStyle(GetExtraStyle() | wxWS_EX_BLOCK_EVENTS); | |
123 | ||
7d9f12f3 | 124 | m_container.SetContainerWindow(this); |
7d9f12f3 VS |
125 | } |
126 | ||
5d1b4919 | 127 | #if wxUSE_STATTEXT |
1e6feb95 | 128 | |
5d1b4919 | 129 | void wxTextWrapper::Wrap(wxWindow *win, const wxString& text, int widthMax) |
e37feda2 | 130 | { |
5d1b4919 VZ |
131 | const wxChar *lastSpace = NULL; |
132 | wxString line; | |
133 | ||
134 | const wxChar *lineStart = text.c_str(); | |
135 | for ( const wxChar *p = lineStart; ; p++ ) | |
136 | { | |
137 | if ( IsStartOfNewLine() ) | |
138 | { | |
139 | OnNewLine(); | |
140 | ||
141 | lastSpace = NULL; | |
142 | line.clear(); | |
143 | lineStart = p; | |
144 | } | |
145 | ||
146 | if ( *p == _T('\n') || *p == _T('\0') ) | |
147 | { | |
148 | DoOutputLine(line); | |
149 | ||
150 | if ( *p == _T('\0') ) | |
151 | break; | |
152 | } | |
153 | else // not EOL | |
154 | { | |
155 | if ( *p == _T(' ') ) | |
156 | lastSpace = p; | |
157 | ||
158 | line += *p; | |
68379eaf | 159 | |
5d1b4919 VZ |
160 | if ( widthMax >= 0 && lastSpace ) |
161 | { | |
162 | int width; | |
163 | win->GetTextExtent(line, &width, NULL); | |
68379eaf | 164 | |
5d1b4919 VZ |
165 | if ( width > widthMax ) |
166 | { | |
167 | // remove the last word from this line | |
168 | line.erase(lastSpace - lineStart, p + 1 - lineStart); | |
169 | DoOutputLine(line); | |
170 | ||
171 | // go back to the last word of this line which we didn't | |
172 | // output yet | |
173 | p = lastSpace; | |
174 | } | |
175 | } | |
176 | //else: no wrapping at all or impossible to wrap | |
177 | } | |
178 | } | |
179 | } | |
180 | ||
cfd1ac21 MW |
181 | class wxTextSizerWrapper : public wxTextWrapper |
182 | { | |
183 | public: | |
184 | wxTextSizerWrapper(wxWindow *win) | |
185 | { | |
186 | m_win = win; | |
187 | m_hLine = 0; | |
188 | } | |
189 | ||
190 | wxSizer *CreateSizer(const wxString& text, int widthMax) | |
191 | { | |
192 | m_sizer = new wxBoxSizer(wxVERTICAL); | |
193 | Wrap(m_win, text, widthMax); | |
194 | return m_sizer; | |
195 | } | |
196 | ||
197 | protected: | |
198 | virtual void OnOutputLine(const wxString& line) | |
199 | { | |
200 | if ( !line.empty() ) | |
201 | { | |
202 | m_sizer->Add(new wxStaticText(m_win, wxID_ANY, line)); | |
203 | } | |
204 | else // empty line, no need to create a control for it | |
205 | { | |
206 | if ( !m_hLine ) | |
207 | m_hLine = m_win->GetCharHeight(); | |
208 | ||
209 | m_sizer->Add(5, m_hLine); | |
210 | } | |
211 | } | |
212 | ||
213 | private: | |
214 | wxWindow *m_win; | |
215 | wxSizer *m_sizer; | |
216 | int m_hLine; | |
217 | }; | |
218 | ||
5d1b4919 VZ |
219 | wxSizer *wxDialogBase::CreateTextSizer(const wxString& message) |
220 | { | |
2b5f62a0 VZ |
221 | // I admit that this is complete bogus, but it makes |
222 | // message boxes work for pda screens temporarily.. | |
5d1b4919 VZ |
223 | int widthMax = -1; |
224 | const bool is_pda = wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA; | |
2b5f62a0 VZ |
225 | if (is_pda) |
226 | { | |
5d1b4919 | 227 | widthMax = wxSystemSettings::GetMetric( wxSYS_SCREEN_X ) - 25; |
2b5f62a0 | 228 | } |
68379eaf | 229 | |
5d1b4919 VZ |
230 | // '&' is used as accel mnemonic prefix in the wxWidgets controls but in |
231 | // the static messages created by CreateTextSizer() (used by wxMessageBox, | |
232 | // for example), we don't want this special meaning, so we need to quote it | |
233 | wxString text(message); | |
234 | text.Replace(_T("&"), _T("&&")); | |
68379eaf | 235 | |
cfd1ac21 | 236 | wxTextSizerWrapper wrapper(this); |
b730516c | 237 | |
cfd1ac21 MW |
238 | return wrapper.CreateSizer(text, widthMax); |
239 | } | |
5d1b4919 | 240 | |
cfd1ac21 MW |
241 | class wxLabelWrapper : public wxTextWrapper |
242 | { | |
243 | public: | |
244 | void WrapLabel(wxWindow *text, int widthMax) | |
245 | { | |
246 | m_text.clear(); | |
247 | Wrap(text, text->GetLabel(), widthMax); | |
248 | text->SetLabel(m_text); | |
249 | } | |
a350a488 | 250 | |
cfd1ac21 MW |
251 | protected: |
252 | virtual void OnOutputLine(const wxString& line) | |
253 | { | |
254 | m_text += line; | |
255 | } | |
a350a488 | 256 | |
cfd1ac21 MW |
257 | virtual void OnNewLine() |
258 | { | |
259 | m_text += _T('\n'); | |
260 | } | |
68379eaf | 261 | |
cfd1ac21 MW |
262 | private: |
263 | wxString m_text; | |
264 | }; | |
68379eaf | 265 | |
f20e3df6 VZ |
266 | // NB: don't "factor out" the scope operator, SGI MIPSpro 7.3 (but not 7.4) |
267 | // gets confused if it doesn't immediately follow the class name | |
dec48aa5 | 268 | void |
a351409e | 269 | #if defined(__WXGTK__) && !defined(__WXUNIVERSAL__) |
3f8e6923 | 270 | wxStaticText:: |
dec48aa5 | 271 | #else |
3f8e6923 | 272 | wxStaticTextBase:: |
dec48aa5 | 273 | #endif |
3f8e6923 | 274 | Wrap(int width) |
5d1b4919 | 275 | { |
cfd1ac21 | 276 | wxLabelWrapper wrapper; |
5d1b4919 | 277 | wrapper.WrapLabel(this, width); |
e37feda2 | 278 | } |
b730516c | 279 | |
5d1b4919 | 280 | #endif // wxUSE_STATTEXT |
1e6feb95 | 281 | |
897b24cf | 282 | wxSizer *wxDialogBase::CreateButtonSizer( long flags, bool separated, wxCoord distance ) |
e37feda2 | 283 | { |
102c0454 | 284 | #ifdef __SMARTPHONE__ |
897b24cf WS |
285 | wxUnusedVar(separated); |
286 | wxUnusedVar(distance); | |
287 | ||
102c0454 JS |
288 | wxDialog* dialog = (wxDialog*) this; |
289 | if (flags & wxOK){ | |
290 | dialog->SetLeftMenu(wxID_OK); | |
291 | } | |
292 | ||
293 | if (flags & wxCANCEL){ | |
294 | dialog->SetRightMenu(wxID_CANCEL); | |
295 | } | |
296 | ||
297 | if (flags & wxYES){ | |
298 | dialog->SetLeftMenu(wxID_YES); | |
299 | } | |
300 | ||
301 | if (flags & wxNO){ | |
302 | dialog->SetLeftMenu(wxID_NO); | |
303 | } | |
304 | wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL); | |
305 | return sizer; | |
897b24cf WS |
306 | |
307 | #else // !__SMARTPHONE__ | |
308 | ||
309 | #ifdef __POCKETPC__ | |
310 | // PocketPC guidelines recommend for Ok/Cancel dialogs to use | |
311 | // OK button located inside caption bar and implement Cancel functionality | |
312 | // through Undo outside dialog. As native behaviour this will be default | |
313 | // here but can be easily replaced with real wxButtons | |
314 | // with "wince.dialog.real-ok-cancel" option set to 1 | |
315 | if ( ((flags & ~(wxCANCEL|wxNO_DEFAULT))== wxOK) && | |
316 | (wxSystemOptions::GetOptionInt(wxT("wince.dialog.real-ok-cancel"))==0) | |
317 | ) | |
318 | { | |
319 | wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL); | |
320 | return sizer; | |
321 | } | |
322 | #endif // __POCKETPC__ | |
323 | ||
324 | #if wxUSE_BUTTON | |
325 | ||
326 | wxSizer* buttonSizer = CreateStdDialogButtonSizer( flags ); | |
327 | ||
328 | // Mac Human Interface Guidelines recommend not to use static lines as grouping elements | |
329 | #if wxUSE_STATLINE && !defined(__WXMAC__) | |
330 | if(!separated) | |
331 | return buttonSizer; | |
332 | ||
333 | wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL ); | |
334 | topsizer->Add( new wxStaticLine( this, wxID_ANY ), 0, wxEXPAND | wxBOTTOM, distance ); | |
335 | topsizer->Add( buttonSizer, 0, wxEXPAND ); | |
336 | return topsizer; | |
337 | ||
338 | #else // !wxUSE_STATLINE | |
339 | ||
340 | wxUnusedVar(separated); | |
341 | wxUnusedVar(distance); | |
342 | return buttonSizer; | |
343 | ||
344 | #endif // wxUSE_STATLINE/!wxUSE_STATLINE | |
345 | ||
346 | #else // !wxUSE_BUTTON | |
347 | ||
348 | wxUnusedVar(separated); | |
349 | wxUnusedVar(distance); | |
350 | wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL); | |
351 | return sizer; | |
352 | ||
353 | #endif // wxUSE_BUTTON/!wxUSE_BUTTON | |
354 | ||
355 | #endif // __SMARTPHONE__/!__SMARTPHONE__ | |
acf2ac37 | 356 | } |
68379eaf | 357 | |
897b24cf WS |
358 | #if wxUSE_BUTTON |
359 | ||
acf2ac37 RR |
360 | wxStdDialogButtonSizer *wxDialogBase::CreateStdDialogButtonSizer( long flags ) |
361 | { | |
362 | wxStdDialogButtonSizer *sizer = new wxStdDialogButtonSizer(); | |
897b24cf | 363 | |
acf2ac37 | 364 | wxButton *ok = NULL; |
acf2ac37 RR |
365 | wxButton *yes = NULL; |
366 | wxButton *no = NULL; | |
52069700 | 367 | |
acf2ac37 | 368 | if (flags & wxOK){ |
331c1816 | 369 | ok = new wxButton(this, wxID_OK); |
52069700 | 370 | sizer->AddButton(ok); |
2b5f62a0 | 371 | } |
52069700 | 372 | |
acf2ac37 | 373 | if (flags & wxCANCEL){ |
331c1816 | 374 | wxButton *cancel = new wxButton(this, wxID_CANCEL); |
52069700 | 375 | sizer->AddButton(cancel); |
b5b49e42 | 376 | } |
52069700 | 377 | |
acf2ac37 | 378 | if (flags & wxYES){ |
331c1816 | 379 | yes = new wxButton(this, wxID_YES); |
52069700 | 380 | sizer->AddButton(yes); |
e37feda2 | 381 | } |
52069700 | 382 | |
acf2ac37 | 383 | if (flags & wxNO){ |
331c1816 | 384 | no = new wxButton(this, wxID_NO); |
52069700 | 385 | sizer->AddButton(no); |
e37feda2 | 386 | } |
52069700 | 387 | |
acf2ac37 | 388 | if (flags & wxHELP){ |
331c1816 | 389 | wxButton *help = new wxButton(this, wxID_HELP); |
52069700 | 390 | sizer->AddButton(help); |
e37feda2 | 391 | } |
52069700 | 392 | |
b730516c RD |
393 | if (flags & wxNO_DEFAULT) |
394 | { | |
395 | if (no) | |
396 | { | |
397 | no->SetDefault(); | |
398 | no->SetFocus(); | |
399 | } | |
400 | } | |
401 | else | |
92afa2b1 RR |
402 | { |
403 | if (ok) | |
404 | { | |
405 | ok->SetDefault(); | |
406 | ok->SetFocus(); | |
407 | } | |
408 | else if (yes) | |
409 | { | |
410 | yes->SetDefault(); | |
411 | yes->SetFocus(); | |
412 | } | |
413 | } | |
d30814cd | 414 | |
9ceeecb9 JS |
415 | if (flags & wxOK) |
416 | SetAffirmativeId(wxID_OK); | |
417 | else if (flags & wxYES) | |
418 | SetAffirmativeId(wxID_YES); | |
b730516c | 419 | |
d30814cd MB |
420 | sizer->Realize(); |
421 | ||
acf2ac37 | 422 | return sizer; |
e37feda2 VZ |
423 | } |
424 | ||
1e6feb95 | 425 | #endif // wxUSE_BUTTON |
0be27418 | 426 | |
551f281b | 427 | // ---------------------------------------------------------------------------- |
a9f620da | 428 | // standard buttons handling |
551f281b VZ |
429 | // ---------------------------------------------------------------------------- |
430 | ||
a9f620da VZ |
431 | void wxDialogBase::EndDialog(int rc) |
432 | { | |
433 | if ( IsModal() ) | |
434 | EndModal(rc); | |
435 | else | |
436 | Hide(); | |
437 | } | |
438 | ||
551f281b VZ |
439 | void wxDialogBase::AcceptAndClose() |
440 | { | |
441 | if ( Validate() && TransferDataFromWindow() ) | |
442 | { | |
a9f620da | 443 | EndDialog(m_affirmativeId); |
551f281b VZ |
444 | } |
445 | } | |
446 | ||
447 | void wxDialogBase::SetAffirmativeId(int affirmativeId) | |
448 | { | |
fabd7a7f | 449 | m_affirmativeId = affirmativeId; |
551f281b VZ |
450 | } |
451 | ||
452 | void wxDialogBase::SetEscapeId(int escapeId) | |
453 | { | |
fabd7a7f | 454 | m_escapeId = escapeId; |
551f281b VZ |
455 | } |
456 | ||
0be27418 VZ |
457 | bool wxDialogBase::EmulateButtonClickIfPresent(int id) |
458 | { | |
dbfa7f33 | 459 | #if wxUSE_BUTTON |
0be27418 VZ |
460 | wxButton *btn = wxDynamicCast(FindWindow(id), wxButton); |
461 | ||
462 | if ( !btn || !btn->IsEnabled() || !btn->IsShown() ) | |
463 | return false; | |
464 | ||
465 | wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, id); | |
466 | event.SetEventObject(btn); | |
467 | btn->GetEventHandler()->ProcessEvent(event); | |
468 | ||
469 | return true; | |
dbfa7f33 VS |
470 | #else // !wxUSE_BUTTON |
471 | wxUnusedVar(id); | |
472 | return false; | |
473 | #endif // wxUSE_BUTTON/!wxUSE_BUTTON | |
0be27418 VZ |
474 | } |
475 | ||
476 | bool wxDialogBase::IsEscapeKey(const wxKeyEvent& event) | |
477 | { | |
478 | // for most platforms, Esc key is used to close the dialogs | |
479 | return event.GetKeyCode() == WXK_ESCAPE && | |
480 | event.GetModifiers() == wxMOD_NONE; | |
481 | } | |
482 | ||
483 | void wxDialogBase::OnCharHook(wxKeyEvent& event) | |
484 | { | |
485 | if ( event.GetKeyCode() == WXK_ESCAPE ) | |
486 | { | |
487 | int idCancel = GetEscapeId(); | |
488 | switch ( idCancel ) | |
489 | { | |
490 | case wxID_NONE: | |
491 | // don't handle Esc specially at all | |
492 | break; | |
493 | ||
494 | case wxID_ANY: | |
495 | // this value is special: it means translate Esc to wxID_CANCEL | |
496 | // but if there is no such button, then fall back to wxID_OK | |
497 | if ( EmulateButtonClickIfPresent(wxID_CANCEL) ) | |
498 | return; | |
153a0b78 | 499 | idCancel = GetAffirmativeId(); |
0be27418 VZ |
500 | // fall through |
501 | ||
502 | default: | |
503 | // translate Esc to button press for the button with given id | |
504 | if ( EmulateButtonClickIfPresent(idCancel) ) | |
505 | return; | |
506 | } | |
507 | } | |
508 | ||
509 | event.Skip(); | |
510 | } | |
511 | ||
a9f620da | 512 | void wxDialogBase::OnButton(wxCommandEvent& event) |
2158f4d7 | 513 | { |
a9f620da VZ |
514 | const int id = event.GetId(); |
515 | if ( id == GetAffirmativeId() ) | |
516 | { | |
517 | AcceptAndClose(); | |
518 | } | |
519 | else if ( id == wxID_APPLY ) | |
520 | { | |
521 | if ( Validate() ) | |
522 | TransferDataFromWindow(); | |
2158f4d7 | 523 | |
a9f620da VZ |
524 | // TODO: disable the Apply button until things change again |
525 | } | |
526 | else if ( id == GetEscapeId() || | |
527 | (id == wxID_CANCEL && GetEscapeId() == wxID_ANY) ) | |
528 | { | |
529 | EndDialog(wxID_CANCEL); | |
530 | } | |
531 | else // not a standard button | |
532 | { | |
533 | event.Skip(); | |
534 | } | |
2158f4d7 VZ |
535 | } |
536 | ||
a9f620da VZ |
537 | // ---------------------------------------------------------------------------- |
538 | // other event handlers | |
539 | // ---------------------------------------------------------------------------- | |
2158f4d7 VZ |
540 | |
541 | void wxDialogBase::OnCloseWindow(wxCloseEvent& WXUNUSED(event)) | |
542 | { | |
543 | // We'll send a Cancel message by default, which may close the dialog. | |
544 | // Check for looping if the Cancel event handler calls Close(). | |
545 | ||
546 | // Note that if a cancel button and handler aren't present in the dialog, | |
547 | // nothing will happen when you close the dialog via the window manager, or | |
548 | // via Close(). We wouldn't want to destroy the dialog by default, since | |
549 | // the dialog may have been created on the stack. However, this does mean | |
550 | // that calling dialog->Close() won't delete the dialog unless the handler | |
551 | // for wxID_CANCEL does so. So use Destroy() if you want to be sure to | |
552 | // destroy the dialog. The default OnCancel (above) simply ends a modal | |
553 | // dialog, and hides a modeless dialog. | |
554 | ||
555 | // VZ: this is horrible and MT-unsafe. Can't we reuse some of these global | |
556 | // lists here? don't dare to change it now, but should be done later! | |
557 | static wxList closing; | |
558 | ||
559 | if ( closing.Member(this) ) | |
560 | return; | |
561 | ||
562 | closing.Append(this); | |
563 | ||
564 | wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); | |
565 | cancelEvent.SetEventObject( this ); | |
566 | GetEventHandler()->ProcessEvent(cancelEvent); // This may close the dialog | |
567 | ||
568 | closing.DeleteObject(this); | |
569 | } | |
570 | ||
571 | void wxDialogBase::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event)) | |
572 | { | |
573 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)); | |
574 | Refresh(); | |
575 | } |