]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/dialog.cpp
Ensure that message boxes with only "OK" can be closed with Escape in wxMSW.
[wxWidgets.git] / src / gtk1 / dialog.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
670f9935 2// Name: src/gtk1/dialog.cpp
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
a81258be 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
14f355c2
VS
10// For compilers that support precompilation, includes "wx.h".
11#include "wx/wxprec.h"
12
c801d85f 13#include "wx/dialog.h"
670f9935
WS
14
15#ifndef WX_PRECOMP
16 #include "wx/app.h"
76b49cf4 17 #include "wx/frame.h"
c8326d64 18 #include "wx/cursor.h"
670f9935
WS
19#endif // WX_PRECOMP
20
924b84ab 21#include "wx/evtloop.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
fb1585ae
RR
140 wxCommandEvent cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED, wxID_CANCEL);
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{
fb1585ae
RR
185 if (IsModal())
186 {
223d09f6 187 wxFAIL_MSG( wxT("wxDialog:ShowModal called twice") );
fb1585ae
RR
188 return GetReturnCode();
189 }
e146b8c8 190
b3daa5a3
VZ
191 // use the apps top level window as parent if none given unless explicitly
192 // forbidden
cdc48273
VZ
193 wxWindow * const parent = GetParentForModalDialog();
194 if ( parent )
f6bcfd97 195 {
cdc48273
VZ
196 m_parent = parent;
197 gtk_window_set_transient_for( GTK_WINDOW(m_widget), GTK_WINDOW(parent->m_widget) );
f6bcfd97
BP
198 }
199
eebe4016 200 wxBusyCursorSuspender cs; // temporarily suppress the busy cursor
91af0895
WS
201
202 Show( true );
2b854a32 203
91af0895 204 m_modalShowing = true;
2b854a32 205
304e5625
RR
206 g_openDialogs++;
207
fb1585ae 208 gtk_grab_add( m_widget );
924b84ab
VS
209
210 wxEventLoop().Run();
211
fb1585ae 212 gtk_grab_remove( m_widget );
2b854a32 213
304e5625
RR
214 g_openDialogs--;
215
fb1585ae 216 return GetReturnCode();
c33c4050 217}
c801d85f
KB
218
219void wxDialog::EndModal( int retCode )
220{
fb1585ae 221 SetReturnCode( retCode );
2b854a32 222
fb1585ae
RR
223 if (!IsModal())
224 {
223d09f6 225 wxFAIL_MSG( wxT("wxDialog:EndModal called twice") );
fb1585ae
RR
226 return;
227 }
2b854a32 228
91af0895 229 m_modalShowing = false;
2b854a32 230
fb1585ae 231 gtk_main_quit();
2b854a32 232
91af0895 233 Show( false );
c33c4050 234}