]>
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 | |
371a5b4e | 9 | // Licence: wxWindows licence |
8d99be5f VZ |
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 | ||
12028905 | 19 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
1b68e0b5 | 20 | #pragma interface "controlbase.h" |
8d99be5f VZ |
21 | #endif |
22 | ||
997176a3 VZ |
23 | #include "wx/defs.h" |
24 | ||
1e6feb95 VZ |
25 | #if wxUSE_CONTROLS |
26 | ||
8d99be5f VZ |
27 | #include "wx/window.h" // base class |
28 | ||
403aced8 | 29 | WXDLLEXPORT_DATA(extern const wxChar*) wxControlNameStr; |
1e6feb95 | 30 | |
8d99be5f VZ |
31 | // ---------------------------------------------------------------------------- |
32 | // wxControl is the base class for all controls | |
33 | // ---------------------------------------------------------------------------- | |
34 | ||
35 | class WXDLLEXPORT wxControlBase : public wxWindow | |
36 | { | |
37 | public: | |
fc7a2a60 VZ |
38 | wxControlBase() { } |
39 | ||
799ea011 GD |
40 | virtual ~wxControlBase(); |
41 | ||
1e6feb95 VZ |
42 | // Create() function adds the validator parameter |
43 | bool Create(wxWindow *parent, wxWindowID id, | |
44 | const wxPoint& pos = wxDefaultPosition, | |
45 | const wxSize& size = wxDefaultSize, | |
46 | long style = 0, | |
47 | const wxValidator& validator = wxDefaultValidator, | |
48 | const wxString& name = wxControlNameStr); | |
49 | ||
8d99be5f VZ |
50 | // simulates the event of given type (i.e. wxButton::Command() is just as |
51 | // if the button was clicked) | |
52 | virtual void Command(wxCommandEvent &event); | |
53 | ||
1e6feb95 VZ |
54 | // get the control alignment (left/right/centre, top/bottom/centre) |
55 | int GetAlignment() const { return m_windowStyle & wxALIGN_MASK; } | |
56 | ||
8d99be5f | 57 | protected: |
3f2711d5 VZ |
58 | // creates the control (calls wxWindowBase::CreateBase inside) and adds it |
59 | // to the list of parents children | |
8d99be5f VZ |
60 | bool CreateControl(wxWindowBase *parent, |
61 | wxWindowID id, | |
62 | const wxPoint& pos, | |
63 | const wxSize& size, | |
64 | long style, | |
65 | const wxValidator& validator, | |
66 | const wxString& name); | |
67 | ||
68 | // inherit colour and font settings from the parent window | |
69 | void InheritAttributes(); | |
bfbd6dc1 VZ |
70 | |
71 | // initialize the common fields of wxCommandEvent | |
72 | void InitCommandEvent(wxCommandEvent& event) const; | |
fc7a2a60 VZ |
73 | |
74 | DECLARE_NO_COPY_CLASS(wxControlBase) | |
8d99be5f VZ |
75 | }; |
76 | ||
77 | // ---------------------------------------------------------------------------- | |
78 | // include platform-dependent wxControl declarations | |
79 | // ---------------------------------------------------------------------------- | |
f03fc89f | 80 | |
1e6feb95 VZ |
81 | #if defined(__WXUNIVERSAL__) |
82 | #include "wx/univ/control.h" | |
83 | #elif defined(__WXMSW__) | |
8d99be5f | 84 | #include "wx/msw/control.h" |
2049ba38 | 85 | #elif defined(__WXMOTIF__) |
8d99be5f | 86 | #include "wx/motif/control.h" |
2049ba38 | 87 | #elif defined(__WXGTK__) |
8d99be5f | 88 | #include "wx/gtk/control.h" |
34138703 | 89 | #elif defined(__WXMAC__) |
8d99be5f | 90 | #include "wx/mac/control.h" |
e64df9bc DE |
91 | #elif defined(__WXCOCOA__) |
92 | #include "wx/cocoa/control.h" | |
1777b9bb DW |
93 | #elif defined(__WXPM__) |
94 | #include "wx/os2/control.h" | |
c801d85f KB |
95 | #endif |
96 | ||
1e6feb95 VZ |
97 | #endif // wxUSE_CONTROLS |
98 | ||
c801d85f | 99 | #endif |
34138703 | 100 | // _WX_CONTROL_H_BASE_ |