]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/bmpbuttn.h
Added wxRadioButton (not tested)
[wxWidgets.git] / include / wx / gtk1 / bmpbuttn.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: bmpbutton.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Created: 01/02/97
6 // Id:
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11
12 #ifndef __BMPBUTTONH__
13 #define __BMPBUTTONH__
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "wx/defs.h"
20 #include "wx/object.h"
21 #include "wx/list.h"
22 #include "wx/control.h"
23
24 //-----------------------------------------------------------------------------
25 // classes
26 //-----------------------------------------------------------------------------
27
28 class wxBitmapButton;
29
30 //-----------------------------------------------------------------------------
31 // global data
32 //-----------------------------------------------------------------------------
33
34 extern const char *wxButtonNameStr;
35
36 //-----------------------------------------------------------------------------
37 // wxBitmapButton
38 //-----------------------------------------------------------------------------
39
40 class wxBitmapButton: public wxControl
41 {
42 DECLARE_DYNAMIC_CLASS(wxBitmapButton)
43
44 public:
45
46 wxBitmapButton(void);
47 inline wxBitmapButton(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap,
48 const wxPoint& pos = wxDefaultPosition,
49 const wxSize& size = wxDefaultSize, long style = wxBU_AUTODRAW,
50 const wxValidator& validator = wxDefaultValidator,
51 const wxString& name = wxButtonNameStr)
52 {
53 Create(parent, id, bitmap, pos, size, style, validator, name);
54 }
55 bool Create(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap,
56 const wxPoint& pos = wxDefaultPosition,
57 const wxSize& size = wxDefaultSize, long style = wxBU_AUTODRAW,
58 const wxValidator& validator = wxDefaultValidator,
59 const wxString& name = wxButtonNameStr);
60 void SetDefault(void);
61 void SetLabel( const wxString &label );
62 wxString GetLabel(void) const;
63
64 public:
65
66 wxBitmap m_bitmap;
67
68 };
69 #endif // __BMPBUTTONH__