1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxControl common interface
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CONTROL_H_BASE_
13 #define _WX_CONTROL_H_BASE_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
20 #pragma interface "controlbase.h"
23 #include "wx/window.h" // base class
25 // ----------------------------------------------------------------------------
26 // wxControl is the base class for all controls
27 // ----------------------------------------------------------------------------
29 class WXDLLEXPORT wxControlBase
: public wxWindow
32 // simulates the event of given type (i.e. wxButton::Command() is just as
33 // if the button was clicked)
34 virtual void Command(wxCommandEvent
&event
);
37 // creates the control (calls wxWindowBase::CreateBase inside) and adds it
38 // to the list of parents children
39 bool CreateControl(wxWindowBase
*parent
,
44 const wxValidator
& validator
,
45 const wxString
& name
);
47 // inherit colour and font settings from the parent window
48 void InheritAttributes();
50 // initialize the common fields of wxCommandEvent
51 void InitCommandEvent(wxCommandEvent
& event
) const;
54 // ----------------------------------------------------------------------------
55 // include platform-dependent wxControl declarations
56 // ----------------------------------------------------------------------------
58 #if defined(__WXMSW__)
59 #include "wx/msw/control.h"
60 #elif defined(__WXMOTIF__)
61 #include "wx/motif/control.h"
62 #elif defined(__WXGTK__)
63 #include "wx/gtk/control.h"
64 #elif defined(__WXQT__)
65 #include "wx/qt/control.h"
66 #elif defined(__WXMAC__)
67 #include "wx/mac/control.h"
68 #elif defined(__WXPM__)
69 #include "wx/os2/control.h"
70 #elif defined(__WXSTUBS__)
71 #include "wx/stubs/control.h"
75 // _WX_CONTROL_H_BASE_