+
+/**
+ Values used by wxPropertySheetDialog::SetSheetStyle
+*/
+enum wxPropertySheetDialogFlags
+{
+ /**
+ Uses the default look and feel for the controller window,
+ normally a notebook except on Smartphone where a choice control is used.
+ */
+ wxPROPSHEET_DEFAULT = 0x0001,
+
+ /**
+ Uses a notebook for the controller window.
+ */
+ wxPROPSHEET_NOTEBOOK = 0x0002,
+
+ /**
+ Uses a toolbook for the controller window.
+ */
+ wxPROPSHEET_TOOLBOOK = 0x0004,
+
+ /**
+ Uses a choicebook for the controller window.
+ */
+ wxPROPSHEET_CHOICEBOOK = 0x0008,
+
+ /**
+ Uses a listbook for the controller window.
+ */
+ wxPROPSHEET_LISTBOOK = 0x0010,
+
+ /**
+ Uses a button toolbox for the controller window.
+ */
+ wxPROPSHEET_BUTTONTOOLBOOK = 0x0020,
+
+ /**
+ Uses a treebook for the controller window.
+ */
+ wxPROPSHEET_TREEBOOK = 0x0040,
+
+ /**
+ Shrinks the dialog window to fit the currently selected page
+ (common behaviour for property sheets on Mac OS X).
+ */
+ wxPROPSHEET_SHRINKTOFIT = 0x0100,
+};
+
+