]> git.saurik.com Git - wxWidgets.git/blame - src/motif/dialog.cpp
fix build for borland 5.0
[wxWidgets.git] / src / motif / dialog.cpp
CommitLineData
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
bcd055ae
JJ
16#ifdef __VMS
17#define XtDisplay XTDISPLAY
18#define XtWindow XTWINDOW
19#define XtParent XTPARENT
20#define XtScreen XTSCREEN
21#endif
22
4bb6408c
JS
23#include "wx/dialog.h"
24#include "wx/utils.h"
4bb6408c
JS
25#include "wx/app.h"
26#include "wx/settings.h"
7e1bcfa8 27#include "wx/evtloop.h"
4bb6408c 28
338dd992
JJ
29#ifdef __VMS__
30#pragma message disable nosimpint
31#endif
dfc54541
JS
32#include <Xm/Xm.h>
33
34#include <X11/Shell.h>
35#if XmVersion >= 1002
36#include <Xm/XmAll.h>
37#endif
38#include <Xm/MwmUtil.h>
39#include <Xm/Label.h>
40#include <Xm/BulletinB.h>
41#include <Xm/Frame.h>
42#include <Xm/Text.h>
43#include <Xm/DialogS.h>
44#include <Xm/FileSB.h>
45#include <Xm/RowColumn.h>
46#include <Xm/LabelG.h>
47#include <Xm/AtomMgr.h>
48#if XmVersion > 1000
49#include <Xm/Protocols.h>
50#endif
338dd992
JJ
51#ifdef __VMS__
52#pragma message enable nosimpint
53#endif
dfc54541
JS
54
55#include "wx/motif/private.h"
56
dfc54541
JS
57// A stack of modal_showing flags, since we can't rely
58// on accessing wxDialog::m_modalShowing within
59// wxDialog::Show in case a callback has deleted the wxDialog.
7e1bcfa8 60// static wxList wxModalShowingStack;
dfc54541 61
4bb6408c
JS
62// Lists to keep track of windows, so we can disable/enable them
63// for modal dialogs
64wxList wxModalDialogs;
798a4529 65extern wxList wxModelessWindows; // Frames and modeless dialogs
4bb6408c
JS
66extern wxList wxPendingDelete;
67
47d67540 68#define wxUSE_INVISIBLE_RESIZE 1
dfc54541 69
798a4529 70IMPLEMENT_DYNAMIC_CLASS(wxDialog, wxTopLevelWindow)
4bb6408c 71
798a4529 72BEGIN_EVENT_TABLE(wxDialog, wxTopLevelWindow)
8e877c19
RR
73 EVT_BUTTON(wxID_OK, wxDialog::OnOK)
74 EVT_BUTTON(wxID_APPLY, wxDialog::OnApply)
75 EVT_BUTTON(wxID_CANCEL, wxDialog::OnCancel)
76 EVT_CHAR_HOOK(wxDialog::OnCharHook)
77 EVT_SYS_COLOUR_CHANGED(wxDialog::OnSysColourChanged)
78 EVT_CLOSE(wxDialog::OnCloseWindow)
4bb6408c
JS
79END_EVENT_TABLE()
80
4bb6408c
JS
81
82wxDialog::wxDialog()
83{
dfc54541 84 m_modalShowing = FALSE;
7e1bcfa8 85 m_eventLoop = NULL;
a756f210 86 m_backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
4bb6408c
JS
87}
88
89bool wxDialog::Create(wxWindow *parent, wxWindowID id,
2d120f83
JS
90 const wxString& title,
91 const wxPoint& pos,
92 const wxSize& size,
93 long style,
94 const wxString& name)
4bb6408c 95{
798a4529
MB
96 SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG);
97
98 if( !wxTopLevelWindow::Create( parent, id, title, pos, size, style,
99 name ) )
100 return FALSE;
101
dfc54541 102 m_modalShowing = FALSE;
7e1bcfa8 103 m_eventLoop = NULL;
dfe1eee3 104
a756f210 105 m_backgroundColour = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
0d57be45 106 m_foregroundColour = *wxBLACK;
dfe1eee3 107
798a4529 108 Widget dialogShell = (Widget) m_mainWidget;
dfc54541 109 Widget shell = XtParent(dialogShell) ;
798a4529
MB
110
111 SetTitle( title );
dfe1eee3 112
a756f210 113 m_font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
4b5f3fe6 114 ChangeFont(FALSE);
dfe1eee3 115
dfc54541 116 // Can't remember what this was about... but I think it's necessary.
dfad0599 117 if (wxUSE_INVISIBLE_RESIZE)
dfc54541 118 {
2d120f83
JS
119 if (pos.x > -1)
120 XtVaSetValues(dialogShell, XmNx, pos.x,
121 NULL);
122 if (pos.y > -1)
123 XtVaSetValues(dialogShell, XmNy, pos.y,
124 NULL);
dfe1eee3 125
2d120f83
JS
126 if (size.x > -1)
127 XtVaSetValues(dialogShell, XmNwidth, size.x, NULL);
128 if (size.y > -1)
129 XtVaSetValues(dialogShell, XmNheight, size.y, NULL);
dfc54541 130 }
dfe1eee3 131
dfc54541
JS
132 // Positioning of the dialog doesn't work properly unless the dialog
133 // is managed, so we manage without mapping to the screen.
134 // To show, we map the shell (actually it's parent).
dfad0599 135 if (!wxUSE_INVISIBLE_RESIZE)
dfc54541 136 XtVaSetValues(shell, XmNmappedWhenManaged, FALSE, NULL);
dfe1eee3 137
dfad0599 138 if (!wxUSE_INVISIBLE_RESIZE)
dfc54541
JS
139 {
140 XtManageChild(dialogShell);
141 SetSize(pos.x, pos.y, size.x, size.y);
142 }
143 XtAddEventHandler(dialogShell,ExposureMask,FALSE,
2e35f56f 144 wxUniversalRepaintProc, (XtPointer) this);
dfe1eee3 145
0d57be45 146 ChangeBackgroundColour();
dfe1eee3 147
dfc54541 148 return TRUE;
4bb6408c
JS
149}
150
798a4529
MB
151bool wxDialog::DoCreate( wxWindow* parent, wxWindowID id,
152 const wxString& title,
153 const wxPoint& pos,
154 const wxSize& size,
155 long style,
156 const wxString& name )
157{
158 Widget parentWidget = (Widget) 0;
159 if( parent )
160 parentWidget = (Widget) parent->GetTopWidget();
161 if( !parent )
162 parentWidget = (Widget) wxTheApp->GetTopLevelWidget();
163
164 wxASSERT_MSG( (parentWidget != (Widget) 0),
165 "Could not find a suitable parent shell for dialog." );
166
167 Arg args[2];
168 XtSetArg (args[0], XmNdefaultPosition, False);
169 XtSetArg (args[1], XmNautoUnmanage, False);
170 Widget dialogShell =
171 XmCreateBulletinBoardDialog( parentWidget, (char*)name.c_str(),
172 args, 2);
173 m_mainWidget = (WXWidget) dialogShell;
174
175 // We don't want margins, since there is enough elsewhere.
176 XtVaSetValues( dialogShell,
177 XmNmarginHeight, 0,
178 XmNmarginWidth, 0,
179 XmNresizePolicy, XmRESIZE_NONE,
180 NULL ) ;
181
182 XtTranslations ptr ;
183 XtOverrideTranslations(dialogShell,
184 ptr = XtParseTranslationTable("<Configure>: resize()"));
185 XtFree((char *)ptr);
186
187 XtRealizeWidget(dialogShell);
188
189 wxAddWindowToTable( (Widget)m_mainWidget, this );
190
191 return TRUE;
192}
193
4bb6408c
JS
194void wxDialog::SetModal(bool flag)
195{
dfc54541
JS
196 if ( flag )
197 m_windowStyle |= wxDIALOG_MODAL ;
198 else
199 if ( m_windowStyle & wxDIALOG_MODAL )
2d120f83 200 m_windowStyle -= wxDIALOG_MODAL ;
dfe1eee3 201
2d120f83
JS
202 wxModelessWindows.DeleteObject(this);
203 if (!flag)
204 wxModelessWindows.Append(this);
4bb6408c
JS
205}
206
207wxDialog::~wxDialog()
208{
3ab377bd 209 m_isBeingDeleted = TRUE;
7e1bcfa8 210 delete m_eventLoop;
798a4529 211
2e35f56f 212 if (m_mainWidget)
798a4529
MB
213 {
214 XtRemoveEventHandler((Widget) m_mainWidget, ExposureMask, FALSE,
215 wxUniversalRepaintProc, (XtPointer) this);
216 }
dfe1eee3 217
dfc54541 218 m_modalShowing = FALSE;
dfad0599 219 if (!wxUSE_INVISIBLE_RESIZE && m_mainWidget)
dfc54541 220 {
2d120f83 221 XtUnmapWidget((Widget) m_mainWidget);
dfc54541 222 }
798a4529 223}
dfe1eee3 224
798a4529
MB
225void wxDialog::DoDestroy()
226{
227 if( m_mainWidget )
cba2db0c 228 {
798a4529
MB
229 wxDeleteWindowFromTable( (Widget)m_mainWidget );
230 XtDestroyWidget( (Widget)m_mainWidget );
dfc54541 231 }
4bb6408c
JS
232}
233
234// By default, pressing escape cancels the dialog
235void wxDialog::OnCharHook(wxKeyEvent& event)
236{
2d120f83
JS
237 if (event.m_keyCode == WXK_ESCAPE)
238 {
239 // Behaviour changed in 2.0: we'll send a Cancel message
240 // to the dialog instead of Close.
241 wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
242 cancelEvent.SetEventObject( this );
243 GetEventHandler()->ProcessEvent(cancelEvent);
dfe1eee3 244
2d120f83
JS
245 return;
246 }
247 // We didn't process this event.
248 event.Skip();
4bb6408c
JS
249}
250
bfc6fde4 251void wxDialog::DoSetSize(int x, int y, int width, int height, int sizeFlags)
4bb6408c 252{
dfc54541 253 XtVaSetValues((Widget) m_mainWidget, XmNresizePolicy, XmRESIZE_ANY, NULL);
bfc6fde4 254 wxWindow::DoSetSize(x, y, width, height, sizeFlags);
dfc54541 255 XtVaSetValues((Widget) m_mainWidget, XmNresizePolicy, XmRESIZE_NONE, NULL);
4bb6408c
JS
256}
257
ad813b00
JS
258void wxDialog::DoSetClientSize(int width, int height)
259{
260 wxWindow::SetSize(-1, -1, width, height);
261}
262
4bb6408c
JS
263void wxDialog::SetTitle(const wxString& title)
264{
798a4529 265 wxTopLevelWindow::SetTitle( title );
4bb6408c 266
798a4529
MB
267 if( !title.empty() )
268 {
269 wxXmString str( title );
270 XtVaSetValues( (Widget)m_mainWidget,
271 XmNtitle, title.c_str(),
272 XmNdialogTitle, str(), // Roberto Cocchi
273 XmNiconName, title.c_str(),
274 NULL );
dfc54541 275 }
dfc54541
JS
276}
277
798a4529 278bool wxDialog::Show( bool show )
dfc54541 279{
798a4529
MB
280 if( !wxTopLevelWindowMotif::Show( show ) )
281 return FALSE;
dfc54541 282
dfc54541 283 m_isShown = show;
dfe1eee3 284
dfc54541
JS
285 if (show)
286 {
dfad0599 287 if (!wxUSE_INVISIBLE_RESIZE)
2d120f83 288 XtMapWidget(XtParent((Widget) m_mainWidget));
dfc54541 289 else
798a4529 290 XtManageChild((Widget)m_mainWidget) ;
dfe1eee3 291
798a4529
MB
292 XRaiseWindow( XtDisplay( (Widget)m_mainWidget ),
293 XtWindow( (Widget)m_mainWidget) );
dfe1eee3 294
dfc54541
JS
295 }
296 else
297 {
dfad0599 298 if (!wxUSE_INVISIBLE_RESIZE)
dfc54541
JS
299 XtUnmapWidget(XtParent((Widget) m_mainWidget));
300 else
798a4529 301 XtUnmanageChild((Widget)m_mainWidget) ;
dfe1eee3 302
2d120f83
JS
303 XFlush(XtDisplay((Widget) wxTheApp->GetTopLevelWidget()));
304 XSync(XtDisplay((Widget) wxTheApp->GetTopLevelWidget()), FALSE);
dfc54541 305 }
dfe1eee3 306
dfc54541
JS
307 return TRUE;
308}
309
310// Shows a dialog modally, returning a return code
4bb6408c
JS
311int wxDialog::ShowModal()
312{
313 m_windowStyle |= wxDIALOG_MODAL;
dfe1eee3 314
dfc54541 315 Show(TRUE);
dfe1eee3 316
dfc54541
JS
317 if (m_modalShowing)
318 return 0;
7e1bcfa8 319 m_eventLoop = new wxEventLoop;
dfe1eee3 320
dfc54541 321 m_modalShowing = TRUE;
793f619f 322 XtAddGrab((Widget) m_mainWidget, TRUE, FALSE);
dfe1eee3 323
7e1bcfa8 324 m_eventLoop->Run();
dfe1eee3 325
dfc54541
JS
326 // Now process all events in case they get sent to a destroyed dialog
327 XSync(XtDisplay((Widget) wxTheApp->GetTopLevelWidget()), FALSE);
7e1bcfa8 328 while (m_eventLoop->Pending())
dfc54541 329 {
3d870472 330 XFlush(XtDisplay((Widget) wxTheApp->GetTopLevelWidget()));
7e1bcfa8 331 m_eventLoop->Dispatch();
dfc54541 332 }
dfe1eee3 333
7e1bcfa8
MB
334 delete m_eventLoop;
335 m_eventLoop = NULL;
336
dfc54541
JS
337 // TODO: is it safe to call this, if the dialog may have been deleted
338 // by now? Probably only if we're using delayed deletion of dialogs.
339 return GetReturnCode();
4bb6408c
JS
340}
341
342void wxDialog::EndModal(int retCode)
343{
dfc54541
JS
344 if (!m_modalShowing)
345 return;
dfe1eee3 346
dfc54541 347 SetReturnCode(retCode);
dfe1eee3 348
88150e60
JS
349 // Strangely, we don't seem to need this now.
350 // XtRemoveGrab((Widget) m_mainWidget);
dfe1eee3 351
dfc54541 352 Show(FALSE);
dfe1eee3 353
dfc54541 354 m_modalShowing = FALSE;
7e1bcfa8 355 m_eventLoop->Exit();
4bb6408c
JS
356}
357
358// Standard buttons
f9e02ac7 359void wxDialog::OnOK(wxCommandEvent& WXUNUSED(event))
4bb6408c 360{
2d120f83
JS
361 if ( Validate() && TransferDataFromWindow() )
362 {
4bb6408c
JS
363 if ( IsModal() )
364 EndModal(wxID_OK);
365 else
366 {
2d120f83
JS
367 SetReturnCode(wxID_OK);
368 this->Show(FALSE);
4bb6408c 369 }
2d120f83 370 }
4bb6408c
JS
371}
372
f9e02ac7 373void wxDialog::OnApply(wxCommandEvent& WXUNUSED(event))
4bb6408c 374{
2d120f83
JS
375 if (Validate())
376 TransferDataFromWindow();
377 // TODO probably need to disable the Apply button until things change again
4bb6408c
JS
378}
379
f9e02ac7 380void wxDialog::OnCancel(wxCommandEvent& WXUNUSED(event))
4bb6408c
JS
381{
382 if ( IsModal() )
383 EndModal(wxID_CANCEL);
384 else
385 {
386 SetReturnCode(wxID_CANCEL);
2d120f83 387 this->Show(FALSE);
4bb6408c
JS
388 }
389}
390
af111fc3 391void wxDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
4bb6408c 392{
e3065973 393 // We'll send a Cancel message by default,
4bb6408c 394 // which may close the dialog.
e3065973
JS
395 // Check for looping if the Cancel event handler calls Close().
396
397 // Note that if a cancel button and handler aren't present in the dialog,
398 // nothing will happen when you close the dialog via the window manager, or
399 // via Close().
400 // We wouldn't want to destroy the dialog by default, since the dialog may have been
401 // created on the stack.
402 // However, this does mean that calling dialog->Close() won't delete the dialog
403 // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be
404 // sure to destroy the dialog.
405 // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog.
406
4bb6408c 407 static wxList closing;
dfe1eee3 408
4bb6408c 409 if ( closing.Member(this) )
e3065973 410 return;
dfe1eee3 411
4bb6408c 412 closing.Append(this);
dfe1eee3 413
2d120f83
JS
414 wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
415 cancelEvent.SetEventObject( this );
e3065973 416 GetEventHandler()->ProcessEvent(cancelEvent); // This may close the dialog
4bb6408c 417
e3065973 418 closing.DeleteObject(this);
4bb6408c
JS
419}
420
421// Destroy the window (delayed, if a managed window)
422bool wxDialog::Destroy()
423{
2d120f83
JS
424 if (!wxPendingDelete.Member(this))
425 wxPendingDelete.Append(this);
426 return TRUE;
4bb6408c
JS
427}
428
f9e02ac7 429void wxDialog::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event))
4bb6408c 430{
a756f210 431 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
2d120f83 432 Refresh();
4bb6408c
JS
433}
434
94b49b93 435void wxDialog::ChangeFont(bool keepOriginalSize)
0d57be45 436{
94b49b93 437 wxWindow::ChangeFont(keepOriginalSize);
0d57be45
JS
438}
439
440void wxDialog::ChangeBackgroundColour()
441{
94b49b93
JS
442 if (GetMainWidget())
443 DoChangeBackgroundColour(GetMainWidget(), m_backgroundColour);
0d57be45
JS
444}
445
446void wxDialog::ChangeForegroundColour()
447{
94b49b93
JS
448 if (GetMainWidget())
449 DoChangeForegroundColour(GetMainWidget(), m_foregroundColour);
0d57be45 450}