]> git.saurik.com Git - wxWidgets.git/commitdiff
new GetShown, Show, and etc. for wx.UpdateUIEvent
authorRobin Dunn <robin@alldunn.com>
Mon, 13 Feb 2006 19:13:38 +0000 (19:13 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 13 Feb 2006 19:13:38 +0000 (19:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_event.i

index 3a0d4194e4515815b8104c2db6a3e86231b02b96..20ca58a9b16427d8110a2bf39c698ee2cb916a33 100644 (file)
@@ -1937,7 +1937,11 @@ public:
     DocDeclStr(
         bool , GetEnabled() const,
         "Returns ``True`` if the UI element should be enabled.", "");
-    
+
+    DocDeclStr(
+        bool , GetShown() const,
+        "Returns ``True`` if the UI element should be shown.", "");
+        
     DocDeclStr(
         wxString , GetText() const,
         "Returns the text that should be set for the UI element.", "");
@@ -1957,7 +1961,11 @@ internal use only.", "");
         "Returns ``True`` if the application has called `Enable`. For wxWidgets
 internal use only.", "");
     
-
+    DocDeclStr(
+        bool , GetSetShown() const,
+        "Returns ``True`` if the application has called `Show`. For wxWidgets
+internal use only.", "");
+    
 
     DocDeclStr(
         void , Check(bool check),
@@ -1966,6 +1974,11 @@ internal use only.", "");
     DocDeclStr(
         void , Enable(bool enable),
         "Enable or disable the UI element.", "");
+
+    DocDeclStr(
+        void , Show(bool show),
+        "Show or hide the UI element.", "");
+    
     
     DocDeclStr(
         void , SetText(const wxString& text),