#include <wx/sizer.h>

When there aren't interface guidelines defined for a particular platform or toolkit, wxStdDialogButtonSizer reverts to the Windows implementation.
To use this class, first add buttons to the sizer by calling wxStdDialogButtonSizer::AddButton (or wxStdDialogButtonSizer::SetAffirmativeButton, wxStdDialogButtonSizer::SetNegativeButton or wxStdDialogButtonSizer::SetCancelButton) and then call Realize in order to create the actual button layout used. Other than these special operations, this sizer works like any other sizer.
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.
Public Member Functions | |
| wxStdDialogButtonSizer () | |
| void | AddButton (wxButton *button) |
| void | Realize () |
| void | SetAffirmativeButton (wxButton *button) |
| void | SetCancelButton (wxButton *button) |
| void | SetNegativeButton (wxButton *button) |
| wxStdDialogButtonSizer::wxStdDialogButtonSizer | ( | ) |
Constructor for a wxStdDialogButtonSizer.
| void wxStdDialogButtonSizer::AddButton | ( | wxButton * | button | ) |
Adds a button to the wxStdDialogButtonSizer. The button must have one of the following identifiers:
| void wxStdDialogButtonSizer::Realize | ( | ) |
Rearranges the buttons and applies proper spacing between buttons to make them match the platform or toolkit's interface guidelines.
| void wxStdDialogButtonSizer::SetAffirmativeButton | ( | wxButton * | button | ) |
Sets the affirmative button for the sizer.
This allows you to use identifiers other than the standard identifiers outlined above.
| void wxStdDialogButtonSizer::SetCancelButton | ( | wxButton * | button | ) |
Sets the cancel button for the sizer.
This allows you to use identifiers other than the standard identifiers outlined above.
| void wxStdDialogButtonSizer::SetNegativeButton | ( | wxButton * | button | ) |
Sets the negative button for the sizer.
This allows you to use identifiers other than the standard identifiers outlined above.
|
[ top ] |