removed some members from wxAuiPaneInfo which should not be on the class interface

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43606 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Benjamin Williams
2006-11-22 20:22:27 +00:00
parent 90b0f5fced
commit 8d0634abcf
2 changed files with 19 additions and 16 deletions

View File

@@ -299,9 +299,6 @@ public:
wxAuiPaneInfo& Floatable(bool b = true) { return SetFlag(optionFloatable, b); }
wxAuiPaneInfo& Movable(bool b = true) { return SetFlag(optionMovable, b); }
wxAuiPaneInfo& SaveHidden() { return SetFlag(optionSavedHidden, HasFlag(optionHidden)); }
wxAuiPaneInfo& RestoreHidden() { return SetFlag(optionHidden, HasFlag(optionSavedHidden)); }
wxAuiPaneInfo& Dockable(bool b = true)
{
return TopDockable(b).BottomDockable(b).LeftDockable(b).RightDockable(b);
@@ -378,15 +375,16 @@ public:
optionActive = 1 << 14,
optionGripperTop = 1 << 15,
optionMaximized = 1 << 16,
optionSavedHidden = 1 << 17,
buttonClose = 1 << 24,
buttonMaximize = 1 << 25,
buttonMinimize = 1 << 26,
buttonPin = 1 << 27,
buttonCustom1 = 1 << 28,
buttonCustom2 = 1 << 29,
buttonCustom3 = 1 << 30,
buttonClose = 1 << 22,
buttonMaximize = 1 << 23,
buttonMinimize = 1 << 24,
buttonPin = 1 << 25,
buttonCustom1 = 1 << 26,
buttonCustom2 = 1 << 27,
buttonCustom3 = 1 << 28,
savedHiddenState = 1 << 30, // used internally
actionPane = 1 << 31 // used internally
};