]>
Commit | Line | Data |
---|---|---|
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 | ||
12 | #ifndef _WX_CONTROL_H_BASE_ | |
13 | #define _WX_CONTROL_H_BASE_ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | #ifdef __GNUG__ | |
20 | #pragma interface "controlbase.h" | |
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: | |
37 | // creates the control (calls wxWindowBase::CreateBase inside) and adds it | |
38 | // to the list of parents children | |
39 | bool CreateControl(wxWindowBase *parent, | |
40 | wxWindowID id, | |
41 | const wxPoint& pos, | |
42 | const wxSize& size, | |
43 | long style, | |
44 | #if wxUSE_VALIDATORS | |
45 | const wxValidator& validator, | |
46 | #endif | |
47 | const wxString& name); | |
48 | ||
49 | // an overloaded version for the controls without validators | |
50 | bool CreateControl(wxWindowBase *parent, | |
51 | wxWindowID id, | |
52 | const wxPoint& pos, | |
53 | const wxSize& size, | |
54 | long style, | |
55 | const wxString& name) | |
56 | { | |
57 | return CreateControl(parent, id, pos, size, style, | |
58 | wxDefaultValidator, name); | |
59 | } | |
60 | ||
61 | // inherit colour and font settings from the parent window | |
62 | void InheritAttributes(); | |
63 | }; | |
64 | ||
65 | // ---------------------------------------------------------------------------- | |
66 | // include platform-dependent wxControl declarations | |
67 | // ---------------------------------------------------------------------------- | |
68 | ||
69 | #if defined(__WXMSW__) | |
70 | #include "wx/msw/control.h" | |
71 | #elif defined(__WXMOTIF__) | |
72 | #include "wx/motif/control.h" | |
73 | #elif defined(__WXGTK__) | |
74 | #include "wx/gtk/control.h" | |
75 | #elif defined(__WXQT__) | |
76 | #include "wx/qt/control.h" | |
77 | #elif defined(__WXMAC__) | |
78 | #include "wx/mac/control.h" | |
79 | #elif defined(__WXPM__) | |
80 | #include "wx/os2/control.h" | |
81 | #elif defined(__WXSTUBS__) | |
82 | #include "wx/stubs/control.h" | |
83 | #endif | |
84 | ||
85 | #endif | |
86 | // _WX_CONTROL_H_BASE_ |