]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/stdbtnsz.tex
Added documentation for wxStdDialogButtonSizer.
[wxWidgets.git] / docs / latex / wx / stdbtnsz.tex
1 \section{\class{wxStdDialogButtonSizer}}\label{wxstddialogbuttonsizer}
2
3 This class creates button layouts which conform to the standard button spacing and ordering defined by the platform or toolkit's user interface guidelines (if such things exist). By using this class, you can ensure that all your standard dialogs look correct on all major platforms. Currently it conforms to the Windows, GTK and Mac OS X human interface guidelines.
4
5 When there aren't interface guidelines defined for a particular platform or toolkit, wxStdDialogButtonSizer reverts to the Windows implementation.
6
7 TO USE THIS CLASS: First, add buttons to the sizer by calling AddButton (or SetAffirmativeButton, SetNegativeButton, or SetCancelButton) and then call Finalise in order to create the actual button layout used. Other than these special operations, this sizer works like any other sizer.
8
9 ALSO NOTE: If you add a button with wxID_SAVE, on Mac OS X the button will be renamed to "Save" and the wxID_NO button will be renamed to "Don't Save" in accordance with the Mac OS X Human Interface Guidelines.
10
11 \wxheading{Derived from}
12
13 \helpref{wxBoxSizer}{wxboxsizer}\\
14 \helpref{wxSizer}{wxsizer}\\
15 \helpref{wxObject}{wxobject}
16
17 \wxheading{Include files}
18
19 <wx/sizer.h>
20
21 \wxheading{See also}
22
23 \helpref{wxSizer}{wxsizer}, \helpref{Sizer overview}{sizeroverview}
24
25 \func{}{wxStdDialogButtonSizer}{\void}
26
27 Constructor for a wxStdDialogButtonSizer.
28
29 \membersection{wxStdDialogButtonSizer::AddButton}\label{wxstddialogbuttonsizeraddbutton}
30
31 \func{void}{AddButton}{\param{wxButton* }{button}}
32
33 Adds a button to the wxStdDialogButtonSizer. The button must have one of the following IDs:
34
35 \begin{itemize}
36 \item wxID_OK
37 \item wxID_YES
38 \item wxID_SAVE
39 \item wxID_APPLY
40 \item wxID_NO
41 \item wxID_CANCEL
42 \item wxID_HELP
43 \end{itemize}
44
45 \membersection{wxStdDialogButtonSizer::Finalise}\label{wxstddialogbuttonsizerfinalise}
46
47 \func{void}{Finalise}{\void}
48
49 Rearranges the buttons and applies proper spacing between buttons to make them match the platform or toolkit's interface guidelines.
50
51 \membersection{wxStdDialogButtonSizer::SetAffirmativeButton}\label{wxstddialogbuttonsizersetaffirmativebutton}
52
53 \func{void}{SetAffirmativeButton}{\param{wxButton* }{button}}
54
55 Sets the affirmative button for the sizer. This allows you to use IDs other than the standard IDs outlined above.
56
57 \membersection{wxStdDialogButtonSizer::SetCancelButton}\label{wxstddialogbuttonsizersetcancelbutton}
58
59 \func{void}{SetCancelButton}{\param{wxButton* }{button}}
60
61 Sets the cancel button for the sizer. This allows you to use IDs other than the standard IDs outlined above.
62
63 \membersection{wxStdDialogButtonSizer::SetNegativeButton}\label{wxstddialogbuttonsizersetnegativebutton}
64
65 \func{void}{SetNegativeButton}{\param{wxButton* }{button}}
66
67 Sets the negative button for the sizer. This allows you to use IDs other than the standard IDs outlined above.