]>
Commit | Line | Data |
---|---|---|
4bb6408c JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dialog.cpp | |
3 | // Purpose: wxDialog class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
dfe1eee3 | 9 | // Licence: wxWindows licence |
4bb6408c JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "dialog.h" | |
14 | #endif | |
15 | ||
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" | |
21 | ||
dfc54541 JS |
22 | #include <Xm/Xm.h> |
23 | ||
24 | #include <X11/Shell.h> | |
25 | #if XmVersion >= 1002 | |
26 | #include <Xm/XmAll.h> | |
27 | #endif | |
28 | #include <Xm/MwmUtil.h> | |
29 | #include <Xm/Label.h> | |
30 | #include <Xm/BulletinB.h> | |
31 | #include <Xm/Frame.h> | |
32 | #include <Xm/Text.h> | |
33 | #include <Xm/DialogS.h> | |
34 | #include <Xm/FileSB.h> | |
35 | #include <Xm/RowColumn.h> | |
36 | #include <Xm/LabelG.h> | |
37 | #include <Xm/AtomMgr.h> | |
38 | #if XmVersion > 1000 | |
39 | #include <Xm/Protocols.h> | |
40 | #endif | |
41 | ||
42 | #include "wx/motif/private.h" | |
43 | ||
44 | static void wxCloseDialogCallback(Widget widget, XtPointer client_data, XmAnyCallbackStruct *cbs); | |
dfc54541 | 45 | static void wxDialogBoxEventHandler (Widget wid, |
2d120f83 JS |
46 | XtPointer client_data, |
47 | XEvent* event, | |
48 | Boolean *continueToDispatch); | |
dfc54541 JS |
49 | |
50 | static void wxUnmapBulletinBoard(Widget dialog, wxDialog *client,XtPointer call); | |
51 | ||
52 | // A stack of modal_showing flags, since we can't rely | |
53 | // on accessing wxDialog::m_modalShowing within | |
54 | // wxDialog::Show in case a callback has deleted the wxDialog. | |
55 | static wxList wxModalShowingStack; | |
56 | ||
4bb6408c JS |
57 | // Lists to keep track of windows, so we can disable/enable them |
58 | // for modal dialogs | |
59 | wxList wxModalDialogs; | |
60 | wxList wxModelessWindows; // Frames and modeless dialogs | |
61 | extern wxList wxPendingDelete; | |
62 | ||
47d67540 | 63 | #define wxUSE_INVISIBLE_RESIZE 1 |
dfc54541 | 64 | |
4bb6408c JS |
65 | #if !USE_SHARED_LIBRARY |
66 | IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxPanel) | |
67 | ||
68 | BEGIN_EVENT_TABLE(wxDialog, wxPanel) | |
2d120f83 JS |
69 | EVT_BUTTON(wxID_OK, wxDialog::OnOK) |
70 | EVT_BUTTON(wxID_APPLY, wxDialog::OnApply) | |
71 | EVT_BUTTON(wxID_CANCEL, wxDialog::OnCancel) | |
72 | EVT_CHAR_HOOK(wxDialog::OnCharHook) | |
73 | EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged) | |
74 | EVT_CLOSE(wxDialog::OnCloseWindow) | |
4bb6408c JS |
75 | END_EVENT_TABLE() |
76 | ||
77 | #endif | |
78 | ||
79 | wxDialog::wxDialog() | |
80 | { | |
dfc54541 | 81 | m_modalShowing = FALSE; |
0d57be45 | 82 | m_backgroundColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE); |
4bb6408c JS |
83 | } |
84 | ||
85 | bool wxDialog::Create(wxWindow *parent, wxWindowID id, | |
2d120f83 JS |
86 | const wxString& title, |
87 | const wxPoint& pos, | |
88 | const wxSize& size, | |
89 | long style, | |
90 | const wxString& name) | |
4bb6408c | 91 | { |
dfc54541 JS |
92 | m_windowStyle = style; |
93 | m_modalShowing = FALSE; | |
94 | m_dialogTitle = title; | |
dfe1eee3 | 95 | |
0d57be45 JS |
96 | m_backgroundColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE); |
97 | m_foregroundColour = *wxBLACK; | |
dfe1eee3 | 98 | |
dfc54541 | 99 | SetName(name); |
dfe1eee3 | 100 | |
dfc54541 JS |
101 | if (!parent) |
102 | wxTopLevelWindows.Append(this); | |
dfe1eee3 | 103 | |
dfc54541 | 104 | if (parent) parent->AddChild(this); |
dfe1eee3 | 105 | |
dfc54541 JS |
106 | if ( id == -1 ) |
107 | m_windowId = (int)NewControlId(); | |
108 | else | |
109 | m_windowId = id; | |
dfe1eee3 | 110 | |
dfc54541 JS |
111 | Widget parentWidget = (Widget) 0; |
112 | if (parent) | |
113 | parentWidget = (Widget) parent->GetTopWidget(); | |
114 | if (!parent) | |
115 | parentWidget = (Widget) wxTheApp->GetTopLevelWidget(); | |
dfe1eee3 | 116 | |
dfc54541 | 117 | wxASSERT_MSG( (parentWidget != (Widget) 0), "Could not find a suitable parent shell for dialog." ); |
dfe1eee3 | 118 | |
94b49b93 | 119 | Arg args[2]; |
dfc54541 | 120 | XtSetArg (args[0], XmNdefaultPosition, False); |
94b49b93 JS |
121 | XtSetArg (args[1], XmNautoUnmanage, False); |
122 | Widget dialogShell = XmCreateBulletinBoardDialog(parentWidget, (char*) (const char*) name, args, 2); | |
dfc54541 | 123 | m_mainWidget = (WXWidget) dialogShell; |
dfe1eee3 | 124 | |
dfc54541 JS |
125 | // We don't want margins, since there is enough elsewhere. |
126 | XtVaSetValues(dialogShell, | |
2d120f83 JS |
127 | XmNmarginHeight, 0, |
128 | XmNmarginWidth, 0, | |
129 | XmNresizePolicy, XmRESIZE_NONE, | |
130 | NULL) ; | |
dfe1eee3 | 131 | |
dfc54541 JS |
132 | Widget shell = XtParent(dialogShell) ; |
133 | if (!title.IsNull()) | |
134 | { | |
135 | XmString str = XmStringCreateSimple((char*) (const char*)title); | |
136 | XtVaSetValues(dialogShell, | |
2d120f83 JS |
137 | XmNdialogTitle, str, |
138 | NULL); | |
dfc54541 JS |
139 | XmStringFree(str); |
140 | } | |
dfe1eee3 | 141 | |
da175b2c | 142 | m_font = wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT); |
4b5f3fe6 | 143 | ChangeFont(FALSE); |
dfe1eee3 | 144 | |
dfc54541 | 145 | wxAddWindowToTable(dialogShell, this); |
dfe1eee3 | 146 | |
dfc54541 JS |
147 | // Intercept CLOSE messages from the window manager |
148 | Atom WM_DELETE_WINDOW = XmInternAtom(XtDisplay(shell), "WM_DELETE_WINDOW", False); | |
dfe1eee3 | 149 | |
4b5f3fe6 | 150 | /* Remove and add WM_DELETE_WINDOW so ours is only handler */ |
dfc54541 JS |
151 | /* Why do we have to do this for wxDialog, but not wxFrame? */ |
152 | XmRemoveWMProtocols(shell, &WM_DELETE_WINDOW, 1); | |
153 | XmAddWMProtocols(shell, &WM_DELETE_WINDOW, 1); | |
154 | XmActivateWMProtocol(shell, WM_DELETE_WINDOW); | |
dfe1eee3 | 155 | |
dfc54541 JS |
156 | // Modified Steve Hammes for Motif 2.0 |
157 | #if (XmREVISION > 1 || XmVERSION > 1) | |
158 | XmAddWMProtocolCallback(shell, WM_DELETE_WINDOW, (XtCallbackProc) wxCloseDialogCallback, (XtPointer)this); | |
159 | #elif XmREVISION == 1 | |
160 | XmAddWMProtocolCallback(shell, WM_DELETE_WINDOW, (XtCallbackProc) wxCloseDialogCallback, (caddr_t)this); | |
161 | #else | |
162 | XmAddWMProtocolCallback(shell, WM_DELETE_WINDOW, (void (*)())wxCloseDialogCallback, (caddr_t)this); | |
163 | #endif | |
dfe1eee3 | 164 | |
dfc54541 JS |
165 | XtTranslations ptr ; |
166 | XtOverrideTranslations(dialogShell, | |
2d120f83 | 167 | ptr = XtParseTranslationTable("<Configure>: resize()")); |
dfc54541 | 168 | XtFree((char *)ptr); |
dfe1eee3 | 169 | |
dfc54541 | 170 | // Can't remember what this was about... but I think it's necessary. |
dfe1eee3 | 171 | |
dfad0599 | 172 | if (wxUSE_INVISIBLE_RESIZE) |
dfc54541 | 173 | { |
2d120f83 JS |
174 | if (pos.x > -1) |
175 | XtVaSetValues(dialogShell, XmNx, pos.x, | |
176 | NULL); | |
177 | if (pos.y > -1) | |
178 | XtVaSetValues(dialogShell, XmNy, pos.y, | |
179 | NULL); | |
dfe1eee3 | 180 | |
2d120f83 JS |
181 | if (size.x > -1) |
182 | XtVaSetValues(dialogShell, XmNwidth, size.x, NULL); | |
183 | if (size.y > -1) | |
184 | XtVaSetValues(dialogShell, XmNheight, size.y, NULL); | |
dfc54541 | 185 | } |
dfe1eee3 | 186 | |
dfc54541 JS |
187 | // This patch come from Torsten Liermann lier@lier1.muc.de |
188 | if (XmIsMotifWMRunning(shell)) | |
189 | { | |
190 | int decor = 0 ; | |
191 | if (m_windowStyle & wxRESIZE_BORDER) | |
2d120f83 | 192 | decor |= MWM_DECOR_RESIZEH ; |
dfc54541 | 193 | if (m_windowStyle & wxSYSTEM_MENU) |
2d120f83 | 194 | decor |= MWM_DECOR_MENU; |
dfc54541 JS |
195 | if ((m_windowStyle & wxCAPTION) || |
196 | (m_windowStyle & wxTINY_CAPTION_HORIZ) || | |
197 | (m_windowStyle & wxTINY_CAPTION_VERT)) | |
2d120f83 | 198 | decor |= MWM_DECOR_TITLE; |
dfc54541 | 199 | if (m_windowStyle & wxTHICK_FRAME) |
2d120f83 | 200 | decor |= MWM_DECOR_BORDER; |
dfc54541 | 201 | if (m_windowStyle & wxMINIMIZE_BOX) |
2d120f83 | 202 | decor |= MWM_DECOR_MINIMIZE; |
dfc54541 | 203 | if (m_windowStyle & wxMAXIMIZE_BOX) |
2d120f83 | 204 | decor |= MWM_DECOR_MAXIMIZE; |
dfe1eee3 | 205 | |
dfc54541 JS |
206 | XtVaSetValues(shell,XmNmwmDecorations,decor,NULL) ; |
207 | } | |
208 | // This allows non-Motif window managers to support at least the | |
209 | // no-decorations case. | |
210 | else | |
211 | { | |
2d120f83 JS |
212 | if ((m_windowStyle & wxCAPTION) != wxCAPTION) |
213 | XtVaSetValues((Widget) shell,XmNoverrideRedirect,TRUE,NULL); | |
dfc54541 | 214 | } |
dfe1eee3 | 215 | |
dfc54541 | 216 | XtRealizeWidget(dialogShell); |
dfe1eee3 | 217 | |
dfc54541 | 218 | XtAddCallback(dialogShell,XmNunmapCallback, |
2d120f83 | 219 | (XtCallbackProc)wxUnmapBulletinBoard,this) ; |
dfe1eee3 | 220 | |
dfc54541 JS |
221 | // Positioning of the dialog doesn't work properly unless the dialog |
222 | // is managed, so we manage without mapping to the screen. | |
223 | // To show, we map the shell (actually it's parent). | |
dfad0599 | 224 | if (!wxUSE_INVISIBLE_RESIZE) |
dfc54541 | 225 | XtVaSetValues(shell, XmNmappedWhenManaged, FALSE, NULL); |
dfe1eee3 | 226 | |
dfad0599 | 227 | if (!wxUSE_INVISIBLE_RESIZE) |
dfc54541 JS |
228 | { |
229 | XtManageChild(dialogShell); | |
230 | SetSize(pos.x, pos.y, size.x, size.y); | |
231 | } | |
232 | XtAddEventHandler(dialogShell,ExposureMask,FALSE, | |
2e35f56f | 233 | wxUniversalRepaintProc, (XtPointer) this); |
dfe1eee3 | 234 | |
dfc54541 | 235 | XtAddEventHandler(dialogShell, |
2d120f83 JS |
236 | ButtonPressMask | ButtonReleaseMask | PointerMotionMask | KeyPressMask, |
237 | FALSE, | |
238 | wxDialogBoxEventHandler, | |
239 | (XtPointer)this); | |
dfe1eee3 | 240 | |
0d57be45 | 241 | ChangeBackgroundColour(); |
dfe1eee3 | 242 | |
dfc54541 | 243 | return TRUE; |
4bb6408c JS |
244 | } |
245 | ||
246 | void wxDialog::SetModal(bool flag) | |
247 | { | |
dfc54541 JS |
248 | if ( flag ) |
249 | m_windowStyle |= wxDIALOG_MODAL ; | |
250 | else | |
251 | if ( m_windowStyle & wxDIALOG_MODAL ) | |
2d120f83 | 252 | m_windowStyle -= wxDIALOG_MODAL ; |
dfe1eee3 | 253 | |
2d120f83 JS |
254 | wxModelessWindows.DeleteObject(this); |
255 | if (!flag) | |
256 | wxModelessWindows.Append(this); | |
4bb6408c JS |
257 | } |
258 | ||
259 | wxDialog::~wxDialog() | |
260 | { | |
2e35f56f JS |
261 | if (m_mainWidget) |
262 | XtRemoveEventHandler((Widget) m_mainWidget, ExposureMask, FALSE, | |
263 | wxUniversalRepaintProc, (XtPointer) this); | |
dfe1eee3 | 264 | |
dfc54541 | 265 | m_modalShowing = FALSE; |
dfad0599 | 266 | if (!wxUSE_INVISIBLE_RESIZE && m_mainWidget) |
dfc54541 | 267 | { |
2d120f83 | 268 | XtUnmapWidget((Widget) m_mainWidget); |
dfc54541 | 269 | } |
dfe1eee3 | 270 | |
4bb6408c | 271 | wxTopLevelWindows.DeleteObject(this); |
dfe1eee3 | 272 | |
4bb6408c | 273 | if ( (GetWindowStyleFlag() & wxDIALOG_MODAL) != wxDIALOG_MODAL ) |
2d120f83 | 274 | wxModelessWindows.DeleteObject(this); |
dfe1eee3 | 275 | |
4bb6408c JS |
276 | // If this is the last top-level window, exit. |
277 | if (wxTheApp && (wxTopLevelWindows.Number() == 0)) | |
278 | { | |
2d120f83 | 279 | wxTheApp->SetTopWindow(NULL); |
dfe1eee3 | 280 | |
2d120f83 JS |
281 | if (wxTheApp->GetExitOnFrameDelete()) |
282 | { | |
283 | wxTheApp->ExitMainLoop(); | |
284 | } | |
4bb6408c | 285 | } |
dfe1eee3 | 286 | |
dfc54541 JS |
287 | // This event-flushing code used to be in wxWindow::PostDestroyChildren (wx_dialog.cpp) |
288 | // but I think this should work, if we destroy the children first. | |
289 | // Note that this might need to be done for wxFrame also. | |
290 | DestroyChildren(); | |
cba2db0c JS |
291 | |
292 | // The idea about doing it here is that if you have to remove the | |
293 | // XtDestroyWidget from ~wxWindow, at least top-level windows | |
294 | // will still be deleted (and destroy children implicitly). | |
295 | if (GetMainWidget()) | |
296 | { | |
297 | DetachWidget(GetMainWidget()); // Removes event handlers | |
298 | XtDestroyWidget((Widget) GetMainWidget()); | |
299 | SetMainWidget((WXWidget) NULL); | |
dfc54541 | 300 | } |
4bb6408c JS |
301 | } |
302 | ||
303 | // By default, pressing escape cancels the dialog | |
304 | void wxDialog::OnCharHook(wxKeyEvent& event) | |
305 | { | |
2d120f83 JS |
306 | if (event.m_keyCode == WXK_ESCAPE) |
307 | { | |
308 | // Behaviour changed in 2.0: we'll send a Cancel message | |
309 | // to the dialog instead of Close. | |
310 | wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); | |
311 | cancelEvent.SetEventObject( this ); | |
312 | GetEventHandler()->ProcessEvent(cancelEvent); | |
dfe1eee3 | 313 | |
2d120f83 JS |
314 | return; |
315 | } | |
316 | // We didn't process this event. | |
317 | event.Skip(); | |
4bb6408c JS |
318 | } |
319 | ||
320 | void wxDialog::Iconize(bool WXUNUSED(iconize)) | |
321 | { | |
2d120f83 JS |
322 | // Can't iconize a dialog in Motif, apparently |
323 | // TODO: try using the parent of m_mainShell. | |
324 | // XtVaSetValues((Widget) m_mainWidget, XmNiconic, iconize, NULL); | |
4bb6408c JS |
325 | } |
326 | ||
327 | bool wxDialog::IsIconized() const | |
328 | { | |
2d120f83 JS |
329 | /* |
330 | Boolean iconic; | |
331 | XtVaGetValues((Widget) m_mainWidget, XmNiconic, &iconic, NULL); | |
dfc54541 | 332 | |
2d120f83 JS |
333 | return iconic; |
334 | */ | |
4bb6408c JS |
335 | return FALSE; |
336 | } | |
337 | ||
bfc6fde4 | 338 | void wxDialog::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
4bb6408c | 339 | { |
dfc54541 | 340 | XtVaSetValues((Widget) m_mainWidget, XmNresizePolicy, XmRESIZE_ANY, NULL); |
bfc6fde4 | 341 | wxWindow::DoSetSize(x, y, width, height, sizeFlags); |
dfc54541 | 342 | XtVaSetValues((Widget) m_mainWidget, XmNresizePolicy, XmRESIZE_NONE, NULL); |
4bb6408c JS |
343 | } |
344 | ||
ad813b00 JS |
345 | void wxDialog::DoSetClientSize(int width, int height) |
346 | { | |
347 | wxWindow::SetSize(-1, -1, width, height); | |
348 | } | |
349 | ||
4bb6408c JS |
350 | void wxDialog::SetTitle(const wxString& title) |
351 | { | |
dfc54541 JS |
352 | m_dialogTitle = title; |
353 | if (!title.IsNull()) | |
354 | { | |
355 | XmString str = XmStringCreateSimple((char*) (const char*) title); | |
dfe1eee3 | 356 | XtVaSetValues((Widget) m_mainWidget, |
2d120f83 JS |
357 | XmNtitle, (char*) (const char*) title, |
358 | XmNdialogTitle, str, // Roberto Cocchi | |
359 | XmNiconName, (char*) (const char*) title, | |
360 | NULL); | |
dfc54541 JS |
361 | XmStringFree(str); |
362 | } | |
4bb6408c JS |
363 | } |
364 | ||
365 | wxString wxDialog::GetTitle() const | |
366 | { | |
2d120f83 | 367 | return m_dialogTitle; |
4bb6408c JS |
368 | } |
369 | ||
dfc54541 JS |
370 | void wxDialog::Raise() |
371 | { | |
372 | Window parent_window = XtWindow((Widget) m_mainWidget), | |
2d120f83 JS |
373 | next_parent = XtWindow((Widget) m_mainWidget), |
374 | root = RootWindowOfScreen(XtScreen((Widget) m_mainWidget)); | |
dfc54541 JS |
375 | // search for the parent that is child of ROOT, because the WM may |
376 | // reparent twice and notify only the next parent (like FVWM) | |
377 | while (next_parent != root) { | |
2d120f83 JS |
378 | Window *theChildren; unsigned int n; |
379 | parent_window = next_parent; | |
380 | XQueryTree(XtDisplay((Widget) m_mainWidget), parent_window, &root, | |
381 | &next_parent, &theChildren, &n); | |
382 | XFree(theChildren); // not needed | |
dfc54541 JS |
383 | } |
384 | XRaiseWindow(XtDisplay((Widget) m_mainWidget), parent_window); | |
385 | } | |
386 | ||
387 | void wxDialog::Lower() | |
388 | { | |
389 | Window parent_window = XtWindow((Widget) m_mainWidget), | |
2d120f83 JS |
390 | next_parent = XtWindow((Widget) m_mainWidget), |
391 | root = RootWindowOfScreen(XtScreen((Widget) m_mainWidget)); | |
dfc54541 JS |
392 | // search for the parent that is child of ROOT, because the WM may |
393 | // reparent twice and notify only the next parent (like FVWM) | |
394 | while (next_parent != root) { | |
2d120f83 JS |
395 | Window *theChildren; unsigned int n; |
396 | parent_window = next_parent; | |
397 | XQueryTree(XtDisplay((Widget) m_mainWidget), parent_window, &root, | |
398 | &next_parent, &theChildren, &n); | |
399 | XFree(theChildren); // not needed | |
dfc54541 JS |
400 | } |
401 | XLowerWindow(XtDisplay((Widget) m_mainWidget), parent_window); | |
402 | } | |
403 | ||
404 | bool wxDialog::Show(bool show) | |
405 | { | |
406 | m_isShown = show; | |
dfe1eee3 | 407 | |
dfc54541 JS |
408 | if (show) |
409 | { | |
dfad0599 | 410 | if (!wxUSE_INVISIBLE_RESIZE) |
2d120f83 | 411 | XtMapWidget(XtParent((Widget) m_mainWidget)); |
dfc54541 | 412 | else |
dfe1eee3 VZ |
413 | XtManageChild((Widget) m_mainWidget) ; |
414 | ||
dfc54541 | 415 | XRaiseWindow(XtDisplay((Widget) m_mainWidget), XtWindow((Widget) m_mainWidget)); |
dfe1eee3 | 416 | |
dfc54541 JS |
417 | } |
418 | else | |
419 | { | |
dfad0599 | 420 | if (!wxUSE_INVISIBLE_RESIZE) |
dfc54541 JS |
421 | XtUnmapWidget(XtParent((Widget) m_mainWidget)); |
422 | else | |
423 | XtUnmanageChild((Widget) m_mainWidget) ; | |
dfe1eee3 | 424 | |
2d120f83 JS |
425 | XFlush(XtDisplay((Widget) wxTheApp->GetTopLevelWidget())); |
426 | XSync(XtDisplay((Widget) wxTheApp->GetTopLevelWidget()), FALSE); | |
dfc54541 | 427 | } |
dfe1eee3 | 428 | |
dfc54541 JS |
429 | return TRUE; |
430 | } | |
431 | ||
432 | // Shows a dialog modally, returning a return code | |
4bb6408c JS |
433 | int wxDialog::ShowModal() |
434 | { | |
435 | m_windowStyle |= wxDIALOG_MODAL; | |
dfe1eee3 | 436 | |
dfc54541 | 437 | Show(TRUE); |
dfe1eee3 | 438 | |
dfc54541 JS |
439 | if (m_modalShowing) |
440 | return 0; | |
dfe1eee3 | 441 | |
dfc54541 | 442 | wxModalShowingStack.Insert((wxObject *)TRUE); |
dfe1eee3 | 443 | |
dfc54541 | 444 | m_modalShowing = TRUE; |
793f619f | 445 | XtAddGrab((Widget) m_mainWidget, TRUE, FALSE); |
dfe1eee3 | 446 | |
dfc54541 | 447 | XEvent event; |
dfe1eee3 | 448 | |
dfc54541 | 449 | // Loop until we signal that the dialog should be closed |
5dcf05ae | 450 | while ((wxModalShowingStack.Number() > 0) && ((int)(wxModalShowingStack.First()->Data()) != 0)) |
dfc54541 | 451 | { |
2d120f83 | 452 | // XtAppProcessEvent((XtAppContext) wxTheApp->GetAppContext(), XtIMAll); |
dfe1eee3 | 453 | |
8aa04e8b JS |
454 | XtAppNextEvent((XtAppContext) wxTheApp->GetAppContext(), &event); |
455 | wxTheApp->ProcessXEvent((WXEvent*) &event); | |
dfc54541 | 456 | } |
dfe1eee3 | 457 | |
dfc54541 JS |
458 | // Remove modal dialog flag from stack |
459 | wxNode *node = wxModalShowingStack.First(); | |
460 | if (node) | |
2d120f83 | 461 | delete node; |
dfe1eee3 | 462 | |
dfc54541 JS |
463 | // Now process all events in case they get sent to a destroyed dialog |
464 | XSync(XtDisplay((Widget) wxTheApp->GetTopLevelWidget()), FALSE); | |
465 | while (XtAppPending((XtAppContext) wxTheApp->GetAppContext())) | |
466 | { | |
467 | XFlush(XtDisplay((Widget) wxTheApp->GetTopLevelWidget())); | |
468 | XtAppNextEvent((XtAppContext) wxTheApp->GetAppContext(), &event); | |
dfe1eee3 | 469 | |
8aa04e8b | 470 | wxTheApp->ProcessXEvent((WXEvent*) &event); |
dfc54541 | 471 | } |
dfe1eee3 | 472 | |
dfc54541 JS |
473 | // TODO: is it safe to call this, if the dialog may have been deleted |
474 | // by now? Probably only if we're using delayed deletion of dialogs. | |
475 | return GetReturnCode(); | |
4bb6408c JS |
476 | } |
477 | ||
478 | void wxDialog::EndModal(int retCode) | |
479 | { | |
dfc54541 JS |
480 | if (!m_modalShowing) |
481 | return; | |
dfe1eee3 | 482 | |
dfc54541 | 483 | SetReturnCode(retCode); |
dfe1eee3 | 484 | |
88150e60 JS |
485 | // Strangely, we don't seem to need this now. |
486 | // XtRemoveGrab((Widget) m_mainWidget); | |
dfe1eee3 | 487 | |
dfc54541 | 488 | Show(FALSE); |
dfe1eee3 | 489 | |
dfc54541 | 490 | m_modalShowing = FALSE; |
dfe1eee3 | 491 | |
dfc54541 JS |
492 | wxNode *node = wxModalShowingStack.First(); |
493 | if (node) | |
2d120f83 | 494 | node->SetData((wxObject *)FALSE); |
4bb6408c JS |
495 | } |
496 | ||
497 | // Standard buttons | |
f9e02ac7 | 498 | void wxDialog::OnOK(wxCommandEvent& WXUNUSED(event)) |
4bb6408c | 499 | { |
2d120f83 JS |
500 | if ( Validate() && TransferDataFromWindow() ) |
501 | { | |
4bb6408c JS |
502 | if ( IsModal() ) |
503 | EndModal(wxID_OK); | |
504 | else | |
505 | { | |
2d120f83 JS |
506 | SetReturnCode(wxID_OK); |
507 | this->Show(FALSE); | |
4bb6408c | 508 | } |
2d120f83 | 509 | } |
4bb6408c JS |
510 | } |
511 | ||
f9e02ac7 | 512 | void wxDialog::OnApply(wxCommandEvent& WXUNUSED(event)) |
4bb6408c | 513 | { |
2d120f83 JS |
514 | if (Validate()) |
515 | TransferDataFromWindow(); | |
516 | // TODO probably need to disable the Apply button until things change again | |
4bb6408c JS |
517 | } |
518 | ||
f9e02ac7 | 519 | void wxDialog::OnCancel(wxCommandEvent& WXUNUSED(event)) |
4bb6408c JS |
520 | { |
521 | if ( IsModal() ) | |
522 | EndModal(wxID_CANCEL); | |
523 | else | |
524 | { | |
525 | SetReturnCode(wxID_CANCEL); | |
2d120f83 | 526 | this->Show(FALSE); |
4bb6408c JS |
527 | } |
528 | } | |
529 | ||
e3065973 | 530 | void wxDialog::OnCloseWindow(wxCloseEvent& event) |
4bb6408c | 531 | { |
e3065973 | 532 | // We'll send a Cancel message by default, |
4bb6408c | 533 | // which may close the dialog. |
e3065973 JS |
534 | // Check for looping if the Cancel event handler calls Close(). |
535 | ||
536 | // Note that if a cancel button and handler aren't present in the dialog, | |
537 | // nothing will happen when you close the dialog via the window manager, or | |
538 | // via Close(). | |
539 | // We wouldn't want to destroy the dialog by default, since the dialog may have been | |
540 | // created on the stack. | |
541 | // However, this does mean that calling dialog->Close() won't delete the dialog | |
542 | // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be | |
543 | // sure to destroy the dialog. | |
544 | // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog. | |
545 | ||
4bb6408c | 546 | static wxList closing; |
dfe1eee3 | 547 | |
4bb6408c | 548 | if ( closing.Member(this) ) |
e3065973 | 549 | return; |
dfe1eee3 | 550 | |
4bb6408c | 551 | closing.Append(this); |
dfe1eee3 | 552 | |
2d120f83 JS |
553 | wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL); |
554 | cancelEvent.SetEventObject( this ); | |
e3065973 | 555 | GetEventHandler()->ProcessEvent(cancelEvent); // This may close the dialog |
4bb6408c | 556 | |
e3065973 | 557 | closing.DeleteObject(this); |
4bb6408c JS |
558 | } |
559 | ||
d75638f8 RR |
560 | void wxDialog::OnPaint(wxPaintEvent &WXUNUSED(event)) |
561 | { | |
562 | // added for compatiblity only | |
563 | } | |
564 | ||
4bb6408c JS |
565 | // Destroy the window (delayed, if a managed window) |
566 | bool wxDialog::Destroy() | |
567 | { | |
2d120f83 JS |
568 | if (!wxPendingDelete.Member(this)) |
569 | wxPendingDelete.Append(this); | |
570 | return TRUE; | |
4bb6408c JS |
571 | } |
572 | ||
f9e02ac7 | 573 | void wxDialog::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event)) |
4bb6408c | 574 | { |
2d120f83 JS |
575 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE)); |
576 | Refresh(); | |
4bb6408c JS |
577 | } |
578 | ||
dfc54541 | 579 | // Handle a close event from the window manager |
dfe1eee3 | 580 | static void wxCloseDialogCallback( Widget WXUNUSED(widget), XtPointer client_data, |
2d120f83 | 581 | XmAnyCallbackStruct *WXUNUSED(cbs)) |
dfc54541 | 582 | { |
2d120f83 JS |
583 | wxDialog *dialog = (wxDialog *)client_data; |
584 | wxCloseEvent closeEvent(wxEVT_CLOSE_WINDOW, dialog->GetId()); | |
585 | closeEvent.SetEventObject(dialog); | |
dfe1eee3 | 586 | |
2d120f83 JS |
587 | // May delete the dialog (with delayed deletion) |
588 | dialog->GetEventHandler()->ProcessEvent(closeEvent); | |
dfc54541 JS |
589 | } |
590 | ||
dfe1eee3 VZ |
591 | void wxDialogBoxEventHandler(Widget wid, |
592 | XtPointer WXUNUSED(client_data), | |
593 | XEvent* event, | |
594 | Boolean* continueToDispatch) | |
2d120f83 | 595 | { |
dfe1eee3 | 596 | wxDialog *dialog = (wxDialog *)wxGetWindowFromTable(wid); |
2d120f83 | 597 | if (dialog) |
dfc54541 | 598 | { |
2d120f83 JS |
599 | wxMouseEvent wxevent(wxEVT_NULL); |
600 | if (wxTranslateMouseEvent(wxevent, dialog, wid, event)) | |
dfc54541 | 601 | { |
2d120f83 JS |
602 | wxevent.SetEventObject(dialog); |
603 | wxevent.SetId(dialog->GetId()); | |
604 | dialog->GetEventHandler()->ProcessEvent(wxevent); | |
dfc54541 JS |
605 | } |
606 | else | |
607 | { | |
2d120f83 JS |
608 | // An attempt to implement OnCharHook by calling OnCharHook first; |
609 | // if this returns TRUE, set continueToDispatch to False | |
610 | // (don't continue processing). | |
611 | // Otherwise set it to True and call OnChar. | |
c75e6695 | 612 | wxKeyEvent keyEvent(wxEVT_CHAR); |
2d120f83 JS |
613 | if (wxTranslateKeyEvent(keyEvent, dialog, wid, event)) |
614 | { | |
615 | keyEvent.SetEventObject(dialog); | |
616 | keyEvent.SetId(dialog->GetId()); | |
617 | keyEvent.SetEventType(wxEVT_CHAR_HOOK); | |
618 | if (dialog->GetEventHandler()->ProcessEvent(keyEvent)) | |
619 | { | |
620 | *continueToDispatch = False; | |
621 | return; | |
622 | } | |
623 | else | |
624 | { | |
a91b47e8 JS |
625 | // For simplicity, OnKeyDown is the same as OnChar |
626 | // TODO: filter modifier key presses from OnChar | |
627 | keyEvent.SetEventType(wxEVT_KEY_DOWN); | |
628 | ||
629 | // Only process OnChar if OnKeyDown didn't swallow it | |
630 | if (!dialog->GetEventHandler()->ProcessEvent (keyEvent)) | |
631 | { | |
632 | keyEvent.SetEventType(wxEVT_CHAR); | |
633 | dialog->GetEventHandler()->ProcessEvent(keyEvent); | |
dfe1eee3 | 634 | } |
2d120f83 JS |
635 | } |
636 | } | |
637 | } | |
dfc54541 | 638 | } |
2d120f83 | 639 | *continueToDispatch = True; |
dfc54541 JS |
640 | } |
641 | ||
f9e02ac7 | 642 | static void wxUnmapBulletinBoard(Widget WXUNUSED(dialog), wxDialog *WXUNUSED(client), XtPointer WXUNUSED(call) ) |
dfc54541 | 643 | { |
2d120f83 JS |
644 | /* This gets called when the dialog is being shown, which |
645 | * defeats modal showing. | |
646 | client->m_modalShowing = FALSE ; | |
647 | client->m_isShown = FALSE; | |
648 | */ | |
dfc54541 | 649 | } |
0d57be45 | 650 | |
94b49b93 | 651 | void wxDialog::ChangeFont(bool keepOriginalSize) |
0d57be45 | 652 | { |
94b49b93 | 653 | wxWindow::ChangeFont(keepOriginalSize); |
0d57be45 JS |
654 | } |
655 | ||
656 | void wxDialog::ChangeBackgroundColour() | |
657 | { | |
94b49b93 JS |
658 | if (GetMainWidget()) |
659 | DoChangeBackgroundColour(GetMainWidget(), m_backgroundColour); | |
0d57be45 JS |
660 | } |
661 | ||
662 | void wxDialog::ChangeForegroundColour() | |
663 | { | |
94b49b93 JS |
664 | if (GetMainWidget()) |
665 | DoChangeForegroundColour(GetMainWidget(), m_foregroundColour); | |
0d57be45 JS |
666 | } |
667 |