]> git.saurik.com Git - wxWidgets.git/commitdiff
Picker control updates
authorRobin Dunn <robin@alldunn.com>
Tue, 27 Jun 2006 22:37:13 +0000 (22:37 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 27 Jun 2006 22:37:13 +0000 (22:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39867 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_picker.i

index a324df12754f4ef956b16715ac2be4d9a96cb2d7..78eb6632c2344988337a8c5457645de249226dcf 100644 (file)
@@ -68,6 +68,23 @@ The value passed to this function must be >= 1.", "");
         int , GetTextCtrlProportion() const,
         "Returns the proportion between the text control and the picker.", "");
 
+    DocDeclStr(
+        bool , IsTextCtrlGrowable() const,
+        "", "");
+
+    DocDeclStr(
+        void , SetTextCtrlGrowable(bool grow = true),
+        "", "");
+    
+
+    DocDeclStr(
+        bool , IsPickerCtrlGrowable() const,
+        "", "");
+    
+    DocDeclStr(
+        void , SetPickerCtrlGrowable(bool grow = true),
+        "", "");
+        
 
     DocDeclStr(
         bool , HasTextCtrl() const,
@@ -256,6 +273,12 @@ public:
     wxString GetPath() const;
     void SetPath(const wxString &str);
 
+    // return true if the given path is valid for this control
+    bool CheckPath(const wxString& path) const;
+
+    // Returns the filtered value currently placed in the text control (if present).
+    wxString GetTextCtrlValue() const;
+
 };
 
 
@@ -292,6 +315,12 @@ public:
 
     wxString GetPath() const;
     void SetPath(const wxString &str);
+    
+    // return true if the given path is valid for this control
+    bool CheckPath(const wxString& path) const;
+
+    // Returns the filtered value currently placed in the text control (if present).
+    wxString GetTextCtrlValue() const;
 };