]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/splitter.h
unused parameter warnings suppressed
[wxWidgets.git] / include / wx / generic / splitter.h
index aa70baae1d38aace1d7fc5998a1d4a3aeb429229..e2378b42d3e6ba34b2d6607117551027296f55f6 100644 (file)
@@ -160,6 +160,9 @@ public:
     // Adjusts the panes
     void OnSize(wxSizeEvent& event);
 
     // Adjusts the panes
     void OnSize(wxSizeEvent& event);
 
+    // In live mode, resize child windows in idle time
+    void OnIdle(wxIdleEvent& event);
+
     // Draws borders
     void DrawBorders(wxDC& dc);
 
     // Draws borders
     void DrawBorders(wxDC& dc);
 
@@ -189,6 +192,7 @@ protected:
 
     int         m_splitMode;
     bool        m_permitUnsplitAlways;
 
     int         m_splitMode;
     bool        m_permitUnsplitAlways;
+    bool        m_needUpdating; // when in live mode, set the to TRUE to resize children in idle
     wxWindow*   m_windowOne;
     wxWindow*   m_windowTwo;
     int         m_dragMode;
     wxWindow*   m_windowOne;
     wxWindow*   m_windowTwo;
     int         m_dragMode;
@@ -277,7 +281,11 @@ public:
     }
 
 private:
     }
 
 private:
+#ifdef __MWERKS__
+    friend class wxSplitterWindow;
+#else
     friend wxSplitterWindow;
     friend wxSplitterWindow;
+#endif
 
     // data for the different types of event
     union
 
     // data for the different types of event
     union