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"
25 #include "wx/window.h" // base class
27 WXDLLEXPORT_DATA(extern const wxChar
*) wxControlNameStr
;
29 // ----------------------------------------------------------------------------
30 // wxControl is the base class for all controls
31 // ----------------------------------------------------------------------------
33 class WXDLLEXPORT wxControlBase
: public wxWindow
36 virtual ~wxControlBase();
38 // Create() function adds the validator parameter
39 bool Create(wxWindow
*parent
, wxWindowID id
,
40 const wxPoint
& pos
= wxDefaultPosition
,
41 const wxSize
& size
= wxDefaultSize
,
43 const wxValidator
& validator
= wxDefaultValidator
,
44 const wxString
& name
= wxControlNameStr
);
46 // simulates the event of given type (i.e. wxButton::Command() is just as
47 // if the button was clicked)
48 virtual void Command(wxCommandEvent
&event
);
50 // get the control alignment (left/right/centre, top/bottom/centre)
51 int GetAlignment() const { return m_windowStyle
& wxALIGN_MASK
; }
54 // creates the control (calls wxWindowBase::CreateBase inside) and adds it
55 // to the list of parents children
56 bool CreateControl(wxWindowBase
*parent
,
61 const wxValidator
& validator
,
62 const wxString
& name
);
64 // inherit colour and font settings from the parent window
65 void InheritAttributes();
67 // initialize the common fields of wxCommandEvent
68 void InitCommandEvent(wxCommandEvent
& event
) const;
71 // ----------------------------------------------------------------------------
72 // include platform-dependent wxControl declarations
73 // ----------------------------------------------------------------------------
75 #if defined(__WXUNIVERSAL__)
76 #include "wx/univ/control.h"
77 #elif defined(__WXMSW__)
78 #include "wx/msw/control.h"
79 #elif defined(__WXMOTIF__)
80 #include "wx/motif/control.h"
81 #elif defined(__WXGTK__)
82 #include "wx/gtk/control.h"
83 #elif defined(__WXMAC__)
84 #include "wx/mac/control.h"
85 #elif defined(__WXPM__)
86 #include "wx/os2/control.h"
87 #elif defined(__WXSTUBS__)
88 #include "wx/stubs/control.h"
91 #endif // wxUSE_CONTROLS
94 // _WX_CONTROL_H_BASE_