1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/dialog.cpp
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
13 #include "wx/dialog.h"
18 #include "wx/cursor.h"
21 #include "wx/evtloop.h"
22 #include "wx/testing.h"
26 #include <gdk/gdkkeysyms.h>
28 #include "wx/gtk1/win_gtk.h"
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 extern int g_openDialogs
;
36 //-----------------------------------------------------------------------------
38 //-----------------------------------------------------------------------------
40 BEGIN_EVENT_TABLE(wxDialog
,wxDialogBase
)
41 EVT_BUTTON (wxID_OK
, wxDialog::OnOK
)
42 EVT_BUTTON (wxID_CANCEL
, wxDialog::OnCancel
)
43 EVT_BUTTON (wxID_APPLY
, wxDialog::OnApply
)
44 EVT_CLOSE (wxDialog::OnCloseWindow
)
51 m_modalShowing
= false;
52 m_themeEnabled
= true;
55 wxDialog::wxDialog( wxWindow
*parent
,
56 wxWindowID id
, const wxString
&title
,
57 const wxPoint
&pos
, const wxSize
&size
,
58 long style
, const wxString
&name
)
62 (void)Create( parent
, id
, title
, pos
, size
, style
, name
);
65 bool wxDialog::Create( wxWindow
*parent
,
66 wxWindowID id
, const wxString
&title
,
67 const wxPoint
&pos
, const wxSize
&size
,
68 long style
, const wxString
&name
)
70 SetExtraStyle(GetExtraStyle() | wxTOPLEVEL_EX_DIALOG
);
72 // all dialogs should have tab traversal enabled
73 style
|= wxTAB_TRAVERSAL
;
75 return wxTopLevelWindow::Create(parent
, id
, title
, pos
, size
, style
, name
);
78 void wxDialog::OnApply( wxCommandEvent
&WXUNUSED(event
) )
81 TransferDataFromWindow();
84 void wxDialog::OnCancel( wxCommandEvent
&WXUNUSED(event
) )
88 EndModal(wxID_CANCEL
);
92 SetReturnCode(wxID_CANCEL
);
97 void wxDialog::OnOK( wxCommandEvent
&WXUNUSED(event
) )
99 if (Validate() && TransferDataFromWindow())
107 SetReturnCode(wxID_OK
);
113 void wxDialog::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
118 void wxDialog::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
120 // We'll send a Cancel message by default,
121 // which may close the dialog.
122 // Check for looping if the Cancel event handler calls Close().
124 // Note that if a cancel button and handler aren't present in the dialog,
125 // nothing will happen when you close the dialog via the window manager, or
127 // We wouldn't want to destroy the dialog by default, since the dialog may have been
128 // created on the stack.
129 // However, this does mean that calling dialog->Close() won't delete the dialog
130 // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be
131 // sure to destroy the dialog.
132 // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog.
134 static wxList s_closing
;
136 if (s_closing
.Member(this))
139 s_closing
.Append(this);
141 wxCommandEvent
cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
142 cancelEvent
.SetEventObject( this );
143 HandleWindowEvent(cancelEvent
);
144 s_closing
.DeleteObject(this);
147 bool wxDialog::Show( bool show
)
149 if (!show
&& IsModal())
151 EndModal( wxID_CANCEL
);
154 if (show
&& !m_sizeSet
)
156 /* by calling GtkOnSize here, we don't have to call
157 either after showing the frame, which would entail
158 much ugly flicker nor from within the size_allocate
159 handler, because GTK 1.1.X forbids that. */
161 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
164 if (show
&& CanDoLayoutAdaptation())
165 DoLayoutAdaptation();
167 bool ret
= wxWindow::Show( show
);
169 if (show
) InitDialog();
174 bool wxDialog::IsModal() const
176 return m_modalShowing
;
179 void wxDialog::SetModal( bool WXUNUSED(flag
) )
181 wxFAIL_MSG( wxT("wxDialog:SetModal obsolete now") );
184 int wxDialog::ShowModal()
186 WX_TESTING_SHOW_MODAL_HOOK();
190 wxFAIL_MSG( wxT("wxDialog:ShowModal called twice") );
191 return GetReturnCode();
194 // use the apps top level window as parent if none given unless explicitly
196 wxWindow
* const parent
= GetParentForModalDialog();
200 gtk_window_set_transient_for( GTK_WINDOW(m_widget
), GTK_WINDOW(parent
->m_widget
) );
203 wxBusyCursorSuspender cs
; // temporarily suppress the busy cursor
207 m_modalShowing
= true;
211 gtk_grab_add( m_widget
);
215 gtk_grab_remove( m_widget
);
219 return GetReturnCode();
222 void wxDialog::EndModal( int retCode
)
224 SetReturnCode( retCode
);
228 wxFAIL_MSG( wxT("wxDialog:EndModal called twice") );
232 m_modalShowing
= false;