1 \section{\class{wxPropertySheetDialog
}}\label{wxpropertysheetdialog
}
3 This class represents a property sheet dialog: a tabbed dialog
4 for showing settings. It is optimized to show flat tabs
5 on PocketPC devices, and can be customized to use different
6 controllers instead of the default notebook style.
8 To use this class, call
\helpref{wxPropertySheetDialog::Create
}{wxpropertysheetdialogcreate
} from your own
9 Create function. Then call
\helpref{CreateButtons
}{wxpropertysheetdialogcreatebuttons
}, and create pages, adding them to the book control.
10 Finally call
\helpref{LayoutDialog
}{wxpropertysheetdialoglayoutdialog
}.
15 bool MyPropertySheetDialog::Create(...)
17 if (!wxPropertySheetDialog::Create(...))
20 CreateButtons(wxOK|wxCANCEL|wxHELP);
23 wxPanel* panel = new wxPanel(GetBookCtrl(), ...);
24 GetBookCtrl()->AddPage(panel, wxT("General"));
31 If necessary, override CreateBookCtrl and AddBookCtrl to create and add a different
32 kind of book control. You would then need to use two-step construction for the dialog.
33 Or, change the style of book control by calling
\helpref{SetSheetStyle
}{wxpropertysheetdialogsetsheetstyle
}
34 before calling Create.
36 The dialogs sample shows this class being used with notebook and toolbook controllers (for
37 Windows-style and Mac-style settings dialogs).
39 \wxheading{Derived from
}
41 \helpref{wxDialog
}{wxdialog
}\\
42 \helpref{wxTopLevelWindow
}{wxtoplevelwindow
}\\
43 \helpref{wxWindow
}{wxwindow
}\\
44 \helpref{wxEvtHandler
}{wxevthandler
}\\
45 \helpref{wxObject
}{wxobject
}
47 \wxheading{Include files
}
50 <wx/generic/propdlg.h>
53 \helpref{wxAdv
}{librarieslist
}
56 \latexignore{\rtfignore{\wxheading{Members
}}}
58 \membersection{wxPropertySheetDialog::wxPropertySheetDialog
}\label{wxpropertysheetdialogctor
}
60 \func{}{wxPropertySheetDialog
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id
},
\rtfsp
61 \param{const wxString\&
}{title
},
\rtfsp
62 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
\rtfsp
63 \param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
64 \param{long
}{ style = wxDEFAULT
\_DIALOG\_STYLE},
\rtfsp
65 \param{const wxString\&
}{name = ``dialogBox"
}}
69 \membersection{wxPropertySheetDialog::AddBookCtrl
}\label{wxpropertysheetdialogaddbookctrl
}
71 \func{virtual void
}{AddBookCtrl
}{\param{wxSizer*
}{sizer
}}
73 Override this if you wish to add the book control in a way different from the
74 standard way (for example, using different spacing).
76 \membersection{wxPropertySheetDialog::Create
}\label{wxpropertysheetdialogcreate
}
78 \func{bool
}{Create
}{\param{wxWindow*
}{parent
},
\param{wxWindowID
}{id
},
\rtfsp
79 \param{const wxString\&
}{title
},
\rtfsp
80 \param{const wxPoint\&
}{pos = wxDefaultPosition
},
\rtfsp
81 \param{const wxSize\&
}{size = wxDefaultSize
},
\rtfsp
82 \param{long
}{ style = wxDEFAULT
\_DIALOG\_STYLE},
\rtfsp
83 \param{const wxString\&
}{name = ``dialogBox"
}}
85 Call this from your own Create function, before adding buttons and pages.
87 \membersection{wxPropertySheetDialog::CreateBookCtrl
}\label{wxpropertysheetdialogcreatebookctrl
}
89 \func{virtual wxBookCtrlBase*
}{CreateBookCtrl
}{\void}
91 Override this if you wish to create a different kind of book control; by default, the value
92 passed to
\helpref{SetSheetStyle
}{wxpropertysheetdialogsetsheetstyle
} is used to determine the control.
93 The default behaviour is to create a notebook except on Smartphone, where a choicebook is used.
95 \membersection{wxPropertySheetDialog::CreateButtons
}\label{wxpropertysheetdialogcreatebuttons
}
97 \func{void
}{CreateButtons
}{\param{int
}{flags=wxOK|wxCANCEL
}}
99 Call this to create the buttons for the dialog. This calls
\helpref{wxDialog::CreateButtonSizer
}{wxdialogcreatebuttonsizer
}, and
100 the flags are the same. On PocketPC, no buttons are created.
102 \membersection{wxPropertySheetDialog::GetBookCtrl
}\label{wxpropertysheetdialoggetbookctrl
}
104 \constfunc{wxBookCtrlBase*
}{GetBookCtrl
}{\void}
106 Returns the book control that will contain your settings pages.
108 \membersection{wxPropertySheetDialog::GetInnerSizer
}\label{wxpropertysheetdialoggetinnersizer
}
110 \constfunc{wxSizer*
}{GetInnerSizer
}{\void}
112 Returns the inner sizer that contains the book control and button sizer.
114 \membersection{wxPropertySheetDialog::GetSheetStyle
}\label{wxpropertysheetdialoggetsheetstyle
}
116 \constfunc{long
}{GetSheetStyle
}{\void}
118 Returns the sheet style. See
\helpref{SetSheetStyle
}{wxpropertysheetdialogsetsheetstyle
} for
121 \membersection{wxPropertySheetDialog::LayoutDialog
}\label{wxpropertysheetdialoglayoutdialog
}
123 \func{void
}{LayoutDialog
}{\param{int
}{ centreFlags=wxBOTH
}}
125 Call this to lay out the dialog. On PocketPC, this does nothing, since the dialog will be shown
126 full-screen, and the layout will be done when the dialog receives a size event.
128 \membersection{wxPropertySheetDialog::SetBookCtrl
}\label{wxpropertysheetdialogsetbookctrl
}
130 \func{void
}{SetBookCtrl
}{\param{wxBookCtrlBase*
}{bookCtrl
}}
132 Sets the book control used for the dialog. You will normally not need to use this.
134 \membersection{wxPropertySheetDialog::SetInnerSizer
}\label{wxpropertysheetdialogsetinnersizer
}
136 \func{void
}{SetInnerSizer
}{\param{wxSizer*
}{ sizer
}}
138 Sets the inner sizer that contains the book control and button sizer. You will normally not need to use this.
140 \membersection{wxPropertySheetDialog::SetSheetStyle
}\label{wxpropertysheetdialogsetsheetstyle
}
142 \func{void
}{SetSheetStyle
}{\param{long
}{ style
}}
144 You can customize the look and feel of the dialog by setting the sheet style. It is
145 a bit list of the following values:
148 \begin{twocollist
}\itemsep=
0pt
149 \twocolitem{wxPROPSHEET
\_DEFAULT}{Uses the default look and feel for the controller window,
150 normally a notebook except on Smartphone where a choice control is used.
}
151 \twocolitem{wxPROPSHEET
\_NOTEBOOK}{Uses a notebook for the controller window.
}
152 \twocolitem{wxPROPSHEET
\_TOOLBOOK}{Uses a toolbook for the controller window.
}
153 \twocolitem{wxPROPSHEET
\_CHOICEBOOK}{Uses a choicebook for the controller window.
}
154 \twocolitem{wxPROPSHEET
\_LISTBOOK}{Uses a listbook for the controller window.
}
155 \twocolitem{wxPROPSHEET
\_TREEBOOK}{Uses a treebook for the controller window.
}
156 \twocolitem{wxPROPSHEET
\_SHRINKTOFIT}{Shrinks the dialog window to fit the currently selected page (common behaviour for
157 property sheets on Mac OS X).
}