]> git.saurik.com Git - wxWidgets.git/commitdiff
removed wxDialog::Centre()
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 Oct 1999 15:49:05 +0000 (15:49 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 15 Oct 1999 15:49:05 +0000 (15:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4001 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/dialog.h
include/wx/gtk1/dialog.h
src/gtk/dialog.cpp
src/gtk1/dialog.cpp

index cc3cbcac1a95744ae52768c6f2666ccbf3489472..f440b8a6bec672679abde167ae1b3c2e076641b2 100644 (file)
@@ -78,8 +78,6 @@ public:
 
     virtual void InitDialog(void);
 
-    virtual void Centre( int direction = wxHORIZONTAL );
-
     virtual void SetIcon( const wxIcon &icon );
     virtual void Iconize( bool WXUNUSED(iconize)) { }
     virtual bool IsIconized() const { return FALSE; }
index cc3cbcac1a95744ae52768c6f2666ccbf3489472..f440b8a6bec672679abde167ae1b3c2e076641b2 100644 (file)
@@ -78,8 +78,6 @@ public:
 
     virtual void InitDialog(void);
 
-    virtual void Centre( int direction = wxHORIZONTAL );
-
     virtual void SetIcon( const wxIcon &icon );
     virtual void Iconize( bool WXUNUSED(iconize)) { }
     virtual bool IsIconized() const { return FALSE; }
index a528c57da79a7ac9d253b8a2397c6aacae0f25af..42360a061364878769c0c01813159f362874bb29 100644 (file)
@@ -548,19 +548,6 @@ void wxDialog::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y), int width, int heigh
     GetEventHandler()->ProcessEvent( event );
 }
 
-void wxDialog::Centre( int direction )
-{
-    wxASSERT_MSG( (m_widget != NULL), wxT("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 && GTK_WIDGET_REALIZED(m_wxwindow))
index a528c57da79a7ac9d253b8a2397c6aacae0f25af..42360a061364878769c0c01813159f362874bb29 100644 (file)
@@ -548,19 +548,6 @@ void wxDialog::GtkOnSize( int WXUNUSED(x), int WXUNUSED(y), int width, int heigh
     GetEventHandler()->ProcessEvent( event );
 }
 
-void wxDialog::Centre( int direction )
-{
-    wxASSERT_MSG( (m_widget != NULL), wxT("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 && GTK_WIDGET_REALIZED(m_wxwindow))