]>
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 | ||
53a2db12 | 25 | extern WXDLLIMPEXP_DATA_CORE(const char) wxControlNameStr[]; |
1e6feb95 | 26 | |
a78618b0 FM |
27 | |
28 | // ---------------------------------------------------------------------------- | |
29 | // Ellipsize() constants | |
30 | // ---------------------------------------------------------------------------- | |
31 | ||
32 | enum wxEllipsizeFlags | |
33 | { | |
355ce7ad VZ |
34 | wxELLIPSIZE_FLAGS_NONE = 0, |
35 | wxELLIPSIZE_FLAGS_PROCESS_MNEMONICS = 1, | |
36 | wxELLIPSIZE_FLAGS_EXPAND_TABS = 2, | |
a78618b0 | 37 | |
355ce7ad VZ |
38 | wxELLIPSIZE_FLAGS_DEFAULT = wxELLIPSIZE_FLAGS_PROCESS_MNEMONICS | |
39 | wxELLIPSIZE_FLAGS_EXPAND_TABS | |
a78618b0 FM |
40 | }; |
41 | ||
c937bcac VZ |
42 | // NB: Don't change the order of these values, they're the same as in |
43 | // PangoEllipsizeMode enum. | |
5c87527c FM |
44 | enum wxEllipsizeMode |
45 | { | |
c937bcac | 46 | wxELLIPSIZE_NONE, |
5c87527c FM |
47 | wxELLIPSIZE_START, |
48 | wxELLIPSIZE_MIDDLE, | |
49 | wxELLIPSIZE_END | |
50 | }; | |
51 | ||
8d99be5f VZ |
52 | // ---------------------------------------------------------------------------- |
53 | // wxControl is the base class for all controls | |
54 | // ---------------------------------------------------------------------------- | |
55 | ||
53a2db12 | 56 | class WXDLLIMPEXP_CORE wxControlBase : public wxWindow |
8d99be5f VZ |
57 | { |
58 | public: | |
c0e6c051 | 59 | wxControlBase() { } |
fc7a2a60 | 60 | |
799ea011 GD |
61 | virtual ~wxControlBase(); |
62 | ||
1e6feb95 VZ |
63 | // Create() function adds the validator parameter |
64 | bool Create(wxWindow *parent, wxWindowID id, | |
65 | const wxPoint& pos = wxDefaultPosition, | |
66 | const wxSize& size = wxDefaultSize, | |
67 | long style = 0, | |
68 | const wxValidator& validator = wxDefaultValidator, | |
69 | const wxString& name = wxControlNameStr); | |
70 | ||
1e6feb95 VZ |
71 | // get the control alignment (left/right/centre, top/bottom/centre) |
72 | int GetAlignment() const { return m_windowStyle & wxALIGN_MASK; } | |
73 | ||
32ee98eb | 74 | // set label with mnemonics |
39bc0347 VZ |
75 | virtual void SetLabel(const wxString& label) |
76 | { | |
77 | m_labelOrig = label; | |
78 | ||
79 | InvalidateBestSize(); | |
80 | ||
81 | wxWindow::SetLabel(label); | |
82 | } | |
83 | ||
32ee98eb FM |
84 | // return the original string, as it was passed to SetLabel() |
85 | // (i.e. with wx-style mnemonics) | |
86 | virtual wxString GetLabel() const { return m_labelOrig; } | |
5b8b2c84 | 87 | |
32ee98eb FM |
88 | // set label text (mnemonics will be escaped) |
89 | virtual void SetLabelText(const wxString& text) | |
5b8b2c84 | 90 | { |
440d3d2a | 91 | SetLabel(EscapeMnemonics(text)); |
5b8b2c84 VZ |
92 | } |
93 | ||
32ee98eb FM |
94 | // get just the text of the label, without mnemonic characters ('&') |
95 | virtual wxString GetLabelText() const { return GetLabelText(GetLabel()); } | |
96 | ||
3da9cffc | 97 | |
f5bdfc69 | 98 | #if wxUSE_MARKUP |
3da9cffc VZ |
99 | // Set the label with markup (and mnemonics). Markup is a simple subset of |
100 | // HTML with tags such as <b>, <i> and <span>. By default it is not | |
101 | // supported i.e. all the markup is simply stripped and SetLabel() is | |
102 | // called but some controls in some ports do support this already and in | |
103 | // the future most of them should. | |
104 | // | |
105 | // Notice that, being HTML-like, markup also supports XML entities so '<' | |
106 | // should be encoded as "<" and so on, a bare '<' in the input will | |
107 | // likely result in an error. As an exception, a bare '&' is allowed and | |
108 | // indicates that the next character is a mnemonic. To insert a literal '&' | |
109 | // in the control you need to use "&" in the input string. | |
110 | // | |
111 | // Returns true if the label was set, even if the markup in it was ignored. | |
112 | // False is only returned if we failed to parse the label. | |
113 | bool SetLabelMarkup(const wxString& markup) | |
114 | { | |
115 | return DoSetLabelMarkup(markup); | |
116 | } | |
f5bdfc69 | 117 | #endif // wxUSE_MARKUP |
3da9cffc VZ |
118 | |
119 | ||
d4864e97 VZ |
120 | // controls by default inherit the colours of their parents, if a |
121 | // particular control class doesn't want to do it, it can override | |
122 | // ShouldInheritColours() to return false | |
123 | virtual bool ShouldInheritColours() const { return true; } | |
124 | ||
9f4b4671 VZ |
125 | |
126 | // WARNING: this doesn't work for all controls nor all platforms! | |
127 | // | |
128 | // simulates the event of given type (i.e. wxButton::Command() is just as | |
129 | // if the button was clicked) | |
130 | virtual void Command(wxCommandEvent &event); | |
131 | ||
9f884528 RD |
132 | virtual bool SetFont(const wxFont& font); |
133 | ||
a3a4105d VZ |
134 | // wxControl-specific processing after processing the update event |
135 | virtual void DoUpdateWindowUI(wxUpdateUIEvent& event); | |
136 | ||
a78618b0 FM |
137 | |
138 | ||
32ee98eb FM |
139 | // static utilities for mnemonics char (&) handling |
140 | // ------------------------------------------------ | |
a78618b0 | 141 | |
32ee98eb | 142 | // returns the given string without mnemonic characters ('&') |
a78618b0 FM |
143 | static wxString GetLabelText(const wxString& label); |
144 | ||
32ee98eb FM |
145 | // returns the given string without mnemonic characters ('&') |
146 | // this function is identic to GetLabelText() and is provided for clarity | |
147 | // and for symmetry with the wxStaticText::RemoveMarkup() function. | |
a78618b0 FM |
148 | static wxString RemoveMnemonics(const wxString& str); |
149 | ||
150 | // escapes (by doubling them) the mnemonics | |
151 | static wxString EscapeMnemonics(const wxString& str); | |
152 | ||
32ee98eb FM |
153 | |
154 | // miscellaneous static utilities | |
155 | // ------------------------------ | |
156 | ||
157 | // replaces parts of the given (multiline) string with an ellipsis if needed | |
158 | static wxString Ellipsize(const wxString& label, const wxDC& dc, | |
159 | wxEllipsizeMode mode, int maxWidth, | |
160 | int flags = wxELLIPSIZE_FLAGS_DEFAULT); | |
161 | ||
a78618b0 FM |
162 | // return the accel index in the string or -1 if none and puts the modified |
163 | // string into second parameter if non NULL | |
164 | static int FindAccelIndex(const wxString& label, | |
165 | wxString *labelOnly = NULL); | |
166 | ||
0534259a VZ |
167 | // this is a helper for the derived class GetClassDefaultAttributes() |
168 | // implementation: it returns the right colours for the classes which | |
169 | // contain something else (e.g. wxListBox, wxTextCtrl, ...) instead of | |
170 | // being simple controls (such as wxButton, wxCheckBox, ...) | |
171 | static wxVisualAttributes | |
172 | GetCompositeControlsDefaultAttributes(wxWindowVariant variant); | |
173 | ||
8d99be5f | 174 | protected: |
dc797d8e JS |
175 | // choose the default border for this window |
176 | virtual wxBorder GetDefaultBorder() const; | |
177 | ||
3f2711d5 VZ |
178 | // creates the control (calls wxWindowBase::CreateBase inside) and adds it |
179 | // to the list of parents children | |
8d99be5f VZ |
180 | bool CreateControl(wxWindowBase *parent, |
181 | wxWindowID id, | |
182 | const wxPoint& pos, | |
183 | const wxSize& size, | |
184 | long style, | |
185 | const wxValidator& validator, | |
186 | const wxString& name); | |
187 | ||
f5bdfc69 | 188 | #if wxUSE_MARKUP |
3da9cffc VZ |
189 | // This function may be overridden in the derived classes to implement |
190 | // support for labels with markup. The base class version simply strips the | |
191 | // markup and calls SetLabel() with the remaining text. | |
192 | virtual bool DoSetLabelMarkup(const wxString& markup); | |
f5bdfc69 | 193 | #endif // wxUSE_MARKUP |
3da9cffc VZ |
194 | |
195 | ||
bfbd6dc1 VZ |
196 | // initialize the common fields of wxCommandEvent |
197 | void InitCommandEvent(wxCommandEvent& event) const; | |
fc7a2a60 | 198 | |
a78618b0 FM |
199 | // Ellipsize() helper: |
200 | static wxString DoEllipsizeSingleLine(const wxString& label, const wxDC& dc, | |
201 | wxEllipsizeMode mode, int maxWidth, | |
1d065710 | 202 | int replacementWidth); |
a78618b0 | 203 | |
f5bdfc69 | 204 | #if wxUSE_MARKUP |
3da9cffc VZ |
205 | // Remove markup from the given string, returns empty string on error i.e. |
206 | // if markup was syntactically invalid. | |
207 | static wxString RemoveMarkup(const wxString& markup); | |
f5bdfc69 | 208 | #endif // wxUSE_MARKUP |
3da9cffc VZ |
209 | |
210 | ||
7517dcb5 FM |
211 | // this field contains the label in wx format, i.e. with '&' mnemonics, |
212 | // as it was passed to the last SetLabel() call | |
39bc0347 VZ |
213 | wxString m_labelOrig; |
214 | ||
c0c133e1 | 215 | wxDECLARE_NO_COPY_CLASS(wxControlBase); |
8d99be5f VZ |
216 | }; |
217 | ||
218 | // ---------------------------------------------------------------------------- | |
219 | // include platform-dependent wxControl declarations | |
220 | // ---------------------------------------------------------------------------- | |
f03fc89f | 221 | |
1e6feb95 VZ |
222 | #if defined(__WXUNIVERSAL__) |
223 | #include "wx/univ/control.h" | |
4055ed82 | 224 | #elif defined(__WXPALMOS__) |
ffecfa5a | 225 | #include "wx/palmos/control.h" |
1e6feb95 | 226 | #elif defined(__WXMSW__) |
8d99be5f | 227 | #include "wx/msw/control.h" |
2049ba38 | 228 | #elif defined(__WXMOTIF__) |
8d99be5f | 229 | #include "wx/motif/control.h" |
1be7a35c | 230 | #elif defined(__WXGTK20__) |
8d99be5f | 231 | #include "wx/gtk/control.h" |
1be7a35c MR |
232 | #elif defined(__WXGTK__) |
233 | #include "wx/gtk1/control.h" | |
34138703 | 234 | #elif defined(__WXMAC__) |
ef0e9220 | 235 | #include "wx/osx/control.h" |
e64df9bc DE |
236 | #elif defined(__WXCOCOA__) |
237 | #include "wx/cocoa/control.h" | |
1777b9bb DW |
238 | #elif defined(__WXPM__) |
239 | #include "wx/os2/control.h" | |
c801d85f KB |
240 | #endif |
241 | ||
1e6feb95 VZ |
242 | #endif // wxUSE_CONTROLS |
243 | ||
c801d85f | 244 | #endif |
34138703 | 245 | // _WX_CONTROL_H_BASE_ |