]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/ribbon/control.h
Add expand/collapse button to wxRibbonBar.
[wxWidgets.git] / include / wx / ribbon / control.h
index 35cfd5777c8268af684bf0d93a508b852eb99255..9fd1b92a1d6f353e5a3bd5eb9bf1e211f9233e47 100644 (file)
@@ -19,6 +19,7 @@
 #include "wx/control.h"
 #include "wx/dynarray.h"
 
+class wxRibbonBar;
 class wxRibbonArtProvider;
 
 class WXDLLIMPEXP_RIBBON wxRibbonControl : public wxControl
@@ -55,6 +56,11 @@ public:
     virtual bool Realize();
     bool Realise() {return Realize();}
 
+    virtual wxRibbonBar* GetAncestorRibbonBar()const;
+
+    // Finds the best width and height given the parent's width and height
+    virtual wxSize GetBestSizeForParentSize(const wxSize& WXUNUSED(parentSize)) const { return GetBestSize(); }
+
 protected:
     wxRibbonArtProvider* m_art;