final prototype fixes to a*h headers; s/WXTYPE/wxEventType

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52815 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-25 16:01:21 +00:00
parent 222180ffe9
commit 1d497b996f
8 changed files with 83 additions and 107 deletions

View File

@@ -241,13 +241,6 @@ public:
bool LoadPerspective(const wxString& perspective,
bool update = true);
/**
ProcessDockResult() is a protected member of the wxAUI layout manager.
It can be overridden by derived classes to provide custom docking calculations.
*/
bool ProcessDockResult(wxAuiPaneInfo& target,
const wxAuiPaneInfo& new_pos);
/**
SavePaneInfo() is similar to SavePerspective, with the exception that it only
saves information about a single pane. It is used in combination with
@@ -328,6 +321,15 @@ public:
pane flicker to be avoided by updating the whole layout at one time.
*/
void Update();
protected:
/**
ProcessDockResult() is a protected member of the wxAUI layout manager.
It can be overridden by derived classes to provide custom docking calculations.
*/
virtual bool ProcessDockResult(wxAuiPaneInfo& target,
const wxAuiPaneInfo& new_pos);
};
@@ -764,6 +766,6 @@ public:
/**
Makes a copy of the wxAuiPaneInfo object.
*/
wxAuiPaneInfo& operator operator=(const wxAuiPaneInfo& c);
wxAuiPaneInfo& operator=(const wxAuiPaneInfo& c);
};