docstring update

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

View File

@@ -1622,9 +1622,14 @@ Warning: the window returned may be None!", "");
%newgroup; %newgroup;
DocStr(wxChildFocusEvent, DocStr(wxChildFocusEvent,
"wx.ChildFocusEvent notifies the parent that a child has received the "A child focus event is sent to a (parent-)window when one of its child
focus. Unlike `wx.FocusEvent` it is propagated up the window windows gains focus, so that the window could restore the focus back
heirarchy.", ""); to its corresponding child if it loses it now and regains later.
Notice that child window is the direct child of the window receiving
the event, and so may not be the actual widget recieving focus if it
is further down the containment heirarchy. Use `wx.Window.FindFocus`
to get the widget that is actually receiving focus.", "");
class wxChildFocusEvent : public wxCommandEvent class wxChildFocusEvent : public wxCommandEvent
@@ -1636,7 +1641,8 @@ public:
DocDeclStr( DocDeclStr(
wxWindow *, GetWindow() const, wxWindow *, GetWindow() const,
"The window which has just received the focus.", ""); "The window, or (grand)parent of the window which has just received the
focus.", "");
%property(Window, GetWindow, doc="See `GetWindow`"); %property(Window, GetWindow, doc="See `GetWindow`");
}; };