Added Description Box Height to saveable/restoreable editable state

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56074 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2008-10-04 10:59:06 +00:00
parent a5d567622f
commit 6280517046
5 changed files with 85 additions and 5 deletions

View File

@@ -520,11 +520,19 @@ public:
PageState = 0x08,
/** Include splitter position. Stored for each page. */
SplitterPosState = 0x10,
/** Include description box size.
Only applies to wxPropertyGridManager. */
DescBoxState = 0x20,
/** Include all supported user editable state information. This is
usually the default value. */
AllStates = SelectionState | ExpandedState | ScrollPosState |
PageState | SplitterPosState
/**
Include all supported user editable state information.
This is usually the default value. */
AllStates = SelectionState |
ExpandedState |
ScrollPosState |
PageState |
SplitterPosState |
DescBoxState
};
/**