Added Navigate, SetMinSize, SetMaxSize wxWindow methods

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27819 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-06-16 02:17:01 +00:00
parent 49f1dc5e8a
commit 3b74f19449
2 changed files with 66 additions and 18 deletions

View File

@@ -1104,17 +1104,24 @@ public:
// 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
};
};