Displaying 2 results from an estimated 2 matches for "m_mgr".
2007 May 05
0
[1012] trunk/wxruby2/doc/textile: Added docs for AUI Advanced User Interface classes
...tch processing can be used to avoid
+flicker, by modifying more than one pane at a time, and then "committing"
+all of the changes at once by calling Update().
+
+Panes can be added quite easily:
+
+
+ TextCtrl* text1 = new TextCtrl(this, -1);
+ TextCtrl* text2 = new TextCtrl(this, -1);
+ m_mgr.AddPane(text1, LEFT, T("Pane Caption"));
+ m_mgr.AddPane(text2, BOTTOM, T("Pane Caption"));
+ m_mgr.Update();
+
+
+Later on, the positions can be modified easily. The following will float
+an existing pane in a tool window:
+
+
+ m_mgr.GetPane(text1).Float();
+
+
+h2. Layers,...
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...wxBitmap& bitmap);
+ wxBitmap GetPageBitmap(size_t page_idx) const;
+
+ size_t SetSelection(size_t new_page);
+ int GetSelection() const;
+
+ virtual void Split(size_t page, int direction);
+
+#if wxABI_VERSION >= 20801
+ const wxAuiManager& GetAuiManager() const { return m_mgr; }
+#endif
+
+protected:
+
+ // these can be overridden
+        // NB - made non-virtual so that base class works
+ void UpdateTabCtrlHeight();
+ int CalculateTabCtrlHeight();
+ wxSize CalculateNewSplitSize();
+
+prote...