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 extern wxList wxPendingDelete
;
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 bool gtk_dialog_delete_callback( GtkWidget
*WXUNUSED(widget
), GdkEvent
*WXUNUSED(event
), wxDialog
*win
)
33 printf( "OnDelete from " );
34 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
35 printf( win->GetClassInfo()->GetClassName() );
44 //-----------------------------------------------------------------------------
46 //-----------------------------------------------------------------------------
48 static void gtk_dialog_size_callback( GtkWidget
*WXUNUSED(widget
), GtkAllocation
* alloc
, wxDialog
*win
)
50 if (!win
->HasVMT()) return;
53 printf( "OnDialogResize from " );
54 if (win->GetClassInfo() && win->GetClassInfo()->GetClassName())
55 printf( win->GetClassInfo()->GetClassName() );
59 if ((win
->m_width
!= alloc
->width
) || (win
->m_height
!= alloc
->height
))
61 win
->m_sizeSet
= FALSE
;
62 win
->m_width
= alloc
->width
;
63 win
->m_height
= alloc
->height
;
67 //-----------------------------------------------------------------------------
69 //-----------------------------------------------------------------------------
71 static gint
gtk_dialog_configure_callback( GtkWidget
*WXUNUSED(widget
), GdkEventConfigure
*event
, wxDialog
*win
)
73 if (!win
->HasVMT()) return FALSE
;
78 wxMoveEvent
mevent( wxPoint(win
->m_x
,win
->m_y
), win
->GetId() );
79 mevent
.SetEventObject( win
);
80 win
->GetEventHandler()->ProcessEvent( mevent
);
85 //-----------------------------------------------------------------------------
87 //-----------------------------------------------------------------------------
89 BEGIN_EVENT_TABLE(wxDialog
,wxPanel
)
90 EVT_BUTTON (wxID_OK
, wxDialog::OnOK
)
91 EVT_BUTTON (wxID_CANCEL
, wxDialog::OnCancel
)
92 EVT_BUTTON (wxID_APPLY
, wxDialog::OnApply
)
93 EVT_SIZE (wxDialog::OnSize
)
94 EVT_CLOSE (wxDialog::OnCloseWindow
)
97 IMPLEMENT_DYNAMIC_CLASS(wxDialog
,wxPanel
)
102 m_modalShowing
= FALSE
;
105 wxDialog::wxDialog( wxWindow
*parent
,
106 wxWindowID id
, const wxString
&title
,
107 const wxPoint
&pos
, const wxSize
&size
,
108 long style
, const wxString
&name
)
112 Create( parent
, id
, title
, pos
, size
, style
, name
);
115 bool wxDialog::Create( wxWindow
*parent
,
116 wxWindowID id
, const wxString
&title
,
117 const wxPoint
&pos
, const wxSize
&size
,
118 long style
, const wxString
&name
)
120 wxTopLevelWindows
.Append( this );
122 m_needParent
= FALSE
;
124 PreCreation( parent
, id
, pos
, size
, style
, name
);
126 m_widget
= gtk_window_new( GTK_WINDOW_TOPLEVEL
);
127 GTK_WIDGET_UNSET_FLAGS( m_widget
, GTK_CAN_FOCUS
);
129 gtk_widget_set( m_widget
, "GtkWindow::allow_shrink", TRUE
, NULL
);
131 gtk_signal_connect( GTK_OBJECT(m_widget
), "delete_event",
132 GTK_SIGNAL_FUNC(gtk_dialog_delete_callback
), (gpointer
)this );
134 m_wxwindow
= gtk_myfixed_new();
135 gtk_widget_show( m_wxwindow
);
136 GTK_WIDGET_UNSET_FLAGS( m_wxwindow
, GTK_CAN_FOCUS
);
138 gtk_container_add( GTK_CONTAINER(m_widget
), m_wxwindow
);
142 if (m_parent
) m_parent
->AddChild( this );
146 gtk_widget_realize( m_widget
);
148 gtk_signal_connect( GTK_OBJECT(m_widget
), "size_allocate",
149 GTK_SIGNAL_FUNC(gtk_dialog_size_callback
), (gpointer
)this );
151 gtk_signal_connect( GTK_OBJECT(m_widget
), "configure_event",
152 GTK_SIGNAL_FUNC(gtk_dialog_configure_callback
), (gpointer
)this );
157 wxDialog::~wxDialog()
159 wxTopLevelWindows
.DeleteObject( this );
161 if (wxTheApp
->GetTopWindow() == this)
163 wxTheApp
->SetTopWindow( (wxWindow
*) NULL
);
166 if (wxTopLevelWindows
.Number() == 0)
168 wxTheApp
->ExitMainLoop();
172 void wxDialog::SetTitle( const wxString
& title
)
175 if (m_title
.IsNull()) m_title
= "";
176 gtk_window_set_title( GTK_WINDOW(m_widget
), m_title
);
179 wxString
wxDialog::GetTitle() const
181 return (wxString
&)m_title
;
184 void wxDialog::OnApply( wxCommandEvent
&WXUNUSED(event
) )
186 if (Validate()) TransferDataFromWindow();
189 void wxDialog::OnCancel( wxCommandEvent
&WXUNUSED(event
) )
193 EndModal(wxID_CANCEL
);
197 SetReturnCode(wxID_CANCEL
);
202 void wxDialog::OnOK( wxCommandEvent
&WXUNUSED(event
) )
204 if ( Validate() && TransferDataFromWindow())
212 SetReturnCode(wxID_OK
);
218 void wxDialog::OnPaint( wxPaintEvent
& WXUNUSED(event
) )
223 void wxDialog::OnCloseWindow(wxCloseEvent
& event
)
225 // We'll send a Cancel message by default,
226 // which may close the dialog.
227 // Check for looping if the Cancel event handler calls Close().
229 // Note that if a cancel button and handler aren't present in the dialog,
230 // nothing will happen when you close the dialog via the window manager, or
232 // We wouldn't want to destroy the dialog by default, since the dialog may have been
233 // created on the stack.
234 // However, this does mean that calling dialog->Close() won't delete the dialog
235 // unless the handler for wxID_CANCEL does so. So use Destroy() if you want to be
236 // sure to destroy the dialog.
237 // The default OnCancel (above) simply ends a modal dialog, and hides a modeless dialog.
239 static wxList closing
;
241 if (closing
.Member(this))
244 closing
.Append(this);
246 wxCommandEvent
cancelEvent(wxEVT_COMMAND_BUTTON_CLICKED
, wxID_CANCEL
);
247 cancelEvent
.SetEventObject( this );
248 GetEventHandler()->ProcessEvent(cancelEvent
);
249 closing
.DeleteObject(this);
252 bool wxDialog::Destroy()
254 if (!wxPendingDelete
.Member(this)) wxPendingDelete
.Append(this);
259 void wxDialog::OnSize( wxSizeEvent
&WXUNUSED(event
) )
261 wxASSERT_MSG( (m_widget
!= NULL
), "invalid dialog" );
269 /* no child: go out ! */
270 if (!GetChildren().First()) return;
272 /* do we have exactly one child? */
273 wxWindow
*child
= (wxWindow
*) NULL
;
274 for(wxNode
*node
= GetChildren().First(); node
; node
= node
->Next())
276 wxWindow
*win
= (wxWindow
*)node
->Data();
277 if (!wxIS_KIND_OF(win
,wxFrame
) && !wxIS_KIND_OF(win
,wxDialog
))
279 /* it's the second one: do nothing */
285 /* yes: set it's size to fill all the frame */
286 int client_x
, client_y
;
287 GetClientSize( &client_x
, &client_y
);
288 child
->SetSize( 1, 1, client_x
-2, client_y
);
292 void wxDialog::DoSetSize( int x
, int y
, int width
, int height
, int sizeFlags
)
294 wxASSERT_MSG( (m_widget
!= NULL
), "invalid dialog" );
295 wxASSERT_MSG( (m_wxwindow
!= NULL
), "invalid dialog" );
297 if (m_resizing
) return; /* I don't like recursions */
302 int old_width
= m_width
;
303 int old_height
= m_height
;
305 if ((sizeFlags
& wxSIZE_USE_EXISTING
) == wxSIZE_USE_EXISTING
)
307 if (x
!= -1) m_x
= x
;
308 if (y
!= -1) m_y
= y
;
309 if (width
!= -1) m_width
= width
;
310 if (height
!= -1) m_height
= height
;
320 if ((sizeFlags
& wxSIZE_AUTO_WIDTH
) == wxSIZE_AUTO_WIDTH
)
322 if (width
== -1) m_width
= 80;
325 if ((sizeFlags
& wxSIZE_AUTO_HEIGHT
) == wxSIZE_AUTO_HEIGHT
)
327 if (height
== -1) m_height
= 26;
330 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
331 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
332 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_maxWidth
;
333 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_maxHeight
;
335 if ((m_x
!= -1) || (m_y
!= -1))
337 if ((m_x
!= old_x
) || (m_y
!= old_y
))
339 /* m_sizeSet = FALSE; */
340 gtk_widget_set_uposition( m_widget
, m_x
, m_y
);
344 if ((m_width
!= old_width
) || (m_height
!= old_height
))
352 void wxDialog::GtkOnSize( int WXUNUSED(x
), int WXUNUSED(y
), int width
, int height
)
354 // due to a bug in gtk, x,y are always 0
358 if ((m_height
== height
) && (m_width
== width
) && (m_sizeSet
)) return;
359 if (!m_wxwindow
) return;
364 if ((m_minWidth
!= -1) && (m_width
< m_minWidth
)) m_width
= m_minWidth
;
365 if ((m_minHeight
!= -1) && (m_height
< m_minHeight
)) m_height
= m_minHeight
;
366 if ((m_maxWidth
!= -1) && (m_width
> m_maxWidth
)) m_width
= m_maxWidth
;
367 if ((m_maxHeight
!= -1) && (m_height
> m_maxHeight
)) m_height
= m_maxHeight
;
369 /* we actually set the size of a frame here and no-where else */
370 gtk_widget_set_usize( m_widget
, m_width
, m_height
);
374 wxSizeEvent
event( wxSize(m_width
,m_height
), GetId() );
375 event
.SetEventObject( this );
376 GetEventHandler()->ProcessEvent( event
);
379 void wxDialog::Centre( int direction
)
381 wxASSERT_MSG( (m_widget
!= NULL
), "invalid dialog" );
386 if ((direction
& wxHORIZONTAL
) == wxHORIZONTAL
) x
= (gdk_screen_width () - m_width
) / 2;
387 if ((direction
& wxVERTICAL
) == wxVERTICAL
) y
= (gdk_screen_height () - m_height
) / 2;
392 void wxDialog::OnInternalIdle()
395 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
398 bool wxDialog::Show( bool show
)
400 if (!show
&& IsModal())
402 EndModal( wxID_CANCEL
);
405 if (show
&& !m_sizeSet
)
407 /* by calling GtkOnSize here, we don't have to call
408 either after showing the frame, which would entail
409 much ugly flicker nor from within the size_allocate
410 handler, because GTK 1.1.X forbids that. */
412 GtkOnSize( m_x
, m_y
, m_width
, m_height
);
415 wxWindow::Show( show
);
417 if (show
) InitDialog();
422 bool wxDialog::IsModal() const
424 return m_modalShowing
;
427 void wxDialog::SetModal( bool WXUNUSED(flag
) )
431 m_windowStyle |= wxDIALOG_MODAL;
433 if (m_windowStyle & wxDIALOG_MODAL) m_windowStyle -= wxDIALOG_MODAL;
435 wxFAIL_MSG( "wxDialog:SetModal obsolete now" );
438 int wxDialog::ShowModal()
442 wxFAIL_MSG( "wxDialog:ShowModal called twice" );
443 return GetReturnCode();
448 m_modalShowing
= TRUE
;
450 gtk_grab_add( m_widget
);
452 gtk_grab_remove( m_widget
);
454 return GetReturnCode();
457 void wxDialog::EndModal( int retCode
)
459 SetReturnCode( retCode
);
463 wxFAIL_MSG( "wxDialog:EndModal called twice" );
467 m_modalShowing
= FALSE
;
474 void wxDialog::InitDialog()
476 wxWindow::InitDialog();
479 void wxDialog::SetIcon( const wxIcon
&icon
)
482 if (!icon
.Ok()) return;
484 wxMask
*mask
= icon
.GetMask();
485 GdkBitmap
*bm
= (GdkBitmap
*) NULL
;
486 if (mask
) bm
= mask
->GetBitmap();
488 gdk_window_set_icon( m_widget
->window
, (GdkWindow
*) NULL
, icon
.GetPixmap(), bm
);