]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/rearrangectrl.h
make wxRearrangeDialog more customizable and add an example of customizing it to...
[wxWidgets.git] / include / wx / rearrangectrl.h
index da1b0c1d69fed0d106600cb575655944992edc32..da809d5cbf97e0dad54d3a12a8f3aae0740edce8 100644 (file)
@@ -199,9 +199,21 @@ public:
                 const wxPoint& pos = wxDefaultPosition,
                 const wxString& name = wxRearrangeDialogNameStr);
 
+
+    // methods for the dialog customization
+
+    // add extra contents to the dialog below the wxRearrangeCtrl part: the
+    // given window (usually a wxPanel containing more control inside it) must
+    // have the dialog as its parent and will be inserted into it at the right
+    // place by this method
+    void AddExtraControls(wxWindow *win);
+
+    // return the wxRearrangeList control used by the dialog
+    wxRearrangeList *GetList() const;
+
+
     // get the order of items after it was modified by the user
-    wxArrayInt GetOrder() const
-        { return m_ctrl->GetList()->GetCurrentOrder(); }
+    wxArrayInt GetOrder() const;
 
 private:
     // common part of all ctors