]>
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$ | |
77ffb593 | 8 | // Copyright: (c) wxWidgets team |
65571936 | 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 | ||
997176a3 VZ |
19 | #include "wx/defs.h" |
20 | ||
1e6feb95 VZ |
21 | #if wxUSE_CONTROLS |
22 | ||
8d99be5f VZ |
23 | #include "wx/window.h" // base class |
24 | ||
63ec432b | 25 | extern WXDLLEXPORT_DATA(const wxChar) wxControlNameStr[]; |
1e6feb95 | 26 | |
8d99be5f VZ |
27 | // ---------------------------------------------------------------------------- |
28 | // wxControl is the base class for all controls | |
29 | // ---------------------------------------------------------------------------- | |
30 | ||
31 | class WXDLLEXPORT wxControlBase : public wxWindow | |
32 | { | |
33 | public: | |
c0e6c051 | 34 | wxControlBase() { } |
fc7a2a60 | 35 | |
799ea011 GD |
36 | virtual ~wxControlBase(); |
37 | ||
1e6feb95 VZ |
38 | // Create() function adds the validator parameter |
39 | bool Create(wxWindow *parent, wxWindowID id, | |
40 | const wxPoint& pos = wxDefaultPosition, | |
41 | const wxSize& size = wxDefaultSize, | |
42 | long style = 0, | |
43 | const wxValidator& validator = wxDefaultValidator, | |
44 | const wxString& name = wxControlNameStr); | |
45 | ||
1e6feb95 VZ |
46 | // get the control alignment (left/right/centre, top/bottom/centre) |
47 | int GetAlignment() const { return m_windowStyle & wxALIGN_MASK; } | |
48 | ||
74639764 VZ |
49 | // get the string without mnemonic characters ('&') |
50 | static wxString GetLabelText(const wxString& label); | |
51 | ||
52 | // get just the text of the label, without mnemonic characters ('&') | |
53 | wxString GetLabelText() const { return GetLabelText(GetLabel()); } | |
9f4b4671 | 54 | |
d4864e97 VZ |
55 | // controls by default inherit the colours of their parents, if a |
56 | // particular control class doesn't want to do it, it can override | |
57 | // ShouldInheritColours() to return false | |
58 | virtual bool ShouldInheritColours() const { return true; } | |
59 | ||
9f4b4671 VZ |
60 | |
61 | // WARNING: this doesn't work for all controls nor all platforms! | |
62 | // | |
63 | // simulates the event of given type (i.e. wxButton::Command() is just as | |
64 | // if the button was clicked) | |
65 | virtual void Command(wxCommandEvent &event); | |
66 | ||
9f884528 RD |
67 | virtual void SetLabel( const wxString &label ); |
68 | virtual bool SetFont(const wxFont& font); | |
69 | ||
a3a4105d VZ |
70 | // wxControl-specific processing after processing the update event |
71 | virtual void DoUpdateWindowUI(wxUpdateUIEvent& event); | |
72 | ||
8d99be5f | 73 | protected: |
3f2711d5 VZ |
74 | // creates the control (calls wxWindowBase::CreateBase inside) and adds it |
75 | // to the list of parents children | |
8d99be5f VZ |
76 | bool CreateControl(wxWindowBase *parent, |
77 | wxWindowID id, | |
78 | const wxPoint& pos, | |
79 | const wxSize& size, | |
80 | long style, | |
81 | const wxValidator& validator, | |
82 | const wxString& name); | |
83 | ||
bfbd6dc1 VZ |
84 | // initialize the common fields of wxCommandEvent |
85 | void InitCommandEvent(wxCommandEvent& event) const; | |
fc7a2a60 | 86 | |
085dd1e9 VZ |
87 | // set the initial window size if none is given (i.e. at least one of the |
88 | // components of the size passed to ctor/Create() is -1) | |
89 | // | |
90 | // normally just calls SetBestSize() but can be overridden not to do it for | |
91 | // the controls which have to do some additional initialization (e.g. add | |
92 | // strings to list box) before their best size can be accurately calculated | |
93 | virtual void SetInitialBestSize(const wxSize& size) | |
94 | { | |
95 | SetBestSize(size); | |
96 | } | |
97 | ||
fc7a2a60 | 98 | DECLARE_NO_COPY_CLASS(wxControlBase) |
8d99be5f VZ |
99 | }; |
100 | ||
101 | // ---------------------------------------------------------------------------- | |
102 | // include platform-dependent wxControl declarations | |
103 | // ---------------------------------------------------------------------------- | |
f03fc89f | 104 | |
1e6feb95 VZ |
105 | #if defined(__WXUNIVERSAL__) |
106 | #include "wx/univ/control.h" | |
4055ed82 | 107 | #elif defined(__WXPALMOS__) |
ffecfa5a | 108 | #include "wx/palmos/control.h" |
1e6feb95 | 109 | #elif defined(__WXMSW__) |
8d99be5f | 110 | #include "wx/msw/control.h" |
2049ba38 | 111 | #elif defined(__WXMOTIF__) |
8d99be5f | 112 | #include "wx/motif/control.h" |
1be7a35c | 113 | #elif defined(__WXGTK20__) |
8d99be5f | 114 | #include "wx/gtk/control.h" |
1be7a35c MR |
115 | #elif defined(__WXGTK__) |
116 | #include "wx/gtk1/control.h" | |
34138703 | 117 | #elif defined(__WXMAC__) |
8d99be5f | 118 | #include "wx/mac/control.h" |
e64df9bc DE |
119 | #elif defined(__WXCOCOA__) |
120 | #include "wx/cocoa/control.h" | |
1777b9bb DW |
121 | #elif defined(__WXPM__) |
122 | #include "wx/os2/control.h" | |
c801d85f KB |
123 | #endif |
124 | ||
1e6feb95 VZ |
125 | #endif // wxUSE_CONTROLS |
126 | ||
c801d85f | 127 | #endif |
34138703 | 128 | // _WX_CONTROL_H_BASE_ |