Compilation fix,
[wxWidgets.git] / include / wx / gtk / control.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: control.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef __GTKCONTROLH__
11 #define __GTKCONTROLH__
12
13 #ifdef __GNUG__
14 #pragma interface
15 #endif
16
17 #include "wx/defs.h"
18 #include "wx/object.h"
19 #include "wx/list.h"
20 #include "wx/window.h"
21
22 //-----------------------------------------------------------------------------
23 // classes
24 //-----------------------------------------------------------------------------
25
26 class wxControl;
27
28 //-----------------------------------------------------------------------------
29 // wxControl
30 //-----------------------------------------------------------------------------
31
32 extern const wxChar* wxControlNameStr;
33
34 class wxControl : public wxControlBase
35 {
36 public:
37 wxControl();
38 wxControl(wxWindow *parent, wxWindowID id,
39 const wxPoint& pos = wxDefaultPosition,
40 const wxSize& size = wxDefaultSize, long style = 0,
41 #if wxUSE_VALIDATORS
42 const wxValidator& validator = wxDefaultValidator,
43 #endif
44 const wxString& name = wxControlNameStr)
45 {
46 Create(parent, id, pos, size, style,
47 #if wxUSE_VALIDATORS
48 validator,
49 #endif
50 name);
51 }
52
53 bool Create(wxWindow *parent, wxWindowID id,
54 const wxPoint& pos = wxDefaultPosition,
55 const wxSize& size = wxDefaultSize, long style = 0,
56 #if wxUSE_VALIDATORS
57 const wxValidator& validator = wxDefaultValidator,
58 #endif
59 const wxString& name = wxControlNameStr);
60
61 // this function will filter out '&' characters and will put the accelerator
62 // char (the one immediately after '&') into m_chAccel (TODO not yet)
63 virtual void SetLabel( const wxString &label );
64 virtual wxString GetLabel() const;
65
66 protected:
67 virtual wxSize DoGetBestSize() const;
68
69 wxString m_label;
70 char m_chAccel; // enabled to avoid breaking binary compatibility later on
71
72 private:
73 DECLARE_DYNAMIC_CLASS(wxControl)
74 };
75
76 #endif // __GTKCONTROLH__