]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/bmpbuttn.h
fixed strange focus order in wxTipDialog and set initial focus to the checkbox instea...
[wxWidgets.git] / include / wx / gtk / bmpbuttn.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
29149a64 2// Name: wx/gtk/bmpbutton.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
dbf858b5 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10
11#ifndef __BMPBUTTONH__
12#define __BMPBUTTONH__
13
1e6feb95 14// ----------------------------------------------------------------------------
c801d85f 15// wxBitmapButton
1e6feb95 16// ----------------------------------------------------------------------------
c801d85f 17
20123d49 18class WXDLLIMPEXP_CORE wxBitmapButton: public wxBitmapButtonBase
151ccd11 19{
43a18898 20public:
c3dfaa10
VZ
21 wxBitmapButton() { Init(); }
22
1e6feb95
VZ
23 wxBitmapButton(wxWindow *parent,
24 wxWindowID id,
25 const wxBitmap& bitmap,
26 const wxPoint& pos = wxDefaultPosition,
27 const wxSize& size = wxDefaultSize,
28 long style = wxBU_AUTODRAW,
29 const wxValidator& validator = wxDefaultValidator,
30 const wxString& name = wxButtonNameStr)
738f9e5a 31 {
c3dfaa10
VZ
32 Init();
33
738f9e5a
RR
34 Create(parent, id, bitmap, pos, size, style, validator, name);
35 }
c3dfaa10 36
1e6feb95
VZ
37 bool Create(wxWindow *parent,
38 wxWindowID id,
39 const wxBitmap& bitmap,
40 const wxPoint& pos = wxDefaultPosition,
41 const wxSize& size = wxDefaultSize,
42 long style = wxBU_AUTODRAW,
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxButtonNameStr);
45
738f9e5a 46 void SetLabel( const wxString &label );
738f9e5a 47 virtual void SetLabel( const wxBitmap& bitmap ) { SetBitmapLabel(bitmap); }
29149a64 48
c3dfaa10
VZ
49 virtual bool Enable(bool enable = TRUE);
50
20e05ffb
RR
51 // implementation
52 // --------------
29149a64 53
7f35e5ee
VS
54 void GTKHasFocus();
55 void GTKNotFocus();
56 void GTKStartSelect();
57 void GTKEndSelect();
29149a64 58
c3dfaa10
VZ
59 bool m_hasFocus:1;
60 bool m_isSelected:1;
29149a64 61
f6bcfd97 62protected:
1e6feb95 63 virtual void OnSetBitmap();
e0aeebed 64 virtual wxSize DoGetBestSize() const;
6f02a879 65 void DoApplyWidgetStyle(GtkRcStyle *style);
f6bcfd97 66
c3dfaa10
VZ
67 void Init();
68
738f9e5a
RR
69private:
70 DECLARE_DYNAMIC_CLASS(wxBitmapButton)
151ccd11 71};
43a18898 72
c801d85f 73#endif // __BMPBUTTONH__