#ifndef _WX_PROPDLG_H_
#define _WX_PROPDLG_H_
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "propdlg.h"
-#endif
+#include "wx/defs.h"
+
+#if wxUSE_BOOKCTRL
class WXDLLEXPORT wxBookCtrlBase;
// kind of book control.
//-----------------------------------------------------------------------------
-class WXDLLEXPORT wxPropertySheetDialog : public wxDialog
+class WXDLLIMPEXP_ADV wxPropertySheetDialog : public wxDialog
{
public:
wxPropertySheetDialog() : wxDialog() { Init(); }
long style = wxDEFAULT_DIALOG_STYLE,
const wxString& name = wxDialogNameStr);
- void Init();
-
//// Accessors
// Set and get the notebook
// Adds the book control to the inner sizer.
virtual void AddBookCtrl(wxSizer* sizer);
+ // Set the focus
+ void OnActivate(wxActivateEvent& event);
+
+private:
+ void Init();
+
protected:
wxBookCtrlBase* m_bookCtrl;
wxSizer* m_innerSizer; // sizer for extra space
DECLARE_DYNAMIC_CLASS(wxPropertySheetDialog)
+ DECLARE_EVENT_TABLE()
};
+#endif // wxUSE_BOOKCTRL
+
#endif // _WX_PROPDLG_H_