]>
Commit | Line | Data |
---|---|---|
8d99be5f VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/control.h | |
3 | // Purpose: wxControl common interface | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 26.07.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
34138703 JS |
12 | #ifndef _WX_CONTROL_H_BASE_ |
13 | #define _WX_CONTROL_H_BASE_ | |
c801d85f | 14 | |
8d99be5f VZ |
15 | // ---------------------------------------------------------------------------- |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | #ifdef __GNUG__ | |
1b68e0b5 | 20 | #pragma interface "controlbase.h" |
8d99be5f VZ |
21 | #endif |
22 | ||
1e6feb95 VZ |
23 | #if wxUSE_CONTROLS |
24 | ||
8d99be5f VZ |
25 | #include "wx/window.h" // base class |
26 | ||
403aced8 | 27 | WXDLLEXPORT_DATA(extern const wxChar*) wxControlNameStr; |
1e6feb95 | 28 | |
8d99be5f VZ |
29 | // ---------------------------------------------------------------------------- |
30 | // wxControl is the base class for all controls | |
31 | // ---------------------------------------------------------------------------- | |
32 | ||
33 | class WXDLLEXPORT wxControlBase : public wxWindow | |
34 | { | |
35 | public: | |
1e6feb95 VZ |
36 | // Create() function adds the validator parameter |
37 | bool Create(wxWindow *parent, wxWindowID id, | |
38 | const wxPoint& pos = wxDefaultPosition, | |
39 | const wxSize& size = wxDefaultSize, | |
40 | long style = 0, | |
41 | const wxValidator& validator = wxDefaultValidator, | |
42 | const wxString& name = wxControlNameStr); | |
43 | ||
8d99be5f VZ |
44 | // simulates the event of given type (i.e. wxButton::Command() is just as |
45 | // if the button was clicked) | |
46 | virtual void Command(wxCommandEvent &event); | |
47 | ||
1e6feb95 VZ |
48 | // get the control alignment (left/right/centre, top/bottom/centre) |
49 | int GetAlignment() const { return m_windowStyle & wxALIGN_MASK; } | |
50 | ||
f11bdd03 GD |
51 | #ifdef __DARWIN__ |
52 | virtual ~wxControlBase() { } | |
1e6feb95 VZ |
53 | #endif |
54 | ||
8d99be5f | 55 | protected: |
3f2711d5 VZ |
56 | // creates the control (calls wxWindowBase::CreateBase inside) and adds it |
57 | // to the list of parents children | |
8d99be5f VZ |
58 | bool CreateControl(wxWindowBase *parent, |
59 | wxWindowID id, | |
60 | const wxPoint& pos, | |
61 | const wxSize& size, | |
62 | long style, | |
63 | const wxValidator& validator, | |
64 | const wxString& name); | |
65 | ||
66 | // inherit colour and font settings from the parent window | |
67 | void InheritAttributes(); | |
bfbd6dc1 VZ |
68 | |
69 | // initialize the common fields of wxCommandEvent | |
70 | void InitCommandEvent(wxCommandEvent& event) const; | |
8d99be5f VZ |
71 | }; |
72 | ||
73 | // ---------------------------------------------------------------------------- | |
74 | // include platform-dependent wxControl declarations | |
75 | // ---------------------------------------------------------------------------- | |
f03fc89f | 76 | |
1e6feb95 VZ |
77 | #if defined(__WXUNIVERSAL__) |
78 | #include "wx/univ/control.h" | |
79 | #elif defined(__WXMSW__) | |
8d99be5f | 80 | #include "wx/msw/control.h" |
2049ba38 | 81 | #elif defined(__WXMOTIF__) |
8d99be5f | 82 | #include "wx/motif/control.h" |
2049ba38 | 83 | #elif defined(__WXGTK__) |
8d99be5f | 84 | #include "wx/gtk/control.h" |
34138703 | 85 | #elif defined(__WXMAC__) |
8d99be5f | 86 | #include "wx/mac/control.h" |
1777b9bb DW |
87 | #elif defined(__WXPM__) |
88 | #include "wx/os2/control.h" | |
34138703 | 89 | #elif defined(__WXSTUBS__) |
8d99be5f | 90 | #include "wx/stubs/control.h" |
c801d85f KB |
91 | #endif |
92 | ||
1e6feb95 VZ |
93 | #endif // wxUSE_CONTROLS |
94 | ||
c801d85f | 95 | #endif |
34138703 | 96 | // _WX_CONTROL_H_BASE_ |