]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/frame.h
no message
[wxWidgets.git] / include / wx / gtk1 / frame.h
index c87f59f47ceeb42d6b9dfc3c987c6dd4bccef537..4e02f0632430b7f2ebe523ba6d4bd65a7824e4cc 100644 (file)
@@ -18,6 +18,7 @@
 #include "wx/defs.h"
 #include "wx/object.h"
 #include "wx/window.h"
+#include "wx/icon.h"
 
 //-----------------------------------------------------------------------------
 // classes
@@ -62,6 +63,8 @@ public:
   virtual void Centre( int direction = wxHORIZONTAL );
 
   virtual void GetClientSize( int *width, int *height ) const;
+  wxSize GetClientSize() const { int w, h; GetClientSize(& w, & h); return wxSize(w, h); }
+  
   virtual void SetClientSize( int const width, int const height );
 
   virtual void SetSize( int x, int y, int width, int height,
@@ -99,7 +102,7 @@ public:
   void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
   void OnSize( wxSizeEvent &event );
   void OnCloseWindow( wxCloseEvent& event );
-  void OnIdle(wxIdleEvent& event);
+  void OnIdle(wxIdleEvent& event );
 
   // implementation
   
@@ -113,6 +116,7 @@ public:
   wxToolBar    *m_frameToolBar;
   wxString      m_title;
   wxIcon        m_icon;
+  int           m_miniEdge,m_miniTitle;
 
   DECLARE_EVENT_TABLE()
 };