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
This commit is contained in:
Robin Dunn
2006-02-13 19:13:38 +00:00
parent b702ab768f
commit 3edb17decf

View File

@@ -1938,6 +1938,10 @@ public:
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,6 +1961,10 @@ 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(
@@ -1967,6 +1975,11 @@ internal use only.", "");
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),
"Sets the text for this UI element.", "");