1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDialog class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "dialog.h"
16 #include "wx/dialog.h"
20 #include "wx/settings.h"
23 #pragma message disable nosimpint
27 #include <X11/Shell.h>
31 #include <Xm/MwmUtil.h>
33 #include <Xm/BulletinB.h>
36 #include <Xm/DialogS.h>
37 #include <Xm/FileSB.h>
38 #include <Xm/RowColumn.h>
39 #include <Xm/LabelG.h>
40 #include <Xm/AtomMgr.h>
42 #include <Xm/Protocols.h>
45 #pragma message enable nosimpint
48 #include "wx/motif/private.h"
50 static void wxCloseDialogCallback(Widget widget
, XtPointer client_data
, XmAnyCallbackStruct
*cbs
);
51 static void wxDialogBoxEventHandler (Widget wid
,
52 XtPointer client_data
,
54 Boolean
*continueToDispatch
);
56 static void wxUnmapBulletinBoard(Widget dialog
, wxDialog
*client
,XtPointer call
);
58 // A stack of modal_showing flags, since we can't rely
59 // on accessing wxDialog::m_modalShowing within
60 // wxDialog::Show in case a callback has deleted the wxDialog.
61 static wxList wxModalShowingStack
;
63 // Lists to keep track of windows, so we can disable/enable them
65 wxList wxModalDialogs
;
66 wxList wxModelessWindows
; // Frames and modeless dialogs
67 extern wxList wxPendingDelete
;
69 #define wxUSE_INVISIBLE_RESIZE 1
71 IMPLEMENT_DYNAMIC_CLASS(wxDialog
, wxPanel
)
73 BEGIN_EVENT_TABLE(wxDialog
, wxPanel
)
74 EVT_SIZE(wxDialog::OnSize
)
75 EVT_BUTTON(wxID_OK
, wxDialog::OnOK
)
76 EVT_BUTTON(wxID_APPLY
, wxDialog::OnApply
)
77 EVT_BUTTON(wxID_CANCEL
, wxDialog::OnCancel
)
78 EVT_CHAR_HOOK(wxDialog::OnCharHook
)
79 EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged
)
80 EVT_CLOSE(wxDialog::OnCloseWindow
)
86 m_modalShowing
= FALSE
;
87 m_backgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
);
90 bool wxDialog::Create(wxWindow
*parent
, wxWindowID id
,
91 const wxString
& title
,
97 m_windowStyle
= style
;
98 m_modalShowing
= FALSE
;
99 m_dialogTitle
= title
;
101 m_backgroundColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
);
102 m_foregroundColour
= *wxBLACK
;
107 wxTopLevelWindows
.Append(this);
109 if (parent
) parent
->AddChild(this);
112 m_windowId
= (int)NewControlId();
116 Widget parentWidget
= (Widget
) 0;
118 parentWidget
= (Widget
) parent
->GetTopWidget();
120 parentWidget
= (Widget
) wxTheApp
->GetTopLevelWidget();
122 wxASSERT_MSG( (parentWidget
!= (Widget
) 0), "Could not find a suitable parent shell for dialog." );
125 XtSetArg (args
[0], XmNdefaultPosition
, False
);
126 XtSetArg (args
[1], XmNautoUnmanage
, False
);
127 Widget dialogShell
= XmCreateBulletinBoardDialog(parentWidget
, (char*) (const char*) name
, args
, 2);
128 m_mainWidget
= (WXWidget
) dialogShell
;
130 // We don't want margins, since there is enough elsewhere.
131 XtVaSetValues(dialogShell
,
134 XmNresizePolicy
, XmRESIZE_NONE
,
137 Widget shell
= XtParent(dialogShell
) ;
140 XmString str
= XmStringCreateSimple((char*) (const char*)title
);
141 XtVaSetValues(dialogShell
,
147 m_font
= wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
);
150 wxAddWindowToTable(dialogShell
, this);
152 // Intercept CLOSE messages from the window manager
153 Atom WM_DELETE_WINDOW
= XmInternAtom(XtDisplay(shell
), "WM_DELETE_WINDOW", False
);
155 /* Remove and add WM_DELETE_WINDOW so ours is only handler */
156 /* Why do we have to do this for wxDialog, but not wxFrame? */
157 XmRemoveWMProtocols(shell
, &WM_DELETE_WINDOW
, 1);
158 XmAddWMProtocols(shell
, &WM_DELETE_WINDOW
, 1);
159 XmActivateWMProtocol(shell
, WM_DELETE_WINDOW
);
161 // Modified Steve Hammes for Motif 2.0
162 #if (XmREVISION > 1 || XmVERSION > 1)
163 XmAddWMProtocolCallback(shell
, WM_DELETE_WINDOW
, (XtCallbackProc
) wxCloseDialogCallback
, (XtPointer
)this);
164 #elif XmREVISION == 1
165 XmAddWMProtocolCallback(shell
, WM_DELETE_WINDOW
, (XtCallbackProc
) wxCloseDialogCallback
, (caddr_t
)this);
167 XmAddWMProtocolCallback(shell
, WM_DELETE_WINDOW
, (void (*)())wxCloseDialogCallback
, (caddr_t
)this);
171 XtOverrideTranslations(dialogShell
,
172 ptr
= XtParseTranslationTable("<Configure>: resize()"));
175 // Can't remember what this was about... but I think it's necessary.
177 if (wxUSE_INVISIBLE_RESIZE
)
180 XtVaSetValues(dialogShell
, XmNx
, pos
.x
,
183 XtVaSetValues(dialogShell
, XmNy
, pos
.y
,
187 XtVaSetValues(dialogShell
, XmNwidth
, size
.x
, NULL
);
189 XtVaSetValues(dialogShell
, XmNheight
, size
.y
, NULL
);
192 // This patch come from Torsten Liermann lier@lier1.muc.de
193 if (XmIsMotifWMRunning(shell
))
196 if (m_windowStyle
& wxRESIZE_BORDER
)
197 decor
|= MWM_DECOR_RESIZEH
;
198 if (m_windowStyle
& wxSYSTEM_MENU
)
199 decor
|= MWM_DECOR_MENU
;
200 if ((m_windowStyle
& wxCAPTION
) ||
201 (m_windowStyle
& wxTINY_CAPTION_HORIZ
) ||
202 (m_windowStyle
& wxTINY_CAPTION_VERT
))
203 decor
|= MWM_DECOR_TITLE
;
204 if (m_windowStyle
& wxTHICK_FRAME
)
205 decor
|= MWM_DECOR_BORDER
;
206 if (m_windowStyle
& wxMINIMIZE_BOX
)
207 decor
|= MWM_DECOR_MINIMIZE
;
208 if (m_windowStyle
& wxMAXIMIZE_BOX
)
209 decor
|= MWM_DECOR_MAXIMIZE
;
211 XtVaSetValues(shell
,XmNmwmDecorations
,decor
,NULL
) ;
213 // This allows non-Motif window managers to support at least the
214 // no-decorations case.
217 if ((m_windowStyle
& wxCAPTION
) != wxCAPTION
)
218 XtVaSetValues((Widget
) shell
,XmNoverrideRedirect
,TRUE
,NULL
);
221 XtRealizeWidget(dialogShell
);
223 XtAddCallback(dialogShell
,XmNunmapCallback
,
224 (XtCallbackProc
)wxUnmapBulletinBoard
,this) ;
226 // Positioning of the dialog doesn't work properly unless the dialog
227 // is managed, so we manage without mapping to the screen.
228 // To show, we map the shell (actually it's parent).
229 if (!wxUSE_INVISIBLE_RESIZE
)
230 XtVaSetValues(shell
, XmNmappedWhenManaged
, FALSE
, NULL
);
232 if (!wxUSE_INVISIBLE_RESIZE
)
234 XtManageChild(dialogShell
);
235 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
237 XtAddEventHandler(dialogShell
,ExposureMask
,FALSE
,
238 wxUniversalRepaintProc
, (XtPointer
) this);
240 XtAddEventHandler(dialogShell
,
241 ButtonPressMask
| ButtonReleaseMask
| PointerMotionMask
| KeyPressMask
,
243 wxDialogBoxEventHandler
,
246 ChangeBackgroundColour();
251 void wxDialog::SetModal(bool flag
)
254 m_windowStyle
|= wxDIALOG_MODAL
;
256 if ( m_windowStyle
& wxDIALOG_MODAL
)
257 m_windowStyle
-= wxDIALOG_MODAL
;
259 wxModelessWindows
.DeleteObject(this);
261 wxModelessWindows
.Append(this);
264 wxDialog::~wxDialog()
266 m_isBeingDeleted
= TRUE
;
269 XtRemoveEventHandler((Widget
) m_mainWidget
, ExposureMask
, FALSE
,
270 wxUniversalRepaintProc
, (XtPointer
) this);
272 m_modalShowing
= FALSE
;
273 if (!wxUSE_INVISIBLE_RESIZE
&& m_mainWidget
)
275 XtUnmapWidget((Widget
) m_mainWidget
);
278 wxTopLevelWindows
.DeleteObject(this);
280 if ( (GetWindowStyleFlag() & wxDIALOG_MODAL
) != wxDIALOG_MODAL
)
281 wxModelessWindows
.DeleteObject(this);
283 // If this is the last top-level window, exit.
284 if (wxTheApp
&& (wxTopLevelWindows
.Number() == 0))
286 wxTheApp
->SetTopWindow(NULL
);
288 if (wxTheApp
->GetExitOnFrameDelete())
290 wxTheApp
->ExitMainLoop();
294 // This event-flushing code used to be in wxWindow::PostDestroyChildren (wx_dialog.cpp)
295 // but I think this should work, if we destroy the children first.
296 // Note that this might need to be done for wxFrame also.
299 // The idea about doing it here is that if you have to remove the
300 // XtDestroyWidget from ~wxWindow, at least top-level windows
301 // will still be deleted (and destroy children implicitly).
304 DetachWidget(GetMainWidget()); // Removes event handlers
305 XtDestroyWidget((Widget
) GetMainWidget());
306 SetMainWidget((WXWidget
) NULL
);
310 // By default, pressing escape cancels the dialog
311 void wxDialog::OnCharHook(wxKeyEvent
& event
)
313 if (event
.m_keyCode
== WXK_ESCAPE
)
315 // Behaviour changed in 2.0: we'll send a Cancel message
316 // to the dialog instead of Close.
317 wxCommandEvent
cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
318 cancelEvent
.SetEventObject( this );
319 GetEventHandler()->ProcessEvent(cancelEvent
);
323 // We didn't process this event.
327 void wxDialog::Iconize(bool WXUNUSED(iconize
))
329 // Can't iconize a dialog in Motif, apparently
330 // TODO: try using the parent of m_mainShell.
331 // XtVaSetValues((Widget) m_mainWidget, XmNiconic, iconize, NULL);
334 // Default resizing behaviour - if only ONE subwindow,
335 // resize to client rectangle size
336 void wxDialog::OnSize(wxSizeEvent
& WXUNUSED(event
))
338 // if we're using constraints - do use them
339 #if wxUSE_CONSTRAINTS
340 if ( GetAutoLayout() ) {
346 // do we have _exactly_ one child?
347 wxWindow
*child
= NULL
;
348 for ( wxNode
*node
= GetChildren().First(); node
; node
= node
->Next() )
350 wxWindow
*win
= (wxWindow
*)node
->Data();
351 if ( !win
->IsKindOf(CLASSINFO(wxFrame
)) &&
352 !win
->IsKindOf(CLASSINFO(wxDialog
)) )
355 return; // it's our second subwindow - nothing to do
361 // we have exactly one child - set it's size to fill the whole frame
362 int clientW
, clientH
;
363 GetClientSize(&clientW
, &clientH
);
368 child
->SetSize(x
, y
, clientW
, clientH
);
373 bool wxDialog::IsIconized() const
377 XtVaGetValues((Widget) m_mainWidget, XmNiconic, &iconic, NULL);
384 void wxDialog::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
386 XtVaSetValues((Widget
) m_mainWidget
, XmNresizePolicy
, XmRESIZE_ANY
, NULL
);
387 wxWindow::DoSetSize(x
, y
, width
, height
, sizeFlags
);
388 XtVaSetValues((Widget
) m_mainWidget
, XmNresizePolicy
, XmRESIZE_NONE
, NULL
);
391 void wxDialog::DoSetClientSize(int width
, int height
)
393 wxWindow::SetSize(-1, -1, width
, height
);
396 void wxDialog::SetTitle(const wxString
& title
)
398 m_dialogTitle
= title
;
401 XmString str
= XmStringCreateSimple((char*) (const char*) title
);
402 XtVaSetValues((Widget
) m_mainWidget
,
403 XmNtitle
, (char*) (const char*) title
,
404 XmNdialogTitle
, str
, // Roberto Cocchi
405 XmNiconName
, (char*) (const char*) title
,
411 wxString
wxDialog::GetTitle() const
413 return m_dialogTitle
;
416 void wxDialog::Raise()
418 Window parent_window
= XtWindow((Widget
) m_mainWidget
),
419 next_parent
= XtWindow((Widget
) m_mainWidget
),
420 root
= RootWindowOfScreen(XtScreen((Widget
) m_mainWidget
));
421 // search for the parent that is child of ROOT, because the WM may
422 // reparent twice and notify only the next parent (like FVWM)
423 while (next_parent
!= root
) {
424 Window
*theChildren
; unsigned int n
;
425 parent_window
= next_parent
;
426 XQueryTree(XtDisplay((Widget
) m_mainWidget
), parent_window
, &root
,
427 &next_parent
, &theChildren
, &n
);
428 XFree(theChildren
); // not needed
430 XRaiseWindow(XtDisplay((Widget
) m_mainWidget
), parent_window
);
433 void wxDialog::Lower()
435 Window parent_window
= XtWindow((Widget
) m_mainWidget
),
436 next_parent
= XtWindow((Widget
) m_mainWidget
),
437 root
= RootWindowOfScreen(XtScreen((Widget
) m_mainWidget
));
438 // search for the parent that is child of ROOT, because the WM may
439 // reparent twice and notify only the next parent (like FVWM)
440 while (next_parent
!= root
) {
441 Window
*theChildren
; unsigned int n
;
442 parent_window
= next_parent
;
443 XQueryTree(XtDisplay((Widget
) m_mainWidget
), parent_window
, &root
,
444 &next_parent
, &theChildren
, &n
);
445 XFree(theChildren
); // not needed
447 XLowerWindow(XtDisplay((Widget
) m_mainWidget
), parent_window
);
450 bool wxDialog::Show(bool show
)
456 if (!wxUSE_INVISIBLE_RESIZE
)
457 XtMapWidget(XtParent((Widget
) m_mainWidget
));
459 XtManageChild((Widget
) m_mainWidget
) ;
461 XRaiseWindow(XtDisplay((Widget
) m_mainWidget
), XtWindow((Widget
) m_mainWidget
));
466 if (!wxUSE_INVISIBLE_RESIZE
)
467 XtUnmapWidget(XtParent((Widget
) m_mainWidget
));
469 XtUnmanageChild((Widget
) m_mainWidget
) ;
471 XFlush(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()));
472 XSync(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()), FALSE
);
478 // Shows a dialog modally, returning a return code
479 int wxDialog::ShowModal()
481 m_windowStyle
|= wxDIALOG_MODAL
;
488 wxModalShowingStack
.Insert((wxObject
*)TRUE
);
490 m_modalShowing
= TRUE
;
491 XtAddGrab((Widget
) m_mainWidget
, TRUE
, FALSE
);
495 // Loop until we signal that the dialog should be closed
496 while ((wxModalShowingStack
.Number() > 0) && ((int)(wxModalShowingStack
.First()->Data()) != 0))
498 // XtAppProcessEvent((XtAppContext) wxTheApp->GetAppContext(), XtIMAll);
500 XtAppNextEvent((XtAppContext
) wxTheApp
->GetAppContext(), &event
);
501 wxTheApp
->ProcessXEvent((WXEvent
*) &event
);
504 // Remove modal dialog flag from stack
505 wxNode
*node
= wxModalShowingStack
.First();
509 // Now process all events in case they get sent to a destroyed dialog
510 XSync(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()), FALSE
);
511 while (XtAppPending((XtAppContext
) wxTheApp
->GetAppContext()))
513 XFlush(XtDisplay((Widget
) wxTheApp
->GetTopLevelWidget()));
514 XtAppNextEvent((XtAppContext
) wxTheApp
->GetAppContext(), &event
);
516 wxTheApp
->ProcessXEvent((WXEvent
*) &event
);
519 // TODO: is it safe to call this, if the dialog may have been deleted
520 // by now? Probably only if we're using delayed deletion of dialogs.
521 return GetReturnCode();
524 void wxDialog::EndModal(int retCode
)
529 SetReturnCode(retCode
);
531 // Strangely, we don't seem to need this now.
532 // XtRemoveGrab((Widget) m_mainWidget);
536 m_modalShowing
= FALSE
;
538 wxNode
*node
= wxModalShowingStack
.First();
540 node
->SetData((wxObject
*)FALSE
);
544 void wxDialog::OnOK(wxCommandEvent
& WXUNUSED(event
))
546 if ( Validate() && TransferDataFromWindow() )
552 SetReturnCode(wxID_OK
);
558 void wxDialog::OnApply(wxCommandEvent
& WXUNUSED(event
))
561 TransferDataFromWindow();
562 // TODO probably need to disable the Apply button until things change again
565 void wxDialog::OnCancel(wxCommandEvent
& WXUNUSED(event
))
568 EndModal(wxID_CANCEL
);
571 SetReturnCode(wxID_CANCEL
);
576 void wxDialog::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
578 // We'll send a Cancel message by default,
579 // which may close the dialog.
580 // Check for looping if the Cancel event handler calls Close().
582 // Note that if a cancel button and handler aren't present in the dialog,
583 // nothing will happen when you close the dialog via the window manager, or
585 // We wouldn't want to destroy the dialog by default, since the dialog may have been
586 // created on the stack.
587 // However, this does mean that calling dialog->Close() won't delete the dialog
588 // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be
589 // sure to destroy the dialog.
590 // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog.
592 static wxList closing
;
594 if ( closing
.Member(this) )
597 closing
.Append(this);
599 wxCommandEvent
cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
600 cancelEvent
.SetEventObject( this );
601 GetEventHandler()->ProcessEvent(cancelEvent
); // This may close the dialog
603 closing
.DeleteObject(this);
606 void wxDialog::OnPaint(wxPaintEvent
&WXUNUSED(event
))
608 // added for compatiblity only
611 // Destroy the window (delayed, if a managed window)
612 bool wxDialog::Destroy()
614 if (!wxPendingDelete
.Member(this))
615 wxPendingDelete
.Append(this);
619 void wxDialog::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
621 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
625 // Handle a close event from the window manager
626 static void wxCloseDialogCallback( Widget
WXUNUSED(widget
), XtPointer client_data
,
627 XmAnyCallbackStruct
*WXUNUSED(cbs
))
629 wxDialog
*dialog
= (wxDialog
*)client_data
;
630 wxCloseEvent
closeEvent(wxEVT_CLOSE_WINDOW
, dialog
->GetId());
631 closeEvent
.SetEventObject(dialog
);
633 // May delete the dialog (with delayed deletion)
634 dialog
->GetEventHandler()->ProcessEvent(closeEvent
);
637 void wxDialogBoxEventHandler(Widget wid
,
638 XtPointer
WXUNUSED(client_data
),
640 Boolean
* continueToDispatch
)
642 wxDialog
*dialog
= (wxDialog
*)wxGetWindowFromTable(wid
);
645 wxMouseEvent
wxevent(wxEVT_NULL
);
646 if (wxTranslateMouseEvent(wxevent
, dialog
, wid
, event
))
648 wxevent
.SetEventObject(dialog
);
649 wxevent
.SetId(dialog
->GetId());
650 dialog
->GetEventHandler()->ProcessEvent(wxevent
);
654 // An attempt to implement OnCharHook by calling OnCharHook first;
655 // if this returns TRUE, set continueToDispatch to False
656 // (don't continue processing).
657 // Otherwise set it to True and call OnChar.
658 wxKeyEvent
keyEvent(wxEVT_CHAR
);
659 if (wxTranslateKeyEvent(keyEvent
, dialog
, wid
, event
))
661 keyEvent
.SetEventObject(dialog
);
662 keyEvent
.SetId(dialog
->GetId());
663 keyEvent
.SetEventType(wxEVT_CHAR_HOOK
);
664 if (dialog
->GetEventHandler()->ProcessEvent(keyEvent
))
666 *continueToDispatch
= False
;
671 // For simplicity, OnKeyDown is the same as OnChar
672 // TODO: filter modifier key presses from OnChar
673 keyEvent
.SetEventType(wxEVT_KEY_DOWN
);
675 // Only process OnChar if OnKeyDown didn't swallow it
676 if (!dialog
->GetEventHandler()->ProcessEvent (keyEvent
))
678 keyEvent
.SetEventType(wxEVT_CHAR
);
679 dialog
->GetEventHandler()->ProcessEvent(keyEvent
);
685 *continueToDispatch
= True
;
688 static void wxUnmapBulletinBoard(Widget
WXUNUSED(dialog
), wxDialog
*WXUNUSED(client
), XtPointer
WXUNUSED(call
) )
690 /* This gets called when the dialog is being shown, which
691 * defeats modal showing.
692 client->m_modalShowing = FALSE ;
693 client->m_isShown = FALSE;
697 void wxDialog::ChangeFont(bool keepOriginalSize
)
699 wxWindow::ChangeFont(keepOriginalSize
);
702 void wxDialog::ChangeBackgroundColour()
705 DoChangeBackgroundColour(GetMainWidget(), m_backgroundColour
);
708 void wxDialog::ChangeForegroundColour()
711 DoChangeForegroundColour(GetMainWidget(), m_foregroundColour
);