]>
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 | ||
23 | #include "wx/window.h" // base class | |
24 | ||
25 | // ---------------------------------------------------------------------------- | |
26 | // wxControl is the base class for all controls | |
27 | // ---------------------------------------------------------------------------- | |
28 | ||
29 | class WXDLLEXPORT wxControlBase : public wxWindow | |
30 | { | |
31 | public: | |
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); | |
35 | ||
36 | protected: | |
3f2711d5 VZ |
37 | // creates the control (calls wxWindowBase::CreateBase inside) and adds it |
38 | // to the list of parents children | |
8d99be5f VZ |
39 | bool CreateControl(wxWindowBase *parent, |
40 | wxWindowID id, | |
41 | const wxPoint& pos, | |
42 | const wxSize& size, | |
43 | long style, | |
44 | const wxValidator& validator, | |
45 | const wxString& name); | |
46 | ||
47 | // inherit colour and font settings from the parent window | |
48 | void InheritAttributes(); | |
bfbd6dc1 VZ |
49 | |
50 | // initialize the common fields of wxCommandEvent | |
51 | void InitCommandEvent(wxCommandEvent& event) const; | |
8d99be5f VZ |
52 | }; |
53 | ||
54 | // ---------------------------------------------------------------------------- | |
55 | // include platform-dependent wxControl declarations | |
56 | // ---------------------------------------------------------------------------- | |
f03fc89f | 57 | |
2049ba38 | 58 | #if defined(__WXMSW__) |
8d99be5f | 59 | #include "wx/msw/control.h" |
2049ba38 | 60 | #elif defined(__WXMOTIF__) |
8d99be5f | 61 | #include "wx/motif/control.h" |
2049ba38 | 62 | #elif defined(__WXGTK__) |
8d99be5f | 63 | #include "wx/gtk/control.h" |
b4e76e0d | 64 | #elif defined(__WXQT__) |
8d99be5f | 65 | #include "wx/qt/control.h" |
34138703 | 66 | #elif defined(__WXMAC__) |
8d99be5f | 67 | #include "wx/mac/control.h" |
1777b9bb DW |
68 | #elif defined(__WXPM__) |
69 | #include "wx/os2/control.h" | |
34138703 | 70 | #elif defined(__WXSTUBS__) |
8d99be5f | 71 | #include "wx/stubs/control.h" |
c801d85f KB |
72 | #endif |
73 | ||
74 | #endif | |
34138703 | 75 | // _WX_CONTROL_H_BASE_ |