- m_resizing = FALSE;
-}
-
-void wxDialog::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y), int width, int height )
-{
- // due to a bug in gtk, x,y are always 0
- // m_x = x;
- // m_y = y;
-
- if ((m_height == height) && (m_width == width) && (m_sizeSet)) return;
- if (!m_wxwindow) return;
-
- m_width = width;
- m_height = height;
-
- if ((m_minWidth != -1) && (m_width < m_minWidth)) m_width = m_minWidth;
- if ((m_minHeight != -1) && (m_height < m_minHeight)) m_height = m_minHeight;
- if ((m_maxWidth != -1) && (m_width > m_maxWidth)) m_width = m_maxWidth;
- if ((m_maxHeight != -1) && (m_height > m_maxHeight)) m_height = m_maxHeight;
-
- /* we actually set the size of a frame here and no-where else */
- gtk_widget_set_usize( m_widget, m_width, m_height );
-
- m_sizeSet = TRUE;
-
- wxSizeEvent event( wxSize(m_width,m_height), GetId() );
- event.SetEventObject( this );
- GetEventHandler()->ProcessEvent( event );
-}
-
-void wxDialog::Centre( int direction )
-{
- wxASSERT_MSG( (m_widget != NULL), _T("invalid dialog") );
-
- int x = 0;
- int y = 0;
-
- if ((direction & wxHORIZONTAL) == wxHORIZONTAL) x = (gdk_screen_width () - m_width) / 2;
- if ((direction & wxVERTICAL) == wxVERTICAL) y = (gdk_screen_height () - m_height) / 2;
-
- Move( x, y );
-}
-
-void wxDialog::OnInternalIdle()
-{
- if (!m_sizeSet)
- GtkOnSize( m_x, m_y, m_width, m_height );
-}
-
-bool wxDialog::Show( bool show )
-{
- if (!show && IsModal())
- {
- EndModal( wxID_CANCEL );
- }
-
- if (show && !m_sizeSet)
- {
- /* by calling GtkOnSize here, we don't have to call
- either after showing the frame, which would entail
- much ugly flicker nor from within the size_allocate
- handler, because GTK 1.1.X forbids that. */
-
- GtkOnSize( m_x, m_y, m_width, m_height );
- }
-
- wxWindow::Show( show );
-
- if (show) InitDialog();
-
- return TRUE;
-}
-
-bool wxDialog::IsModal() const
-{
- return m_modalShowing;
-}
-
-void wxDialog::SetModal( bool WXUNUSED(flag) )
-{
-/*
- if (flag)
- m_windowStyle |= wxDIALOG_MODAL;
- else
- if (m_windowStyle & wxDIALOG_MODAL) m_windowStyle -= wxDIALOG_MODAL;
-*/
- wxFAIL_MSG( _T("wxDialog:SetModal obsolete now") );
-}
-
-int wxDialog::ShowModal()
-{
- if (IsModal())
- {
- wxFAIL_MSG( _T("wxDialog:ShowModal called twice") );
- return GetReturnCode();
- }
-
- Show( TRUE );
-
- m_modalShowing = TRUE;
-
- gtk_grab_add( m_widget );
- gtk_main();
- gtk_grab_remove( m_widget );