DocStr(GetPosition, // sets the docstring for both
- "Returns the position of the mouse in window coordinates when the event happened.");
+ "Returns the position of the mouse in window coordinates when the event
+happened.", "");
wxPoint GetPosition();
DocDeclAName(
DocStr(GetPosition, // sets the docstring for both
- "Find the position of the event.");
+ "Find the position of the event.", "");
wxPoint GetPosition();
DocDeclAName(
// direction: forward (True) or backward (False)
bool GetDirection() const;
- void SetDirection(bool bForward);
+ void SetDirection(bool forward);
// it may be a window change event (MDI, notebook pages...) or a control
// change event
bool IsWindowChange() const;
- void SetWindowChange(bool bIs);
+ void SetWindowChange(bool ischange);
+ void SetFlags(long flags);
+
// the child which has the focus currently (may be NULL - use
// wxWindow::FindFocus then)
wxWindow* GetCurrentFocus() const;
void SetCurrentFocus(wxWindow *win);
+
+ enum {
+ IsForward,
+ WinChange
+ };
};