]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/frame.h
Second try at doing Set/GetClient right
[wxWidgets.git] / include / wx / gtk / frame.h
index c9274982acf52dcfcf1155a41ad35fd7bf07f599..38f27d53756c1dbc7b8dac79ba06b3f1e0f96e97 100644 (file)
@@ -2,9 +2,8 @@
 // Name:        frame.h
 // Purpose:
 // Author:      Robert Roebling
-// Created:     01/02/97
-// Id:
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Id:          $Id$
+// Copyright:   (c) 1998 Robert Roebling, Julian Smart
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -60,7 +59,6 @@ public:
   bool Destroy();
 
   virtual bool Show( bool show );
-  virtual void Enable( bool enable );
   virtual void Centre( int direction = wxHORIZONTAL );
 
   virtual void GetClientSize( int *width, int *height ) const;
@@ -99,25 +97,17 @@ public:
   void OnCloseWindow( wxCloseEvent& event );
   void OnIdle(wxIdleEvent& event);
 
-  virtual void AddChild( wxWindow *child );
+  // implementation
+  
   virtual void GtkOnSize( int x, int y, int width, int height );
-
-private:
-  friend  wxWindow;
-  friend  wxMDIChildFrame;
-  friend  wxMDIClientWindow;
-
-  // update frame's menus (called from OnIdle)
+  virtual void ImplementSetPosition();
+  virtual wxPoint GetClientAreaOrigin() const;
   void DoMenuUpdates();
   void DoMenuUpdates(wxMenu* menu);
-  virtual void ImplementSetPosition();
 
-  GtkWidget    *m_mainWindow;
   wxMenuBar    *m_frameMenuBar;
   wxStatusBar  *m_frameStatusBar;
   wxToolBar    *m_frameToolBar;
-  int           m_toolBarHeight;
-  bool          m_addPrivateChild;   // for toolbar (and maybe menubar)
   wxString      m_title;
   wxIcon        m_icon;