]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dialog.cpp | |
3 | // Purpose: wxDialog class | |
fb46a9a6 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
fb46a9a6 | 6 | // Created: 10/14/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
fb46a9a6 DW |
8 | // Copyright: (c) David Webster |
9 | // Licence: wxWindows licence | |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
27476f73 DW |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
0e320a79 | 14 | |
27476f73 | 15 | #ifndef WX_PRECOMP |
0e320a79 DW |
16 | #include "wx/dialog.h" |
17 | #include "wx/utils.h" | |
18 | #include "wx/frame.h" | |
19 | #include "wx/app.h" | |
20 | #include "wx/settings.h" | |
27476f73 DW |
21 | #include "wx/intl.h" |
22 | #include "wx/log.h" | |
23 | #endif | |
24 | ||
25 | #include "wx/os2/private.h" | |
26 | #include "wx/log.h" | |
27 | ||
27476f73 DW |
28 | #define wxDIALOG_DEFAULT_X 300 |
29 | #define wxDIALOG_DEFAULT_Y 300 | |
0e320a79 | 30 | |
c9cb56f7 DW |
31 | #define wxDIALOG_DEFAULT_WIDTH 500 |
32 | #define wxDIALOG_DEFAULT_HEIGHT 500 | |
33 | ||
27476f73 | 34 | wxWindowList wxModalDialogs; |
0e320a79 | 35 | |
5d44b24e | 36 | IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxTopLevelWindow) |
27476f73 | 37 | |
d491523b | 38 | BEGIN_EVENT_TABLE(wxDialog, wxDialogBase) |
5d44b24e DW |
39 | EVT_BUTTON(wxID_OK, wxDialog::OnOK) |
40 | EVT_BUTTON(wxID_APPLY, wxDialog::OnApply) | |
41 | EVT_BUTTON(wxID_CANCEL, wxDialog::OnCancel) | |
42 | EVT_CHAR_HOOK(wxDialog::OnCharHook) | |
43 | EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged) | |
44 | EVT_CLOSE(wxDialog::OnCloseWindow) | |
45 | END_EVENT_TABLE() | |
0e320a79 | 46 | |
c9cb56f7 | 47 | void wxDialog::Init() |
0e320a79 | 48 | { |
c9cb56f7 | 49 | m_pOldFocus = (wxWindow *)NULL; |
27476f73 | 50 | m_isShown = FALSE; |
c9cb56f7 | 51 | m_pWindowDisabler = (wxWindowDisabler *)NULL; |
a756f210 | 52 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)); |
c9cb56f7 DW |
53 | } // end of wxDialog::Init |
54 | ||
55 | bool wxDialog::Create( | |
56 | wxWindow* pParent | |
57 | , wxWindowID vId | |
58 | , const wxString& rsTitle | |
59 | , const wxPoint& rPos | |
60 | , const wxSize& rSize | |
61 | , long lStyle | |
62 | , const wxString& rsName | |
63 | ) | |
0e320a79 | 64 | { |
c9cb56f7 DW |
65 | long lX = rPos.x; |
66 | long lY = rPos.y; | |
67 | long lWidth = rSize.x; | |
68 | long lHeight = rSize.y; | |
69 | const char* zDlg; | |
70 | WXDWORD dwExtendedStyle = 0L; | |
71 | HWND hWnd; | |
72 | ||
73 | Init(); | |
5d44b24e | 74 | SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG); |
c9cb56f7 DW |
75 | |
76 | // | |
5d44b24e | 77 | // Save focus before doing anything which can potentially change it |
c9cb56f7 | 78 | // |
5d44b24e | 79 | m_pOldFocus = FindFocus(); |
c9cb56f7 DW |
80 | |
81 | // | |
5d44b24e | 82 | // All dialogs should really have this style |
c9cb56f7 | 83 | // |
5d44b24e DW |
84 | lStyle |= wxTAB_TRAVERSAL; |
85 | ||
86 | if (!wxTopLevelWindow::Create( pParent | |
87 | ,vId | |
88 | ,rsTitle | |
89 | ,rPos | |
90 | ,rSize | |
91 | ,lStyle | |
92 | ,rsName | |
93 | )) | |
c9cb56f7 | 94 | return FALSE; |
a756f210 | 95 | SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); |
c9b9e020 DW |
96 | |
97 | // | |
98 | // Must defer setting the title until after dialog is created and sized | |
99 | // | |
100 | if (!rsTitle.IsNull()) | |
101 | SetTitle(rsTitle); | |
27476f73 | 102 | return TRUE; |
c9cb56f7 | 103 | } // end of wxDialog::Create |
0e320a79 | 104 | |
c9cb56f7 DW |
105 | void wxDialog::SetModal( |
106 | bool bFlag | |
107 | ) | |
0e320a79 | 108 | { |
c9cb56f7 | 109 | if (bFlag) |
5d44b24e | 110 | { |
27476f73 | 111 | m_windowStyle |= wxDIALOG_MODAL ; |
5d44b24e DW |
112 | wxModelessWindows.DeleteObject(this); |
113 | } | |
114 | else | |
115 | { | |
116 | m_windowStyle &= ~wxDIALOG_MODAL ; | |
117 | wxModelessWindows.Append(this); | |
118 | } | |
c9cb56f7 | 119 | } // end of wxDialog::SetModal |
0e320a79 DW |
120 | |
121 | wxDialog::~wxDialog() | |
122 | { | |
27476f73 | 123 | m_isBeingDeleted = TRUE; |
27476f73 | 124 | Show(FALSE); |
c9cb56f7 | 125 | } // end of wxDialog::~wxDialog |
0e320a79 | 126 | |
c9cb56f7 | 127 | // |
0e320a79 | 128 | // By default, pressing escape cancels the dialog |
c9cb56f7 DW |
129 | // |
130 | void wxDialog::OnCharHook( | |
131 | wxKeyEvent& rEvent | |
132 | ) | |
0e320a79 | 133 | { |
27476f73 DW |
134 | if (GetHWND()) |
135 | { | |
c9cb56f7 | 136 | if (rEvent.m_keyCode == WXK_ESCAPE) |
27476f73 | 137 | { |
c9cb56f7 | 138 | // |
27476f73 DW |
139 | // Behaviour changed in 2.0: we'll send a Cancel message |
140 | // to the dialog instead of Close. | |
c9cb56f7 DW |
141 | // |
142 | wxCommandEvent vCancelEvent( wxEVT_COMMAND_BUTTON_CLICKED | |
143 | ,wxID_CANCEL | |
144 | ); | |
145 | ||
146 | vCancelEvent.SetEventObject( this ); | |
147 | GetEventHandler()->ProcessEvent(vCancelEvent); | |
148 | ||
149 | // | |
150 | // Ensure that there is another message for this window so the | |
151 | // ShowModal loop will exit and won't get stuck in GetMessage(). | |
152 | // | |
153 | ::WinPostMsg(GetHwnd(), WM_NULL, 0, 0); | |
27476f73 DW |
154 | return; |
155 | } | |
156 | } | |
157 | // We didn't process this event. | |
c9cb56f7 | 158 | rEvent.Skip(); |
27476f73 DW |
159 | } |
160 | ||
5d44b24e DW |
161 | // ---------------------------------------------------------------------------- |
162 | // showing the dialogs | |
163 | // ---------------------------------------------------------------------------- | |
27476f73 DW |
164 | |
165 | bool wxDialog::IsModal() const | |
166 | { | |
c9cb56f7 DW |
167 | return (GetWindowStyleFlag() & wxDIALOG_MODAL) != 0; |
168 | } // end of wxDialog::IsModal | |
0e320a79 | 169 | |
c9cb56f7 | 170 | bool wxDialog::IsModalShowing() const |
0e320a79 | 171 | { |
c9cb56f7 DW |
172 | return wxModalDialogs.Find((wxDialog *)this) != NULL; // const_cast |
173 | } // end of wxDialog::IsModalShowing | |
0e320a79 | 174 | |
c9cb56f7 | 175 | void wxDialog::DoShowModal() |
0e320a79 | 176 | { |
c9cb56f7 DW |
177 | wxWindow* pParent = GetParent(); |
178 | wxWindow* pOldFocus = m_pOldFocus; | |
179 | HWND hWndOldFocus = 0; | |
0e320a79 | 180 | |
c9cb56f7 DW |
181 | wxCHECK_RET( !IsModalShowing(), _T("DoShowModal() called twice") ); |
182 | wxCHECK_RET( IsModal(), _T("can't DoShowModal() modeless dialog") ); | |
183 | ||
184 | wxModalDialogs.Append(this); | |
185 | if (pOldFocus) | |
186 | hWndOldFocus = (HWND)pOldFocus->GetHWND(); | |
0e320a79 | 187 | |
c9cb56f7 DW |
188 | // |
189 | // Remember where the focus was | |
190 | // | |
191 | if (!pOldFocus) | |
192 | { | |
193 | pOldFocus = pParent; | |
194 | if (pParent) | |
195 | hWndOldFocus = GetHwndOf(pParent); | |
196 | } | |
197 | ||
198 | // | |
199 | // Disable all other app windows | |
200 | // | |
201 | wxASSERT_MSG(!m_pWindowDisabler, _T("disabling windows twice?")); | |
202 | ||
f3e4a2a4 DW |
203 | // |
204 | // Disables other app windows and window proc message processing | |
205 | // until WinDismissDlg called | |
206 | // | |
207 | ::WinProcessDlg((HWND)GetHwnd()); | |
c9cb56f7 DW |
208 | |
209 | // | |
210 | // Enter the modal loop | |
211 | // | |
212 | while ( IsModalShowing() ) | |
213 | { | |
214 | #if wxUSE_THREADS | |
215 | wxMutexGuiLeaveOrEnter(); | |
216 | #endif // wxUSE_THREADS | |
217 | ||
218 | while ( !wxTheApp->Pending() && wxTheApp->ProcessIdle() ) | |
219 | ; | |
220 | ||
221 | // a message came or no more idle processing to do | |
222 | wxTheApp->DoMessage(); | |
223 | } | |
224 | ||
225 | // | |
226 | // Snd restore focus | |
227 | // Note that this code MUST NOT access the dialog object's data | |
228 | // in case the object has been deleted (which will be the case | |
229 | // for a modal dialog that has been destroyed before calling EndModal). | |
230 | // | |
231 | if (pOldFocus && (pOldFocus != this) && ::WinIsWindow(vHabmain, hWndOldFocus)) | |
232 | { | |
233 | // | |
234 | // This is likely to prove that the object still exists | |
235 | // | |
236 | if (wxFindWinFromHandle((WXHWND) hWndOldFocus) == pOldFocus) | |
237 | pOldFocus->SetFocus(); | |
238 | } | |
239 | } // end of wxDialog::DoShowModal | |
240 | ||
241 | bool wxDialog::Show( | |
242 | bool bShow | |
243 | ) | |
0e320a79 | 244 | { |
c9cb56f7 DW |
245 | if (!bShow) |
246 | { | |
247 | // | |
248 | // If we had disabled other app windows, reenable them back now because | |
249 | // if they stay disabled Windows will activate another window (one | |
f3e4a2a4 DW |
250 | // which is enabled, anyhow) and we will lose activation. We really don't |
251 | // do this in OS/2 since PM does this for us. | |
c9cb56f7 DW |
252 | // |
253 | if (m_pWindowDisabler) | |
254 | { | |
255 | delete m_pWindowDisabler; | |
256 | m_pWindowDisabler = NULL; | |
257 | } | |
258 | } | |
0e320a79 | 259 | |
c9cb56f7 DW |
260 | // |
261 | // ShowModal() may be called for already shown dialog | |
262 | // | |
263 | if (!wxDialogBase::Show(bShow) && !(bShow && IsModal())) | |
264 | { | |
265 | // | |
266 | // Nothing to do | |
267 | // | |
268 | return FALSE; | |
269 | } | |
270 | ||
271 | if (bShow) | |
272 | { | |
273 | // | |
274 | // Usually will result in TransferDataToWindow() being called | |
275 | // | |
276 | InitDialog(); | |
277 | } | |
278 | ||
c9b9e020 DW |
279 | if (GetTitle().c_str()) |
280 | ::WinSetWindowText((HWND)GetHwnd(), GetTitle().c_str()); | |
c9cb56f7 DW |
281 | if (IsModal()) |
282 | { | |
283 | if (bShow) | |
284 | { | |
285 | // | |
286 | // Modal dialog needs a parent window, so try to find one | |
287 | // | |
288 | if (!GetParent()) | |
289 | { | |
290 | wxWindow* pParent = wxTheApp->GetTopWindow(); | |
291 | ||
292 | if ( pParent && pParent != this && pParent->IsShown() ) | |
293 | { | |
294 | // | |
295 | // Use it | |
296 | // | |
297 | m_parent = pParent; | |
298 | ||
299 | } | |
300 | } | |
301 | DoShowModal(); | |
302 | } | |
303 | else // end of modal dialog | |
304 | { | |
305 | // | |
306 | // This will cause IsModalShowing() return FALSE and our local | |
307 | // message loop will terminate | |
308 | // | |
309 | wxModalDialogs.DeleteObject(this); | |
310 | } | |
311 | } | |
5d44b24e | 312 | return TRUE; |
c9cb56f7 DW |
313 | } // end of wxDialog::Show |
314 | ||
315 | // | |
0e320a79 | 316 | // Replacement for Show(TRUE) for modal dialogs - returns return code |
c9cb56f7 | 317 | // |
0e320a79 DW |
318 | int wxDialog::ShowModal() |
319 | { | |
c9cb56f7 DW |
320 | if (!IsModal()) |
321 | { | |
322 | SetModal(TRUE); | |
323 | } | |
27476f73 DW |
324 | Show(TRUE); |
325 | return GetReturnCode(); | |
c9cb56f7 | 326 | } // end of wxDialog::ShowModal |
0e320a79 | 327 | |
c9cb56f7 DW |
328 | void wxDialog::EndModal( |
329 | int nRetCode | |
330 | ) | |
0e320a79 | 331 | { |
c9cb56f7 | 332 | SetReturnCode(nRetCode); |
27476f73 | 333 | Show(FALSE); |
f3e4a2a4 | 334 | ::WinDismissDlg((HWND)GetHwnd(), nRetCode); |
c9cb56f7 | 335 | } // end of wxDialog::EndModal |
0e320a79 | 336 | |
5d44b24e DW |
337 | // ---------------------------------------------------------------------------- |
338 | // wxWin event handlers | |
339 | // ---------------------------------------------------------------------------- | |
340 | ||
c9cb56f7 DW |
341 | void wxDialog::OnApply( |
342 | wxCommandEvent& rEvent | |
343 | ) | |
27476f73 | 344 | { |
c9cb56f7 DW |
345 | if (Validate()) |
346 | TransferDataFromWindow(); | |
347 | } // end of wxDialog::OnApply | |
348 | ||
0e320a79 | 349 | // Standard buttons |
c9cb56f7 DW |
350 | void wxDialog::OnOK( |
351 | wxCommandEvent& rEvent | |
352 | ) | |
0e320a79 | 353 | { |
27476f73 DW |
354 | if ( Validate() && TransferDataFromWindow() ) |
355 | { | |
c9cb56f7 | 356 | EndModal(wxID_OK); |
27476f73 | 357 | } |
c9cb56f7 | 358 | } // end of wxDialog::OnOK |
0e320a79 | 359 | |
c9cb56f7 DW |
360 | void wxDialog::OnCancel( |
361 | wxCommandEvent& rEvent | |
362 | ) | |
0e320a79 | 363 | { |
c9cb56f7 DW |
364 | EndModal(wxID_CANCEL); |
365 | } // end of wxDialog::OnCancel | |
0e320a79 | 366 | |
c9cb56f7 DW |
367 | void wxDialog::OnCloseWindow( |
368 | wxCloseEvent& rEvent | |
369 | ) | |
0e320a79 | 370 | { |
c9cb56f7 | 371 | // |
0e320a79 DW |
372 | // We'll send a Cancel message by default, |
373 | // which may close the dialog. | |
374 | // Check for looping if the Cancel event handler calls Close(). | |
c9cb56f7 | 375 | // |
0e320a79 DW |
376 | // Note that if a cancel button and handler aren't present in the dialog, |
377 | // nothing will happen when you close the dialog via the window manager, or | |
378 | // via Close(). | |
379 | // We wouldn't want to destroy the dialog by default, since the dialog may have been | |
380 | // created on the stack. | |
381 | // However, this does mean that calling dialog->Close() won't delete the dialog | |
382 | // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be | |
383 | // sure to destroy the dialog. | |
384 | // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog. | |
c9cb56f7 | 385 | // |
0e320a79 | 386 | |
c9cb56f7 DW |
387 | // |
388 | // Ugh??? This is not good but until I figure out a global list it'll have to do | |
389 | // | |
0e320a79 | 390 | static wxList closing; |
c3d43472 | 391 | |
0e320a79 DW |
392 | if ( closing.Member(this) ) |
393 | return; | |
c3d43472 | 394 | |
0e320a79 | 395 | closing.Append(this); |
c3d43472 | 396 | |
c9cb56f7 DW |
397 | wxCommandEvent vCancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); |
398 | ||
399 | vCancelEvent.SetEventObject( this ); | |
400 | GetEventHandler()->ProcessEvent(vCancelEvent); // This may close the dialog | |
0e320a79 DW |
401 | |
402 | closing.DeleteObject(this); | |
c9cb56f7 | 403 | } // end of wxDialog::OnCloseWindow |
0e320a79 | 404 | |
c9cb56f7 DW |
405 | void wxDialog::OnSysColourChanged( |
406 | wxSysColourChangedEvent& rEvent | |
407 | ) | |
27476f73 | 408 | { |
a756f210 | 409 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)); |
c9cb56f7 DW |
410 | Refresh(); |
411 | } // end of wxDialog::OnSysColourChanged | |
412 | ||
413 | MRESULT wxDialog::OS2WindowProc( | |
414 | WXUINT uMessage | |
415 | , WXWPARAM wParam | |
416 | , WXLPARAM lParam | |
417 | ) | |
0e320a79 | 418 | { |
c9cb56f7 DW |
419 | MRESULT rc = 0; |
420 | bool bProcessed = FALSE; | |
27476f73 | 421 | |
c9cb56f7 | 422 | switch (uMessage) |
27476f73 DW |
423 | { |
424 | case WM_CLOSE: | |
c9cb56f7 DW |
425 | // |
426 | // If we can't close, tell the system that we processed the | |
27476f73 | 427 | // message - otherwise it would close us |
c9cb56f7 DW |
428 | // |
429 | bProcessed = !Close(); | |
27476f73 DW |
430 | break; |
431 | } | |
432 | ||
c9cb56f7 DW |
433 | if (!bProcessed) |
434 | rc = wxWindow::OS2WindowProc( uMessage | |
435 | ,wParam | |
436 | ,lParam | |
437 | ); | |
27476f73 | 438 | return rc; |
c9cb56f7 | 439 | } // end of wxDialog::OS2WindowProc |
27476f73 | 440 |