IsVisible --> IsShownOnScreen

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41233 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-09-14 20:27:47 +00:00
parent e393c3fb10
commit 16ec1954b1

View File

@@ -733,6 +733,10 @@ sizer, interior children, or other means)", "");
// void SetScrollHelper( wxScrollHelper *sh );
// wxScrollHelper *GetScrollHelper();
// window state // window state
// ------------ // ------------
@@ -771,7 +775,7 @@ window had already been in the specified state.", "");
"Returns true if the window is enabled for input, false otherwise.", ""); "Returns true if the window is enabled for input, false otherwise.", "");
DocDeclStr( DocDeclStr(
virtual bool , IsVisible() const, virtual bool , IsShownOnScreen() const,
"Returns ``True`` if the window is physically visible on the screen, "Returns ``True`` if the window is physically visible on the screen,
i.e. it is shown and all its parents up to the toplevel window are i.e. it is shown and all its parents up to the toplevel window are
shown as well.", ""); shown as well.", "");
@@ -1294,6 +1298,14 @@ for all controls so it is mostly just a hint to wxWindows and not a
mandatory directive.", ""); mandatory directive.", "");
DocDeclStr(
virtual bool , IsFrozen() const,
"Returns ``True`` if the window has been frozen and not thawed yet.
:see: `Freeze` and `Thaw`", "");
DocDeclStr( DocDeclStr(
virtual void , Thaw(), virtual void , Thaw(),
"Reenables window updating after a previous call to Freeze. Calls to "Reenables window updating after a previous call to Freeze. Calls to