]> git.saurik.com Git - wxWidgets.git/commitdiff
wxAUI: Make 2 methods virtual and unprotect member variables to enable apps to do...
authorAlex Bligh <alex@alex.org.uk>
Tue, 4 Jul 2006 19:25:07 +0000 (19:25 +0000)
committerAlex Bligh <alex@alex.org.uk>
Tue, 4 Jul 2006 19:25:07 +0000 (19:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39981 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/aui/framemanager.h

index a2edc97c4a33b344fda40fcbd9bdc27b4abe38f6..bf6be96077e6c041febd051f88edc52ffc2dbe24 100644 (file)
@@ -397,7 +397,7 @@ public:
 
     void Update();
 
-private:
+protected:
 
     void DrawHintRect(wxWindow* pane_window,
                        const wxPoint& pt,
@@ -446,11 +446,10 @@ private:
     void GetPanePositionsAndSizes(wxDockInfo& dock,
                               wxArrayInt& positions,
                               wxArrayInt& sizes);
-    void ShowHint(const wxRect& rect);
-    void HideHint();
-    void RemoveHint();
+    virtual void ShowHint(const wxRect& rect);
+    virtual void HideHint();
 
-private:
+protected:
 
     // events
     void OnPaint(wxPaintEvent& event);
@@ -465,7 +464,7 @@ private:
     void OnChildFocus(wxChildFocusEvent& event);
     void OnHintFadeTimer(wxTimerEvent& event);
 
-private:
+protected:
 
     enum
     {
@@ -477,7 +476,7 @@ private:
         actionDragFloatingPane
     };
 
-private:
+protected:
 
     wxFrame* m_frame;            // the frame being managed
     wxDockArt* m_art;            // dock art object which does all drawing