]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/control.h
Visualage C++ V4.0 has a native long long data type.
[wxWidgets.git] / include / wx / gtk / control.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: control.h
3// Purpose:
4// Author: Robert Roebling
dbf858b5
RR
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling, Julian Smart
8d99be5f 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
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
26class wxControl;
27
28//-----------------------------------------------------------------------------
29// wxControl
30//-----------------------------------------------------------------------------
31
8d772832
RD
32extern const wxChar* wxControlNameStr;
33
9abe166a 34class wxControl : public wxControlBase
c801d85f 35{
2a4f4a27 36public:
8d99be5f
VZ
37 wxControl();
38 wxControl( wxWindow *parent,
39 wxWindowID id,
40 const wxPoint &pos = wxDefaultPosition,
41 const wxSize &size = wxDefaultSize,
42 long style = 0,
8d772832
RD
43 const wxString &name = wxControlNameStr );
44
45#if wxUSE_VALIDATORS
46 wxControl( wxWindow *parent,
47 wxWindowID id,
48 const wxPoint &pos = wxDefaultPosition,
49 const wxSize &size = wxDefaultSize,
50 long style = 0,
51 const wxValidator& validator = wxDefaultValidator,
52 const wxString &name = wxControlNameStr );
53#endif
2a4f4a27 54
2a4f4a27 55 // this function will filter out '&' characters and will put the accelerator
8d99be5f
VZ
56 // char (the one immediately after '&') into m_chAccel (TODO not yet)
57 virtual void SetLabel( const wxString &label );
58 virtual wxString GetLabel() const;
59
2a4f4a27 60protected:
f68586e5
VZ
61 virtual wxSize DoGetBestSize() const;
62
8d99be5f
VZ
63 wxString m_label;
64 char m_chAccel; // enabled to avoid breaking binary compatibility later on
8d772832 65
738f9e5a
RR
66private:
67 DECLARE_DYNAMIC_CLASS(wxControl)
c801d85f
KB
68};
69
70#endif // __GTKCONTROLH__