]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/frame.h
TestDestroy() is not const any more (warnings suppressed)
[wxWidgets.git] / include / wx / gtk1 / frame.h
index 3c235d2171a861540bd3deea2e016ae981c7e3e9..2265c07ffbacdcd47407f62e80c9dbbcaa8eec2e 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,6 @@ public:
   void OnActivate( wxActivateEvent &WXUNUSED(event) ) { } // called from docview.cpp
   void OnSize( wxSizeEvent &event );
   void OnCloseWindow( wxCloseEvent& event );
-  void OnIdle(wxIdleEvent& event );
 
   // implementation
   
@@ -108,6 +110,8 @@ public:
   void DoMenuUpdates();
   void DoMenuUpdates(wxMenu* menu);
 
+  virtual void OnInternalIdle();
+
   wxMenuBar    *m_frameMenuBar;
   wxStatusBar  *m_frameStatusBar;
   wxToolBar    *m_frameToolBar;