]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
40ff126a | 2 | // Name: src/msw/textctrl.cpp |
2bda0e17 KB |
3 | // Purpose: wxTextCtrl |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6c9a19aa | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
a1b82138 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
a1b82138 VZ |
16 | // ---------------------------------------------------------------------------- |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
a1b82138 | 24 | #pragma hdrstop |
2bda0e17 KB |
25 | #endif |
26 | ||
3180bc0e | 27 | #if wxUSE_TEXTCTRL && !(defined(__SMARTPHONE__) && defined(__WXWINCE__)) |
1e6feb95 | 28 | |
2bda0e17 | 29 | #ifndef WX_PRECOMP |
a1b82138 VZ |
30 | #include "wx/textctrl.h" |
31 | #include "wx/settings.h" | |
32 | #include "wx/brush.h" | |
33 | #include "wx/utils.h" | |
381dd4bf | 34 | #include "wx/intl.h" |
a1b82138 | 35 | #include "wx/log.h" |
381dd4bf | 36 | #include "wx/app.h" |
2b5f62a0 | 37 | #include "wx/menu.h" |
e2bcbdfb | 38 | #include "wx/math.h" |
02761f6c | 39 | #include "wx/module.h" |
193d0c93 | 40 | #include "wx/wxcrtvararg.h" |
2bda0e17 KB |
41 | #endif |
42 | ||
8ef51d67 | 43 | #include "wx/sysopt.h" |
f6bcfd97 | 44 | |
47d67540 | 45 | #if wxUSE_CLIPBOARD |
a1b82138 | 46 | #include "wx/clipbrd.h" |
2bda0e17 KB |
47 | #endif |
48 | ||
a1b82138 VZ |
49 | #include "wx/textfile.h" |
50 | ||
51 | #include <windowsx.h> | |
52 | ||
2bda0e17 | 53 | #include "wx/msw/private.h" |
9a88fc58 | 54 | #include "wx/msw/winundef.h" |
8f825d89 | 55 | #include "wx/msw/mslu.h" |
2bda0e17 | 56 | |
a1b82138 | 57 | #include <string.h> |
2bda0e17 | 58 | #include <stdlib.h> |
4676948b JS |
59 | |
60 | #ifndef __WXWINCE__ | |
a1b82138 | 61 | #include <sys/types.h> |
4676948b | 62 | #endif |
fbc535ff | 63 | |
a40c9444 VZ |
64 | #if wxUSE_RICHEDIT |
65 | ||
8ef51d67 JS |
66 | #if wxUSE_INKEDIT |
67 | #include "wx/dynlib.h" | |
68 | #endif | |
69 | ||
a40c9444 VZ |
70 | // old mingw32 has richedit stuff directly in windows.h and doesn't have |
71 | // richedit.h at all | |
72 | #if !defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__) | |
cd471848 | 73 | #include <richedit.h> |
2bda0e17 KB |
74 | #endif |
75 | ||
a40c9444 VZ |
76 | #endif // wxUSE_RICHEDIT |
77 | ||
7212d155 PC |
78 | #include "wx/msw/missing.h" |
79 | ||
20a0e999 VZ |
80 | #if wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT |
81 | ||
82 | // dummy value used for m_dropTarget, different from any valid pointer value | |
83 | // (which are all even under Windows) and NULL | |
84 | static wxDropTarget * | |
5c33522f | 85 | wxRICHTEXT_DEFAULT_DROPTARGET = reinterpret_cast<wxDropTarget *>(1); |
20a0e999 VZ |
86 | |
87 | #endif // wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT | |
88 | ||
b12915c1 VZ |
89 | // ---------------------------------------------------------------------------- |
90 | // private classes | |
91 | // ---------------------------------------------------------------------------- | |
92 | ||
93 | #if wxUSE_RICHEDIT | |
94 | ||
a5aa8086 | 95 | // this module initializes RichEdit DLL(s) if needed |
b12915c1 VZ |
96 | class wxRichEditModule : public wxModule |
97 | { | |
98 | public: | |
628c219e VZ |
99 | enum Version |
100 | { | |
101 | Version_1, // riched32.dll | |
102 | Version_2or3, // both use riched20.dll | |
103 | Version_41, // msftedit.dll (XP SP1 and Windows 2003) | |
104 | Version_Max | |
105 | }; | |
106 | ||
b12915c1 VZ |
107 | virtual bool OnInit(); |
108 | virtual void OnExit(); | |
109 | ||
628c219e VZ |
110 | // load the richedit DLL for the specified version of rich edit |
111 | static bool Load(Version version); | |
b12915c1 | 112 | |
8ef51d67 JS |
113 | #if wxUSE_INKEDIT |
114 | // load the InkEdit library | |
115 | static bool LoadInkEdit(); | |
116 | #endif | |
117 | ||
b12915c1 | 118 | private: |
a5aa8086 | 119 | // the handles to richedit 1.0 and 2.0 (or 3.0) DLLs |
628c219e | 120 | static HINSTANCE ms_hRichEdit[Version_Max]; |
b12915c1 | 121 | |
8ef51d67 JS |
122 | #if wxUSE_INKEDIT |
123 | static wxDynamicLibrary ms_inkEditLib; | |
124 | static bool ms_inkEditLibLoadAttemped; | |
125 | #endif | |
126 | ||
b12915c1 VZ |
127 | DECLARE_DYNAMIC_CLASS(wxRichEditModule) |
128 | }; | |
129 | ||
628c219e | 130 | HINSTANCE wxRichEditModule::ms_hRichEdit[Version_Max] = { NULL, NULL, NULL }; |
b12915c1 | 131 | |
8ef51d67 JS |
132 | #if wxUSE_INKEDIT |
133 | wxDynamicLibrary wxRichEditModule::ms_inkEditLib; | |
134 | bool wxRichEditModule::ms_inkEditLibLoadAttemped = false; | |
135 | #endif | |
136 | ||
b12915c1 VZ |
137 | IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule, wxModule) |
138 | ||
139 | #endif // wxUSE_RICHEDIT | |
e702ff0f | 140 | |
2c62dd25 VZ |
141 | // a small class used to set m_updatesCount to 0 (to filter duplicate events if |
142 | // necessary) and to reset it back to -1 afterwards | |
143 | class UpdatesCountFilter | |
144 | { | |
145 | public: | |
146 | UpdatesCountFilter(int& count) | |
147 | : m_count(count) | |
148 | { | |
f6519b40 | 149 | wxASSERT_MSG( m_count == -1 || m_count == -2, |
9a83f860 | 150 | wxT("wrong initial m_updatesCount value") ); |
2c62dd25 | 151 | |
f6519b40 VZ |
152 | if (m_count != -2) |
153 | m_count = 0; | |
154 | //else: we don't want to count how many update events we get as we're going | |
155 | // to ignore all of them | |
2c62dd25 VZ |
156 | } |
157 | ||
158 | ~UpdatesCountFilter() | |
159 | { | |
160 | m_count = -1; | |
161 | } | |
162 | ||
163 | // return true if an event has been received | |
164 | bool GotUpdate() const | |
165 | { | |
166 | return m_count == 1; | |
167 | } | |
168 | ||
169 | private: | |
170 | int& m_count; | |
171 | ||
c0c133e1 | 172 | wxDECLARE_NO_COPY_CLASS(UpdatesCountFilter); |
2c62dd25 VZ |
173 | }; |
174 | ||
a1b82138 VZ |
175 | // ---------------------------------------------------------------------------- |
176 | // event tables and other macros | |
177 | // ---------------------------------------------------------------------------- | |
178 | ||
51741307 | 179 | #if wxUSE_EXTENDED_RTTI |
bc9fb572 JS |
180 | WX_DEFINE_FLAGS( wxTextCtrlStyle ) |
181 | ||
321239b6 | 182 | wxBEGIN_FLAGS( wxTextCtrlStyle ) |
bc9fb572 JS |
183 | // new style border flags, we put them first to |
184 | // use them for streaming out | |
321239b6 SC |
185 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) |
186 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
187 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
188 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
189 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
190 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
bfbb0b4c | 191 | |
bc9fb572 | 192 | // old style border flags |
321239b6 SC |
193 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) |
194 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
195 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
196 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
197 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
cb0afb26 | 198 | wxFLAGS_MEMBER(wxBORDER) |
bc9fb572 JS |
199 | |
200 | // standard window styles | |
321239b6 SC |
201 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) |
202 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
203 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
204 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
cb0afb26 | 205 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) |
321239b6 SC |
206 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) |
207 | wxFLAGS_MEMBER(wxVSCROLL) | |
208 | wxFLAGS_MEMBER(wxHSCROLL) | |
209 | ||
210 | wxFLAGS_MEMBER(wxTE_PROCESS_ENTER) | |
211 | wxFLAGS_MEMBER(wxTE_PROCESS_TAB) | |
212 | wxFLAGS_MEMBER(wxTE_MULTILINE) | |
213 | wxFLAGS_MEMBER(wxTE_PASSWORD) | |
214 | wxFLAGS_MEMBER(wxTE_READONLY) | |
215 | wxFLAGS_MEMBER(wxHSCROLL) | |
216 | wxFLAGS_MEMBER(wxTE_RICH) | |
217 | wxFLAGS_MEMBER(wxTE_RICH2) | |
218 | wxFLAGS_MEMBER(wxTE_AUTO_URL) | |
219 | wxFLAGS_MEMBER(wxTE_NOHIDESEL) | |
220 | wxFLAGS_MEMBER(wxTE_LEFT) | |
221 | wxFLAGS_MEMBER(wxTE_CENTRE) | |
222 | wxFLAGS_MEMBER(wxTE_RIGHT) | |
223 | wxFLAGS_MEMBER(wxTE_DONTWRAP) | |
40ff126a | 224 | wxFLAGS_MEMBER(wxTE_CHARWRAP) |
321239b6 SC |
225 | wxFLAGS_MEMBER(wxTE_WORDWRAP) |
226 | ||
227 | wxEND_FLAGS( wxTextCtrlStyle ) | |
bc9fb572 | 228 | |
51741307 SC |
229 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxTextCtrl, wxControl,"wx/textctrl.h") |
230 | ||
321239b6 | 231 | wxBEGIN_PROPERTIES_TABLE(wxTextCtrl) |
bfbb0b4c | 232 | wxEVENT_PROPERTY( TextUpdated , wxEVT_COMMAND_TEXT_UPDATED , wxCommandEvent ) |
321239b6 | 233 | wxEVENT_PROPERTY( TextEnter , wxEVT_COMMAND_TEXT_ENTER , wxCommandEvent ) |
c5ca409b | 234 | |
af498247 | 235 | wxPROPERTY( Font , wxFont , SetFont , GetFont , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group") ) |
bfbb0b4c | 236 | wxPROPERTY( Value , wxString , SetValue, GetValue, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) |
af498247 | 237 | wxPROPERTY_FLAGS( WindowStyle , wxTextCtrlStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style |
321239b6 | 238 | wxEND_PROPERTIES_TABLE() |
51741307 | 239 | |
321239b6 SC |
240 | wxBEGIN_HANDLERS_TABLE(wxTextCtrl) |
241 | wxEND_HANDLERS_TABLE() | |
51741307 | 242 | |
321239b6 | 243 | wxCONSTRUCTOR_6( wxTextCtrl , wxWindow* , Parent , wxWindowID , Id , wxString , Value , wxPoint , Position , wxSize , Size , long , WindowStyle) |
51741307 | 244 | #else |
9d112688 | 245 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxTextCtrlBase) |
51741307 SC |
246 | #endif |
247 | ||
2bda0e17 | 248 | |
9d112688 | 249 | BEGIN_EVENT_TABLE(wxTextCtrl, wxTextCtrlBase) |
a1b82138 | 250 | EVT_CHAR(wxTextCtrl::OnChar) |
e2cf30aa | 251 | EVT_KEY_DOWN(wxTextCtrl::OnKeyDown) |
a1b82138 VZ |
252 | EVT_DROP_FILES(wxTextCtrl::OnDropFiles) |
253 | ||
2b5f62a0 | 254 | #if wxUSE_RICHEDIT |
26f60eb6 | 255 | EVT_CONTEXT_MENU(wxTextCtrl::OnContextMenu) |
2b5f62a0 VZ |
256 | #endif |
257 | ||
a1b82138 VZ |
258 | EVT_MENU(wxID_CUT, wxTextCtrl::OnCut) |
259 | EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy) | |
260 | EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste) | |
261 | EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo) | |
262 | EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo) | |
2b5f62a0 VZ |
263 | EVT_MENU(wxID_CLEAR, wxTextCtrl::OnDelete) |
264 | EVT_MENU(wxID_SELECTALL, wxTextCtrl::OnSelectAll) | |
a1b82138 VZ |
265 | |
266 | EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut) | |
267 | EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy) | |
268 | EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste) | |
269 | EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo) | |
270 | EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo) | |
2b5f62a0 VZ |
271 | EVT_UPDATE_UI(wxID_CLEAR, wxTextCtrl::OnUpdateDelete) |
272 | EVT_UPDATE_UI(wxID_SELECTALL, wxTextCtrl::OnUpdateSelectAll) | |
e3a6a6b2 VZ |
273 | |
274 | EVT_SET_FOCUS(wxTextCtrl::OnSetFocus) | |
2bda0e17 | 275 | END_EVENT_TABLE() |
e702ff0f | 276 | |
a1b82138 VZ |
277 | // ============================================================================ |
278 | // implementation | |
279 | // ============================================================================ | |
280 | ||
281 | // ---------------------------------------------------------------------------- | |
282 | // creation | |
283 | // ---------------------------------------------------------------------------- | |
284 | ||
aac7e7fe | 285 | void wxTextCtrl::Init() |
2bda0e17 | 286 | { |
cd471848 | 287 | #if wxUSE_RICHEDIT |
aac7e7fe | 288 | m_verRichEdit = 0; |
2b5f62a0 | 289 | #endif // wxUSE_RICHEDIT |
5036ea90 | 290 | |
8ef51d67 JS |
291 | #if wxUSE_INKEDIT && wxUSE_RICHEDIT |
292 | m_isInkEdit = 0; | |
293 | #endif | |
294 | ||
2b5f62a0 | 295 | m_privateContextMenu = NULL; |
2c62dd25 | 296 | m_updatesCount = -1; |
e3a6a6b2 | 297 | m_isNativeCaretShown = true; |
2b5f62a0 VZ |
298 | } |
299 | ||
300 | wxTextCtrl::~wxTextCtrl() | |
301 | { | |
1a8e8d69 | 302 | #if wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT |
88b9909d VZ |
303 | if ( m_dropTarget == wxRICHTEXT_DEFAULT_DROPTARGET ) |
304 | { | |
305 | // don't try to destroy this dummy pointer in the base class dtor | |
306 | m_dropTarget = NULL; | |
307 | } | |
1a8e8d69 | 308 | #endif // wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT |
88b9909d | 309 | |
caea50ac | 310 | delete m_privateContextMenu; |
2bda0e17 KB |
311 | } |
312 | ||
9b99c1e3 VZ |
313 | bool wxTextCtrl::Create(wxWindow *parent, |
314 | wxWindowID id, | |
c085e333 VZ |
315 | const wxString& value, |
316 | const wxPoint& pos, | |
a1b82138 VZ |
317 | const wxSize& size, |
318 | long style, | |
c085e333 VZ |
319 | const wxValidator& validator, |
320 | const wxString& name) | |
2bda0e17 | 321 | { |
a1b82138 | 322 | // base initialization |
f4d233c7 | 323 | if ( !CreateControl(parent, id, pos, size, style, validator, name) ) |
bfbb0b4c | 324 | return false; |
2bda0e17 | 325 | |
9b99c1e3 VZ |
326 | if ( !MSWCreateText(value, pos, size) ) |
327 | return false; | |
328 | ||
20a0e999 VZ |
329 | #if wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT |
330 | if ( IsRich() ) | |
331 | { | |
332 | // rich text controls have a default associated drop target which | |
333 | // allows them to receive (rich) text dropped on them, which is nice, | |
334 | // but prevents us from associating a user-defined drop target with | |
335 | // them as we need to unregister the old one first | |
336 | // | |
337 | // to make it work, we set m_dropTarget to this special value initially | |
338 | // and check for it in our SetDropTarget() | |
339 | m_dropTarget = wxRICHTEXT_DEFAULT_DROPTARGET; | |
340 | } | |
341 | #endif // wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT | |
342 | ||
9b99c1e3 VZ |
343 | return true; |
344 | } | |
345 | ||
a047aff2 JS |
346 | // returns true if the platform should explicitly apply a theme border |
347 | bool wxTextCtrl::CanApplyThemeBorder() const | |
348 | { | |
349 | #ifdef __WXWINCE__ | |
350 | return false; | |
351 | #else | |
352 | // Standard text control already handles theming | |
353 | return ((GetWindowStyle() & (wxTE_RICH|wxTE_RICH2)) != 0); | |
354 | #endif | |
355 | } | |
356 | ||
9b99c1e3 VZ |
357 | bool wxTextCtrl::MSWCreateText(const wxString& value, |
358 | const wxPoint& pos, | |
359 | const wxSize& size) | |
360 | { | |
b2d5a7ee VZ |
361 | // translate wxWin style flags to MSW ones |
362 | WXDWORD msStyle = MSWGetCreateWindowFlags(); | |
cfdd3a98 | 363 | |
a1b82138 | 364 | // do create the control - either an EDIT or RICHEDIT |
b12915c1 | 365 | wxString windowClass = wxT("EDIT"); |
628c219e | 366 | |
afafd942 JS |
367 | #if defined(__POCKETPC__) || defined(__SMARTPHONE__) |
368 | // A control that capitalizes the first letter | |
9b99c1e3 | 369 | if ( HasFlag(wxTE_CAPITALIZE) ) |
afafd942 | 370 | windowClass = wxT("CAPEDIT"); |
628c219e | 371 | #endif |
cd471848 | 372 | |
57c208c5 | 373 | #if wxUSE_RICHEDIT |
a5aa8086 VZ |
374 | if ( m_windowStyle & wxTE_AUTO_URL ) |
375 | { | |
376 | // automatic URL detection only works in RichEdit 2.0+ | |
377 | m_windowStyle |= wxTE_RICH2; | |
378 | } | |
379 | ||
380 | if ( m_windowStyle & wxTE_RICH2 ) | |
381 | { | |
382 | // using richedit 2.0 implies using wxTE_RICH | |
383 | m_windowStyle |= wxTE_RICH; | |
384 | } | |
385 | ||
386 | // we need to load the richedit DLL before creating the rich edit control | |
c49245f8 | 387 | if ( m_windowStyle & wxTE_RICH ) |
a1b82138 | 388 | { |
628c219e VZ |
389 | // versions 2.0, 3.0 and 4.1 of rich edit are mostly compatible with |
390 | // each other but not with version 1.0, so we have separate flags for | |
391 | // the version 1.0 and the others (and so m_verRichEdit may be 0 (plain | |
392 | // EDIT control), 1 for version 1.0 or 2 for any higher version) | |
a5aa8086 | 393 | // |
628c219e VZ |
394 | // notice that 1.0 has no Unicode support at all so in Unicode build we |
395 | // must use another version | |
396 | ||
a5aa8086 | 397 | #if wxUSE_UNICODE |
628c219e | 398 | m_verRichEdit = 2; |
a5aa8086 | 399 | #else // !wxUSE_UNICODE |
628c219e | 400 | m_verRichEdit = m_windowStyle & wxTE_RICH2 ? 2 : 1; |
a5aa8086 | 401 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE |
0d0512bd | 402 | |
8ef51d67 JS |
403 | #if wxUSE_INKEDIT |
404 | // First test if we can load an ink edit control. Normally, all edit | |
405 | // controls will be made ink edit controls if a tablet environment is | |
406 | // found (or if msw.inkedit != 0 and the InkEd.dll is present). | |
407 | // However, an application can veto ink edit controls by either specifying | |
408 | // msw.inkedit = 0 or by removing wxTE_RICH[2] from the style. | |
57a67daf | 409 | // |
8ef51d67 JS |
410 | if ((wxSystemSettings::HasFeature(wxSYS_TABLET_PRESENT) || wxSystemOptions::GetOptionInt(wxT("msw.inkedit")) != 0) && |
411 | !(wxSystemOptions::HasOption(wxT("msw.inkedit")) && wxSystemOptions::GetOptionInt(wxT("msw.inkedit")) == 0)) | |
0d0512bd | 412 | { |
8ef51d67 | 413 | if (wxRichEditModule::LoadInkEdit()) |
57a67daf DS |
414 | { |
415 | windowClass = INKEDIT_CLASS; | |
416 | ||
417 | #if wxUSE_INKEDIT && wxUSE_RICHEDIT | |
8ef51d67 | 418 | m_isInkEdit = 1; |
57a67daf DS |
419 | #endif |
420 | ||
8ef51d67 JS |
421 | // Fake rich text version for other calls |
422 | m_verRichEdit = 2; | |
628c219e | 423 | } |
8ef51d67 JS |
424 | } |
425 | #endif | |
57a67daf | 426 | |
d2f434e4 | 427 | #if wxUSE_INKEDIT |
122d1d56 | 428 | if (!IsInkEdit()) |
d2f434e4 | 429 | #endif // wxUSE_INKEDIT |
8ef51d67 JS |
430 | { |
431 | if ( m_verRichEdit == 2 ) | |
40ff126a | 432 | { |
8ef51d67 JS |
433 | if ( wxRichEditModule::Load(wxRichEditModule::Version_41) ) |
434 | { | |
435 | // yes, class name for version 4.1 really is 5.0 | |
9a83f860 | 436 | windowClass = wxT("RICHEDIT50W"); |
8ef51d67 JS |
437 | } |
438 | else if ( wxRichEditModule::Load(wxRichEditModule::Version_2or3) ) | |
439 | { | |
9a83f860 | 440 | windowClass = wxT("RichEdit20") |
628c219e | 441 | #if wxUSE_UNICODE |
9a83f860 | 442 | wxT("W"); |
628c219e | 443 | #else // ANSI |
9a83f860 | 444 | wxT("A"); |
628c219e | 445 | #endif // Unicode/ANSI |
8ef51d67 JS |
446 | } |
447 | else // failed to load msftedit.dll and riched20.dll | |
448 | { | |
449 | m_verRichEdit = 1; | |
450 | } | |
628c219e | 451 | } |
0d0512bd | 452 | |
8ef51d67 | 453 | if ( m_verRichEdit == 1 ) |
b12915c1 | 454 | { |
8ef51d67 | 455 | if ( wxRichEditModule::Load(wxRichEditModule::Version_1) ) |
f8387e15 | 456 | { |
9a83f860 | 457 | windowClass = wxT("RICHEDIT"); |
f8387e15 | 458 | } |
8ef51d67 JS |
459 | else // failed to load any richedit control DLL |
460 | { | |
461 | // only give the error msg once if the DLL can't be loaded | |
462 | static bool s_errorGiven = false; // MT ok as only used by GUI | |
463 | ||
464 | if ( !s_errorGiven ) | |
465 | { | |
466 | wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll")); | |
628c219e | 467 | |
8ef51d67 JS |
468 | s_errorGiven = true; |
469 | } | |
470 | ||
471 | m_verRichEdit = 0; | |
472 | } | |
b12915c1 | 473 | } |
40ff126a | 474 | } // !useInkEdit |
a1b82138 | 475 | } |
b12915c1 | 476 | #endif // wxUSE_RICHEDIT |
2bda0e17 | 477 | |
c8b204e6 VZ |
478 | // we need to turn '\n's into "\r\n"s for the multiline controls |
479 | wxString valueWin; | |
480 | if ( m_windowStyle & wxTE_MULTILINE ) | |
481 | { | |
482 | valueWin = wxTextFile::Translate(value, wxTextFileType_Dos); | |
483 | } | |
484 | else // single line | |
485 | { | |
486 | valueWin = value; | |
487 | } | |
488 | ||
8f08b250 VZ |
489 | // suppress events sent during control creation: we're called either from |
490 | // the ctor and then we shouldn't generate any events for compatibility | |
491 | // with the other ports, or from SetWindowStyleFlag() and then we shouldn't | |
492 | // generate the events because our text doesn't really change, the fact | |
493 | // that we (sometimes) need to recreate the control is just an | |
494 | // implementation detail | |
495 | m_updatesCount = -2; | |
496 | ||
e0a050e3 | 497 | if ( !MSWCreateControl(windowClass.wx_str(), msStyle, pos, size, valueWin) ) |
bfbb0b4c | 498 | return false; |
2bda0e17 | 499 | |
8f08b250 VZ |
500 | m_updatesCount = -1; |
501 | ||
57c208c5 | 502 | #if wxUSE_RICHEDIT |
8ef51d67 | 503 | if (IsRich()) |
a1b82138 | 504 | { |
8ef51d67 JS |
505 | #if wxUSE_INKEDIT |
506 | if (IsInkEdit()) | |
507 | { | |
508 | // Pass IEM_InsertText (0) as wParam, in order to have the ink always | |
509 | // converted to text. | |
510 | ::SendMessage(GetHwnd(), EM_SETINKINSERTMODE, 0, 0); | |
40ff126a | 511 | |
8ef51d67 JS |
512 | // Make sure the mouse can be used for input |
513 | ::SendMessage(GetHwnd(), EM_SETUSEMOUSEFORINPUT, 1, 0); | |
514 | } | |
515 | #endif | |
40ff126a | 516 | |
5036ea90 VZ |
517 | // enable the events we're interested in: we want to get EN_CHANGE as |
518 | // for the normal controls | |
519 | LPARAM mask = ENM_CHANGE; | |
c57e3339 | 520 | |
8ef51d67 | 521 | if (GetRichVersion() == 1 && !IsInkEdit()) |
1dae1d00 VZ |
522 | { |
523 | // we also need EN_MSGFILTER for richedit 1.0 for the reasons | |
524 | // explained in its handler | |
525 | mask |= ENM_MOUSEEVENTS; | |
9cf4b439 VZ |
526 | |
527 | // we also need to force the appearance of the vertical scrollbar | |
528 | // initially as otherwise the control doesn't refresh correctly | |
529 | // after resize: but once the vertical scrollbar had been shown | |
530 | // (even if it's subsequently hidden) it does | |
531 | // | |
532 | // this is clearly a bug and for now it has been only noticed under | |
533 | // Windows XP, so if we're sure it works correctly under other | |
534 | // systems we could do this only for XP | |
535 | SetSize(-1, 1); // 1 is small enough to force vert scrollbar | |
b370e758 | 536 | SetInitialSize(size); |
1dae1d00 VZ |
537 | } |
538 | else if ( m_windowStyle & wxTE_AUTO_URL ) | |
c57e3339 VZ |
539 | { |
540 | mask |= ENM_LINK; | |
541 | ||
542 | ::SendMessage(GetHwnd(), EM_AUTOURLDETECT, TRUE, 0); | |
543 | } | |
544 | ||
545 | ::SendMessage(GetHwnd(), EM_SETEVENTMASK, 0, mask); | |
a1b82138 | 546 | } |
d2356abe | 547 | else |
c57e3339 | 548 | #endif // wxUSE_RICHEDIT |
d2356abe VZ |
549 | if ( HasFlag(wxTE_MULTILINE) && HasFlag(wxTE_READONLY) ) |
550 | { | |
551 | // non-rich read-only multiline controls have grey background by | |
552 | // default under MSW but this is not always appropriate, so forcefully | |
553 | // reset the background colour to normal default | |
554 | // | |
555 | // this is not ideal but, after a long discussion on wx-dev (see | |
556 | // http://thread.gmane.org/gmane.comp.lib.wxwidgets.devel/116360/) it | |
557 | // was finally deemed to be the best behaviour by default (and ideally | |
558 | // we'd have a way to change this, see #11521) | |
559 | SetBackgroundColour(GetClassDefaultAttributes().colBg); | |
560 | } | |
2bda0e17 | 561 | |
8c56ac83 JS |
562 | #ifndef __WXWINCE__ |
563 | // Without this, if we pass the size in the constructor and then don't change it, | |
564 | // the themed borders will be drawn incorrectly. | |
565 | SetWindowPos(GetHwnd(), NULL, 0, 0, 0, 0, | |
566 | SWP_NOZORDER|SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE| | |
567 | SWP_FRAMECHANGED); | |
568 | #endif | |
569 | ||
bfbb0b4c | 570 | return true; |
2bda0e17 KB |
571 | } |
572 | ||
573 | // Make sure the window style (etc.) reflects the HWND style (roughly) | |
cd471848 | 574 | void wxTextCtrl::AdoptAttributesFromHWND() |
2bda0e17 | 575 | { |
aac7e7fe | 576 | wxWindow::AdoptAttributesFromHWND(); |
2bda0e17 | 577 | |
aac7e7fe VZ |
578 | HWND hWnd = GetHwnd(); |
579 | long style = ::GetWindowLong(hWnd, GWL_STYLE); | |
2bda0e17 | 580 | |
aac7e7fe | 581 | // retrieve the style to see whether this is an edit or richedit ctrl |
cd471848 | 582 | #if wxUSE_RICHEDIT |
aac7e7fe | 583 | wxString classname = wxGetWindowClass(GetHWND()); |
2bda0e17 | 584 | |
9a83f860 | 585 | if ( classname.IsSameAs(wxT("EDIT"), false /* no case */) ) |
aac7e7fe VZ |
586 | { |
587 | m_verRichEdit = 0; | |
588 | } | |
589 | else // rich edit? | |
590 | { | |
591 | wxChar c; | |
9a83f860 | 592 | if ( wxSscanf(classname, wxT("RichEdit%d0%c"), &m_verRichEdit, &c) != 2 ) |
aac7e7fe | 593 | { |
9a83f860 | 594 | wxLogDebug(wxT("Unknown edit control '%s'."), classname.c_str()); |
2bda0e17 | 595 | |
aac7e7fe VZ |
596 | m_verRichEdit = 0; |
597 | } | |
598 | } | |
a1b82138 | 599 | #endif // wxUSE_RICHEDIT |
c085e333 | 600 | |
aac7e7fe VZ |
601 | if (style & ES_MULTILINE) |
602 | m_windowStyle |= wxTE_MULTILINE; | |
603 | if (style & ES_PASSWORD) | |
604 | m_windowStyle |= wxTE_PASSWORD; | |
605 | if (style & ES_READONLY) | |
606 | m_windowStyle |= wxTE_READONLY; | |
607 | if (style & ES_WANTRETURN) | |
608 | m_windowStyle |= wxTE_PROCESS_ENTER; | |
e015d1f7 JS |
609 | if (style & ES_CENTER) |
610 | m_windowStyle |= wxTE_CENTRE; | |
611 | if (style & ES_RIGHT) | |
612 | m_windowStyle |= wxTE_RIGHT; | |
2bda0e17 KB |
613 | } |
614 | ||
b2d5a7ee VZ |
615 | WXDWORD wxTextCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const |
616 | { | |
617 | long msStyle = wxControl::MSWGetStyle(style, exstyle); | |
618 | ||
fa2f57be | 619 | // styles which we always add by default |
b2d5a7ee VZ |
620 | if ( style & wxTE_MULTILINE ) |
621 | { | |
b2d5a7ee VZ |
622 | msStyle |= ES_MULTILINE | ES_WANTRETURN; |
623 | if ( !(style & wxTE_NO_VSCROLL) ) | |
db50ec5a VZ |
624 | { |
625 | // always adjust the vertical scrollbar automatically if we have it | |
626 | msStyle |= WS_VSCROLL | ES_AUTOVSCROLL; | |
627 | ||
34433938 | 628 | #if wxUSE_RICHEDIT |
db50ec5a VZ |
629 | // we have to use this style for the rich edit controls because |
630 | // without it the vertical scrollbar never appears at all in | |
631 | // richedit 3.0 because of our ECO_NOHIDESEL hack (search for it) | |
632 | if ( style & wxTE_RICH2 ) | |
633 | { | |
634 | msStyle |= ES_DISABLENOSCROLL; | |
635 | } | |
34433938 | 636 | #endif // wxUSE_RICHEDIT |
db50ec5a | 637 | } |
b2d5a7ee VZ |
638 | |
639 | style |= wxTE_PROCESS_ENTER; | |
640 | } | |
641 | else // !multiline | |
642 | { | |
643 | // there is really no reason to not have this style for single line | |
644 | // text controls | |
645 | msStyle |= ES_AUTOHSCROLL; | |
646 | } | |
647 | ||
0376ed54 VZ |
648 | // note that wxTE_DONTWRAP is the same as wxHSCROLL so if we have a horz |
649 | // scrollbar, there is no wrapping -- which makes sense | |
650 | if ( style & wxTE_DONTWRAP ) | |
db50ec5a VZ |
651 | { |
652 | // automatically scroll the control horizontally as necessary | |
ce192630 VZ |
653 | // |
654 | // NB: ES_AUTOHSCROLL is needed for richedit controls or they don't | |
655 | // show horz scrollbar at all, even in spite of WS_HSCROLL, and as | |
656 | // it doesn't seem to do any harm for plain edit controls, add it | |
657 | // always | |
658 | msStyle |= WS_HSCROLL | ES_AUTOHSCROLL; | |
db50ec5a | 659 | } |
b2d5a7ee VZ |
660 | |
661 | if ( style & wxTE_READONLY ) | |
662 | msStyle |= ES_READONLY; | |
663 | ||
664 | if ( style & wxTE_PASSWORD ) | |
665 | msStyle |= ES_PASSWORD; | |
666 | ||
b2d5a7ee VZ |
667 | if ( style & wxTE_NOHIDESEL ) |
668 | msStyle |= ES_NOHIDESEL; | |
669 | ||
db50ec5a | 670 | // note that we can't do do "& wxTE_LEFT" as wxTE_LEFT == 0 |
e015d1f7 JS |
671 | if ( style & wxTE_CENTRE ) |
672 | msStyle |= ES_CENTER; | |
db50ec5a | 673 | else if ( style & wxTE_RIGHT ) |
e015d1f7 | 674 | msStyle |= ES_RIGHT; |
db50ec5a | 675 | else |
0376ed54 | 676 | msStyle |= ES_LEFT; // ES_LEFT is 0 as well but for consistency... |
e015d1f7 | 677 | |
b2d5a7ee VZ |
678 | return msStyle; |
679 | } | |
680 | ||
681 | void wxTextCtrl::SetWindowStyleFlag(long style) | |
682 | { | |
66c72081 VZ |
683 | // changing the alignment of the control dynamically works under Win2003 |
684 | // (but not older Windows version: it seems to work under some versions of | |
685 | // XP but not other ones, and we have no way to determine it so be | |
686 | // conservative here) and only for plain EDIT controls (not RICH ones) and | |
687 | // we have to recreate the control to make it always work | |
688 | if ( IsRich() || wxGetWinVersion() < wxWinVersion_2003 ) | |
9b99c1e3 VZ |
689 | { |
690 | const long alignMask = wxTE_LEFT | wxTE_CENTRE | wxTE_RIGHT; | |
691 | if ( (style & alignMask) != (GetWindowStyle() & alignMask) ) | |
692 | { | |
693 | const wxString value = GetValue(); | |
694 | const wxPoint pos = GetPosition(); | |
695 | const wxSize size = GetSize(); | |
696 | ||
697 | // delete the old window | |
698 | HWND hwnd = GetHwnd(); | |
699 | DissociateHandle(); | |
700 | ::DestroyWindow(hwnd); | |
701 | ||
702 | // create the new one with the updated flags | |
703 | m_windowStyle = style; | |
704 | MSWCreateText(value, pos, size); | |
705 | ||
706 | // and make sure it has the same attributes as before | |
707 | if ( m_hasFont ) | |
708 | { | |
709 | // calling SetFont(m_font) would do nothing as the code would | |
710 | // notice that the font didn't change, so force it to believe | |
711 | // that it did | |
712 | wxFont font = m_font; | |
713 | m_font = wxNullFont; | |
714 | SetFont(font); | |
715 | } | |
716 | ||
717 | if ( m_hasFgCol ) | |
718 | { | |
719 | wxColour colFg = m_foregroundColour; | |
720 | m_foregroundColour = wxNullColour; | |
721 | SetForegroundColour(colFg); | |
722 | } | |
723 | ||
724 | if ( m_hasBgCol ) | |
725 | { | |
726 | wxColour colBg = m_backgroundColour; | |
727 | m_backgroundColour = wxNullColour; | |
728 | SetBackgroundColour(colBg); | |
729 | } | |
730 | ||
731 | // note that text styles are lost but this is probably not a big | |
732 | // problem: if you use styles, you probably don't use nor change | |
733 | // alignment flags anyhow | |
734 | ||
735 | return; | |
736 | } | |
737 | } | |
738 | ||
b2d5a7ee VZ |
739 | #if wxUSE_RICHEDIT |
740 | // we have to deal with some styles separately because they can't be | |
741 | // changed by simply calling SetWindowLong(GWL_STYLE) but can be changed | |
742 | // using richedit-specific EM_SETOPTIONS | |
743 | if ( IsRich() && | |
744 | ((style & wxTE_NOHIDESEL) != (GetWindowStyle() & wxTE_NOHIDESEL)) ) | |
745 | { | |
746 | bool set = (style & wxTE_NOHIDESEL) != 0; | |
747 | ||
748 | ::SendMessage(GetHwnd(), EM_SETOPTIONS, set ? ECOOP_OR : ECOOP_AND, | |
749 | set ? ECO_NOHIDESEL : ~ECO_NOHIDESEL); | |
750 | } | |
751 | #endif // wxUSE_RICHEDIT | |
752 | ||
753 | wxControl::SetWindowStyleFlag(style); | |
754 | } | |
755 | ||
a1b82138 VZ |
756 | // ---------------------------------------------------------------------------- |
757 | // set/get the controls text | |
758 | // ---------------------------------------------------------------------------- | |
759 | ||
28fdd8db VZ |
760 | bool wxTextCtrl::IsEmpty() const |
761 | { | |
762 | // this is an optimization for multiline controls containing a lot of text | |
763 | if ( IsMultiLine() && GetNumberOfLines() != 1 ) | |
764 | return false; | |
765 | ||
766 | return wxTextCtrlBase::IsEmpty(); | |
767 | } | |
768 | ||
cd471848 | 769 | wxString wxTextCtrl::GetValue() const |
2bda0e17 | 770 | { |
a5aa8086 VZ |
771 | // range 0..-1 is special for GetRange() and means to retrieve all text |
772 | return GetRange(0, -1); | |
773 | } | |
774 | ||
775 | wxString wxTextCtrl::GetRange(long from, long to) const | |
776 | { | |
777 | wxString str; | |
778 | ||
779 | if ( from >= to && to != -1 ) | |
780 | { | |
781 | // nothing to retrieve | |
782 | return str; | |
783 | } | |
784 | ||
b12915c1 | 785 | #if wxUSE_RICHEDIT |
aac7e7fe | 786 | if ( IsRich() ) |
b12915c1 | 787 | { |
3988b155 | 788 | int len = GetWindowTextLength(GetHwnd()); |
a5aa8086 | 789 | if ( len > from ) |
3988b155 | 790 | { |
7411f983 VZ |
791 | if ( to == -1 ) |
792 | to = len; | |
793 | ||
11db7d81 | 794 | #if !wxUSE_UNICODE |
7411f983 VZ |
795 | // we must use EM_STREAMOUT if we don't want to lose all characters |
796 | // not representable in the current character set (EM_GETTEXTRANGE | |
797 | // simply replaces them with question marks...) | |
e669d184 | 798 | if ( GetRichVersion() > 1 ) |
7411f983 | 799 | { |
e669d184 VZ |
800 | // we must have some encoding, otherwise any 8bit chars in the |
801 | // control are simply *lost* (replaced by '?') | |
802 | wxFontEncoding encoding = wxFONTENCODING_SYSTEM; | |
803 | ||
7411f983 VZ |
804 | wxFont font = m_defaultStyle.GetFont(); |
805 | if ( !font.Ok() ) | |
806 | font = GetFont(); | |
807 | ||
808 | if ( font.Ok() ) | |
809 | { | |
e669d184 VZ |
810 | encoding = font.GetEncoding(); |
811 | } | |
812 | ||
beee6bf8 | 813 | #if wxUSE_INTL |
e669d184 VZ |
814 | if ( encoding == wxFONTENCODING_SYSTEM ) |
815 | { | |
816 | encoding = wxLocale::GetSystemEncoding(); | |
817 | } | |
beee6bf8 | 818 | #endif // wxUSE_INTL |
e669d184 VZ |
819 | |
820 | if ( encoding == wxFONTENCODING_SYSTEM ) | |
821 | { | |
822 | encoding = wxFONTENCODING_ISO8859_1; | |
823 | } | |
824 | ||
825 | str = StreamOut(encoding); | |
826 | ||
827 | if ( !str.empty() ) | |
828 | { | |
829 | // we have to manually extract the required part, luckily | |
52a9e329 VZ |
830 | // this is easy in this case as EOL characters in str are |
831 | // just LFs because we remove CRs in wxRichEditStreamOut | |
9ffa7227 | 832 | str = str.Mid(from, to - from); |
7411f983 VZ |
833 | } |
834 | } | |
835 | ||
836 | // StreamOut() wasn't used or failed, try to do it in normal way | |
837 | if ( str.empty() ) | |
11db7d81 | 838 | #endif // !wxUSE_UNICODE |
de564874 MB |
839 | { |
840 | // alloc one extra WORD as needed by the control | |
841 | wxStringBuffer tmp(str, ++len); | |
842 | wxChar *p = tmp; | |
b12915c1 | 843 | |
de564874 MB |
844 | TEXTRANGE textRange; |
845 | textRange.chrg.cpMin = from; | |
11db7d81 | 846 | textRange.chrg.cpMax = to; |
de564874 | 847 | textRange.lpstrText = p; |
b12915c1 | 848 | |
bfbb0b4c WS |
849 | (void)::SendMessage(GetHwnd(), EM_GETTEXTRANGE, |
850 | 0, (LPARAM)&textRange); | |
b12915c1 | 851 | |
de564874 | 852 | if ( m_verRichEdit > 1 ) |
a5aa8086 | 853 | { |
de564874 MB |
854 | // RichEdit 2.0 uses just CR ('\r') for the |
855 | // newlines which is neither Unix nor Windows | |
856 | // style - convert it to something reasonable | |
857 | for ( ; *p; p++ ) | |
858 | { | |
9a83f860 VZ |
859 | if ( *p == wxT('\r') ) |
860 | *p = wxT('\n'); | |
de564874 | 861 | } |
a5aa8086 | 862 | } |
3988b155 VZ |
863 | } |
864 | ||
a5aa8086 VZ |
865 | if ( m_verRichEdit == 1 ) |
866 | { | |
867 | // convert to the canonical form - see comment below | |
868 | str = wxTextFile::Translate(str, wxTextFileType_Unix); | |
869 | } | |
3988b155 VZ |
870 | } |
871 | //else: no text at all, leave the string empty | |
b12915c1 | 872 | } |
a5aa8086 | 873 | else |
b12915c1 | 874 | #endif // wxUSE_RICHEDIT |
a5aa8086 | 875 | { |
135b23b2 VZ |
876 | // retrieve all text: wxTextEntry method works even for multiline |
877 | // controls and must be used for single line ones to account for hints | |
878 | str = wxTextEntry::GetValue(); | |
b12915c1 | 879 | |
a5aa8086 VZ |
880 | // need only a range? |
881 | if ( from < to ) | |
882 | { | |
883 | str = str.Mid(from, to - from); | |
884 | } | |
885 | ||
886 | // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the | |
887 | // canonical one (same one as above) for consistency with the other kinds | |
888 | // of controls and, more importantly, with the other ports | |
889 | str = wxTextFile::Translate(str, wxTextFileType_Unix); | |
890 | } | |
b12915c1 | 891 | |
a5aa8086 | 892 | return str; |
2bda0e17 KB |
893 | } |
894 | ||
f6519b40 | 895 | void wxTextCtrl::DoSetValue(const wxString& value, int flags) |
2bda0e17 | 896 | { |
b12915c1 VZ |
897 | // if the text is long enough, it's faster to just set it instead of first |
898 | // comparing it with the old one (chances are that it will be different | |
899 | // anyhow, this comparison is there to avoid flicker for small single-line | |
900 | // edit controls mostly) | |
135b23b2 | 901 | if ( (value.length() > 0x400) || (value != DoGetValue()) ) |
07cf98cb | 902 | { |
dd1c1631 | 903 | DoWriteText(value, flags /* doesn't include SelectionOnly here */); |
bfbb0b4c | 904 | |
63f84de8 VZ |
905 | // mark the control as being not dirty - we changed its text, not the |
906 | // user | |
907 | DiscardEdits(); | |
908 | ||
120249f6 JS |
909 | // for compatibility, don't move the cursor when doing SetValue() |
910 | SetInsertionPoint(0); | |
da32743f | 911 | } |
199fbd70 VZ |
912 | else // same text |
913 | { | |
63f84de8 VZ |
914 | // still reset the modified flag even if the value didn't really change |
915 | // because now it comes from the program and not the user (and do it | |
916 | // before generating the event so that the event handler could get the | |
917 | // expected value from IsModified()) | |
918 | DiscardEdits(); | |
919 | ||
199fbd70 | 920 | // still send an event for consistency |
f6519b40 VZ |
921 | if (flags & SetValue_SendEvent) |
922 | SendUpdateEvent(); | |
199fbd70 | 923 | } |
aac7e7fe | 924 | } |
a1b82138 | 925 | |
0b8e5844 | 926 | #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU) |
f6bcfd97 | 927 | |
7411f983 VZ |
928 | // TODO: using memcpy() would improve performance a lot for big amounts of text |
929 | ||
930 | DWORD CALLBACK | |
92715f1f | 931 | wxRichEditStreamIn(DWORD_PTR dwCookie, BYTE *buf, LONG cb, LONG *pcb) |
aac7e7fe VZ |
932 | { |
933 | *pcb = 0; | |
f6bcfd97 | 934 | |
7411f983 VZ |
935 | const wchar_t ** const ppws = (const wchar_t **)dwCookie; |
936 | ||
aac7e7fe | 937 | wchar_t *wbuf = (wchar_t *)buf; |
7411f983 | 938 | const wchar_t *wpc = *ppws; |
aac7e7fe VZ |
939 | while ( cb && *wpc ) |
940 | { | |
941 | *wbuf++ = *wpc++; | |
942 | ||
943 | cb -= sizeof(wchar_t); | |
944 | (*pcb) += sizeof(wchar_t); | |
07cf98cb | 945 | } |
aac7e7fe | 946 | |
7411f983 VZ |
947 | *ppws = wpc; |
948 | ||
949 | return 0; | |
950 | } | |
951 | ||
52a9e329 VZ |
952 | // helper struct used to pass parameters from wxTextCtrl to wxRichEditStreamOut |
953 | struct wxStreamOutData | |
954 | { | |
955 | wchar_t *wpc; | |
956 | size_t len; | |
957 | }; | |
958 | ||
7411f983 | 959 | DWORD CALLBACK |
975b6bcf | 960 | wxRichEditStreamOut(DWORD_PTR dwCookie, BYTE *buf, LONG cb, LONG *pcb) |
7411f983 VZ |
961 | { |
962 | *pcb = 0; | |
963 | ||
52a9e329 | 964 | wxStreamOutData *data = (wxStreamOutData *)dwCookie; |
7411f983 VZ |
965 | |
966 | const wchar_t *wbuf = (const wchar_t *)buf; | |
52a9e329 VZ |
967 | wchar_t *wpc = data->wpc; |
968 | while ( cb ) | |
7411f983 | 969 | { |
52a9e329 VZ |
970 | wchar_t wch = *wbuf++; |
971 | ||
972 | // turn "\r\n" into "\n" on the fly | |
973 | if ( wch != L'\r' ) | |
974 | *wpc++ = wch; | |
975 | else | |
976 | data->len--; | |
7411f983 VZ |
977 | |
978 | cb -= sizeof(wchar_t); | |
979 | (*pcb) += sizeof(wchar_t); | |
980 | } | |
981 | ||
52a9e329 | 982 | data->wpc = wpc; |
aac7e7fe VZ |
983 | |
984 | return 0; | |
2bda0e17 KB |
985 | } |
986 | ||
7411f983 | 987 | |
0b8e5844 | 988 | #if wxUSE_UNICODE_MSLU |
7411f983 VZ |
989 | #define UNUSED_IF_MSLU(param) |
990 | #else | |
991 | #define UNUSED_IF_MSLU(param) param | |
992 | #endif | |
993 | ||
994 | bool | |
995 | wxTextCtrl::StreamIn(const wxString& value, | |
996 | wxFontEncoding UNUSED_IF_MSLU(encoding), | |
997 | bool selectionOnly) | |
0b8e5844 | 998 | { |
7411f983 | 999 | #if wxUSE_UNICODE_MSLU |
0b8e5844 | 1000 | const wchar_t *wpc = value.c_str(); |
79d26b32 | 1001 | #else // !wxUSE_UNICODE_MSLU |
6a983211 | 1002 | wxCSConv conv(encoding); |
aac7e7fe | 1003 | |
414721d0 | 1004 | const size_t len = conv.MB2WC(NULL, value.mb_str(), value.length()); |
855d6be7 | 1005 | |
b212c69e JS |
1006 | if (len == wxCONV_FAILED) |
1007 | return false; | |
1008 | ||
51725fc0 | 1009 | wxWCharBuffer wchBuf(len); // allocates one extra character |
6a983211 | 1010 | wchar_t *wpc = wchBuf.data(); |
855d6be7 | 1011 | |
51725fc0 | 1012 | conv.MB2WC(wpc, value.mb_str(), len + 1); |
0b8e5844 | 1013 | #endif // wxUSE_UNICODE_MSLU |
aac7e7fe | 1014 | |
6a983211 | 1015 | // finally, stream it in the control |
aac7e7fe VZ |
1016 | EDITSTREAM eds; |
1017 | wxZeroMemory(eds); | |
92715f1f | 1018 | eds.dwCookie = (DWORD_PTR)&wpc; |
7a25a27c VZ |
1019 | // the cast below is needed for broken (very) old mingw32 headers |
1020 | eds.pfnCallback = (EDITSTREAMCALLBACK)wxRichEditStreamIn; | |
92209a39 | 1021 | |
2c62dd25 VZ |
1022 | // same problem as in DoWriteText(): we can get multiple events here |
1023 | UpdatesCountFilter ucf(m_updatesCount); | |
2b5f62a0 | 1024 | |
07601f59 VZ |
1025 | ::SendMessage(GetHwnd(), EM_STREAMIN, |
1026 | SF_TEXT | | |
1027 | SF_UNICODE | | |
1028 | (selectionOnly ? SFF_SELECTION : 0), | |
1029 | (LPARAM)&eds); | |
1030 | ||
fa31aeda RD |
1031 | // It's okay for EN_UPDATE to not be sent if the selection is empty and |
1032 | // the text is empty, otherwise warn the programmer about it. | |
1033 | wxASSERT_MSG( ucf.GotUpdate() || ( !HasSelection() && value.empty() ), | |
9a83f860 | 1034 | wxT("EM_STREAMIN didn't send EN_UPDATE?") ); |
2c62dd25 | 1035 | |
07601f59 | 1036 | if ( eds.dwError ) |
aac7e7fe | 1037 | { |
9a83f860 | 1038 | wxLogLastError(wxT("EM_STREAMIN")); |
aac7e7fe VZ |
1039 | } |
1040 | ||
855d6be7 VZ |
1041 | #if !wxUSE_WCHAR_T |
1042 | free(wchBuf); | |
1043 | #endif // !wxUSE_WCHAR_T | |
1044 | ||
bfbb0b4c | 1045 | return true; |
aac7e7fe VZ |
1046 | } |
1047 | ||
7411f983 VZ |
1048 | #if !wxUSE_UNICODE_MSLU |
1049 | ||
1050 | wxString | |
1051 | wxTextCtrl::StreamOut(wxFontEncoding encoding, bool selectionOnly) const | |
1052 | { | |
1053 | wxString out; | |
1054 | ||
1055 | const int len = GetWindowTextLength(GetHwnd()); | |
1056 | ||
1057 | #if wxUSE_WCHAR_T | |
1058 | wxWCharBuffer wchBuf(len); | |
1059 | wchar_t *wpc = wchBuf.data(); | |
1060 | #else | |
1061 | wchar_t *wchBuf = (wchar_t *)malloc((len + 1)*sizeof(wchar_t)); | |
1062 | wchar_t *wpc = wchBuf; | |
1063 | #endif | |
1064 | ||
52a9e329 VZ |
1065 | wxStreamOutData data; |
1066 | data.wpc = wpc; | |
1067 | data.len = len; | |
1068 | ||
7411f983 VZ |
1069 | EDITSTREAM eds; |
1070 | wxZeroMemory(eds); | |
52a9e329 | 1071 | eds.dwCookie = (DWORD)&data; |
7411f983 VZ |
1072 | eds.pfnCallback = wxRichEditStreamOut; |
1073 | ||
1074 | ::SendMessage | |
1075 | ( | |
1076 | GetHwnd(), | |
1077 | EM_STREAMOUT, | |
1078 | SF_TEXT | SF_UNICODE | (selectionOnly ? SFF_SELECTION : 0), | |
1079 | (LPARAM)&eds | |
1080 | ); | |
1081 | ||
1082 | if ( eds.dwError ) | |
1083 | { | |
9a83f860 | 1084 | wxLogLastError(wxT("EM_STREAMOUT")); |
7411f983 VZ |
1085 | } |
1086 | else // streamed out ok | |
1087 | { | |
52a9e329 VZ |
1088 | // NUL-terminate the string because its length could have been |
1089 | // decreased by wxRichEditStreamOut | |
1090 | *(wchBuf.data() + data.len) = L'\0'; | |
1091 | ||
b26613c2 VZ |
1092 | // now convert to the given encoding (this is a possibly lossful |
1093 | // conversion but what else can we do) | |
7411f983 | 1094 | wxCSConv conv(encoding); |
b26613c2 | 1095 | size_t lenNeeded = conv.WC2MB(NULL, wchBuf, 0); |
b212c69e JS |
1096 | |
1097 | if ( lenNeeded != wxCONV_FAILED && lenNeeded++ ) | |
7411f983 | 1098 | { |
b26613c2 | 1099 | conv.WC2MB(wxStringBuffer(out, lenNeeded), wchBuf, lenNeeded); |
7411f983 VZ |
1100 | } |
1101 | } | |
1102 | ||
1103 | #if !wxUSE_WCHAR_T | |
1104 | free(wchBuf); | |
1105 | #endif // !wxUSE_WCHAR_T | |
1106 | ||
1107 | return out; | |
1108 | } | |
1109 | ||
1110 | #endif // !wxUSE_UNICODE_MSLU | |
1111 | ||
aac7e7fe VZ |
1112 | #endif // wxUSE_RICHEDIT |
1113 | ||
a1b82138 | 1114 | void wxTextCtrl::WriteText(const wxString& value) |
79d26b32 VZ |
1115 | { |
1116 | DoWriteText(value); | |
1117 | } | |
1118 | ||
f6519b40 | 1119 | void wxTextCtrl::DoWriteText(const wxString& value, int flags) |
2bda0e17 | 1120 | { |
f6519b40 | 1121 | bool selectionOnly = (flags & SetValue_SelectionOnly) != 0; |
a5aa8086 VZ |
1122 | wxString valueDos; |
1123 | if ( m_windowStyle & wxTE_MULTILINE ) | |
1124 | valueDos = wxTextFile::Translate(value, wxTextFileType_Dos); | |
1125 | else | |
1126 | valueDos = value; | |
2bda0e17 | 1127 | |
4bc1afd5 | 1128 | #if wxUSE_RICHEDIT |
aac7e7fe | 1129 | // there are several complications with the rich edit controls here |
bfbb0b4c | 1130 | bool done = false; |
aac7e7fe | 1131 | if ( IsRich() ) |
4bc1afd5 | 1132 | { |
aac7e7fe VZ |
1133 | // first, ensure that the new text will be in the default style |
1134 | if ( !m_defaultStyle.IsDefault() ) | |
1135 | { | |
1136 | long start, end; | |
1137 | GetSelection(&start, &end); | |
0b8e5844 VS |
1138 | SetStyle(start, end, m_defaultStyle); |
1139 | } | |
1140 | ||
1141 | #if wxUSE_UNICODE_MSLU | |
1142 | // RichEdit doesn't have Unicode version of EM_REPLACESEL on Win9x, | |
1143 | // but EM_STREAMIN works | |
136cb3c7 | 1144 | if ( wxUsingUnicowsDll() && GetRichVersion() > 1 ) |
0b8e5844 | 1145 | { |
79d26b32 | 1146 | done = StreamIn(valueDos, wxFONTENCODING_SYSTEM, selectionOnly); |
aac7e7fe | 1147 | } |
0b8e5844 | 1148 | #endif // wxUSE_UNICODE_MSLU |
aac7e7fe | 1149 | |
b4da152e | 1150 | #if !wxUSE_UNICODE |
aac7e7fe VZ |
1151 | // next check if the text we're inserting must be shown in a non |
1152 | // default charset -- this only works for RichEdit > 1.0 | |
1153 | if ( GetRichVersion() > 1 ) | |
1154 | { | |
1155 | wxFont font = m_defaultStyle.GetFont(); | |
1156 | if ( !font.Ok() ) | |
1157 | font = GetFont(); | |
1158 | ||
1159 | if ( font.Ok() ) | |
1160 | { | |
1161 | wxFontEncoding encoding = font.GetEncoding(); | |
1162 | if ( encoding != wxFONTENCODING_SYSTEM ) | |
1163 | { | |
6a983211 VZ |
1164 | // we have to use EM_STREAMIN to force richedit control 2.0+ |
1165 | // to show any text in the non default charset -- otherwise | |
1166 | // it thinks it knows better than we do and always shows it | |
1167 | // in the default one | |
79d26b32 | 1168 | done = StreamIn(valueDos, encoding, selectionOnly); |
aac7e7fe VZ |
1169 | } |
1170 | } | |
1171 | } | |
9d7de3c2 | 1172 | #endif // !wxUSE_UNICODE |
4bc1afd5 | 1173 | } |
4bc1afd5 | 1174 | |
aac7e7fe VZ |
1175 | if ( !done ) |
1176 | #endif // wxUSE_RICHEDIT | |
1177 | { | |
2b5f62a0 | 1178 | // in some cases we get 2 EN_CHANGE notifications after the SendMessage |
2c62dd25 VZ |
1179 | // call (this happens for plain EDITs with EM_REPLACESEL and under some |
1180 | // -- undetermined -- conditions with rich edit) and sometimes we don't | |
1181 | // get any events at all (plain EDIT with WM_SETTEXT), so ensure that | |
1182 | // we generate exactly one of them by ignoring all but the first one in | |
1183 | // SendUpdateEvent() and generating one ourselves if we hadn't got any | |
1184 | // notifications from Windows | |
f6519b40 VZ |
1185 | if ( !(flags & SetValue_SendEvent) ) |
1186 | m_updatesCount = -2; // suppress any update event | |
1187 | ||
2c62dd25 | 1188 | UpdatesCountFilter ucf(m_updatesCount); |
79d26b32 | 1189 | |
5036ea90 | 1190 | ::SendMessage(GetHwnd(), selectionOnly ? EM_REPLACESEL : WM_SETTEXT, |
6e9e2d94 | 1191 | // EM_REPLACESEL takes 1 to indicate the operation should be redoable |
c9f78968 | 1192 | selectionOnly ? 1 : 0, (LPARAM)valueDos.wx_str()); |
2b5f62a0 | 1193 | |
f6519b40 | 1194 | if ( !ucf.GotUpdate() && (flags & SetValue_SendEvent) ) |
2b5f62a0 | 1195 | { |
2c62dd25 | 1196 | SendUpdateEvent(); |
2b5f62a0 | 1197 | } |
aac7e7fe | 1198 | } |
2bda0e17 KB |
1199 | } |
1200 | ||
a1b82138 VZ |
1201 | void wxTextCtrl::AppendText(const wxString& text) |
1202 | { | |
fa2f57be | 1203 | wxTextEntry::AppendText(text); |
2b5f62a0 VZ |
1204 | |
1205 | #if wxUSE_RICHEDIT | |
caea50ac VZ |
1206 | // don't do this if we're frozen, saves some time |
1207 | if ( !IsFrozen() && IsMultiLine() && GetRichVersion() > 1 ) | |
2b5f62a0 VZ |
1208 | { |
1209 | // setting the caret to the end and showing it simply doesn't work for | |
1210 | // RichEdit 2.0 -- force it to still do what we want | |
1211 | ::SendMessage(GetHwnd(), EM_LINESCROLL, 0, GetNumberOfLines()); | |
1212 | } | |
1213 | #endif // wxUSE_RICHEDIT | |
a1b82138 VZ |
1214 | } |
1215 | ||
1216 | void wxTextCtrl::Clear() | |
1217 | { | |
fda7962d | 1218 | ::SetWindowText(GetHwnd(), wxEmptyString); |
5036ea90 | 1219 | |
fa2f57be | 1220 | if ( IsMultiLine() && !IsRich() ) |
5036ea90 VZ |
1221 | { |
1222 | // rich edit controls send EN_UPDATE from WM_SETTEXT handler themselves | |
1223 | // but the normal ones don't -- make Clear() behaviour consistent by | |
1224 | // always sending this event | |
fa2f57be | 1225 | SendUpdateEvent(); |
5036ea90 | 1226 | } |
a1b82138 VZ |
1227 | } |
1228 | ||
94af7d45 VZ |
1229 | #ifdef __WIN32__ |
1230 | ||
1231 | bool wxTextCtrl::EmulateKeyPress(const wxKeyEvent& event) | |
1232 | { | |
1233 | SetFocus(); | |
1234 | ||
1235 | size_t lenOld = GetValue().length(); | |
1236 | ||
1237 | wxUint32 code = event.GetRawKeyCode(); | |
5c519b6c WS |
1238 | ::keybd_event((BYTE)code, 0, 0 /* key press */, 0); |
1239 | ::keybd_event((BYTE)code, 0, KEYEVENTF_KEYUP, 0); | |
94af7d45 VZ |
1240 | |
1241 | // assume that any alphanumeric key changes the total number of characters | |
1242 | // in the control - this should work in 99% of cases | |
1243 | return GetValue().length() != lenOld; | |
1244 | } | |
1245 | ||
1246 | #endif // __WIN32__ | |
1247 | ||
a1b82138 VZ |
1248 | // ---------------------------------------------------------------------------- |
1249 | // Accessors | |
1250 | // ---------------------------------------------------------------------------- | |
1251 | ||
cd471848 | 1252 | void wxTextCtrl::SetInsertionPointEnd() |
2bda0e17 | 1253 | { |
a9d3434a VZ |
1254 | // we must not do anything if the caret is already there because calling |
1255 | // SetInsertionPoint() thaws the controls if Freeze() had been called even | |
1256 | // if it doesn't actually move the caret anywhere and so the simple fact of | |
1257 | // doing it results in horrible flicker when appending big amounts of text | |
1258 | // to the control in a few chunks (see DoAddText() test in the text sample) | |
37f11dee VZ |
1259 | const wxTextPos lastPosition = GetLastPosition(); |
1260 | if ( GetInsertionPoint() == lastPosition ) | |
caea50ac | 1261 | { |
a9d3434a | 1262 | return; |
caea50ac | 1263 | } |
a9d3434a | 1264 | |
fa2f57be | 1265 | SetInsertionPoint(lastPosition); |
2bda0e17 KB |
1266 | } |
1267 | ||
cd471848 | 1268 | long wxTextCtrl::GetInsertionPoint() const |
2bda0e17 | 1269 | { |
57c208c5 | 1270 | #if wxUSE_RICHEDIT |
aac7e7fe | 1271 | if ( IsRich() ) |
a1b82138 VZ |
1272 | { |
1273 | CHARRANGE range; | |
1274 | range.cpMin = 0; | |
1275 | range.cpMax = 0; | |
bfbb0b4c | 1276 | ::SendMessage(GetHwnd(), EM_EXGETSEL, 0, (LPARAM) &range); |
a1b82138 VZ |
1277 | return range.cpMin; |
1278 | } | |
aac7e7fe | 1279 | #endif // wxUSE_RICHEDIT |
2bda0e17 | 1280 | |
fa2f57be | 1281 | return wxTextEntry::GetInsertionPoint(); |
2bda0e17 KB |
1282 | } |
1283 | ||
7d8268a1 | 1284 | wxTextPos wxTextCtrl::GetLastPosition() const |
2bda0e17 | 1285 | { |
fa2f57be VZ |
1286 | if ( IsMultiLine() ) |
1287 | { | |
1288 | int numLines = GetNumberOfLines(); | |
1289 | long posStartLastLine = XYToPosition(0, numLines - 1); | |
39136494 | 1290 | |
fa2f57be | 1291 | long lenLastLine = GetLengthOfLineContainingPos(posStartLastLine); |
2bda0e17 | 1292 | |
fa2f57be VZ |
1293 | return posStartLastLine + lenLastLine; |
1294 | } | |
1295 | ||
1296 | return wxTextEntry::GetLastPosition(); | |
2bda0e17 KB |
1297 | } |
1298 | ||
a1b82138 VZ |
1299 | // If the return values from and to are the same, there is no |
1300 | // selection. | |
fa2f57be | 1301 | void wxTextCtrl::GetSelection(long *from, long *to) const |
a1b82138 VZ |
1302 | { |
1303 | #if wxUSE_RICHEDIT | |
aac7e7fe | 1304 | if ( IsRich() ) |
a1b82138 VZ |
1305 | { |
1306 | CHARRANGE charRange; | |
aac7e7fe | 1307 | ::SendMessage(GetHwnd(), EM_EXGETSEL, 0, (LPARAM) &charRange); |
a1b82138 VZ |
1308 | |
1309 | *from = charRange.cpMin; | |
1310 | *to = charRange.cpMax; | |
a1b82138 | 1311 | } |
4bc1afd5 | 1312 | else |
aac7e7fe | 1313 | #endif // !wxUSE_RICHEDIT |
4bc1afd5 | 1314 | { |
fa2f57be | 1315 | wxTextEntry::GetSelection(from, to); |
4bc1afd5 | 1316 | } |
a1b82138 VZ |
1317 | } |
1318 | ||
a1b82138 | 1319 | // ---------------------------------------------------------------------------- |
aac7e7fe | 1320 | // selection |
a1b82138 VZ |
1321 | // ---------------------------------------------------------------------------- |
1322 | ||
fa2f57be | 1323 | void wxTextCtrl::DoSetSelection(long from, long to, int flags) |
a5aa8086 | 1324 | { |
789295bf | 1325 | HWND hWnd = GetHwnd(); |
39136494 | 1326 | |
aac7e7fe VZ |
1327 | #if wxUSE_RICHEDIT |
1328 | if ( IsRich() ) | |
1329 | { | |
2e771cb8 VS |
1330 | // if from and to are both -1, it means (in wxWidgets) that all text |
1331 | // should be selected, translate this into Windows convention | |
1332 | if ( (from == -1) && (to == -1) ) | |
1333 | { | |
1334 | from = 0; | |
1335 | } | |
1336 | ||
db50ec5a VZ |
1337 | CHARRANGE range; |
1338 | range.cpMin = from; | |
1339 | range.cpMax = to; | |
fa2f57be | 1340 | ::SendMessage(hWnd, EM_EXSETSEL, 0, (LPARAM)&range); |
db50ec5a VZ |
1341 | } |
1342 | else | |
1343 | #endif // wxUSE_RICHEDIT | |
1344 | { | |
8df26961 | 1345 | wxTextEntry::DoSetSelection(from, to, flags); |
db50ec5a VZ |
1346 | } |
1347 | ||
fa2f57be | 1348 | if ( (flags & SetSel_Scroll) && !IsFrozen() ) |
db50ec5a VZ |
1349 | { |
1350 | #if wxUSE_RICHEDIT | |
98e19a58 VZ |
1351 | // richedit 3.0 (i.e. the version living in riched20.dll distributed |
1352 | // with Windows 2000 and beyond) doesn't honour EM_SCROLLCARET when | |
1353 | // emulating richedit 2.0 unless the control has focus or ECO_NOHIDESEL | |
1354 | // option is set (but it does work ok in richedit 1.0 mode...) | |
1355 | // | |
1356 | // so to make it work we either need to give focus to it here which | |
1357 | // will probably create many problems (dummy focus events; window | |
1358 | // containing the text control being brought to foreground | |
1359 | // unexpectedly; ...) or to temporarily set ECO_NOHIDESEL which may | |
db50ec5a VZ |
1360 | // create other problems too -- and in fact it does because if we turn |
1361 | // on/off this style while appending the text to the control, the | |
1362 | // vertical scrollbar never appears in it even if we append tons of | |
1363 | // text and to work around this the only solution I found was to use | |
1364 | // ES_DISABLENOSCROLL | |
1365 | // | |
1366 | // this is very ugly but I don't see any other way to make this work | |
b7a3ba7d | 1367 | long style = 0; |
98e19a58 VZ |
1368 | if ( GetRichVersion() > 1 ) |
1369 | { | |
1370 | if ( !HasFlag(wxTE_NOHIDESEL) ) | |
1371 | { | |
b7a3ba7d JG |
1372 | // setting ECO_NOHIDESEL also sets WS_VISIBLE and possibly |
1373 | // others, remember the style so we can reset it later if needed | |
1374 | style = ::GetWindowLong(GetHwnd(), GWL_STYLE); | |
98e19a58 VZ |
1375 | ::SendMessage(GetHwnd(), EM_SETOPTIONS, |
1376 | ECOOP_OR, ECO_NOHIDESEL); | |
1377 | } | |
1378 | //else: everything is already ok | |
1379 | } | |
aac7e7fe | 1380 | #endif // wxUSE_RICHEDIT |
a1b82138 | 1381 | |
fa2f57be | 1382 | ::SendMessage(hWnd, EM_SCROLLCARET, 0, (LPARAM)0); |
98e19a58 VZ |
1383 | |
1384 | #if wxUSE_RICHEDIT | |
db50ec5a VZ |
1385 | // restore ECO_NOHIDESEL if we changed it |
1386 | if ( GetRichVersion() > 1 && !HasFlag(wxTE_NOHIDESEL) ) | |
1387 | { | |
1388 | ::SendMessage(GetHwnd(), EM_SETOPTIONS, | |
1389 | ECOOP_AND, ~ECO_NOHIDESEL); | |
b7a3ba7d JG |
1390 | if ( style != ::GetWindowLong(GetHwnd(), GWL_STYLE) ) |
1391 | ::SetWindowLong(GetHwnd(), GWL_STYLE, style); | |
db50ec5a | 1392 | } |
98e19a58 | 1393 | #endif // wxUSE_RICHEDIT |
db50ec5a | 1394 | } |
aac7e7fe VZ |
1395 | } |
1396 | ||
efe66bbc VZ |
1397 | // ---------------------------------------------------------------------------- |
1398 | // Working with files | |
1399 | // ---------------------------------------------------------------------------- | |
1400 | ||
3306aec1 | 1401 | bool wxTextCtrl::DoLoadFile(const wxString& file, int fileType) |
efe66bbc | 1402 | { |
3306aec1 | 1403 | if ( wxTextCtrlBase::DoLoadFile(file, fileType) ) |
efe66bbc VZ |
1404 | { |
1405 | // update the size limit if needed | |
1406 | AdjustSpaceLimit(); | |
1407 | ||
bfbb0b4c | 1408 | return true; |
efe66bbc VZ |
1409 | } |
1410 | ||
bfbb0b4c | 1411 | return false; |
efe66bbc VZ |
1412 | } |
1413 | ||
aac7e7fe | 1414 | // ---------------------------------------------------------------------------- |
fa2f57be | 1415 | // dirty status |
aac7e7fe | 1416 | // ---------------------------------------------------------------------------- |
39136494 | 1417 | |
cd471848 | 1418 | bool wxTextCtrl::IsModified() const |
2bda0e17 | 1419 | { |
bfbb0b4c | 1420 | return ::SendMessage(GetHwnd(), EM_GETMODIFY, 0, 0) != 0; |
2bda0e17 KB |
1421 | } |
1422 | ||
3a9fa0d6 VZ |
1423 | void wxTextCtrl::MarkDirty() |
1424 | { | |
fa2f57be | 1425 | ::SendMessage(GetHwnd(), EM_SETMODIFY, TRUE, 0); |
3a9fa0d6 VZ |
1426 | } |
1427 | ||
cd471848 | 1428 | void wxTextCtrl::DiscardEdits() |
2bda0e17 | 1429 | { |
fa2f57be | 1430 | ::SendMessage(GetHwnd(), EM_SETMODIFY, FALSE, 0); |
2bda0e17 KB |
1431 | } |
1432 | ||
efe66bbc VZ |
1433 | // ---------------------------------------------------------------------------- |
1434 | // Positions <-> coords | |
1435 | // ---------------------------------------------------------------------------- | |
1436 | ||
fa2f57be VZ |
1437 | int wxTextCtrl::GetNumberOfLines() const |
1438 | { | |
1439 | return (int)::SendMessage(GetHwnd(), EM_GETLINECOUNT, 0, 0); | |
1440 | } | |
1441 | ||
debe6624 | 1442 | long wxTextCtrl::XYToPosition(long x, long y) const |
2bda0e17 | 1443 | { |
2bda0e17 | 1444 | // This gets the char index for the _beginning_ of this line |
fa2f57be | 1445 | long charIndex = ::SendMessage(GetHwnd(), EM_LINEINDEX, y, 0); |
a5aa8086 VZ |
1446 | |
1447 | return charIndex + x; | |
2bda0e17 KB |
1448 | } |
1449 | ||
0efe5ba7 | 1450 | bool wxTextCtrl::PositionToXY(long pos, long *x, long *y) const |
2bda0e17 | 1451 | { |
789295bf | 1452 | HWND hWnd = GetHwnd(); |
2bda0e17 KB |
1453 | |
1454 | // This gets the line number containing the character | |
a5aa8086 | 1455 | long lineNo; |
0efe5ba7 | 1456 | #if wxUSE_RICHEDIT |
aac7e7fe | 1457 | if ( IsRich() ) |
0efe5ba7 | 1458 | { |
fa2f57be | 1459 | lineNo = ::SendMessage(hWnd, EM_EXLINEFROMCHAR, 0, pos); |
0efe5ba7 VZ |
1460 | } |
1461 | else | |
1462 | #endif // wxUSE_RICHEDIT | |
a5aa8086 | 1463 | { |
fa2f57be | 1464 | lineNo = ::SendMessage(hWnd, EM_LINEFROMCHAR, pos, 0); |
a5aa8086 | 1465 | } |
0efe5ba7 VZ |
1466 | |
1467 | if ( lineNo == -1 ) | |
1468 | { | |
1469 | // no such line | |
bfbb0b4c | 1470 | return false; |
0efe5ba7 VZ |
1471 | } |
1472 | ||
2bda0e17 | 1473 | // This gets the char index for the _beginning_ of this line |
fa2f57be | 1474 | long charIndex = ::SendMessage(hWnd, EM_LINEINDEX, lineNo, 0); |
0efe5ba7 VZ |
1475 | if ( charIndex == -1 ) |
1476 | { | |
bfbb0b4c | 1477 | return false; |
0efe5ba7 VZ |
1478 | } |
1479 | ||
2bda0e17 | 1480 | // The X position must therefore be the different between pos and charIndex |
0efe5ba7 | 1481 | if ( x ) |
a5aa8086 | 1482 | *x = pos - charIndex; |
0efe5ba7 | 1483 | if ( y ) |
a5aa8086 | 1484 | *y = lineNo; |
0efe5ba7 | 1485 | |
bfbb0b4c | 1486 | return true; |
2bda0e17 KB |
1487 | } |
1488 | ||
efe66bbc | 1489 | wxTextCtrlHitTestResult |
6726a6b0 | 1490 | wxTextCtrl::HitTest(const wxPoint& pt, long *posOut) const |
efe66bbc VZ |
1491 | { |
1492 | // first get the position from Windows | |
1493 | LPARAM lParam; | |
1494 | ||
1495 | #if wxUSE_RICHEDIT | |
1496 | POINTL ptl; | |
1497 | if ( IsRich() ) | |
1498 | { | |
1499 | // for rich edit controls the position is passed iva the struct fields | |
1500 | ptl.x = pt.x; | |
1501 | ptl.y = pt.y; | |
1502 | lParam = (LPARAM)&ptl; | |
1503 | } | |
1504 | else | |
1505 | #endif // wxUSE_RICHEDIT | |
1506 | { | |
1507 | // for the plain ones, we are limited to 16 bit positions which are | |
1508 | // combined in a single 32 bit value | |
1509 | lParam = MAKELPARAM(pt.x, pt.y); | |
1510 | } | |
1511 | ||
bfbb0b4c | 1512 | LRESULT pos = ::SendMessage(GetHwnd(), EM_CHARFROMPOS, 0, lParam); |
efe66bbc VZ |
1513 | |
1514 | if ( pos == -1 ) | |
1515 | { | |
1516 | // this seems to indicate an error... | |
1517 | return wxTE_HT_UNKNOWN; | |
1518 | } | |
1519 | ||
1520 | #if wxUSE_RICHEDIT | |
1521 | if ( !IsRich() ) | |
1522 | #endif // wxUSE_RICHEDIT | |
1523 | { | |
1524 | // for plain EDIT controls the higher word contains something else | |
1525 | pos = LOWORD(pos); | |
1526 | } | |
1527 | ||
1528 | ||
1529 | // next determine where it is relatively to our point: EM_CHARFROMPOS | |
1530 | // always returns the closest character but we need to be more precise, so | |
1531 | // double check that we really are where it pretends | |
1532 | POINTL ptReal; | |
1533 | ||
1534 | #if wxUSE_RICHEDIT | |
1535 | // FIXME: we need to distinguish between richedit 2 and 3 here somehow but | |
1536 | // we don't know how to do it | |
1537 | if ( IsRich() ) | |
1538 | { | |
bfbb0b4c | 1539 | ::SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&ptReal, pos); |
efe66bbc VZ |
1540 | } |
1541 | else | |
1542 | #endif // wxUSE_RICHEDIT | |
1543 | { | |
bfbb0b4c | 1544 | LRESULT lRc = ::SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0); |
efe66bbc VZ |
1545 | |
1546 | if ( lRc == -1 ) | |
1547 | { | |
1548 | // this is apparently returned when pos corresponds to the last | |
1549 | // position | |
1550 | ptReal.x = | |
1551 | ptReal.y = 0; | |
1552 | } | |
1553 | else | |
1554 | { | |
1555 | ptReal.x = LOWORD(lRc); | |
1556 | ptReal.y = HIWORD(lRc); | |
1557 | } | |
1558 | } | |
1559 | ||
1560 | wxTextCtrlHitTestResult rc; | |
1561 | ||
1562 | if ( pt.y > ptReal.y + GetCharHeight() ) | |
1563 | rc = wxTE_HT_BELOW; | |
1564 | else if ( pt.x > ptReal.x + GetCharWidth() ) | |
1565 | rc = wxTE_HT_BEYOND; | |
1566 | else | |
1567 | rc = wxTE_HT_ON_TEXT; | |
1568 | ||
6726a6b0 VZ |
1569 | if ( posOut ) |
1570 | *posOut = pos; | |
efe66bbc VZ |
1571 | |
1572 | return rc; | |
1573 | } | |
1574 | ||
1575 | // ---------------------------------------------------------------------------- | |
bfbb0b4c | 1576 | // |
efe66bbc VZ |
1577 | // ---------------------------------------------------------------------------- |
1578 | ||
debe6624 | 1579 | void wxTextCtrl::ShowPosition(long pos) |
2bda0e17 | 1580 | { |
789295bf | 1581 | HWND hWnd = GetHwnd(); |
2bda0e17 KB |
1582 | |
1583 | // To scroll to a position, we pass the number of lines and characters | |
1584 | // to scroll *by*. This means that we need to: | |
1585 | // (1) Find the line position of the current line. | |
1586 | // (2) Find the line position of pos. | |
1587 | // (3) Scroll by (pos - current). | |
1588 | // For now, ignore the horizontal scrolling. | |
1589 | ||
1590 | // Is this where scrolling is relative to - the line containing the caret? | |
1591 | // Or is the first visible line??? Try first visible line. | |
fa2f57be | 1592 | // int currentLineLineNo1 = (int)::SendMessage(hWnd, EM_LINEFROMCHAR, -1, 0L); |
2bda0e17 | 1593 | |
fa2f57be | 1594 | int currentLineLineNo = (int)::SendMessage(hWnd, EM_GETFIRSTVISIBLELINE, 0, 0); |
2bda0e17 | 1595 | |
fa2f57be | 1596 | int specifiedLineLineNo = (int)::SendMessage(hWnd, EM_LINEFROMCHAR, pos, 0); |
39136494 | 1597 | |
2bda0e17 KB |
1598 | int linesToScroll = specifiedLineLineNo - currentLineLineNo; |
1599 | ||
2bda0e17 | 1600 | if (linesToScroll != 0) |
fa2f57be | 1601 | ::SendMessage(hWnd, EM_LINESCROLL, 0, linesToScroll); |
2bda0e17 KB |
1602 | } |
1603 | ||
a5aa8086 VZ |
1604 | long wxTextCtrl::GetLengthOfLineContainingPos(long pos) const |
1605 | { | |
fa2f57be | 1606 | return ::SendMessage(GetHwnd(), EM_LINELENGTH, pos, 0); |
a5aa8086 VZ |
1607 | } |
1608 | ||
debe6624 | 1609 | int wxTextCtrl::GetLineLength(long lineNo) const |
2bda0e17 | 1610 | { |
a5aa8086 VZ |
1611 | long pos = XYToPosition(0, lineNo); |
1612 | ||
1613 | return GetLengthOfLineContainingPos(pos); | |
2bda0e17 KB |
1614 | } |
1615 | ||
debe6624 | 1616 | wxString wxTextCtrl::GetLineText(long lineNo) const |
2bda0e17 | 1617 | { |
a1b82138 | 1618 | size_t len = (size_t)GetLineLength(lineNo) + 1; |
488fe1fe | 1619 | |
f6bcfd97 BP |
1620 | // there must be at least enough place for the length WORD in the |
1621 | // buffer | |
1622 | len += sizeof(WORD); | |
4438caf4 | 1623 | |
f6bcfd97 | 1624 | wxString str; |
de564874 MB |
1625 | { |
1626 | wxStringBufferLength tmp(str, len); | |
1627 | wxChar *buf = tmp; | |
1628 | ||
1629 | *(WORD *)buf = (WORD)len; | |
60ab0c52 VZ |
1630 | len = (size_t)::SendMessage(GetHwnd(), EM_GETLINE, lineNo, (LPARAM)buf); |
1631 | ||
1632 | #if wxUSE_RICHEDIT | |
1633 | if ( IsRich() ) | |
1634 | { | |
1635 | // remove the '\r' returned by the rich edit control, the user code | |
1636 | // should never see it | |
9a83f860 | 1637 | if ( buf[len - 2] == wxT('\r') && buf[len - 1] == wxT('\n') ) |
60ab0c52 | 1638 | { |
e1ef6b5d VZ |
1639 | // richedit 1.0 uses "\r\n" as line terminator, so remove "\r" |
1640 | // here and "\n" below | |
9a83f860 | 1641 | buf[len - 2] = wxT('\n'); |
60ab0c52 VZ |
1642 | len--; |
1643 | } | |
9a83f860 | 1644 | else if ( buf[len - 1] == wxT('\r') ) |
e1ef6b5d VZ |
1645 | { |
1646 | // richedit 2.0+ uses only "\r", replace it with "\n" | |
9a83f860 | 1647 | buf[len - 1] = wxT('\n'); |
e1ef6b5d | 1648 | } |
60ab0c52 VZ |
1649 | } |
1650 | #endif // wxUSE_RICHEDIT | |
1651 | ||
8f387d13 VZ |
1652 | // remove the '\n' at the end, if any (this is how this function is |
1653 | // supposed to work according to the docs) | |
9a83f860 | 1654 | if ( buf[len - 1] == wxT('\n') ) |
8f387d13 VZ |
1655 | { |
1656 | len--; | |
1657 | } | |
1658 | ||
de564874 MB |
1659 | buf[len] = 0; |
1660 | tmp.SetLength(len); | |
1661 | } | |
4438caf4 VZ |
1662 | |
1663 | return str; | |
2bda0e17 KB |
1664 | } |
1665 | ||
d7eee191 VZ |
1666 | void wxTextCtrl::SetMaxLength(unsigned long len) |
1667 | { | |
4a82116e | 1668 | #if wxUSE_RICHEDIT |
4fa80851 VZ |
1669 | if ( IsRich() ) |
1670 | { | |
1671 | ::SendMessage(GetHwnd(), EM_EXLIMITTEXT, 0, len ? len : 0x7fffffff); | |
1672 | } | |
4a82116e | 1673 | else |
4fa80851 VZ |
1674 | #endif // wxUSE_RICHEDIT |
1675 | { | |
fa2f57be | 1676 | wxTextEntry::SetMaxLength(len); |
4fa80851 | 1677 | } |
d7eee191 VZ |
1678 | } |
1679 | ||
a1b82138 | 1680 | // ---------------------------------------------------------------------------- |
ca8b28f2 | 1681 | // Undo/redo |
a1b82138 VZ |
1682 | // ---------------------------------------------------------------------------- |
1683 | ||
ca8b28f2 JS |
1684 | void wxTextCtrl::Redo() |
1685 | { | |
4a82116e | 1686 | #if wxUSE_RICHEDIT |
fa2f57be VZ |
1687 | if ( GetRichVersion() > 1 ) |
1688 | { | |
1689 | ::SendMessage(GetHwnd(), EM_REDO, 0, 0); | |
1690 | return; | |
ca8b28f2 | 1691 | } |
fa2f57be | 1692 | #endif // wxUSE_RICHEDIT |
ca8b28f2 | 1693 | |
fa2f57be | 1694 | wxTextEntry::Redo(); |
ca8b28f2 JS |
1695 | } |
1696 | ||
1697 | bool wxTextCtrl::CanRedo() const | |
1698 | { | |
4a82116e | 1699 | #if wxUSE_RICHEDIT |
fa2f57be | 1700 | if ( GetRichVersion() > 1 ) |
4a82116e | 1701 | return ::SendMessage(GetHwnd(), EM_CANREDO, 0, 0) != 0; |
fa2f57be VZ |
1702 | #endif // wxUSE_RICHEDIT |
1703 | ||
1704 | return wxTextEntry::CanRedo(); | |
ca8b28f2 JS |
1705 | } |
1706 | ||
e3a6a6b2 VZ |
1707 | // ---------------------------------------------------------------------------- |
1708 | // caret handling (Windows only) | |
1709 | // ---------------------------------------------------------------------------- | |
1710 | ||
1711 | bool wxTextCtrl::ShowNativeCaret(bool show) | |
1712 | { | |
1713 | if ( show != m_isNativeCaretShown ) | |
1714 | { | |
1715 | if ( !(show ? ::ShowCaret(GetHwnd()) : ::HideCaret(GetHwnd())) ) | |
1716 | { | |
1717 | // not an error, may simply indicate that it's not shown/hidden | |
fa2f57be | 1718 | // yet (i.e. it had been hidden/shown 2 times before) |
e3a6a6b2 VZ |
1719 | return false; |
1720 | } | |
1721 | ||
1722 | m_isNativeCaretShown = show; | |
1723 | } | |
1724 | ||
1725 | return true; | |
1726 | } | |
1727 | ||
a1b82138 | 1728 | // ---------------------------------------------------------------------------- |
fa2f57be | 1729 | // implementation details |
a1b82138 | 1730 | // ---------------------------------------------------------------------------- |
39136494 | 1731 | |
2bda0e17 KB |
1732 | void wxTextCtrl::Command(wxCommandEvent & event) |
1733 | { | |
a1b82138 VZ |
1734 | SetValue(event.GetString()); |
1735 | ProcessCommand (event); | |
2bda0e17 KB |
1736 | } |
1737 | ||
1738 | void wxTextCtrl::OnDropFiles(wxDropFilesEvent& event) | |
1739 | { | |
a1b82138 VZ |
1740 | // By default, load the first file into the text window. |
1741 | if (event.GetNumberOfFiles() > 0) | |
1742 | { | |
1743 | LoadFile(event.GetFiles()[0]); | |
1744 | } | |
2bda0e17 KB |
1745 | } |
1746 | ||
a37d422a VZ |
1747 | // ---------------------------------------------------------------------------- |
1748 | // kbd input processing | |
1749 | // ---------------------------------------------------------------------------- | |
1750 | ||
90c6edd7 | 1751 | bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG* msg) |
a37d422a | 1752 | { |
a37d422a VZ |
1753 | // check for our special keys here: if we don't do it and the parent frame |
1754 | // uses them as accelerators, they wouldn't work at all, so we disable | |
1755 | // usual preprocessing for them | |
1756 | if ( msg->message == WM_KEYDOWN ) | |
1757 | { | |
90c6edd7 VZ |
1758 | const WPARAM vkey = msg->wParam; |
1759 | if ( HIWORD(msg->lParam) & KF_ALTDOWN ) | |
a37d422a | 1760 | { |
90c6edd7 | 1761 | // Alt-Backspace is accelerator for "Undo" |
a37d422a | 1762 | if ( vkey == VK_BACK ) |
bfbb0b4c | 1763 | return false; |
a37d422a VZ |
1764 | } |
1765 | else // no Alt | |
1766 | { | |
cf6e951c VZ |
1767 | // we want to process some Ctrl-foo and Shift-bar but no key |
1768 | // combinations without either Ctrl or Shift nor with both of them | |
1769 | // pressed | |
1770 | const int ctrl = wxIsCtrlDown(), | |
1771 | shift = wxIsShiftDown(); | |
1772 | switch ( ctrl + shift ) | |
a37d422a | 1773 | { |
cf6e951c | 1774 | default: |
9a83f860 | 1775 | wxFAIL_MSG( wxT("how many modifiers have we got?") ); |
cf6e951c VZ |
1776 | // fall through |
1777 | ||
1778 | case 0: | |
eedf954b | 1779 | if ( IsMultiLine() && vkey == VK_RETURN ) |
90c6edd7 VZ |
1780 | return false; |
1781 | // fall through | |
cf6e951c VZ |
1782 | case 2: |
1783 | break; | |
1784 | ||
1785 | case 1: | |
1786 | // either Ctrl or Shift pressed | |
1787 | if ( ctrl ) | |
1788 | { | |
1789 | switch ( vkey ) | |
1790 | { | |
1791 | case 'C': | |
1792 | case 'V': | |
1793 | case 'X': | |
1794 | case VK_INSERT: | |
1795 | case VK_DELETE: | |
1796 | case VK_HOME: | |
1797 | case VK_END: | |
bfbb0b4c | 1798 | return false; |
cf6e951c VZ |
1799 | } |
1800 | } | |
1801 | else // Shift is pressed | |
1802 | { | |
1803 | if ( vkey == VK_INSERT || vkey == VK_DELETE ) | |
bfbb0b4c | 1804 | return false; |
cf6e951c | 1805 | } |
a37d422a VZ |
1806 | } |
1807 | } | |
1808 | } | |
1809 | ||
90c6edd7 | 1810 | return wxControl::MSWShouldPreProcessMessage(msg); |
a37d422a VZ |
1811 | } |
1812 | ||
2bda0e17 KB |
1813 | void wxTextCtrl::OnChar(wxKeyEvent& event) |
1814 | { | |
77e00fe9 | 1815 | switch ( event.GetKeyCode() ) |
cd471848 | 1816 | { |
cd471848 | 1817 | case WXK_RETURN: |
cd471848 VZ |
1818 | { |
1819 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
bfbd6dc1 | 1820 | InitCommandEvent(event); |
f6bcfd97 | 1821 | event.SetString(GetValue()); |
937013e0 | 1822 | if ( HandleWindowEvent(event) ) |
9a3952fa | 1823 | if ( !HasFlag(wxTE_MULTILINE) ) |
cd471848 | 1824 | return; |
9a3952fa | 1825 | //else: multiline controls need Enter for themselves |
cd471848 | 1826 | } |
5fb9fcfc | 1827 | break; |
4d91c1d1 | 1828 | |
cd471848 | 1829 | case WXK_TAB: |
818d407a VZ |
1830 | // ok, so this is getting absolutely ridiculous but I don't see |
1831 | // any other way to fix this bug: when a multiline text control is | |
1832 | // inside a wxFrame, we need to generate the navigation event as | |
1833 | // otherwise nothing happens at all, but when the same control is | |
1834 | // created inside a dialog, IsDialogMessage() *does* switch focus | |
1835 | // all by itself and so if we do it here as well, it is advanced | |
1836 | // twice and goes to the next control... to prevent this from | |
1837 | // happening we're doing this ugly check, the logic being that if | |
1838 | // we don't have focus then it had been already changed to the next | |
1839 | // control | |
1840 | // | |
1841 | // the right thing to do would, of course, be to understand what | |
1842 | // the hell is IsDialogMessage() doing but this is beyond my feeble | |
1843 | // forces at the moment unfortunately | |
5f6cfda7 | 1844 | if ( !(m_windowStyle & wxTE_PROCESS_TAB)) |
cd471848 | 1845 | { |
5f6cfda7 JS |
1846 | if ( FindFocus() == this ) |
1847 | { | |
eedc82f4 JS |
1848 | int flags = 0; |
1849 | if (!event.ShiftDown()) | |
1850 | flags |= wxNavigationKeyEvent::IsForward ; | |
1851 | if (event.ControlDown()) | |
1852 | flags |= wxNavigationKeyEvent::WinChange ; | |
1853 | if (Navigate(flags)) | |
5f6cfda7 JS |
1854 | return; |
1855 | } | |
1856 | } | |
1857 | else | |
1858 | { | |
1859 | // Insert tab since calling the default Windows handler | |
1860 | // doesn't seem to do it | |
1861 | WriteText(wxT("\t")); | |
d1fd98cc | 1862 | return; |
cd471848 | 1863 | } |
341c92a8 | 1864 | break; |
cd471848 | 1865 | } |
39136494 | 1866 | |
8614c467 | 1867 | // no, we didn't process it |
42e69d6b | 1868 | event.Skip(); |
2bda0e17 KB |
1869 | } |
1870 | ||
e2cf30aa VS |
1871 | void wxTextCtrl::OnKeyDown(wxKeyEvent& event) |
1872 | { | |
1873 | // richedit control doesn't send WM_PASTE, WM_CUT and WM_COPY messages | |
1874 | // when Ctrl-V, X or C is pressed and this prevents wxClipboardTextEvent | |
1875 | // from working. So we work around it by intercepting these shortcuts | |
1876 | // ourselves and emitting clipboard events (which richedit will handle, | |
1877 | // so everything works as before, including pasting of rich text): | |
1878 | if ( event.GetModifiers() == wxMOD_CONTROL && IsRich() ) | |
1879 | { | |
1880 | switch ( event.GetKeyCode() ) | |
1881 | { | |
1882 | case 'C': | |
1883 | Copy(); | |
1884 | return; | |
1885 | case 'X': | |
1886 | Cut(); | |
1887 | return; | |
1888 | case 'V': | |
1889 | Paste(); | |
1890 | return; | |
1891 | default: | |
1892 | break; | |
1893 | } | |
1894 | } | |
1895 | ||
1896 | // no, we didn't process it | |
1897 | event.Skip(); | |
1898 | } | |
1899 | ||
c140b7e7 | 1900 | WXLRESULT wxTextCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
0cf5b099 | 1901 | { |
c140b7e7 | 1902 | WXLRESULT lRc = wxTextCtrlBase::MSWWindowProc(nMsg, wParam, lParam); |
e7e91e03 | 1903 | |
9fcbe076 | 1904 | switch ( nMsg ) |
0cf5b099 | 1905 | { |
9fcbe076 VZ |
1906 | case WM_GETDLGCODE: |
1907 | { | |
1908 | // we always want the chars and the arrows: the arrows for | |
1909 | // navigation and the chars because we want Ctrl-C to work even | |
1910 | // in a read only control | |
1911 | long lDlgCode = DLGC_WANTCHARS | DLGC_WANTARROWS; | |
2b5f62a0 | 1912 | |
9fcbe076 VZ |
1913 | if ( IsEditable() ) |
1914 | { | |
1915 | // we may have several different cases: | |
1916 | // 1. normal: both TAB and ENTER are used for navigation | |
1917 | // 2. ctrl wants TAB for itself: ENTER is used to pass to | |
1918 | // the next control in the dialog | |
1919 | // 3. ctrl wants ENTER for itself: TAB is used for dialog | |
1920 | // navigation | |
1921 | // 4. ctrl wants both TAB and ENTER: Ctrl-ENTER is used to | |
1922 | // go to the next control (we need some way to do it) | |
1923 | ||
1924 | // multiline controls should always get ENTER for themselves | |
1925 | if ( HasFlag(wxTE_PROCESS_ENTER) || HasFlag(wxTE_MULTILINE) ) | |
1926 | lDlgCode |= DLGC_WANTMESSAGE; | |
1927 | ||
1928 | if ( HasFlag(wxTE_PROCESS_TAB) ) | |
1929 | lDlgCode |= DLGC_WANTTAB; | |
1930 | ||
1931 | lRc |= lDlgCode; | |
1932 | } | |
1933 | else // !editable | |
1934 | { | |
1935 | // NB: use "=", not "|=" as the base class version returns | |
4c81144c | 1936 | // the same flags in the disabled state as usual (i.e. |
9fcbe076 VZ |
1937 | // including DLGC_WANTMESSAGE). This is strange (how |
1938 | // does it work in the native Win32 apps?) but for now | |
1939 | // live with it. | |
1940 | lRc = lDlgCode; | |
1941 | } | |
1942 | } | |
1943 | break; | |
7b6126aa VZ |
1944 | |
1945 | #if wxUSE_MENUS | |
1946 | case WM_SETCURSOR: | |
1947 | // rich text controls seem to have a bug and don't change the | |
1948 | // cursor to the standard arrow one from the I-beam cursor usually | |
1949 | // used by them even when a popup menu is shown (this works fine | |
1950 | // for plain EDIT controls though), so explicitly work around this | |
1951 | if ( IsRich() ) | |
1952 | { | |
1953 | extern wxMenu *wxCurrentPopupMenu; | |
1954 | if ( wxCurrentPopupMenu && | |
1955 | wxCurrentPopupMenu->GetInvokingWindow() == this ) | |
1956 | ::SetCursor(GetHcursorOf(*wxSTANDARD_CURSOR)); | |
1957 | } | |
1958 | #endif // wxUSE_MENUS | |
0cf5b099 VZ |
1959 | } |
1960 | ||
e7e91e03 | 1961 | return lRc; |
129223d6 VZ |
1962 | } |
1963 | ||
1964 | // ---------------------------------------------------------------------------- | |
1965 | // text control event processing | |
1966 | // ---------------------------------------------------------------------------- | |
1967 | ||
5036ea90 VZ |
1968 | bool wxTextCtrl::SendUpdateEvent() |
1969 | { | |
2c62dd25 | 1970 | switch ( m_updatesCount ) |
5036ea90 | 1971 | { |
2c62dd25 VZ |
1972 | case 0: |
1973 | // remember that we've got an update | |
1974 | m_updatesCount++; | |
1975 | break; | |
5036ea90 | 1976 | |
2c62dd25 VZ |
1977 | case 1: |
1978 | // we had already sent one event since the last control modification | |
1979 | return false; | |
1980 | ||
1981 | default: | |
9a83f860 | 1982 | wxFAIL_MSG( wxT("unexpected wxTextCtrl::m_updatesCount value") ); |
2c62dd25 VZ |
1983 | // fall through |
1984 | ||
1985 | case -1: | |
1986 | // we hadn't updated the control ourselves, this event comes from | |
1987 | // the user, don't need to ignore it nor update the count | |
1988 | break; | |
f6519b40 VZ |
1989 | |
1990 | case -2: | |
1991 | // the control was updated programmatically and we do NOT want to | |
1992 | // send events | |
1993 | return false; | |
5036ea90 VZ |
1994 | } |
1995 | ||
fa2f57be | 1996 | return SendTextUpdatedEvent(); |
5036ea90 VZ |
1997 | } |
1998 | ||
debe6624 | 1999 | bool wxTextCtrl::MSWCommand(WXUINT param, WXWORD WXUNUSED(id)) |
2bda0e17 | 2000 | { |
5036ea90 | 2001 | switch ( param ) |
789295bf | 2002 | { |
789295bf | 2003 | case EN_CHANGE: |
5036ea90 | 2004 | SendUpdateEvent(); |
789295bf | 2005 | break; |
2bda0e17 | 2006 | |
b12915c1 | 2007 | case EN_MAXTEXT: |
5036ea90 | 2008 | // the text size limit has been hit -- try to increase it |
d7eee191 VZ |
2009 | if ( !AdjustSpaceLimit() ) |
2010 | { | |
2011 | wxCommandEvent event(wxEVT_COMMAND_TEXT_MAXLEN, m_windowId); | |
2012 | InitCommandEvent(event); | |
2013 | event.SetString(GetValue()); | |
2014 | ProcessCommand(event); | |
2015 | } | |
789295bf VZ |
2016 | break; |
2017 | ||
4eb77d8b VZ |
2018 | // the other edit notification messages are not processed (or, in |
2019 | // the case of EN_{SET/KILL}FOCUS were already handled at WM_SET/ | |
2020 | // KILLFOCUS level) | |
789295bf | 2021 | default: |
bfbb0b4c | 2022 | return false; |
789295bf VZ |
2023 | } |
2024 | ||
2025 | // processed | |
bfbb0b4c | 2026 | return true; |
2bda0e17 KB |
2027 | } |
2028 | ||
2bae4332 | 2029 | WXHBRUSH wxTextCtrl::MSWControlColor(WXHDC hDC, WXHWND hWnd) |
f6bcfd97 | 2030 | { |
48fa6bd3 VZ |
2031 | if ( !IsEnabled() && !HasFlag(wxTE_MULTILINE) ) |
2032 | return MSWControlColorDisabled(hDC); | |
f6bcfd97 | 2033 | |
2bae4332 | 2034 | return wxTextCtrlBase::MSWControlColor(hDC, hWnd); |
f6bcfd97 BP |
2035 | } |
2036 | ||
4fa80851 | 2037 | bool wxTextCtrl::HasSpaceLimit(unsigned int *len) const |
789295bf | 2038 | { |
d7eee191 VZ |
2039 | // HACK: we try to automatically extend the limit for the amount of text |
2040 | // to allow (interactively) entering more than 64Kb of text under | |
2041 | // Win9x but we shouldn't reset the text limit which was previously | |
2042 | // set explicitly with SetMaxLength() | |
2043 | // | |
4fa80851 VZ |
2044 | // Unfortunately there is no EM_GETLIMITTEXTSETBYUSER and so we don't |
2045 | // know the limit we set (if any). We could solve this by storing the | |
2046 | // limit we set in wxTextCtrl but to save space we prefer to simply | |
2047 | // test here the actual limit value: we consider that SetMaxLength() | |
2048 | // can only be called for small values while EN_MAXTEXT is only sent | |
2049 | // for large values (in practice the default limit seems to be 30000 | |
2050 | // but make it smaller just to be on the safe side) | |
2051 | *len = ::SendMessage(GetHwnd(), EM_GETLIMITTEXT, 0, 0); | |
2052 | return *len < 10001; | |
2053 | ||
2054 | } | |
2055 | ||
2056 | bool wxTextCtrl::AdjustSpaceLimit() | |
2057 | { | |
2058 | unsigned int limit; | |
2059 | if ( HasSpaceLimit(&limit) ) | |
bfbb0b4c | 2060 | return false; |
d7eee191 VZ |
2061 | |
2062 | unsigned int len = ::GetWindowTextLength(GetHwnd()); | |
17d8ee1c | 2063 | if ( len >= limit ) |
789295bf | 2064 | { |
4fa80851 VZ |
2065 | // increment in 32Kb chunks |
2066 | SetMaxLength(len + 0x8000); | |
789295bf | 2067 | } |
d7eee191 VZ |
2068 | |
2069 | // we changed the limit | |
bfbb0b4c | 2070 | return true; |
789295bf | 2071 | } |
2bda0e17 | 2072 | |
fa2f57be | 2073 | bool wxTextCtrl::AcceptsFocusFromKeyboard() const |
2bda0e17 | 2074 | { |
589c7163 VZ |
2075 | // we don't want focus if we can't be edited unless we're a multiline |
2076 | // control because then it might be still nice to get focus from keyboard | |
2077 | // to be able to scroll it without mouse | |
2078 | return (IsEditable() || IsMultiLine()) && wxControl::AcceptsFocus(); | |
a1b82138 | 2079 | } |
c085e333 | 2080 | |
f68586e5 | 2081 | wxSize wxTextCtrl::DoGetBestSize() const |
a1b82138 VZ |
2082 | { |
2083 | int cx, cy; | |
7a5e53ab | 2084 | wxGetCharSize(GetHWND(), &cx, &cy, GetFont()); |
a1b82138 VZ |
2085 | |
2086 | int wText = DEFAULT_ITEM_WIDTH; | |
2087 | ||
f60e797e | 2088 | int hText = cy; |
a1b82138 VZ |
2089 | if ( m_windowStyle & wxTE_MULTILINE ) |
2090 | { | |
b7a3ba7d | 2091 | hText *= wxMax(wxMin(GetNumberOfLines(), 10), 2); |
a1b82138 VZ |
2092 | } |
2093 | //else: for single line control everything is ok | |
2094 | ||
f60e797e VZ |
2095 | // we have to add the adjustments for the control height only once, not |
2096 | // once per line, so do it after multiplication above | |
2097 | hText += EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) - cy; | |
2098 | ||
a1b82138 | 2099 | return wxSize(wText, hText); |
2bda0e17 | 2100 | } |
a1b82138 VZ |
2101 | |
2102 | // ---------------------------------------------------------------------------- | |
2103 | // standard handlers for standard edit menu events | |
2104 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 2105 | |
bfbd6dc1 | 2106 | void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
2107 | { |
2108 | Cut(); | |
2109 | } | |
2110 | ||
bfbd6dc1 | 2111 | void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
2112 | { |
2113 | Copy(); | |
2114 | } | |
2115 | ||
bfbd6dc1 | 2116 | void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
2117 | { |
2118 | Paste(); | |
2119 | } | |
2120 | ||
bfbd6dc1 | 2121 | void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
2122 | { |
2123 | Undo(); | |
2124 | } | |
2125 | ||
bfbd6dc1 | 2126 | void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
2127 | { |
2128 | Redo(); | |
2129 | } | |
2130 | ||
2eb10e2a | 2131 | void wxTextCtrl::OnDelete(wxCommandEvent& WXUNUSED(event)) |
2b5f62a0 | 2132 | { |
5a25f858 | 2133 | RemoveSelection(); |
2b5f62a0 VZ |
2134 | } |
2135 | ||
2eb10e2a | 2136 | void wxTextCtrl::OnSelectAll(wxCommandEvent& WXUNUSED(event)) |
2b5f62a0 | 2137 | { |
c2208899 | 2138 | SelectAll(); |
2b5f62a0 VZ |
2139 | } |
2140 | ||
e702ff0f JS |
2141 | void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event) |
2142 | { | |
2143 | event.Enable( CanCut() ); | |
2144 | } | |
2145 | ||
2146 | void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event) | |
2147 | { | |
2148 | event.Enable( CanCopy() ); | |
2149 | } | |
2150 | ||
2151 | void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event) | |
2152 | { | |
2153 | event.Enable( CanPaste() ); | |
2154 | } | |
2155 | ||
2156 | void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event) | |
2157 | { | |
2158 | event.Enable( CanUndo() ); | |
2159 | } | |
2160 | ||
2161 | void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event) | |
2162 | { | |
2163 | event.Enable( CanRedo() ); | |
2164 | } | |
2165 | ||
2b5f62a0 VZ |
2166 | void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent& event) |
2167 | { | |
c2208899 | 2168 | event.Enable( HasSelection() && IsEditable() ); |
2b5f62a0 VZ |
2169 | } |
2170 | ||
2171 | void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent& event) | |
2172 | { | |
c2208899 | 2173 | event.Enable( !IsEmpty() ); |
2b5f62a0 VZ |
2174 | } |
2175 | ||
26f60eb6 | 2176 | void wxTextCtrl::OnContextMenu(wxContextMenuEvent& event) |
2b5f62a0 VZ |
2177 | { |
2178 | #if wxUSE_RICHEDIT | |
2179 | if (IsRich()) | |
2180 | { | |
2181 | if (!m_privateContextMenu) | |
2182 | { | |
2183 | m_privateContextMenu = new wxMenu; | |
2184 | m_privateContextMenu->Append(wxID_UNDO, _("&Undo")); | |
2185 | m_privateContextMenu->Append(wxID_REDO, _("&Redo")); | |
2186 | m_privateContextMenu->AppendSeparator(); | |
2187 | m_privateContextMenu->Append(wxID_CUT, _("Cu&t")); | |
2188 | m_privateContextMenu->Append(wxID_COPY, _("&Copy")); | |
2189 | m_privateContextMenu->Append(wxID_PASTE, _("&Paste")); | |
2190 | m_privateContextMenu->Append(wxID_CLEAR, _("&Delete")); | |
2191 | m_privateContextMenu->AppendSeparator(); | |
2192 | m_privateContextMenu->Append(wxID_SELECTALL, _("Select &All")); | |
2193 | } | |
26f60eb6 | 2194 | PopupMenu(m_privateContextMenu); |
2b5f62a0 VZ |
2195 | return; |
2196 | } | |
2197 | else | |
2198 | #endif | |
2199 | event.Skip(); | |
2200 | } | |
2201 | ||
50c6e05f | 2202 | void wxTextCtrl::OnSetFocus(wxFocusEvent& event) |
e3a6a6b2 VZ |
2203 | { |
2204 | // be sure the caret remains invisible if the user had hidden it | |
2205 | if ( !m_isNativeCaretShown ) | |
2206 | { | |
2207 | ::HideCaret(GetHwnd()); | |
2208 | } | |
50c6e05f VZ |
2209 | |
2210 | event.Skip(); | |
e3a6a6b2 VZ |
2211 | } |
2212 | ||
4bc1afd5 VZ |
2213 | // the rest of the file only deals with the rich edit controls |
2214 | #if wxUSE_RICHEDIT | |
2215 | ||
c57e3339 VZ |
2216 | // ---------------------------------------------------------------------------- |
2217 | // EN_LINK processing | |
2218 | // ---------------------------------------------------------------------------- | |
2219 | ||
a64c3b74 | 2220 | bool wxTextCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) |
c57e3339 VZ |
2221 | { |
2222 | NMHDR *hdr = (NMHDR* )lParam; | |
1dae1d00 | 2223 | switch ( hdr->code ) |
c57e3339 | 2224 | { |
3bce6687 | 2225 | case EN_MSGFILTER: |
1dae1d00 VZ |
2226 | { |
2227 | const MSGFILTER *msgf = (MSGFILTER *)lParam; | |
2228 | UINT msg = msgf->msg; | |
2229 | ||
2230 | // this is a bit crazy but richedit 1.0 sends us all mouse | |
2231 | // events _except_ WM_LBUTTONUP (don't ask me why) so we have | |
2232 | // generate the wxWin events for this message manually | |
2233 | // | |
2234 | // NB: in fact, this is still not totally correct as it does | |
2235 | // send us WM_LBUTTONUP if the selection was cleared by the | |
2236 | // last click -- so currently we get 2 events in this case, | |
2237 | // but as I don't see any obvious way to check for this I | |
2238 | // leave this code in place because it's still better than | |
2239 | // not getting left up events at all | |
2240 | if ( msg == WM_LBUTTONUP ) | |
c57e3339 | 2241 | { |
1dae1d00 VZ |
2242 | WXUINT flags = msgf->wParam; |
2243 | int x = GET_X_LPARAM(msgf->lParam), | |
2244 | y = GET_Y_LPARAM(msgf->lParam); | |
2245 | ||
2246 | HandleMouseEvent(msg, x, y, flags); | |
c57e3339 | 2247 | } |
1dae1d00 | 2248 | } |
c57e3339 | 2249 | |
bfbb0b4c WS |
2250 | // return true to process the event (and false to ignore it) |
2251 | return true; | |
1dae1d00 VZ |
2252 | |
2253 | case EN_LINK: | |
2254 | { | |
2255 | const ENLINK *enlink = (ENLINK *)hdr; | |
2256 | ||
2257 | switch ( enlink->msg ) | |
2258 | { | |
2259 | case WM_SETCURSOR: | |
2260 | // ok, so it is hardcoded - do we really nee to | |
2261 | // customize it? | |
5c519b6c WS |
2262 | { |
2263 | wxCursor cur(wxCURSOR_HAND); | |
2264 | ::SetCursor(GetHcursorOf(cur)); | |
2265 | *result = TRUE; | |
2266 | break; | |
2267 | } | |
1dae1d00 VZ |
2268 | |
2269 | case WM_MOUSEMOVE: | |
2270 | case WM_LBUTTONDOWN: | |
2271 | case WM_LBUTTONUP: | |
2272 | case WM_LBUTTONDBLCLK: | |
2273 | case WM_RBUTTONDOWN: | |
2274 | case WM_RBUTTONUP: | |
2275 | case WM_RBUTTONDBLCLK: | |
2276 | // send a mouse event | |
2277 | { | |
2278 | static const wxEventType eventsMouse[] = | |
2279 | { | |
2280 | wxEVT_MOTION, | |
2281 | wxEVT_LEFT_DOWN, | |
2282 | wxEVT_LEFT_UP, | |
2283 | wxEVT_LEFT_DCLICK, | |
2284 | wxEVT_RIGHT_DOWN, | |
2285 | wxEVT_RIGHT_UP, | |
2286 | wxEVT_RIGHT_DCLICK, | |
2287 | }; | |
2288 | ||
2289 | // the event ids are consecutive | |
2290 | wxMouseEvent | |
2291 | evtMouse(eventsMouse[enlink->msg - WM_MOUSEMOVE]); | |
2292 | ||
2293 | InitMouseEvent(evtMouse, | |
2294 | GET_X_LPARAM(enlink->lParam), | |
2295 | GET_Y_LPARAM(enlink->lParam), | |
2296 | enlink->wParam); | |
2297 | ||
2298 | wxTextUrlEvent event(m_windowId, evtMouse, | |
2299 | enlink->chrg.cpMin, | |
2300 | enlink->chrg.cpMax); | |
2301 | ||
2302 | InitCommandEvent(event); | |
2303 | ||
2304 | *result = ProcessCommand(event); | |
2305 | } | |
2306 | break; | |
2307 | } | |
2308 | } | |
bfbb0b4c | 2309 | return true; |
c57e3339 | 2310 | } |
7f5d8b00 | 2311 | |
d86ab8e2 VZ |
2312 | // not processed, leave it to the base class |
2313 | return wxTextCtrlBase::MSWOnNotify(idCtrl, lParam, result); | |
c57e3339 VZ |
2314 | } |
2315 | ||
20a0e999 VZ |
2316 | #if wxUSE_DRAG_AND_DROP |
2317 | ||
2318 | void wxTextCtrl::SetDropTarget(wxDropTarget *dropTarget) | |
2319 | { | |
2320 | if ( m_dropTarget == wxRICHTEXT_DEFAULT_DROPTARGET ) | |
2321 | { | |
2322 | // get rid of the built-in drop target | |
2323 | ::RevokeDragDrop(GetHwnd()); | |
2324 | m_dropTarget = NULL; | |
2325 | } | |
2326 | ||
2327 | wxTextCtrlBase::SetDropTarget(dropTarget); | |
2328 | } | |
2329 | ||
2330 | #endif // wxUSE_DRAG_AND_DROP | |
2331 | ||
52f2f7b2 | 2332 | // ---------------------------------------------------------------------------- |
f6bcfd97 BP |
2333 | // colour setting for the rich edit controls |
2334 | // ---------------------------------------------------------------------------- | |
2335 | ||
f6bcfd97 BP |
2336 | bool wxTextCtrl::SetBackgroundColour(const wxColour& colour) |
2337 | { | |
2338 | if ( !wxTextCtrlBase::SetBackgroundColour(colour) ) | |
2339 | { | |
2340 | // colour didn't really change | |
bfbb0b4c | 2341 | return false; |
f6bcfd97 BP |
2342 | } |
2343 | ||
2344 | if ( IsRich() ) | |
2345 | { | |
2346 | // rich edit doesn't use WM_CTLCOLOR, hence we need to send | |
2347 | // EM_SETBKGNDCOLOR additionally | |
2348 | ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR, 0, wxColourToRGB(colour)); | |
2349 | } | |
2350 | ||
bfbb0b4c | 2351 | return true; |
f6bcfd97 BP |
2352 | } |
2353 | ||
2354 | bool wxTextCtrl::SetForegroundColour(const wxColour& colour) | |
2355 | { | |
2356 | if ( !wxTextCtrlBase::SetForegroundColour(colour) ) | |
2357 | { | |
2358 | // colour didn't really change | |
bfbb0b4c | 2359 | return false; |
f6bcfd97 BP |
2360 | } |
2361 | ||
2362 | if ( IsRich() ) | |
2363 | { | |
2364 | // change the colour of everything | |
2365 | CHARFORMAT cf; | |
2366 | wxZeroMemory(cf); | |
2367 | cf.cbSize = sizeof(cf); | |
2368 | cf.dwMask = CFM_COLOR; | |
2369 | cf.crTextColor = wxColourToRGB(colour); | |
2370 | ::SendMessage(GetHwnd(), EM_SETCHARFORMAT, SCF_ALL, (LPARAM)&cf); | |
2371 | } | |
2372 | ||
bfbb0b4c | 2373 | return true; |
f6bcfd97 BP |
2374 | } |
2375 | ||
4bc1afd5 VZ |
2376 | // ---------------------------------------------------------------------------- |
2377 | // styling support for rich edit controls | |
2378 | // ---------------------------------------------------------------------------- | |
2379 | ||
2380 | bool wxTextCtrl::SetStyle(long start, long end, const wxTextAttr& style) | |
2381 | { | |
2382 | if ( !IsRich() ) | |
2383 | { | |
2384 | // can't do it with normal text control | |
bfbb0b4c | 2385 | return false; |
4bc1afd5 VZ |
2386 | } |
2387 | ||
a5aa8086 VZ |
2388 | // the richedit 1.0 doesn't handle setting background colour, so don't |
2389 | // even try to do anything if it's the only thing we want to change | |
e00a5d3c JS |
2390 | if ( m_verRichEdit == 1 && !style.HasFont() && !style.HasTextColour() && |
2391 | !style.HasLeftIndent() && !style.HasRightIndent() && !style.HasAlignment() && | |
2392 | !style.HasTabs() ) | |
4bc1afd5 | 2393 | { |
bfbb0b4c WS |
2394 | // nothing to do: return true if there was really nothing to do and |
2395 | // false if we failed to set bg colour | |
4bc1afd5 VZ |
2396 | return !style.HasBackgroundColour(); |
2397 | } | |
2398 | ||
2399 | // order the range if needed | |
2400 | if ( start > end ) | |
2401 | { | |
2402 | long tmp = start; | |
2403 | start = end; | |
2404 | end = tmp; | |
2405 | } | |
2406 | ||
2407 | // we can only change the format of the selection, so select the range we | |
2408 | // want and restore the old selection later | |
2409 | long startOld, endOld; | |
2410 | GetSelection(&startOld, &endOld); | |
2411 | ||
2412 | // but do we really have to change the selection? | |
2413 | bool changeSel = start != startOld || end != endOld; | |
2414 | ||
2415 | if ( changeSel ) | |
aac7e7fe | 2416 | { |
fa2f57be | 2417 | DoSetSelection(start, end, SetSel_NoScroll); |
aac7e7fe | 2418 | } |
4bc1afd5 VZ |
2419 | |
2420 | // initialize CHARFORMAT struct | |
be329a3d RD |
2421 | #if wxUSE_RICHEDIT2 |
2422 | CHARFORMAT2 cf; | |
2423 | #else | |
4bc1afd5 | 2424 | CHARFORMAT cf; |
be329a3d | 2425 | #endif |
a5aa8086 | 2426 | |
4bc1afd5 | 2427 | wxZeroMemory(cf); |
a5aa8086 VZ |
2428 | |
2429 | // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple | |
2430 | // CHARFORMAT in that case | |
2431 | #if wxUSE_RICHEDIT2 | |
2432 | if ( m_verRichEdit == 1 ) | |
2433 | { | |
2434 | // this is the only thing the control is going to grok | |
2435 | cf.cbSize = sizeof(CHARFORMAT); | |
2436 | } | |
2437 | else | |
2438 | #endif | |
2439 | { | |
2440 | // CHARFORMAT or CHARFORMAT2 | |
2441 | cf.cbSize = sizeof(cf); | |
2442 | } | |
4bc1afd5 VZ |
2443 | |
2444 | if ( style.HasFont() ) | |
2445 | { | |
aac7e7fe VZ |
2446 | // VZ: CFM_CHARSET doesn't seem to do anything at all in RichEdit 2.0 |
2447 | // but using it doesn't seem to hurt neither so leaving it for now | |
2448 | ||
784164e1 VZ |
2449 | cf.dwMask |= CFM_FACE | CFM_SIZE | CFM_CHARSET | |
2450 | CFM_ITALIC | CFM_BOLD | CFM_UNDERLINE; | |
4bc1afd5 VZ |
2451 | |
2452 | // fill in data from LOGFONT but recalculate lfHeight because we need | |
2453 | // the real height in twips and not the negative number which | |
2454 | // wxFillLogFont() returns (this is correct in general and works with | |
2455 | // the Windows font mapper, but not here) | |
44cc96a8 JS |
2456 | |
2457 | wxFont font(style.GetFont()); | |
2458 | ||
4bc1afd5 | 2459 | LOGFONT lf; |
44cc96a8 JS |
2460 | wxFillLogFont(&lf, &font); |
2461 | cf.yHeight = 20*font.GetPointSize(); // 1 pt = 20 twips | |
4bc1afd5 VZ |
2462 | cf.bCharSet = lf.lfCharSet; |
2463 | cf.bPitchAndFamily = lf.lfPitchAndFamily; | |
e408bf52 | 2464 | wxStrlcpy(cf.szFaceName, lf.lfFaceName, WXSIZEOF(cf.szFaceName)); |
4bc1afd5 | 2465 | |
784164e1 VZ |
2466 | // also deal with underline/italic/bold attributes: note that we must |
2467 | // always set CFM_ITALIC &c bits in dwMask, even if we don't set the | |
2468 | // style to allow clearing it | |
4bc1afd5 VZ |
2469 | if ( lf.lfItalic ) |
2470 | { | |
4bc1afd5 VZ |
2471 | cf.dwEffects |= CFE_ITALIC; |
2472 | } | |
2473 | ||
2474 | if ( lf.lfWeight == FW_BOLD ) | |
2475 | { | |
4bc1afd5 VZ |
2476 | cf.dwEffects |= CFE_BOLD; |
2477 | } | |
2478 | ||
2479 | if ( lf.lfUnderline ) | |
2480 | { | |
4bc1afd5 VZ |
2481 | cf.dwEffects |= CFE_UNDERLINE; |
2482 | } | |
2483 | ||
77ffb593 | 2484 | // strikeout fonts are not supported by wxWidgets |
4bc1afd5 VZ |
2485 | } |
2486 | ||
2487 | if ( style.HasTextColour() ) | |
2488 | { | |
2489 | cf.dwMask |= CFM_COLOR; | |
2490 | cf.crTextColor = wxColourToRGB(style.GetTextColour()); | |
2491 | } | |
2492 | ||
be329a3d | 2493 | #if wxUSE_RICHEDIT2 |
a5aa8086 | 2494 | if ( m_verRichEdit != 1 && style.HasBackgroundColour() ) |
be329a3d RD |
2495 | { |
2496 | cf.dwMask |= CFM_BACKCOLOR; | |
2497 | cf.crBackColor = wxColourToRGB(style.GetBackgroundColour()); | |
2498 | } | |
784164e1 VZ |
2499 | #endif // wxUSE_RICHEDIT2 |
2500 | ||
4bc1afd5 VZ |
2501 | // do format the selection |
2502 | bool ok = ::SendMessage(GetHwnd(), EM_SETCHARFORMAT, | |
2503 | SCF_SELECTION, (LPARAM)&cf) != 0; | |
2504 | if ( !ok ) | |
2505 | { | |
9a83f860 | 2506 | wxLogDebug(wxT("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed")); |
4bc1afd5 VZ |
2507 | } |
2508 | ||
e00a5d3c JS |
2509 | // now do the paragraph formatting |
2510 | PARAFORMAT2 pf; | |
2511 | wxZeroMemory(pf); | |
2512 | // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple | |
2513 | // PARAFORMAT in that case | |
2514 | #if wxUSE_RICHEDIT2 | |
2515 | if ( m_verRichEdit == 1 ) | |
2516 | { | |
2517 | // this is the only thing the control is going to grok | |
2518 | pf.cbSize = sizeof(PARAFORMAT); | |
2519 | } | |
2520 | else | |
2521 | #endif | |
2522 | { | |
2523 | // PARAFORMAT or PARAFORMAT2 | |
2524 | pf.cbSize = sizeof(pf); | |
2525 | } | |
2526 | ||
2527 | if (style.HasAlignment()) | |
2528 | { | |
2529 | pf.dwMask |= PFM_ALIGNMENT; | |
2530 | if (style.GetAlignment() == wxTEXT_ALIGNMENT_RIGHT) | |
2531 | pf.wAlignment = PFA_RIGHT; | |
2532 | else if (style.GetAlignment() == wxTEXT_ALIGNMENT_CENTRE) | |
2533 | pf.wAlignment = PFA_CENTER; | |
2534 | else if (style.GetAlignment() == wxTEXT_ALIGNMENT_JUSTIFIED) | |
2535 | pf.wAlignment = PFA_JUSTIFY; | |
2536 | else | |
2537 | pf.wAlignment = PFA_LEFT; | |
2538 | } | |
2539 | ||
2540 | if (style.HasLeftIndent()) | |
2541 | { | |
89b67477 | 2542 | pf.dwMask |= PFM_STARTINDENT | PFM_OFFSET; |
e00a5d3c JS |
2543 | |
2544 | // Convert from 1/10 mm to TWIPS | |
2545 | pf.dxStartIndent = (int) (((double) style.GetLeftIndent()) * mm2twips / 10.0) ; | |
89b67477 | 2546 | pf.dxOffset = (int) (((double) style.GetLeftSubIndent()) * mm2twips / 10.0) ; |
e00a5d3c JS |
2547 | } |
2548 | ||
2549 | if (style.HasRightIndent()) | |
2550 | { | |
2551 | pf.dwMask |= PFM_RIGHTINDENT; | |
2552 | ||
2553 | // Convert from 1/10 mm to TWIPS | |
2554 | pf.dxRightIndent = (int) (((double) style.GetRightIndent()) * mm2twips / 10.0) ; | |
2555 | } | |
2556 | ||
2557 | if (style.HasTabs()) | |
2558 | { | |
2559 | pf.dwMask |= PFM_TABSTOPS; | |
2560 | ||
2561 | const wxArrayInt& tabs = style.GetTabs(); | |
2562 | ||
5c519b6c | 2563 | pf.cTabCount = (SHORT)wxMin(tabs.GetCount(), MAX_TAB_STOPS); |
e00a5d3c JS |
2564 | size_t i; |
2565 | for (i = 0; i < (size_t) pf.cTabCount; i++) | |
2566 | { | |
2567 | // Convert from 1/10 mm to TWIPS | |
2568 | pf.rgxTabs[i] = (int) (((double) tabs[i]) * mm2twips / 10.0) ; | |
2569 | } | |
2570 | } | |
2571 | ||
3488be9c VZ |
2572 | #if wxUSE_RICHEDIT2 |
2573 | if ( m_verRichEdit > 1 ) | |
2574 | { | |
2575 | if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft ) | |
2576 | { | |
2577 | // Use RTL paragraphs in RTL mode to get proper layout | |
2578 | pf.dwMask |= PFM_RTLPARA; | |
2579 | pf.wEffects |= PFE_RTLPARA; | |
2580 | } | |
2581 | } | |
2582 | #endif // wxUSE_RICHEDIT2 | |
2583 | ||
2584 | if ( pf.dwMask ) | |
e00a5d3c JS |
2585 | { |
2586 | // do format the selection | |
2587 | bool ok = ::SendMessage(GetHwnd(), EM_SETPARAFORMAT, | |
3488be9c | 2588 | 0, (LPARAM) &pf) != 0; |
e00a5d3c JS |
2589 | if ( !ok ) |
2590 | { | |
9a83f860 | 2591 | wxLogDebug(wxT("SendMessage(EM_SETPARAFORMAT, 0) failed")); |
e00a5d3c JS |
2592 | } |
2593 | } | |
2594 | ||
4bc1afd5 VZ |
2595 | if ( changeSel ) |
2596 | { | |
2597 | // restore the original selection | |
fa2f57be | 2598 | DoSetSelection(startOld, endOld, SetSel_NoScroll); |
4bc1afd5 VZ |
2599 | } |
2600 | ||
2601 | return ok; | |
2602 | } | |
f6bcfd97 | 2603 | |
5bf75ae7 VZ |
2604 | bool wxTextCtrl::SetDefaultStyle(const wxTextAttr& style) |
2605 | { | |
2606 | if ( !wxTextCtrlBase::SetDefaultStyle(style) ) | |
bfbb0b4c | 2607 | return false; |
5bf75ae7 | 2608 | |
caea50ac VZ |
2609 | if ( IsEditable() ) |
2610 | { | |
2611 | // we have to do this or the style wouldn't apply for the text typed by | |
2612 | // the user | |
7d8268a1 | 2613 | wxTextPos posLast = GetLastPosition(); |
caea50ac VZ |
2614 | SetStyle(posLast, posLast, m_defaultStyle); |
2615 | } | |
5bf75ae7 | 2616 | |
bfbb0b4c | 2617 | return true; |
5bf75ae7 VZ |
2618 | } |
2619 | ||
80185c6c | 2620 | bool wxTextCtrl::GetStyle(long position, wxTextAttr& style) |
e00a5d3c | 2621 | { |
80185c6c JS |
2622 | if ( !IsRich() ) |
2623 | { | |
2624 | // can't do it with normal text control | |
bfbb0b4c | 2625 | return false; |
80185c6c JS |
2626 | } |
2627 | ||
2628 | // initialize CHARFORMAT struct | |
2629 | #if wxUSE_RICHEDIT2 | |
2630 | CHARFORMAT2 cf; | |
2631 | #else | |
2632 | CHARFORMAT cf; | |
2633 | #endif | |
2634 | ||
2635 | wxZeroMemory(cf); | |
2636 | ||
2637 | // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple | |
2638 | // CHARFORMAT in that case | |
2639 | #if wxUSE_RICHEDIT2 | |
2640 | if ( m_verRichEdit == 1 ) | |
2641 | { | |
2642 | // this is the only thing the control is going to grok | |
2643 | cf.cbSize = sizeof(CHARFORMAT); | |
2644 | } | |
2645 | else | |
2646 | #endif | |
2647 | { | |
2648 | // CHARFORMAT or CHARFORMAT2 | |
2649 | cf.cbSize = sizeof(cf); | |
2650 | } | |
2651 | // we can only change the format of the selection, so select the range we | |
2652 | // want and restore the old selection later | |
2653 | long startOld, endOld; | |
2654 | GetSelection(&startOld, &endOld); | |
2655 | ||
2656 | // but do we really have to change the selection? | |
2657 | bool changeSel = position != startOld || position != endOld; | |
2658 | ||
2659 | if ( changeSel ) | |
2660 | { | |
fa2f57be | 2661 | DoSetSelection(position, position + 1, SetSel_NoScroll); |
80185c6c JS |
2662 | } |
2663 | ||
2664 | // get the selection formatting | |
2665 | (void) ::SendMessage(GetHwnd(), EM_GETCHARFORMAT, | |
2666 | SCF_SELECTION, (LPARAM)&cf) ; | |
2667 | ||
093dee5e | 2668 | |
80185c6c JS |
2669 | LOGFONT lf; |
2670 | lf.lfHeight = cf.yHeight; | |
2671 | lf.lfWidth = 0; | |
2672 | lf.lfCharSet = ANSI_CHARSET; // FIXME: how to get correct charset? | |
2673 | lf.lfClipPrecision = 0; | |
2674 | lf.lfEscapement = 0; | |
2675 | wxStrcpy(lf.lfFaceName, cf.szFaceName); | |
093dee5e RN |
2676 | |
2677 | //NOTE: we _MUST_ set each of these values to _something_ since we | |
7d8268a1 | 2678 | //do not call wxZeroMemory on the LOGFONT lf |
80185c6c JS |
2679 | if (cf.dwEffects & CFE_ITALIC) |
2680 | lf.lfItalic = TRUE; | |
093dee5e RN |
2681 | else |
2682 | lf.lfItalic = FALSE; | |
2683 | ||
80185c6c JS |
2684 | lf.lfOrientation = 0; |
2685 | lf.lfPitchAndFamily = cf.bPitchAndFamily; | |
2686 | lf.lfQuality = 0; | |
093dee5e | 2687 | |
80185c6c JS |
2688 | if (cf.dwEffects & CFE_STRIKEOUT) |
2689 | lf.lfStrikeOut = TRUE; | |
093dee5e RN |
2690 | else |
2691 | lf.lfStrikeOut = FALSE; | |
2692 | ||
80185c6c JS |
2693 | if (cf.dwEffects & CFE_UNDERLINE) |
2694 | lf.lfUnderline = TRUE; | |
093dee5e RN |
2695 | else |
2696 | lf.lfUnderline = FALSE; | |
2697 | ||
80185c6c JS |
2698 | if (cf.dwEffects & CFE_BOLD) |
2699 | lf.lfWeight = FW_BOLD; | |
093dee5e RN |
2700 | else |
2701 | lf.lfWeight = FW_NORMAL; | |
80185c6c JS |
2702 | |
2703 | wxFont font = wxCreateFontFromLogFont(& lf); | |
2704 | if (font.Ok()) | |
2705 | { | |
2706 | style.SetFont(font); | |
2707 | } | |
2708 | style.SetTextColour(wxColour(cf.crTextColor)); | |
2709 | ||
2710 | #if wxUSE_RICHEDIT2 | |
2711 | if ( m_verRichEdit != 1 ) | |
2712 | { | |
2713 | // cf.dwMask |= CFM_BACKCOLOR; | |
2714 | style.SetBackgroundColour(wxColour(cf.crBackColor)); | |
2715 | } | |
2716 | #endif // wxUSE_RICHEDIT2 | |
2717 | ||
2718 | // now get the paragraph formatting | |
2719 | PARAFORMAT2 pf; | |
2720 | wxZeroMemory(pf); | |
2721 | // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple | |
2722 | // PARAFORMAT in that case | |
2723 | #if wxUSE_RICHEDIT2 | |
2724 | if ( m_verRichEdit == 1 ) | |
2725 | { | |
2726 | // this is the only thing the control is going to grok | |
2727 | pf.cbSize = sizeof(PARAFORMAT); | |
2728 | } | |
2729 | else | |
2730 | #endif | |
2731 | { | |
2732 | // PARAFORMAT or PARAFORMAT2 | |
2733 | pf.cbSize = sizeof(pf); | |
2734 | } | |
2735 | ||
2736 | // do format the selection | |
2737 | (void) ::SendMessage(GetHwnd(), EM_GETPARAFORMAT, 0, (LPARAM) &pf) ; | |
2738 | ||
89b67477 | 2739 | style.SetLeftIndent( (int) ((double) pf.dxStartIndent * twips2mm * 10.0), (int) ((double) pf.dxOffset * twips2mm * 10.0) ); |
80185c6c JS |
2740 | style.SetRightIndent( (int) ((double) pf.dxRightIndent * twips2mm * 10.0) ); |
2741 | ||
2742 | if (pf.wAlignment == PFA_CENTER) | |
2743 | style.SetAlignment(wxTEXT_ALIGNMENT_CENTRE); | |
2744 | else if (pf.wAlignment == PFA_RIGHT) | |
2745 | style.SetAlignment(wxTEXT_ALIGNMENT_RIGHT); | |
2746 | else if (pf.wAlignment == PFA_JUSTIFY) | |
2747 | style.SetAlignment(wxTEXT_ALIGNMENT_JUSTIFIED); | |
2748 | else | |
2749 | style.SetAlignment(wxTEXT_ALIGNMENT_LEFT); | |
2750 | ||
2751 | wxArrayInt tabStops; | |
2752 | size_t i; | |
2753 | for (i = 0; i < (size_t) pf.cTabCount; i++) | |
2754 | { | |
89b67477 | 2755 | tabStops.Add( (int) ((double) (pf.rgxTabs[i] & 0xFFFF) * twips2mm * 10.0) ); |
80185c6c JS |
2756 | } |
2757 | ||
2758 | if ( changeSel ) | |
2759 | { | |
2760 | // restore the original selection | |
fa2f57be | 2761 | DoSetSelection(startOld, endOld, SetSel_NoScroll); |
80185c6c JS |
2762 | } |
2763 | ||
bfbb0b4c | 2764 | return true; |
e00a5d3c JS |
2765 | } |
2766 | ||
b12915c1 VZ |
2767 | // ---------------------------------------------------------------------------- |
2768 | // wxRichEditModule | |
2769 | // ---------------------------------------------------------------------------- | |
2770 | ||
628c219e VZ |
2771 | static const HINSTANCE INVALID_HINSTANCE = (HINSTANCE)-1; |
2772 | ||
b12915c1 VZ |
2773 | bool wxRichEditModule::OnInit() |
2774 | { | |
2775 | // don't do anything - we will load it when needed | |
bfbb0b4c | 2776 | return true; |
b12915c1 VZ |
2777 | } |
2778 | ||
2779 | void wxRichEditModule::OnExit() | |
2780 | { | |
136cb3c7 | 2781 | for ( size_t i = 0; i < WXSIZEOF(ms_hRichEdit); i++ ) |
b12915c1 | 2782 | { |
628c219e | 2783 | if ( ms_hRichEdit[i] && ms_hRichEdit[i] != INVALID_HINSTANCE ) |
a5aa8086 VZ |
2784 | { |
2785 | ::FreeLibrary(ms_hRichEdit[i]); | |
8c74e477 | 2786 | ms_hRichEdit[i] = NULL; |
a5aa8086 | 2787 | } |
b12915c1 | 2788 | } |
8ef51d67 JS |
2789 | #if wxUSE_INKEDIT |
2790 | if (ms_inkEditLib.IsLoaded()) | |
2791 | ms_inkEditLib.Unload(); | |
2792 | #endif | |
b12915c1 VZ |
2793 | } |
2794 | ||
2795 | /* static */ | |
628c219e | 2796 | bool wxRichEditModule::Load(Version version) |
b12915c1 | 2797 | { |
628c219e | 2798 | if ( ms_hRichEdit[version] == INVALID_HINSTANCE ) |
b12915c1 | 2799 | { |
a5aa8086 | 2800 | // we had already tried to load it and failed |
bfbb0b4c | 2801 | return false; |
b12915c1 VZ |
2802 | } |
2803 | ||
28978e0c VZ |
2804 | if ( ms_hRichEdit[version] ) |
2805 | { | |
2806 | // we've already got this one | |
bfbb0b4c | 2807 | return true; |
28978e0c VZ |
2808 | } |
2809 | ||
a243da29 | 2810 | static const wxChar *const dllnames[] = |
628c219e | 2811 | { |
9a83f860 VZ |
2812 | wxT("riched32"), |
2813 | wxT("riched20"), | |
2814 | wxT("msftedit"), | |
628c219e VZ |
2815 | }; |
2816 | ||
2817 | wxCOMPILE_TIME_ASSERT( WXSIZEOF(dllnames) == Version_Max, | |
2818 | RichEditDllNamesVersionsMismatch ); | |
b12915c1 | 2819 | |
628c219e | 2820 | ms_hRichEdit[version] = ::LoadLibrary(dllnames[version]); |
b12915c1 | 2821 | |
a5aa8086 | 2822 | if ( !ms_hRichEdit[version] ) |
b12915c1 | 2823 | { |
628c219e | 2824 | ms_hRichEdit[version] = INVALID_HINSTANCE; |
b12915c1 | 2825 | |
bfbb0b4c | 2826 | return false; |
b12915c1 VZ |
2827 | } |
2828 | ||
bfbb0b4c | 2829 | return true; |
b12915c1 VZ |
2830 | } |
2831 | ||
8ef51d67 JS |
2832 | #if wxUSE_INKEDIT |
2833 | // load the InkEdit library | |
2834 | bool wxRichEditModule::LoadInkEdit() | |
2835 | { | |
8ef51d67 | 2836 | if (ms_inkEditLibLoadAttemped) |
a10f026b | 2837 | return ms_inkEditLib.IsLoaded(); |
40ff126a | 2838 | |
8ef51d67 | 2839 | ms_inkEditLibLoadAttemped = true; |
40ff126a | 2840 | |
8ef51d67 JS |
2841 | wxLogNull logNull; |
2842 | return ms_inkEditLib.Load(wxT("inked")); | |
2843 | } | |
fa2f57be | 2844 | #endif // wxUSE_INKEDIT |
8ef51d67 JS |
2845 | |
2846 | ||
b12915c1 VZ |
2847 | #endif // wxUSE_RICHEDIT |
2848 | ||
3180bc0e | 2849 | #endif // wxUSE_TEXTCTRL && !(__SMARTPHONE__ && __WXWINCE__) |