1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "dialog.h"
14 #include "wx/dialog.h"
20 #include "wx/gtk/win_gtk.h"
22 //-----------------------------------------------------------------------------
24 //-----------------------------------------------------------------------------
26 extern void wxapp_install_idle_handler();
29 //-----------------------------------------------------------------------------
31 //-----------------------------------------------------------------------------
33 extern wxList wxPendingDelete
;
35 //-----------------------------------------------------------------------------
37 //-----------------------------------------------------------------------------
39 bool gtk_dialog_delete_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxDialog
*win
)
42 wxapp_install_idle_handler();
49 //-----------------------------------------------------------------------------
51 //-----------------------------------------------------------------------------
53 static void gtk_dialog_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxDialog
*win
)
56 wxapp_install_idle_handler();
58 if (!win
->m_hasVMT
) return;
60 if ((win
->m_width
!= alloc
->width
) || (win
->m_height
!= alloc
->height
))
62 win
->m_width
= alloc
->width
;
63 win
->m_height
= alloc
->height
;
68 //-----------------------------------------------------------------------------
70 //-----------------------------------------------------------------------------
72 static gint
gtk_dialog_configure_callback( GtkWidget
*WXUNUSED(widget
), GdkEventConfigure
*event
, wxDialog
*win
)
75 wxapp_install_idle_handler();
77 if (!win
->m_hasVMT
) return FALSE
;
82 wxMoveEvent
mevent( wxPoint(win
->m_x
,win
->m_y
), win
->GetId() );
83 mevent
.SetEventObject( win
);
84 win
->GetEventHandler()->ProcessEvent( mevent
);
89 //-----------------------------------------------------------------------------
90 // "realize" from m_widget
91 //-----------------------------------------------------------------------------
93 /* we cannot MWM hints and icons before the widget has been realized,
94 so we do this directly after realization */
97 gtk_dialog_realized_callback( GtkWidget
*widget
, wxDialog
*win
)
100 wxapp_install_idle_handler();
102 /* I haven''t been able to set the position of
103 the dialog before it is shown, so I set the
104 position in "realize" and "map" */
105 gtk_widget_set_uposition( widget
, win
->m_x
, win
->m_y
);
108 if (win
->m_icon
!= wxNullIcon
)
110 wxIcon
icon( win
->m_icon
);
111 win
->m_icon
= wxNullIcon
;
112 win
->SetIcon( icon
);
118 //-----------------------------------------------------------------------------
119 // "map" from m_widget
120 //-----------------------------------------------------------------------------
123 gtk_dialog_map_callback( GtkWidget
*widget
, wxDialog
*win
)
126 wxapp_install_idle_handler();
128 /* I haven''t been able to set the position of
129 the dialog before it is shown, so I set the
130 position in "realize" and "map" */
131 gtk_widget_set_uposition( widget
, win
->m_x
, win
->m_y
);
133 /* all this is for Motif Window Manager "hints" and is supposed to be
134 recognized by other WM as well. not tested. */
135 long decor
= (long) GDK_DECOR_BORDER
;
136 long func
= (long) GDK_FUNC_MOVE
;
138 if ((win
->GetWindowStyle() & wxCAPTION
) != 0)
139 decor
|= GDK_DECOR_TITLE
;
140 if ((win
->GetWindowStyle() & wxSYSTEM_MENU
) != 0)
142 decor
|= GDK_DECOR_MENU
;
143 func
|= GDK_FUNC_CLOSE
;
145 if ((win
->GetWindowStyle() & wxMINIMIZE_BOX
) != 0)
147 func
|= GDK_FUNC_MINIMIZE
;
148 decor
|= GDK_DECOR_MINIMIZE
;
150 if ((win
->GetWindowStyle() & wxMAXIMIZE_BOX
) != 0)
152 decor
|= GDK_DECOR_MAXIMIZE
;
153 func
|= GDK_FUNC_MAXIMIZE
;
155 if ((win
->GetWindowStyle() & wxRESIZE_BORDER
) != 0)
157 func
|= GDK_FUNC_RESIZE
;
158 decor
|= GDK_DECOR_RESIZEH
;
160 gdk_window_set_decorations( win
->m_widget
->window
, (GdkWMDecoration
)decor
);
161 gdk_window_set_functions( win
->m_widget
->window
, (GdkWMFunction
)func
);
163 /* GTK's shrinking/growing policy */
164 if ((win
->GetWindowStyle() & wxRESIZE_BORDER
) == 0)
165 gtk_window_set_policy(GTK_WINDOW(win
->m_widget
), 0, 0, 1);
167 gtk_window_set_policy(GTK_WINDOW(win
->m_widget
), 1, 1, 1);
172 //-----------------------------------------------------------------------------
174 //-----------------------------------------------------------------------------
176 BEGIN_EVENT_TABLE(wxDialog
,wxPanel
)
177 EVT_BUTTON (wxID_OK
, wxDialog::OnOK
)
178 EVT_BUTTON (wxID_CANCEL
, wxDialog::OnCancel
)
179 EVT_BUTTON (wxID_APPLY
, wxDialog::OnApply
)
180 EVT_SIZE (wxDialog::OnSize
)
181 EVT_CLOSE (wxDialog::OnCloseWindow
)
184 IMPLEMENT_DYNAMIC_CLASS(wxDialog
,wxPanel
)
186 void wxDialog::Init()
190 m_modalShowing
= FALSE
;
193 wxDialog::wxDialog( wxWindow
*parent
,
194 wxWindowID id
, const wxString
&title
,
195 const wxPoint
&pos
, const wxSize
&size
,
196 long style
, const wxString
&name
)
200 Create( parent
, id
, title
, pos
, size
, style
, name
);
203 bool wxDialog::Create( wxWindow
*parent
,
204 wxWindowID id
, const wxString
&title
,
205 const wxPoint
&pos
, const wxSize
&size
,
206 long style
, const wxString
&name
)
208 wxTopLevelWindows
.Append( this );
210 m_needParent
= FALSE
;
212 PreCreation( parent
, id
, pos
, size
, style
, name
);
214 m_widget
= gtk_window_new( GTK_WINDOW_TOPLEVEL
);
217 gtk_window_set_wmclass( GTK_WINDOW(m_widget
), name
.mb_str(), name
.mb_str() );
219 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
221 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
222 GTK_SIGNAL_FUNC(gtk_dialog_delete_callback
), (gpointer
)this );
224 m_wxwindow
= gtk_myfixed_new();
225 gtk_widget_show( m_wxwindow
);
226 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
228 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
232 if (m_parent
) m_parent
->AddChild( this );
236 /* we cannot set MWM hints before the widget has
237 been realized, so we do this directly after realization */
238 gtk_signal_connect( GTK_OBJECT(m_widget
), "realize",
239 GTK_SIGNAL_FUNC(gtk_dialog_realized_callback
), (gpointer
) this );
241 /* we set the position of the window after the map event. setting it
242 before has no effect (with KWM) */
243 gtk_signal_connect( GTK_OBJECT(m_widget
), "map",
244 GTK_SIGNAL_FUNC(gtk_dialog_map_callback
), (gpointer
) this );
246 /* the user resized the frame by dragging etc. */
247 gtk_signal_connect( GTK_OBJECT(m_widget
), "size_allocate",
248 GTK_SIGNAL_FUNC(gtk_dialog_size_callback
), (gpointer
)this );
250 gtk_signal_connect( GTK_OBJECT(m_widget
), "configure_event",
251 GTK_SIGNAL_FUNC(gtk_dialog_configure_callback
), (gpointer
)this );
256 wxDialog::~wxDialog()
258 m_isBeingDeleted
= TRUE
;
260 wxTopLevelWindows
.DeleteObject( this );
262 if (wxTheApp
->GetTopWindow() == this)
264 wxTheApp
->SetTopWindow( (wxWindow
*) NULL
);
267 if (wxTopLevelWindows
.Number() == 0)
269 wxTheApp
->ExitMainLoop();
273 void wxDialog::SetTitle( const wxString
& title
)
276 if (m_title
.IsNull()) m_title
= _T("");
277 gtk_window_set_title( GTK_WINDOW(m_widget
), m_title
.mbc_str() );
280 wxString
wxDialog::GetTitle() const
282 return (wxString
&)m_title
;
285 void wxDialog::OnApply( wxCommandEvent
&WXUNUSED(event
) )
287 if (Validate()) TransferDataFromWindow();
290 void wxDialog::OnCancel( wxCommandEvent
&WXUNUSED(event
) )
294 EndModal(wxID_CANCEL
);
298 SetReturnCode(wxID_CANCEL
);
303 void wxDialog::OnOK( wxCommandEvent
&WXUNUSED(event
) )
305 if (Validate() && TransferDataFromWindow())
313 SetReturnCode(wxID_OK
);
319 void wxDialog::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
324 void wxDialog::OnCloseWindow(wxCloseEvent
& event
)
326 // We'll send a Cancel message by default,
327 // which may close the dialog.
328 // Check for looping if the Cancel event handler calls Close().
330 // Note that if a cancel button and handler aren't present in the dialog,
331 // nothing will happen when you close the dialog via the window manager, or
333 // We wouldn't want to destroy the dialog by default, since the dialog may have been
334 // created on the stack.
335 // However, this does mean that calling dialog->Close() won't delete the dialog
336 // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be
337 // sure to destroy the dialog.
338 // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog.
340 static wxList s_closing
;
342 if (s_closing
.Member(this))
345 s_closing
.Append(this);
347 wxCommandEvent
cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
348 cancelEvent
.SetEventObject( this );
349 GetEventHandler()->ProcessEvent(cancelEvent
);
350 s_closing
.DeleteObject(this);
353 bool wxDialog::Destroy()
355 if (!wxPendingDelete
.Member(this)) wxPendingDelete
.Append(this);
360 void wxDialog::OnSize( wxSizeEvent
&WXUNUSED(event
) )
362 wxASSERT_MSG( (m_widget
!= NULL
), _T("invalid dialog") );
370 /* no child: go out ! */
371 if (!GetChildren().First()) return;
373 /* do we have exactly one child? */
374 wxWindow
*child
= (wxWindow
*) NULL
;
375 for(wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
377 wxWindow
*win
= (wxWindow
*)node
->Data();
378 if (!wxIS_KIND_OF(win
,wxFrame
) && !wxIS_KIND_OF(win
,wxDialog
))
380 /* it's the second one: do nothing */
386 /* yes: set it's size to fill all the frame */
387 int client_x
, client_y
;
388 GetClientSize( &client_x
, &client_y
);
389 child
->SetSize( 1, 1, client_x
-2, client_y
);
393 void wxDialog::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
395 wxASSERT_MSG( (m_widget
!= NULL
), _T("invalid dialog") );
396 wxASSERT_MSG( (m_wxwindow
!= NULL
), _T("invalid dialog") );
398 if (m_resizing
) return; /* I don't like recursions */
403 int old_width
= m_width
;
404 int old_height
= m_height
;
406 if ((sizeFlags
& wxSIZE_USE_EXISTING
) == wxSIZE_USE_EXISTING
)
408 if (x
!= -1) m_x
= x
;
409 if (y
!= -1) m_y
= y
;
410 if (width
!= -1) m_width
= width
;
411 if (height
!= -1) m_height
= height
;
421 if ((sizeFlags
& wxSIZE_AUTO_WIDTH
) == wxSIZE_AUTO_WIDTH
)
423 if (width
== -1) m_width
= 80;
426 if ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) == wxSIZE_AUTO_HEIGHT
)
428 if (height
== -1) m_height
= 26;
431 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
432 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
433 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_maxWidth
;
434 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_maxHeight
;
436 if ((m_x
!= -1) || (m_y
!= -1))
438 if ((m_x
!= old_x
) || (m_y
!= old_y
))
440 /* we set the position here and when showing the dialog
441 for the first time in idle time */
442 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
446 if ((m_width
!= old_width
) || (m_height
!= old_height
))
448 /* actual resizing is deferred to GtkOnSize in idle time and
449 when showing the dialog */
456 void wxDialog::GtkOnSize( int WXUNUSED(x
), int WXUNUSED(y
), int width
, int height
)
458 // due to a bug in gtk, x,y are always 0
462 if ((m_height
== height
) && (m_width
== width
) && (m_sizeSet
)) return;
463 if (!m_wxwindow
) return;
468 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
469 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
470 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_maxWidth
;
471 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_maxHeight
;
473 /* we actually set the size of a frame here and no-where else */
474 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
478 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
479 event
.SetEventObject( this );
480 GetEventHandler()->ProcessEvent( event
);
483 void wxDialog::Centre( int direction
)
485 wxASSERT_MSG( (m_widget
!= NULL
), _T("invalid dialog") );
490 if ((direction
& wxHORIZONTAL
) == wxHORIZONTAL
) x
= (gdk_screen_width () - m_width
) / 2;
491 if ((direction
& wxVERTICAL
) == wxVERTICAL
) y
= (gdk_screen_height () - m_height
) / 2;
496 void wxDialog::OnInternalIdle()
498 if (!m_sizeSet
&& GTK_WIDGET_REALIZED(m_wxwindow
))
499 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
502 bool wxDialog::Show( bool show
)
504 if (!show
&& IsModal())
506 EndModal( wxID_CANCEL
);
509 if (show
&& !m_sizeSet
)
511 /* by calling GtkOnSize here, we don't have to call
512 either after showing the frame, which would entail
513 much ugly flicker nor from within the size_allocate
514 handler, because GTK 1.1.X forbids that. */
516 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
519 bool ret
= wxWindow::Show( show
);
521 if (show
) InitDialog();
526 bool wxDialog::IsModal() const
528 return m_modalShowing
;
531 void wxDialog::SetModal( bool WXUNUSED(flag
) )
535 m_windowStyle |= wxDIALOG_MODAL;
537 if (m_windowStyle & wxDIALOG_MODAL) m_windowStyle -= wxDIALOG_MODAL;
539 wxFAIL_MSG( _T("wxDialog:SetModal obsolete now") );
542 int wxDialog::ShowModal()
546 wxFAIL_MSG( _T("wxDialog:ShowModal called twice") );
547 return GetReturnCode();
552 m_modalShowing
= TRUE
;
554 gtk_grab_add( m_widget
);
556 gtk_grab_remove( m_widget
);
558 return GetReturnCode();
561 void wxDialog::EndModal( int retCode
)
563 SetReturnCode( retCode
);
567 wxFAIL_MSG( _T("wxDialog:EndModal called twice") );
571 m_modalShowing
= FALSE
;
578 void wxDialog::InitDialog()
580 wxWindow::InitDialog();
583 void wxDialog::SetIcon( const wxIcon
&icon
)
586 if (!icon
.Ok()) return;
588 if (!m_widget
->window
) return;
590 wxMask
*mask
= icon
.GetMask();
591 GdkBitmap
*bm
= (GdkBitmap
*) NULL
;
592 if (mask
) bm
= mask
->GetBitmap();
594 gdk_window_set_icon( m_widget
->window
, (GdkWindow
*) NULL
, icon
.GetPixmap(), bm
);