fix typo; document wxFlexSizerGrowMode

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58561 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-01-31 20:10:13 +00:00
parent 491bb4ba78
commit 52ceb90e10
2 changed files with 18 additions and 2 deletions

View File

@@ -1394,6 +1394,22 @@ public:
};
/**
Values which define the behaviour for resizing wxFlexGridSizer cells in the
"non-flexible" direction.
*/
enum wxFlexSizerGrowMode
{
/// Don't resize the cells in non-flexible direction at all.
wxFLEX_GROWMODE_NONE,
/// Uniformly resize only the specified ones (default).
wxFLEX_GROWMODE_SPECIFIED,
/// Uniformly resize all cells.
wxFLEX_GROWMODE_ALL
};
/**
@class wxFlexGridSizer