wxStdDialogButtonSizer

wxStdDialogButtonSizer
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.

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 add_button() 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.

Functions/Procedures
Supertopics

wxStdDialogButtonSizer

[proc]
add_button
( atom dbs, atom button )

Category: wxStdDialogButtonSizer

Adds a button to the wxStdDialogButtonSizer dbs.

The button must have one of the following identifiers:

  • wxID_OK
  • wxID_YES
  • wxID_SAVE
  • wxID_APPLY
  • wxID_NO
  • wxID_CANCEL
  • wxID_HELP
  • wxID_CONTEXT_HELP

    wxStdDialogButtonSizer

    [proc]
    realize
    ( atom dbs )

    Category: wxStdDialogButtonSizer

    Rearranges the buttons and applies proper spacing between buttons to make them match the platform or toolkit's interface guidelines.