From 3edb17decfb3d4d52e7f80c01dd9e92f5e5ef62b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 13 Feb 2006 19:13:38 +0000 Subject: [PATCH] new GetShown, Show, and etc. for wx.UpdateUIEvent git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_event.i | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/wxPython/src/_event.i b/wxPython/src/_event.i index 3a0d4194e4..20ca58a9b1 100644 --- a/wxPython/src/_event.i +++ b/wxPython/src/_event.i @@ -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), -- 2.45.2