1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/bmpbutton.h
4 // Author: Robert Roebling
5 // Copyright: (c) 1998 Robert Roebling
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 #ifndef _WX_GTK_BMPBUTTON_H_
10 #define _WX_GTK_BMPBUTTON_H_
12 // ----------------------------------------------------------------------------
14 // ----------------------------------------------------------------------------
16 class WXDLLIMPEXP_CORE wxBitmapButton
: public wxBitmapButtonBase
21 wxBitmapButton(wxWindow
*parent
,
23 const wxBitmap
& bitmap
,
24 const wxPoint
& pos
= wxDefaultPosition
,
25 const wxSize
& size
= wxDefaultSize
,
27 const wxValidator
& validator
= wxDefaultValidator
,
28 const wxString
& name
= wxButtonNameStr
)
30 Create(parent
, id
, bitmap
, pos
, size
, style
, validator
, name
);
33 bool Create(wxWindow
*parent
,
35 const wxBitmap
& bitmap
,
36 const wxPoint
& pos
= wxDefaultPosition
,
37 const wxSize
& size
= wxDefaultSize
,
39 const wxValidator
& validator
= wxDefaultValidator
,
40 const wxString
& name
= wxButtonNameStr
);
43 DECLARE_DYNAMIC_CLASS(wxBitmapButton
)
46 #endif // _WX_GTK_BMPBUTTON_H_