Added wxPROPSHEET_TREEBOOK option
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39844 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -40,6 +40,9 @@
|
||||
#if wxUSE_LISTBOOK
|
||||
#include "wx/listbook.h"
|
||||
#endif
|
||||
#if wxUSE_TREEBOOK
|
||||
#include "wx/treebook.h"
|
||||
#endif
|
||||
|
||||
#include "wx/generic/propdlg.h"
|
||||
#include "wx/sysopt.h"
|
||||
@@ -159,6 +162,10 @@ wxBookCtrlBase* wxPropertySheetDialog::CreateBookCtrl()
|
||||
#if wxUSE_LISTBOOK
|
||||
if (GetSheetStyle() & wxPROPSHEET_LISTBOOK)
|
||||
bookCtrl = new wxListbook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );
|
||||
#endif
|
||||
#if wxUSE_TREEBOOK
|
||||
if (GetSheetStyle() & wxPROPSHEET_TREEBOOK)
|
||||
bookCtrl = new wxTreebook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );
|
||||
#endif
|
||||
if (!bookCtrl)
|
||||
bookCtrl = new wxBookCtrl(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style );
|
||||
|
Reference in New Issue
Block a user