X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/64d3ed176d5b88473b69c7ab63075d50608d2f66..c33edc08d6a5f6937624347f25934937164c13a1:/include/wx/generic/propdlg.h diff --git a/include/wx/generic/propdlg.h b/include/wx/generic/propdlg.h index 5be620faca..b6c60227d4 100644 --- a/include/wx/generic/propdlg.h +++ b/include/wx/generic/propdlg.h @@ -16,7 +16,9 @@ #if wxUSE_BOOKCTRL -class WXDLLEXPORT wxBookCtrlBase; +#include "wx/dialog.h" + +class WXDLLIMPEXP_FWD_CORE wxBookCtrlBase; //----------------------------------------------------------------------------- // wxPropertySheetDialog @@ -49,25 +51,28 @@ class WXDLLEXPORT wxBookCtrlBase; //----------------------------------------------------------------------------- // Use the platform default -#define wxPROPSHEET_DEFAULT 0x0001 +#define wxPROPSHEET_DEFAULT 0x0001 // Use a notebook -#define wxPROPSHEET_NOTEBOOK 0x0002 +#define wxPROPSHEET_NOTEBOOK 0x0002 // Use a toolbook -#define wxPROPSHEET_TOOLBOOK 0x0004 +#define wxPROPSHEET_TOOLBOOK 0x0004 // Use a choicebook -#define wxPROPSHEET_CHOICEBOOK 0x0008 +#define wxPROPSHEET_CHOICEBOOK 0x0008 // Use a listbook -#define wxPROPSHEET_LISTBOOK 0x0010 - -// Shrink dialog to fit current page -#define wxPROPSHEET_SHRINKTOFIT 0x0100 +#define wxPROPSHEET_LISTBOOK 0x0010 // Use a wxButtonToolBar toolbook -#define wxPROPSHEET_BUTTONTOOLBOOK 0x0200 +#define wxPROPSHEET_BUTTONTOOLBOOK 0x0020 + +// Use a treebook +#define wxPROPSHEET_TREEBOOK 0x0040 + +// Shrink dialog to fit current page +#define wxPROPSHEET_SHRINKTOFIT 0x0100 class WXDLLIMPEXP_ADV wxPropertySheetDialog : public wxDialog { @@ -106,6 +111,14 @@ public: void SetSheetStyle(long sheetStyle) { m_sheetStyle = sheetStyle; } long GetSheetStyle() const { return m_sheetStyle ; } + // Set and get the border around the whole dialog + void SetSheetOuterBorder(int border) { m_sheetOuterBorder = border; } + int GetSheetOuterBorder() const { return m_sheetOuterBorder ; } + + // Set and get the border around the book control only + void SetSheetInnerBorder(int border) { m_sheetInnerBorder = border; } + int GetSheetInnerBorder() const { return m_sheetInnerBorder ; } + /// Operations // Creates the buttons (none on PocketPC) @@ -136,6 +149,8 @@ protected: wxBookCtrlBase* m_bookCtrl; wxSizer* m_innerSizer; // sizer for extra space long m_sheetStyle; + int m_sheetOuterBorder; + int m_sheetInnerBorder; int m_selectedPage; DECLARE_DYNAMIC_CLASS(wxPropertySheetDialog)