]>
git.saurik.com Git - wxWidgets.git/blob - interface/button.h
3db1b2dcc3b99c0a4cfc50ad77a983227cf710f7
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxButton class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
13 A button is a control that contains a text string,
14 and is one of the most common elements of a GUI. It may be placed on a
15 @ref overview_wxdialog "dialog box" or panel, or indeed
16 almost any other window.
20 Left-justifies the label. Windows and GTK+ only.
22 Aligns the label to the top of the button. Windows and GTK+ only.
24 Right-justifies the bitmap label. Windows and GTK+ only.
26 Aligns the label to the bottom of the button. Windows and GTK+ only.
27 @style{wxBU_EXACTFIT}:
28 Creates the button as small as possible instead of making it of the
29 standard size (which is the default behaviour ).
30 @style{wxBORDER_NONE}:
31 Creates a flat button. Windows and GTK+ only.
35 @event{EVT_BUTTON(id, func)}:
36 Process a wxEVT_COMMAND_BUTTON_CLICKED event, when the button is
42 @appearance{button.png}
47 class wxButton
: public wxControl
52 Constructor, creating and showing a button.
53 The preferred way to create standard buttons is to use default value of
54 @e label. If no label is supplied and @a id is one of standard IDs from
55 @ref overview_stockitems "this list", standard label will be used. In addition
57 that, the button will be decorated with stock icons under GTK+ 2.
60 Parent window. Must not be @NULL.
62 Button identifier. A value of wxID_ANY indicates a default value.
64 Text to be displayed on the button.
68 Button size. If the default size is specified then the button is sized
69 appropriately for the text.
71 Window style. See wxButton.
77 @see Create(), wxValidator
80 wxButton(wxWindow
* parent
, wxWindowID id
,
81 const wxString
& label
= wxEmptyString
,
82 const wxPoint
& pos
= wxDefaultPosition
,
83 const wxSize
& size
= wxDefaultSize
,
85 const wxValidator
& validator
= wxDefaultValidator
,
86 const wxString
& name
= "button");
90 Destructor, destroying the button.
95 Button creation function for two-step creation. For more details, see
98 bool Create(wxWindow
* parent
, wxWindowID id
,
99 const wxString
& label
= wxEmptyString
,
100 const wxPoint
& pos
= wxDefaultPosition
,
101 const wxSize
& size
= wxDefaultSize
,
103 const wxValidator
& validator
,
104 const wxString
& name
= "button");
107 Returns the default size for the buttons. It is advised to make all the dialog
108 buttons of the same size and this function allows to retrieve the (platform and
109 current font dependent size) which should be the best suited for this.
111 wxSize
GetDefaultSize();
114 Returns the string label for the button.
116 @returns The button's label.
123 This sets the button to be the default item for the panel or dialog
126 @remarks Under Windows, only dialog box buttons respond to this function.
127 As normal under Windows and Motif, pressing return
128 causes the default button to be depressed when the
129 return key is pressed. See also wxWindow::SetFocus
130 which sets the keyboard focus for windows and text
131 panel items, and wxTopLevelWindow::SetDefaultItem.
136 Sets the string label for the button.
141 void SetLabel(const wxString
& label
);