1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface defs for wxButton, wxBitmapButton
7 // Created: 10-June-1998
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
19 MAKE_CONST_WXSTRING(ButtonNameStr);
31 //---------------------------------------------------------------------------
34 "A button is a control that contains a text string, and is one of the most
35 common elements of a GUI. It may be placed on a dialog box or panel, or
36 indeed almost any other window.", "
40 ============== ==========================================
41 wx.BU_LEFT Left-justifies the label. WIN32 only.
42 wx.BU_TOP Aligns the label to the top of the button.
44 wx.BU_RIGHT Right-justifies the bitmap label. WIN32 only.
45 wx.BU_BOTTOM Aligns the label to the bottom of the button.
47 wx.BU_EXACTFIT Creates the button as small as possible
48 instead of making it of the standard size
49 (which is the default behaviour.)
50 ============== ==========================================
54 ============ ==========================================
55 EVT_BUTTON Sent when the button is clicked.
56 ============ ==========================================
58 :see: `wx.BitmapButton`
61 class wxButton : public wxControl
64 %pythonAppend wxButton "self._setOORInfo(self)"
65 %pythonAppend wxButton() ""
69 wxButton(wxWindow* parent, wxWindowID id, const wxString& label,
70 const wxPoint& pos = wxDefaultPosition,
71 const wxSize& size = wxDefaultSize,
73 const wxValidator& validator = wxDefaultValidator,
74 const wxString& name = wxPyButtonNameStr),
75 "Create and show a button.", "");
79 "Precreate a Button for 2-phase creation.", "",
83 bool , Create(wxWindow* parent, wxWindowID id, const wxString& label,
84 const wxPoint& pos = wxDefaultPosition,
85 const wxSize& size = wxDefaultSize,
87 const wxValidator& validator = wxDefaultValidator,
88 const wxString& name = wxPyButtonNameStr),
89 "Acutally create the GUI Button for 2-phase creation.", "");
95 "This sets the button to be the default item for the panel or dialog box.", "");
99 static wxSize , GetDefaultSize(),
100 "Returns the default button size for this platform.", "");
102 static wxVisualAttributes
103 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
108 //---------------------------------------------------------------------------
111 DocStr(wxBitmapButton,
112 "A Button that contains a bitmap. A bitmap button can be supplied with a
113 single bitmap, and wxWidgets will draw all button states using this bitmap. If
114 the application needs more control, additional bitmaps for the selected state,
115 unpressed focused state, and greyed-out state may be supplied.", "
119 ============== =============================================
120 wx.BU_AUTODRAW If this is specified, the button will be drawn
121 automatically using the label bitmap only,
122 providing a 3D-look border. If this style is
123 not specified, the button will be drawn
124 without borders and using all provided
126 wx.BU_LEFT Left-justifies the label. WIN32 only.
127 wx.BU_TOP Aligns the label to the top of the button. WIN32
129 wx.BU_RIGHT Right-justifies the bitmap label. WIN32 only.
130 wx.BU_BOTTOM Aligns the label to the bottom of the
132 wx.BU_EXACTFIT Creates the button as small as possible
133 instead of making it of the standard size
134 (which is the default behaviour.)
135 ============== =============================================
139 =========== ==================================
140 EVT_BUTTON Sent when the button is clicked.
141 =========== ==================================
143 :see: `wx.Button`, `wx.Bitmap`
146 class wxBitmapButton : public wxButton
149 %pythonAppend wxBitmapButton "self._setOORInfo(self)"
150 %pythonAppend wxBitmapButton() ""
153 wxBitmapButton(wxWindow* parent, wxWindowID id, const wxBitmap& bitmap,
154 const wxPoint& pos = wxDefaultPosition,
155 const wxSize& size = wxDefaultSize,
156 long style = wxBU_AUTODRAW,
157 const wxValidator& validator = wxDefaultValidator,
158 const wxString& name = wxPyButtonNameStr),
159 "Create and show a button with a bitmap for the label.", "");
163 "Precreate a BitmapButton for 2-phase creation.", "",
167 bool , Create(wxWindow* parent, wxWindowID id, const wxBitmap& bitmap,
168 const wxPoint& pos = wxDefaultPosition,
169 const wxSize& size = wxDefaultSize,
170 long style = wxBU_AUTODRAW,
171 const wxValidator& validator = wxDefaultValidator,
172 const wxString& name = wxPyButtonNameStr),
173 "Acutally create the GUI BitmapButton for 2-phase creation.", "");
177 wxBitmap , GetBitmapLabel(),
178 "Returns the label bitmap (the one passed to the constructor).", "");
181 wxBitmap , GetBitmapDisabled(),
182 "Returns the bitmap for the disabled state.", "");
185 wxBitmap , GetBitmapFocus(),
186 "Returns the bitmap for the focused state.", "");
190 wxBitmap , GetBitmapSelected(),
191 "Returns the bitmap for the selected state.", "");
195 void , SetBitmapDisabled(const wxBitmap& bitmap),
196 "Sets the bitmap for the disabled button appearance.", "");
200 void , SetBitmapFocus(const wxBitmap& bitmap),
201 "Sets the bitmap for the button appearance when it has the keyboard focus.", "");
205 void , SetBitmapSelected(const wxBitmap& bitmap),
206 "Sets the bitmap for the selected (depressed) button appearance.", "");
210 void , SetBitmapLabel(const wxBitmap& bitmap),
211 "Sets the bitmap label for the button. This is the bitmap used for the
212 unselected state, and for all other states if no other bitmaps are provided.", "");
215 void SetMargins(int x, int y);
216 int GetMarginX() const;
217 int GetMarginY() const;
221 //---------------------------------------------------------------------------