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
)
41 if (g_isIdle
) wxapp_install_idle_handler();
44 printf( "OnDelete from " );
45 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
46 printf( win->GetClassInfo()->GetClassName() );
55 //-----------------------------------------------------------------------------
57 //-----------------------------------------------------------------------------
59 static void gtk_dialog_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxDialog
*win
)
61 if (g_isIdle
) wxapp_install_idle_handler();
63 if (!win
->HasVMT()) return;
66 printf( "OnDialogResize from " );
67 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
68 printf( win->GetClassInfo()->GetClassName() );
72 if ((win
->m_width
!= alloc
->width
) || (win
->m_height
!= alloc
->height
))
74 win
->m_sizeSet
= FALSE
;
75 win
->m_width
= alloc
->width
;
76 win
->m_height
= alloc
->height
;
80 //-----------------------------------------------------------------------------
82 //-----------------------------------------------------------------------------
84 static gint
gtk_dialog_configure_callback( GtkWidget
*WXUNUSED(widget
), GdkEventConfigure
*event
, wxDialog
*win
)
86 if (g_isIdle
) wxapp_install_idle_handler();
88 if (!win
->HasVMT()) return FALSE
;
93 wxMoveEvent
mevent( wxPoint(win
->m_x
,win
->m_y
), win
->GetId() );
94 mevent
.SetEventObject( win
);
95 win
->GetEventHandler()->ProcessEvent( mevent
);
100 //-----------------------------------------------------------------------------
101 // "realize" from m_widget
102 //-----------------------------------------------------------------------------
104 /* we cannot MWM hints and icons before the widget has been realized,
105 so we do this directly after realization */
108 gtk_dialog_realized_callback( GtkWidget
*widget
, wxDialog
*win
)
110 if (g_isIdle
) wxapp_install_idle_handler();
112 /* all this is for Motif Window Manager "hints" and is supposed to be
113 recognized by other WM as well. not tested. */
114 long decor
= (long) GDK_DECOR_ALL
;
115 long func
= (long) GDK_FUNC_ALL
;
117 if ((win
->m_windowStyle
& wxCAPTION
) == 0)
118 decor
|= GDK_DECOR_TITLE
;
119 /* if ((win->m_windowStyle & wxMINIMIZE) == 0)
120 func |= GDK_FUNC_MINIMIZE;
121 if ((win->m_windowStyle & wxMAXIMIZE) == 0)
122 func |= GDK_FUNC_MAXIMIZE; */
123 if ((win
->m_windowStyle
& wxSYSTEM_MENU
) == 0)
124 decor
|= GDK_DECOR_MENU
;
125 if ((win
->m_windowStyle
& wxMINIMIZE_BOX
) == 0)
126 decor
|= GDK_DECOR_MINIMIZE
;
127 if ((win
->m_windowStyle
& wxMAXIMIZE_BOX
) == 0)
128 decor
|= GDK_DECOR_MAXIMIZE
;
129 if ((win
->m_windowStyle
& wxRESIZE_BORDER
) == 0)
130 func
|= GDK_FUNC_RESIZE
;
132 gdk_window_set_decorations( win
->m_widget
->window
, (GdkWMDecoration
)decor
);
133 gdk_window_set_functions( win
->m_widget
->window
, (GdkWMFunction
)func
);
135 /* GTK's shrinking/growing policy */
136 if ((win
->m_windowStyle
& wxRESIZE_BORDER
) == 0)
137 gtk_window_set_policy(GTK_WINDOW(win
->m_widget
), 0, 0, 1);
139 gtk_window_set_policy(GTK_WINDOW(win
->m_widget
), 1, 1, 1);
142 if (win
->m_icon
!= wxNullIcon
)
144 wxIcon
icon( win
->m_icon
);
145 win
->m_icon
= wxNullIcon
;
146 win
->SetIcon( icon
);
152 //-----------------------------------------------------------------------------
153 // "map" from m_widget
154 //-----------------------------------------------------------------------------
157 gtk_dialog_map_callback( GtkWidget
*widget
, wxDialog
*win
)
159 gtk_widget_set_uposition( widget
, win
->m_x
, win
->m_y
);
164 //-----------------------------------------------------------------------------
166 //-----------------------------------------------------------------------------
168 BEGIN_EVENT_TABLE(wxDialog
,wxPanel
)
169 EVT_BUTTON (wxID_OK
, wxDialog::OnOK
)
170 EVT_BUTTON (wxID_CANCEL
, wxDialog::OnCancel
)
171 EVT_BUTTON (wxID_APPLY
, wxDialog::OnApply
)
172 EVT_SIZE (wxDialog::OnSize
)
173 EVT_CLOSE (wxDialog::OnCloseWindow
)
176 IMPLEMENT_DYNAMIC_CLASS(wxDialog
,wxPanel
)
178 void wxDialog::Init()
181 m_modalShowing
= FALSE
;
184 wxDialog::wxDialog( wxWindow
*parent
,
185 wxWindowID id
, const wxString
&title
,
186 const wxPoint
&pos
, const wxSize
&size
,
187 long style
, const wxString
&name
)
191 Create( parent
, id
, title
, pos
, size
, style
, name
);
194 bool wxDialog::Create( wxWindow
*parent
,
195 wxWindowID id
, const wxString
&title
,
196 const wxPoint
&pos
, const wxSize
&size
,
197 long style
, const wxString
&name
)
199 wxTopLevelWindows
.Append( this );
201 m_needParent
= FALSE
;
203 PreCreation( parent
, id
, pos
, size
, style
, name
);
205 m_widget
= gtk_window_new( GTK_WINDOW_TOPLEVEL
);
206 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
208 gtk_widget_set( m_widget
, "GtkWindow::allow_shrink", TRUE
, NULL
);
210 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
211 GTK_SIGNAL_FUNC(gtk_dialog_delete_callback
), (gpointer
)this );
213 m_wxwindow
= gtk_myfixed_new();
214 gtk_widget_show( m_wxwindow
);
215 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
217 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
221 if (m_parent
) m_parent
->AddChild( this );
225 /* we cannot set MWM hints before the widget has
226 been realized, so we do this directly after realization */
227 gtk_signal_connect( GTK_OBJECT(m_widget
), "realize",
228 GTK_SIGNAL_FUNC(gtk_dialog_realized_callback
), (gpointer
) this );
230 /* we set the position of the window after the map event. setting it
231 before has no effect (with KWM) */
232 gtk_signal_connect( GTK_OBJECT(m_widget
), "map",
233 GTK_SIGNAL_FUNC(gtk_dialog_map_callback
), (gpointer
) this );
235 /* the user resized the frame by dragging etc. */
236 gtk_signal_connect( GTK_OBJECT(m_widget
), "size_allocate",
237 GTK_SIGNAL_FUNC(gtk_dialog_size_callback
), (gpointer
)this );
239 gtk_signal_connect( GTK_OBJECT(m_widget
), "configure_event",
240 GTK_SIGNAL_FUNC(gtk_dialog_configure_callback
), (gpointer
)this );
245 wxDialog::~wxDialog()
247 wxTopLevelWindows
.DeleteObject( this );
249 if (wxTheApp
->GetTopWindow() == this)
251 wxTheApp
->SetTopWindow( (wxWindow
*) NULL
);
254 if (wxTopLevelWindows
.Number() == 0)
256 wxTheApp
->ExitMainLoop();
260 void wxDialog::SetTitle( const wxString
& title
)
263 if (m_title
.IsNull()) m_title
= _T("");
264 gtk_window_set_title( GTK_WINDOW(m_widget
), m_title
.mbc_str() );
267 wxString
wxDialog::GetTitle() const
269 return (wxString
&)m_title
;
272 void wxDialog::OnApply( wxCommandEvent
&WXUNUSED(event
) )
274 if (Validate()) TransferDataFromWindow();
277 void wxDialog::OnCancel( wxCommandEvent
&WXUNUSED(event
) )
281 EndModal(wxID_CANCEL
);
285 SetReturnCode(wxID_CANCEL
);
290 void wxDialog::OnOK( wxCommandEvent
&WXUNUSED(event
) )
292 if ( Validate() && TransferDataFromWindow())
300 SetReturnCode(wxID_OK
);
306 void wxDialog::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
311 void wxDialog::OnCloseWindow(wxCloseEvent
& event
)
313 // We'll send a Cancel message by default,
314 // which may close the dialog.
315 // Check for looping if the Cancel event handler calls Close().
317 // Note that if a cancel button and handler aren't present in the dialog,
318 // nothing will happen when you close the dialog via the window manager, or
320 // We wouldn't want to destroy the dialog by default, since the dialog may have been
321 // created on the stack.
322 // However, this does mean that calling dialog->Close() won't delete the dialog
323 // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be
324 // sure to destroy the dialog.
325 // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog.
327 static wxList s_closing
;
329 if (s_closing
.Member(this))
332 s_closing
.Append(this);
334 wxCommandEvent
cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
335 cancelEvent
.SetEventObject( this );
336 GetEventHandler()->ProcessEvent(cancelEvent
);
337 s_closing
.DeleteObject(this);
340 bool wxDialog::Destroy()
342 if (!wxPendingDelete
.Member(this)) wxPendingDelete
.Append(this);
347 void wxDialog::OnSize( wxSizeEvent
&WXUNUSED(event
) )
349 wxASSERT_MSG( (m_widget
!= NULL
), _T("invalid dialog") );
357 /* no child: go out ! */
358 if (!GetChildren().First()) return;
360 /* do we have exactly one child? */
361 wxWindow
*child
= (wxWindow
*) NULL
;
362 for(wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
364 wxWindow
*win
= (wxWindow
*)node
->Data();
365 if (!wxIS_KIND_OF(win
,wxFrame
) && !wxIS_KIND_OF(win
,wxDialog
))
367 /* it's the second one: do nothing */
373 /* yes: set it's size to fill all the frame */
374 int client_x
, client_y
;
375 GetClientSize( &client_x
, &client_y
);
376 child
->SetSize( 1, 1, client_x
-2, client_y
);
380 void wxDialog::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
382 wxASSERT_MSG( (m_widget
!= NULL
), _T("invalid dialog") );
383 wxASSERT_MSG( (m_wxwindow
!= NULL
), _T("invalid dialog") );
385 if (m_resizing
) return; /* I don't like recursions */
390 int old_width
= m_width
;
391 int old_height
= m_height
;
393 if ((sizeFlags
& wxSIZE_USE_EXISTING
) == wxSIZE_USE_EXISTING
)
395 if (x
!= -1) m_x
= x
;
396 if (y
!= -1) m_y
= y
;
397 if (width
!= -1) m_width
= width
;
398 if (height
!= -1) m_height
= height
;
408 if ((sizeFlags
& wxSIZE_AUTO_WIDTH
) == wxSIZE_AUTO_WIDTH
)
410 if (width
== -1) m_width
= 80;
413 if ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) == wxSIZE_AUTO_HEIGHT
)
415 if (height
== -1) m_height
= 26;
418 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
419 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
420 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_maxWidth
;
421 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_maxHeight
;
423 if ((m_x
!= -1) || (m_y
!= -1))
425 if ((m_x
!= old_x
) || (m_y
!= old_y
))
427 /* we set the position here and when showing the dialog
428 for the first time in idle time */
429 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
433 if ((m_width
!= old_width
) || (m_height
!= old_height
))
435 /* actual resizing is deferred to GtkOnSize in idle time and
436 when showing the dialog */
443 void wxDialog::GtkOnSize( int WXUNUSED(x
), int WXUNUSED(y
), int width
, int height
)
445 // due to a bug in gtk, x,y are always 0
449 if ((m_height
== height
) && (m_width
== width
) && (m_sizeSet
)) return;
450 if (!m_wxwindow
) return;
455 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
456 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
457 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_maxWidth
;
458 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_maxHeight
;
460 /* we actually set the size of a frame here and no-where else */
461 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
465 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
466 event
.SetEventObject( this );
467 GetEventHandler()->ProcessEvent( event
);
470 void wxDialog::Centre( int direction
)
472 wxASSERT_MSG( (m_widget
!= NULL
), _T("invalid dialog") );
477 if ((direction
& wxHORIZONTAL
) == wxHORIZONTAL
) x
= (gdk_screen_width () - m_width
) / 2;
478 if ((direction
& wxVERTICAL
) == wxVERTICAL
) y
= (gdk_screen_height () - m_height
) / 2;
483 void wxDialog::OnInternalIdle()
485 if (!m_sizeSet
&& GTK_WIDGET_REALIZED(m_wxwindow
))
486 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
489 bool wxDialog::Show( bool show
)
491 if (!show
&& IsModal())
493 EndModal( wxID_CANCEL
);
496 if (show
&& !m_sizeSet
)
498 /* by calling GtkOnSize here, we don't have to call
499 either after showing the frame, which would entail
500 much ugly flicker nor from within the size_allocate
501 handler, because GTK 1.1.X forbids that. */
503 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
506 if (show
!= m_isShown
)
510 gtk_widget_show( m_widget
);
513 gtk_widget_hide( m_widget
);
518 if (show
) InitDialog();
523 bool wxDialog::IsModal() const
525 return m_modalShowing
;
528 void wxDialog::SetModal( bool WXUNUSED(flag
) )
532 m_windowStyle |= wxDIALOG_MODAL;
534 if (m_windowStyle & wxDIALOG_MODAL) m_windowStyle -= wxDIALOG_MODAL;
536 wxFAIL_MSG( _T("wxDialog:SetModal obsolete now") );
539 int wxDialog::ShowModal()
543 wxFAIL_MSG( _T("wxDialog:ShowModal called twice") );
544 return GetReturnCode();
549 m_modalShowing
= TRUE
;
551 gtk_grab_add( m_widget
);
553 gtk_grab_remove( m_widget
);
555 return GetReturnCode();
558 void wxDialog::EndModal( int retCode
)
560 SetReturnCode( retCode
);
564 wxFAIL_MSG( _T("wxDialog:EndModal called twice") );
568 m_modalShowing
= FALSE
;
575 void wxDialog::InitDialog()
577 wxWindow::InitDialog();
580 void wxDialog::SetIcon( const wxIcon
&icon
)
583 if (!icon
.Ok()) return;
585 wxMask
*mask
= icon
.GetMask();
586 GdkBitmap
*bm
= (GdkBitmap
*) NULL
;
587 if (mask
) bm
= mask
->GetBitmap();
589 gdk_window_set_icon( m_widget
->window
, (GdkWindow
*) NULL
, icon
.GetPixmap(), bm
);