]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/dialog.cpp
Move code removing "-psn_xxx" command line arguments to common code.
[wxWidgets.git] / src / gtk1 / dialog.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
670f9935 2// Name: src/gtk1/dialog.cpp
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
01111366 5// Copyright: (c) 1998 Robert Roebling
65571936 6// Licence: wxWindows licence
c801d85f
KB
7/////////////////////////////////////////////////////////////////////////////
8
14f355c2
VS
9// For compilers that support precompilation, includes "wx.h".
10#include "wx/wxprec.h"
11
c801d85f 12#include "wx/dialog.h"
670f9935
WS
13
14#ifndef WX_PRECOMP
15 #include "wx/app.h"
76b49cf4 16 #include "wx/frame.h"
c8326d64 17 #include "wx/cursor.h"
670f9935
WS
18#endif // WX_PRECOMP
19
924b84ab 20#include "wx/evtloop.h"
691745ab 21#include "wx/modalhook.h"
83624f79 22
071a2d78
RR
23#include <gdk/gdk.h>
24#include <gtk/gtk.h>
25#include <gdk/gdkkeysyms.h>
26
3cbab641 27#include "wx/gtk1/win_gtk.h"
5e014a0c 28
acfd422a 29//-----------------------------------------------------------------------------
91af0895 30// global data
acfd422a
RR
31//-----------------------------------------------------------------------------
32
2d68e1b4 33extern int g_openDialogs;
acfd422a 34
c801d85f
KB
35//-----------------------------------------------------------------------------
36// wxDialog
37//-----------------------------------------------------------------------------
38
7d9f12f3 39BEGIN_EVENT_TABLE(wxDialog,wxDialogBase)
fb1585ae
RR
40 EVT_BUTTON (wxID_OK, wxDialog::OnOK)
41 EVT_BUTTON (wxID_CANCEL, wxDialog::OnCancel)
42 EVT_BUTTON (wxID_APPLY, wxDialog::OnApply)
43 EVT_CLOSE (wxDialog::OnCloseWindow)
c801d85f
KB
44END_EVENT_TABLE()
45
68995f26 46void wxDialog::Init()
c801d85f 47{
f03fc89f 48 m_returnCode = 0;
91af0895
WS
49 m_sizeSet = false;
50 m_modalShowing = false;
51 m_themeEnabled = true;
c33c4050 52}
c801d85f 53
2b854a32 54wxDialog::wxDialog( wxWindow *parent,
fb1585ae 55 wxWindowID id, const wxString &title,
2b854a32 56 const wxPoint &pos, const wxSize &size,
fb1585ae 57 long style, const wxString &name )
c801d85f 58{
68995f26
VZ
59 Init();
60
82c9f85c 61 (void)Create( parent, id, title, pos, size, style, name );
c33c4050 62}
c801d85f
KB
63
64bool wxDialog::Create( wxWindow *parent,
fb1585ae 65 wxWindowID id, const wxString &title,
2b854a32 66 const wxPoint &pos, const wxSize &size,
fb1585ae 67 long style, const wxString &name )
c801d85f 68{
21f4383a 69 SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG);
2b854a32 70
82c9f85c
VZ
71 // all dialogs should have tab traversal enabled
72 style |= wxTAB_TRAVERSAL;
73
7d9f12f3 74 return wxTopLevelWindow::Create(parent, id, title, pos, size, style, name);
c33c4050 75}
c801d85f
KB
76
77void wxDialog::OnApply( wxCommandEvent &WXUNUSED(event) )
78{
82c9f85c
VZ
79 if (Validate())
80 TransferDataFromWindow();
c33c4050 81}
c801d85f
KB
82
83void wxDialog::OnCancel( wxCommandEvent &WXUNUSED(event) )
84{
fb1585ae
RR
85 if (IsModal())
86 {
87 EndModal(wxID_CANCEL);
88 }
89 else
90 {
91 SetReturnCode(wxID_CANCEL);
91af0895 92 Show(false);
fb1585ae 93 }
c33c4050 94}
c801d85f 95
903f689b 96void wxDialog::OnOK( wxCommandEvent &WXUNUSED(event) )
c801d85f 97{
32ac755d 98 if (Validate() && TransferDataFromWindow())
1a6944fd 99 {
2b854a32 100 if (IsModal())
fb1585ae
RR
101 {
102 EndModal(wxID_OK);
103 }
104 else
105 {
106 SetReturnCode(wxID_OK);
91af0895 107 Show(false);
fb1585ae 108 }
1a6944fd 109 }
c33c4050 110}
c801d85f
KB
111
112void wxDialog::OnPaint( wxPaintEvent& WXUNUSED(event) )
113{
2b854a32 114 // yes
c33c4050 115}
c801d85f 116
a492cb0f 117void wxDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
c801d85f 118{
e3065973
JS
119 // We'll send a Cancel message by default,
120 // which may close the dialog.
121 // Check for looping if the Cancel event handler calls Close().
122
123 // Note that if a cancel button and handler aren't present in the dialog,
124 // nothing will happen when you close the dialog via the window manager, or
125 // via Close().
126 // We wouldn't want to destroy the dialog by default, since the dialog may have been
127 // created on the stack.
128 // However, this does mean that calling dialog->Close() won't delete the dialog
129 // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be
130 // sure to destroy the dialog.
131 // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog.
132
ab2b3dd4 133 static wxList s_closing;
c801d85f 134
ab2b3dd4 135 if (s_closing.Member(this))
2b854a32
VZ
136 return; // no loops
137
ab2b3dd4 138 s_closing.Append(this);
c801d85f 139
ce7fe42e 140 wxCommandEvent cancelEvent(wxEVT_BUTTON, wxID_CANCEL);
fb1585ae 141 cancelEvent.SetEventObject( this );
937013e0 142 HandleWindowEvent(cancelEvent);
ab2b3dd4 143 s_closing.DeleteObject(this);
c801d85f
KB
144}
145
debe6624 146bool wxDialog::Show( bool show )
c801d85f 147{
fb1585ae
RR
148 if (!show && IsModal())
149 {
de8113d9 150 EndModal( wxID_CANCEL );
fb1585ae 151 }
c801d85f 152
de8113d9
RR
153 if (show && !m_sizeSet)
154 {
155 /* by calling GtkOnSize here, we don't have to call
156 either after showing the frame, which would entail
157 much ugly flicker nor from within the size_allocate
158 handler, because GTK 1.1.X forbids that. */
159
160 GtkOnSize( m_x, m_y, m_width, m_height );
161 }
2b854a32 162
3aa8e4ea
JS
163 if (show && CanDoLayoutAdaptation())
164 DoLayoutAdaptation();
165
739730ca 166 bool ret = wxWindow::Show( show );
e146b8c8 167
fb1585ae 168 if (show) InitDialog();
2b854a32 169
739730ca 170 return ret;
c33c4050
RR
171}
172
43a18898 173bool wxDialog::IsModal() const
e1e955e1 174{
fb1585ae 175 return m_modalShowing;
e1e955e1
RR
176}
177
178void wxDialog::SetModal( bool WXUNUSED(flag) )
c33c4050 179{
223d09f6 180 wxFAIL_MSG( wxT("wxDialog:SetModal obsolete now") );
c33c4050 181}
c801d85f 182
43a18898 183int wxDialog::ShowModal()
c801d85f 184{
691745ab 185 WX_HOOK_MODAL_DIALOG();
643e9cf9 186
fb1585ae
RR
187 if (IsModal())
188 {
223d09f6 189 wxFAIL_MSG( wxT("wxDialog:ShowModal called twice") );
fb1585ae
RR
190 return GetReturnCode();
191 }
e146b8c8 192
b3daa5a3
VZ
193 // use the apps top level window as parent if none given unless explicitly
194 // forbidden
cdc48273
VZ
195 wxWindow * const parent = GetParentForModalDialog();
196 if ( parent )
f6bcfd97 197 {
cdc48273
VZ
198 m_parent = parent;
199 gtk_window_set_transient_for( GTK_WINDOW(m_widget), GTK_WINDOW(parent->m_widget) );
f6bcfd97
BP
200 }
201
eebe4016 202 wxBusyCursorSuspender cs; // temporarily suppress the busy cursor
91af0895
WS
203
204 Show( true );
2b854a32 205
91af0895 206 m_modalShowing = true;
2b854a32 207
304e5625
RR
208 g_openDialogs++;
209
fb1585ae 210 gtk_grab_add( m_widget );
924b84ab
VS
211
212 wxEventLoop().Run();
213
fb1585ae 214 gtk_grab_remove( m_widget );
2b854a32 215
304e5625
RR
216 g_openDialogs--;
217
fb1585ae 218 return GetReturnCode();
c33c4050 219}
c801d85f
KB
220
221void wxDialog::EndModal( int retCode )
222{
fb1585ae 223 SetReturnCode( retCode );
2b854a32 224
fb1585ae
RR
225 if (!IsModal())
226 {
223d09f6 227 wxFAIL_MSG( wxT("wxDialog:EndModal called twice") );
fb1585ae
RR
228 return;
229 }
2b854a32 230
91af0895 231 m_modalShowing = false;
2b854a32 232
fb1585ae 233 gtk_main_quit();
2b854a32 234
91af0895 235 Show( false );
c33c4050 236}