]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
bfbd6dc1 | 2 | // Name: msw/textctrl.cpp |
2bda0e17 KB |
3 | // Purpose: wxTextCtrl |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
c085e333 | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
a1b82138 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
2bda0e17 | 16 | #ifdef __GNUG__ |
a1b82138 | 17 | #pragma implementation "textctrl.h" |
2bda0e17 KB |
18 | #endif |
19 | ||
a1b82138 VZ |
20 | // ---------------------------------------------------------------------------- |
21 | // headers | |
22 | // ---------------------------------------------------------------------------- | |
23 | ||
2bda0e17 KB |
24 | // For compilers that support precompilation, includes "wx.h". |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
a1b82138 | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
1e6feb95 VZ |
31 | #if wxUSE_TEXTCTRL |
32 | ||
2bda0e17 | 33 | #ifndef WX_PRECOMP |
a1b82138 VZ |
34 | #include "wx/textctrl.h" |
35 | #include "wx/settings.h" | |
36 | #include "wx/brush.h" | |
37 | #include "wx/utils.h" | |
381dd4bf | 38 | #include "wx/intl.h" |
a1b82138 | 39 | #include "wx/log.h" |
381dd4bf | 40 | #include "wx/app.h" |
2bda0e17 KB |
41 | #endif |
42 | ||
f6bcfd97 BP |
43 | #include "wx/module.h" |
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 KB |
53 | #include "wx/msw/private.h" |
54 | ||
a1b82138 | 55 | #include <string.h> |
2bda0e17 | 56 | #include <stdlib.h> |
a1b82138 | 57 | #include <sys/types.h> |
fbc535ff | 58 | |
ae090fdb | 59 | #if wxUSE_RICHEDIT && (!defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__)) |
cd471848 | 60 | #include <richedit.h> |
2bda0e17 KB |
61 | #endif |
62 | ||
e80591b9 VZ |
63 | // old mingw32 doesn't define this |
64 | #ifndef CFM_CHARSET | |
65 | #define CFM_CHARSET 0x08000000 | |
66 | #endif // CFM_CHARSET | |
67 | ||
784164e1 VZ |
68 | #ifndef CFM_BACKCOLOR |
69 | #define CFM_BACKCOLOR 0x04000000 | |
70 | #endif | |
71 | ||
733e8cf3 VZ |
72 | // cygwin does not have these defined for richedit |
73 | #ifndef ENM_LINK | |
74 | #define ENM_LINK 0x04000000 | |
75 | #endif | |
76 | ||
77 | #ifndef EM_AUTOURLDETECT | |
78 | #define EM_AUTOURLDETECT (WM_USER + 91) | |
79 | #endif | |
80 | ||
81 | #ifndef EN_LINK | |
82 | #define EN_LINK 0x070b | |
83 | ||
84 | typedef struct _enlink | |
85 | { | |
86 | NMHDR nmhdr; | |
87 | UINT msg; | |
88 | WPARAM wParam; | |
89 | LPARAM lParam; | |
90 | CHARRANGE chrg; | |
91 | } ENLINK; | |
92 | #endif // ENLINK | |
93 | ||
7a25a27c VZ |
94 | #ifndef SF_UNICODE |
95 | #define SF_UNICODE 0x0010 | |
96 | #endif | |
97 | ||
a5aa8086 VZ |
98 | // Watcom C++ doesn't define this |
99 | #ifndef SCF_ALL | |
100 | #define SCF_ALL 0x0004 | |
101 | #endif | |
102 | ||
aac7e7fe VZ |
103 | // ---------------------------------------------------------------------------- |
104 | // private functions | |
105 | // ---------------------------------------------------------------------------- | |
106 | ||
107 | #if wxUSE_RICHEDIT | |
108 | ||
109 | DWORD CALLBACK wxRichEditStreamIn(DWORD dwCookie, BYTE *buf, LONG cb, LONG *pcb); | |
110 | ||
111 | #endif // wxUSE_RICHEDIT | |
112 | ||
b12915c1 VZ |
113 | // ---------------------------------------------------------------------------- |
114 | // private classes | |
115 | // ---------------------------------------------------------------------------- | |
116 | ||
117 | #if wxUSE_RICHEDIT | |
118 | ||
a5aa8086 | 119 | // this module initializes RichEdit DLL(s) if needed |
b12915c1 VZ |
120 | class wxRichEditModule : public wxModule |
121 | { | |
122 | public: | |
123 | virtual bool OnInit(); | |
124 | virtual void OnExit(); | |
125 | ||
b12915c1 VZ |
126 | // load the richedit DLL of at least of required version |
127 | static bool Load(int version = 1); | |
128 | ||
129 | private: | |
a5aa8086 VZ |
130 | // the handles to richedit 1.0 and 2.0 (or 3.0) DLLs |
131 | static HINSTANCE ms_hRichEdit[2]; | |
b12915c1 VZ |
132 | |
133 | DECLARE_DYNAMIC_CLASS(wxRichEditModule) | |
134 | }; | |
135 | ||
a5aa8086 | 136 | HINSTANCE wxRichEditModule::ms_hRichEdit[2] = { NULL, NULL }; |
b12915c1 VZ |
137 | |
138 | IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule, wxModule) | |
139 | ||
140 | #endif // wxUSE_RICHEDIT | |
e702ff0f | 141 | |
a1b82138 VZ |
142 | // ---------------------------------------------------------------------------- |
143 | // event tables and other macros | |
144 | // ---------------------------------------------------------------------------- | |
145 | ||
2bda0e17 KB |
146 | IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxControl) |
147 | ||
148 | BEGIN_EVENT_TABLE(wxTextCtrl, wxControl) | |
a1b82138 VZ |
149 | EVT_CHAR(wxTextCtrl::OnChar) |
150 | EVT_DROP_FILES(wxTextCtrl::OnDropFiles) | |
151 | ||
152 | EVT_MENU(wxID_CUT, wxTextCtrl::OnCut) | |
153 | EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy) | |
154 | EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste) | |
155 | EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo) | |
156 | EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo) | |
157 | ||
158 | EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut) | |
159 | EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy) | |
160 | EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste) | |
161 | EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo) | |
162 | EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo) | |
f6bcfd97 BP |
163 | #ifdef __WIN16__ |
164 | EVT_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground) | |
165 | #endif | |
2bda0e17 | 166 | END_EVENT_TABLE() |
e702ff0f | 167 | |
a1b82138 VZ |
168 | // ============================================================================ |
169 | // implementation | |
170 | // ============================================================================ | |
171 | ||
172 | // ---------------------------------------------------------------------------- | |
173 | // creation | |
174 | // ---------------------------------------------------------------------------- | |
175 | ||
aac7e7fe | 176 | void wxTextCtrl::Init() |
2bda0e17 | 177 | { |
cd471848 | 178 | #if wxUSE_RICHEDIT |
aac7e7fe | 179 | m_verRichEdit = 0; |
cd471848 | 180 | #endif |
2bda0e17 KB |
181 | } |
182 | ||
debe6624 | 183 | bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id, |
c085e333 VZ |
184 | const wxString& value, |
185 | const wxPoint& pos, | |
a1b82138 VZ |
186 | const wxSize& size, |
187 | long style, | |
c085e333 VZ |
188 | const wxValidator& validator, |
189 | const wxString& name) | |
2bda0e17 | 190 | { |
a1b82138 | 191 | // base initialization |
8d99be5f | 192 | if ( !CreateBase(parent, id, pos, size, style, validator, name) ) |
a1b82138 | 193 | return FALSE; |
2bda0e17 | 194 | |
a1b82138 VZ |
195 | if ( parent ) |
196 | parent->AddChild(this); | |
2bda0e17 | 197 | |
b2d5a7ee VZ |
198 | // translate wxWin style flags to MSW ones |
199 | WXDWORD msStyle = MSWGetCreateWindowFlags(); | |
cfdd3a98 | 200 | |
a1b82138 | 201 | // do create the control - either an EDIT or RICHEDIT |
b12915c1 | 202 | wxString windowClass = wxT("EDIT"); |
cd471848 | 203 | |
57c208c5 | 204 | #if wxUSE_RICHEDIT |
a5aa8086 VZ |
205 | if ( m_windowStyle & wxTE_AUTO_URL ) |
206 | { | |
207 | // automatic URL detection only works in RichEdit 2.0+ | |
208 | m_windowStyle |= wxTE_RICH2; | |
209 | } | |
210 | ||
211 | if ( m_windowStyle & wxTE_RICH2 ) | |
212 | { | |
213 | // using richedit 2.0 implies using wxTE_RICH | |
214 | m_windowStyle |= wxTE_RICH; | |
215 | } | |
216 | ||
217 | // we need to load the richedit DLL before creating the rich edit control | |
c49245f8 | 218 | if ( m_windowStyle & wxTE_RICH ) |
a1b82138 | 219 | { |
a5aa8086 VZ |
220 | static bool s_errorGiven = FALSE;// MT-FIXME |
221 | ||
222 | // Which version do we need? Use 1.0 by default because it is much more | |
223 | // like the the standard EDIT or 2.0 if explicitly requested, but use | |
224 | // only 2.0 in Unicode mode as 1.0 doesn't support Unicode at all | |
225 | // | |
226 | // TODO: RichEdit 3.0 is apparently capable of emulating RichEdit 1.0 | |
227 | // (and thus EDIT) much better than RichEdit 2.0 so we probably | |
228 | // should use 3.0 if available as it is the best of both worlds - | |
229 | // but as I can't test it right now I don't do it (VZ) | |
230 | #if wxUSE_UNICODE | |
231 | const int verRichEdit = 2; | |
232 | #else // !wxUSE_UNICODE | |
233 | int verRichEdit = m_windowStyle & wxTE_RICH2 ? 2 : 1; | |
234 | #endif // wxUSE_UNICODE/!wxUSE_UNICODE | |
0d0512bd VZ |
235 | |
236 | // only give the error msg once if the DLL can't be loaded | |
237 | if ( !s_errorGiven ) | |
238 | { | |
a5aa8086 VZ |
239 | // try to load the RichEdit DLL (will do nothing if already done) |
240 | if ( !wxRichEditModule::Load(verRichEdit) ) | |
0d0512bd | 241 | { |
a5aa8086 VZ |
242 | #if !wxUSE_UNICODE |
243 | // try another version? | |
244 | verRichEdit = 3 - verRichEdit; // 1 <-> 2 | |
245 | ||
246 | if ( !wxRichEditModule::Load(verRichEdit) ) | |
247 | #endif // wxUSE_UNICODE | |
248 | { | |
249 | wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll")); | |
0d0512bd | 250 | |
a5aa8086 VZ |
251 | s_errorGiven = TRUE; |
252 | } | |
0d0512bd VZ |
253 | } |
254 | } | |
255 | ||
a5aa8086 | 256 | // have we managed to load any richedit version? |
aac7e7fe | 257 | if ( !s_errorGiven ) |
0d0512bd VZ |
258 | { |
259 | msStyle |= ES_AUTOVSCROLL; | |
aac7e7fe | 260 | |
a5aa8086 | 261 | m_verRichEdit = verRichEdit; |
aac7e7fe | 262 | if ( m_verRichEdit == 1 ) |
b12915c1 VZ |
263 | { |
264 | windowClass = wxT("RICHEDIT"); | |
265 | } | |
266 | else | |
267 | { | |
268 | #ifndef RICHEDIT_CLASS | |
269 | wxString RICHEDIT_CLASS; | |
aac7e7fe | 270 | RICHEDIT_CLASS.Printf(_T("RichEdit%d0"), m_verRichEdit); |
5fb2f4ba | 271 | #if wxUSE_UNICODE |
b12915c1 VZ |
272 | RICHEDIT_CLASS += _T('W'); |
273 | #else // ANSI | |
274 | RICHEDIT_CLASS += _T('A'); | |
275 | #endif // Unicode/ANSI | |
276 | #endif // !RICHEDIT_CLASS | |
277 | ||
278 | windowClass = RICHEDIT_CLASS; | |
279 | } | |
0d0512bd | 280 | } |
a1b82138 | 281 | } |
b12915c1 | 282 | #endif // wxUSE_RICHEDIT |
2bda0e17 | 283 | |
c8b204e6 VZ |
284 | // we need to turn '\n's into "\r\n"s for the multiline controls |
285 | wxString valueWin; | |
286 | if ( m_windowStyle & wxTE_MULTILINE ) | |
287 | { | |
288 | valueWin = wxTextFile::Translate(value, wxTextFileType_Dos); | |
289 | } | |
290 | else // single line | |
291 | { | |
292 | valueWin = value; | |
293 | } | |
294 | ||
295 | if ( !MSWCreateControl(windowClass, msStyle, pos, size, valueWin) ) | |
7da982c4 | 296 | return FALSE; |
2bda0e17 | 297 | |
a756f210 | 298 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); |
86f14582 | 299 | |
57c208c5 | 300 | #if wxUSE_RICHEDIT |
aac7e7fe | 301 | if ( IsRich() ) |
a1b82138 | 302 | { |
c57e3339 VZ |
303 | // have to enable events manually |
304 | LPARAM mask = ENM_CHANGE | ENM_DROPFILES | ENM_SELCHANGE | ENM_UPDATE; | |
305 | ||
306 | if ( m_windowStyle & wxTE_AUTO_URL ) | |
307 | { | |
308 | mask |= ENM_LINK; | |
309 | ||
310 | ::SendMessage(GetHwnd(), EM_AUTOURLDETECT, TRUE, 0); | |
311 | } | |
312 | ||
313 | ::SendMessage(GetHwnd(), EM_SETEVENTMASK, 0, mask); | |
a1b82138 | 314 | } |
c57e3339 | 315 | #endif // wxUSE_RICHEDIT |
2bda0e17 | 316 | |
a1b82138 | 317 | return TRUE; |
2bda0e17 KB |
318 | } |
319 | ||
320 | // Make sure the window style (etc.) reflects the HWND style (roughly) | |
cd471848 | 321 | void wxTextCtrl::AdoptAttributesFromHWND() |
2bda0e17 | 322 | { |
aac7e7fe | 323 | wxWindow::AdoptAttributesFromHWND(); |
2bda0e17 | 324 | |
aac7e7fe VZ |
325 | HWND hWnd = GetHwnd(); |
326 | long style = ::GetWindowLong(hWnd, GWL_STYLE); | |
2bda0e17 | 327 | |
aac7e7fe | 328 | // retrieve the style to see whether this is an edit or richedit ctrl |
cd471848 | 329 | #if wxUSE_RICHEDIT |
aac7e7fe | 330 | wxString classname = wxGetWindowClass(GetHWND()); |
2bda0e17 | 331 | |
aac7e7fe VZ |
332 | if ( classname.IsSameAs(_T("EDIT"), FALSE /* no case */) ) |
333 | { | |
334 | m_verRichEdit = 0; | |
335 | } | |
336 | else // rich edit? | |
337 | { | |
338 | wxChar c; | |
339 | if ( wxSscanf(classname, _T("RichEdit%d0%c"), &m_verRichEdit, &c) != 2 ) | |
340 | { | |
341 | wxLogDebug(_T("Unknown edit control '%s'."), classname.c_str()); | |
2bda0e17 | 342 | |
aac7e7fe VZ |
343 | m_verRichEdit = 0; |
344 | } | |
345 | } | |
a1b82138 | 346 | #endif // wxUSE_RICHEDIT |
c085e333 | 347 | |
aac7e7fe VZ |
348 | if (style & ES_MULTILINE) |
349 | m_windowStyle |= wxTE_MULTILINE; | |
350 | if (style & ES_PASSWORD) | |
351 | m_windowStyle |= wxTE_PASSWORD; | |
352 | if (style & ES_READONLY) | |
353 | m_windowStyle |= wxTE_READONLY; | |
354 | if (style & ES_WANTRETURN) | |
355 | m_windowStyle |= wxTE_PROCESS_ENTER; | |
2bda0e17 KB |
356 | } |
357 | ||
b2d5a7ee VZ |
358 | WXDWORD wxTextCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const |
359 | { | |
3a01bb1b VZ |
360 | // default border for the text controls is the sunken one |
361 | if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT ) | |
362 | { | |
363 | style |= wxBORDER_SUNKEN; | |
364 | } | |
365 | ||
b2d5a7ee VZ |
366 | long msStyle = wxControl::MSWGetStyle(style, exstyle); |
367 | ||
368 | // default styles | |
5b2f31eb | 369 | msStyle |= ES_LEFT; |
b2d5a7ee VZ |
370 | |
371 | if ( style & wxTE_MULTILINE ) | |
372 | { | |
373 | wxASSERT_MSG( !(style & wxTE_PROCESS_ENTER), | |
374 | wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") ); | |
375 | ||
376 | msStyle |= ES_MULTILINE | ES_WANTRETURN; | |
377 | if ( !(style & wxTE_NO_VSCROLL) ) | |
378 | msStyle |= WS_VSCROLL; | |
379 | ||
380 | style |= wxTE_PROCESS_ENTER; | |
381 | } | |
382 | else // !multiline | |
383 | { | |
384 | // there is really no reason to not have this style for single line | |
385 | // text controls | |
386 | msStyle |= ES_AUTOHSCROLL; | |
387 | } | |
388 | ||
389 | if ( style & wxHSCROLL ) | |
390 | msStyle |= WS_HSCROLL | ES_AUTOHSCROLL; | |
391 | ||
392 | if ( style & wxTE_READONLY ) | |
393 | msStyle |= ES_READONLY; | |
394 | ||
395 | if ( style & wxTE_PASSWORD ) | |
396 | msStyle |= ES_PASSWORD; | |
397 | ||
398 | if ( style & wxTE_AUTO_SCROLL ) | |
399 | msStyle |= ES_AUTOHSCROLL; | |
400 | ||
401 | if ( style & wxTE_NOHIDESEL ) | |
402 | msStyle |= ES_NOHIDESEL; | |
403 | ||
404 | return msStyle; | |
405 | } | |
406 | ||
407 | void wxTextCtrl::SetWindowStyleFlag(long style) | |
408 | { | |
409 | #if wxUSE_RICHEDIT | |
410 | // we have to deal with some styles separately because they can't be | |
411 | // changed by simply calling SetWindowLong(GWL_STYLE) but can be changed | |
412 | // using richedit-specific EM_SETOPTIONS | |
413 | if ( IsRich() && | |
414 | ((style & wxTE_NOHIDESEL) != (GetWindowStyle() & wxTE_NOHIDESEL)) ) | |
415 | { | |
416 | bool set = (style & wxTE_NOHIDESEL) != 0; | |
417 | ||
418 | ::SendMessage(GetHwnd(), EM_SETOPTIONS, set ? ECOOP_OR : ECOOP_AND, | |
419 | set ? ECO_NOHIDESEL : ~ECO_NOHIDESEL); | |
420 | } | |
421 | #endif // wxUSE_RICHEDIT | |
422 | ||
423 | wxControl::SetWindowStyleFlag(style); | |
424 | } | |
425 | ||
a1b82138 VZ |
426 | // ---------------------------------------------------------------------------- |
427 | // set/get the controls text | |
428 | // ---------------------------------------------------------------------------- | |
429 | ||
cd471848 | 430 | wxString wxTextCtrl::GetValue() const |
2bda0e17 | 431 | { |
a5aa8086 VZ |
432 | // range 0..-1 is special for GetRange() and means to retrieve all text |
433 | return GetRange(0, -1); | |
434 | } | |
435 | ||
436 | wxString wxTextCtrl::GetRange(long from, long to) const | |
437 | { | |
438 | wxString str; | |
439 | ||
440 | if ( from >= to && to != -1 ) | |
441 | { | |
442 | // nothing to retrieve | |
443 | return str; | |
444 | } | |
445 | ||
b12915c1 | 446 | #if wxUSE_RICHEDIT |
aac7e7fe | 447 | if ( IsRich() ) |
b12915c1 | 448 | { |
3988b155 | 449 | int len = GetWindowTextLength(GetHwnd()); |
a5aa8086 | 450 | if ( len > from ) |
3988b155 VZ |
451 | { |
452 | // alloc one extra WORD as needed by the control | |
453 | wxChar *p = str.GetWriteBuf(++len); | |
b12915c1 | 454 | |
3988b155 | 455 | TEXTRANGE textRange; |
a5aa8086 VZ |
456 | textRange.chrg.cpMin = from; |
457 | textRange.chrg.cpMax = to == -1 ? len : to; | |
3988b155 | 458 | textRange.lpstrText = p; |
b12915c1 | 459 | |
3988b155 | 460 | (void)SendMessage(GetHwnd(), EM_GETTEXTRANGE, 0, (LPARAM)&textRange); |
b12915c1 | 461 | |
a5aa8086 | 462 | if ( m_verRichEdit > 1 ) |
3988b155 | 463 | { |
a5aa8086 VZ |
464 | // RichEdit 2.0 uses just CR ('\r') for the newlines which is |
465 | // neither Unix nor Windows style - convert it to something | |
466 | // reasonable | |
467 | for ( ; *p; p++ ) | |
468 | { | |
469 | if ( *p == _T('\r') ) | |
470 | *p = _T('\n'); | |
471 | } | |
3988b155 VZ |
472 | } |
473 | ||
474 | str.UngetWriteBuf(); | |
a5aa8086 VZ |
475 | |
476 | if ( m_verRichEdit == 1 ) | |
477 | { | |
478 | // convert to the canonical form - see comment below | |
479 | str = wxTextFile::Translate(str, wxTextFileType_Unix); | |
480 | } | |
3988b155 VZ |
481 | } |
482 | //else: no text at all, leave the string empty | |
b12915c1 | 483 | } |
a5aa8086 | 484 | else |
b12915c1 | 485 | #endif // wxUSE_RICHEDIT |
a5aa8086 VZ |
486 | { |
487 | // retrieve all text | |
488 | str = wxGetWindowText(GetHWND()); | |
b12915c1 | 489 | |
a5aa8086 VZ |
490 | // need only a range? |
491 | if ( from < to ) | |
492 | { | |
493 | str = str.Mid(from, to - from); | |
494 | } | |
495 | ||
496 | // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the | |
497 | // canonical one (same one as above) for consistency with the other kinds | |
498 | // of controls and, more importantly, with the other ports | |
499 | str = wxTextFile::Translate(str, wxTextFileType_Unix); | |
500 | } | |
b12915c1 | 501 | |
a5aa8086 | 502 | return str; |
2bda0e17 KB |
503 | } |
504 | ||
505 | void wxTextCtrl::SetValue(const wxString& value) | |
506 | { | |
b12915c1 VZ |
507 | // if the text is long enough, it's faster to just set it instead of first |
508 | // comparing it with the old one (chances are that it will be different | |
509 | // anyhow, this comparison is there to avoid flicker for small single-line | |
510 | // edit controls mostly) | |
511 | if ( (value.length() > 0x400) || (value != GetValue()) ) | |
07cf98cb | 512 | { |
79d26b32 | 513 | DoWriteText(value, FALSE /* not selection only */); |
af01f1ba | 514 | |
104d7404 VZ |
515 | // mark the control as being not dirty - we changed its text, not the |
516 | // user | |
517 | DiscardEdits(); | |
518 | ||
af01f1ba VZ |
519 | // for compatibility, don't move the cursor when doing SetValue() |
520 | SetInsertionPoint(0); | |
aac7e7fe VZ |
521 | } |
522 | } | |
a1b82138 | 523 | |
0b8e5844 | 524 | #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU) |
f6bcfd97 | 525 | |
aac7e7fe VZ |
526 | DWORD CALLBACK wxRichEditStreamIn(DWORD dwCookie, BYTE *buf, LONG cb, LONG *pcb) |
527 | { | |
528 | *pcb = 0; | |
f6bcfd97 | 529 | |
aac7e7fe VZ |
530 | wchar_t *wbuf = (wchar_t *)buf; |
531 | const wchar_t *wpc = *(const wchar_t **)dwCookie; | |
532 | while ( cb && *wpc ) | |
533 | { | |
534 | *wbuf++ = *wpc++; | |
535 | ||
536 | cb -= sizeof(wchar_t); | |
537 | (*pcb) += sizeof(wchar_t); | |
07cf98cb | 538 | } |
aac7e7fe VZ |
539 | |
540 | *(const wchar_t **)dwCookie = wpc; | |
541 | ||
542 | return 0; | |
2bda0e17 KB |
543 | } |
544 | ||
373658eb | 545 | extern long wxEncodingToCodepage(wxFontEncoding encoding); // from utils.cpp |
aac7e7fe | 546 | |
0b8e5844 | 547 | #if wxUSE_UNICODE_MSLU |
79d26b32 VZ |
548 | bool wxTextCtrl::StreamIn(const wxString& value, |
549 | wxFontEncoding WXUNUSED(encoding), | |
550 | bool selectionOnly) | |
0b8e5844 VS |
551 | { |
552 | const wchar_t *wpc = value.c_str(); | |
79d26b32 VZ |
553 | #else // !wxUSE_UNICODE_MSLU |
554 | bool wxTextCtrl::StreamIn(const wxString& value, | |
555 | wxFontEncoding encoding, | |
556 | bool selectionOnly) | |
aac7e7fe VZ |
557 | { |
558 | // we have to use EM_STREAMIN to force richedit control 2.0+ to show any | |
559 | // text in the non default charset - otherwise it thinks it knows better | |
560 | // than we do and always shows it in the default one | |
561 | ||
562 | // first get the Windows code page for this encoding | |
563 | long codepage = wxEncodingToCodepage(encoding); | |
564 | if ( codepage == -1 ) | |
565 | { | |
566 | // unknown encoding | |
567 | return FALSE; | |
568 | } | |
569 | ||
570 | // next translate to Unicode using this code page | |
571 | int len = ::MultiByteToWideChar(codepage, 0, value, -1, NULL, 0); | |
855d6be7 VZ |
572 | |
573 | #if wxUSE_WCHAR_T | |
aac7e7fe | 574 | wxWCharBuffer wchBuf(len); |
855d6be7 VZ |
575 | #else |
576 | wchar_t *wchBuf = (wchar_t *)malloc((len + 1)*sizeof(wchar_t)); | |
577 | #endif | |
578 | ||
aac7e7fe | 579 | if ( !::MultiByteToWideChar(codepage, 0, value, -1, |
855d6be7 | 580 | (wchar_t *)(const wchar_t *)wchBuf, len) ) |
aac7e7fe VZ |
581 | { |
582 | wxLogLastError(_T("MultiByteToWideChar")); | |
583 | } | |
584 | ||
585 | // finally, stream it in the control | |
586 | const wchar_t *wpc = wchBuf; | |
0b8e5844 | 587 | #endif // wxUSE_UNICODE_MSLU |
aac7e7fe VZ |
588 | |
589 | EDITSTREAM eds; | |
590 | wxZeroMemory(eds); | |
591 | eds.dwCookie = (DWORD)&wpc; | |
7a25a27c VZ |
592 | // the cast below is needed for broken (very) old mingw32 headers |
593 | eds.pfnCallback = (EDITSTREAMCALLBACK)wxRichEditStreamIn; | |
92209a39 | 594 | |
aac7e7fe | 595 | if ( !::SendMessage(GetHwnd(), EM_STREAMIN, |
79d26b32 VZ |
596 | SF_TEXT | |
597 | SF_UNICODE | | |
598 | (selectionOnly ? SFF_SELECTION : 0), | |
aac7e7fe VZ |
599 | (LPARAM)&eds) || eds.dwError ) |
600 | { | |
601 | wxLogLastError(_T("EM_STREAMIN")); | |
aac7e7fe VZ |
602 | } |
603 | ||
855d6be7 VZ |
604 | #if !wxUSE_WCHAR_T |
605 | free(wchBuf); | |
606 | #endif // !wxUSE_WCHAR_T | |
607 | ||
aac7e7fe VZ |
608 | return TRUE; |
609 | } | |
610 | ||
611 | #endif // wxUSE_RICHEDIT | |
612 | ||
a1b82138 | 613 | void wxTextCtrl::WriteText(const wxString& value) |
79d26b32 VZ |
614 | { |
615 | DoWriteText(value); | |
616 | } | |
617 | ||
618 | void wxTextCtrl::DoWriteText(const wxString& value, bool selectionOnly) | |
2bda0e17 | 619 | { |
a5aa8086 VZ |
620 | wxString valueDos; |
621 | if ( m_windowStyle & wxTE_MULTILINE ) | |
622 | valueDos = wxTextFile::Translate(value, wxTextFileType_Dos); | |
623 | else | |
624 | valueDos = value; | |
2bda0e17 | 625 | |
4bc1afd5 | 626 | #if wxUSE_RICHEDIT |
aac7e7fe VZ |
627 | // there are several complications with the rich edit controls here |
628 | bool done = FALSE; | |
629 | if ( IsRich() ) | |
4bc1afd5 | 630 | { |
aac7e7fe VZ |
631 | // first, ensure that the new text will be in the default style |
632 | if ( !m_defaultStyle.IsDefault() ) | |
633 | { | |
634 | long start, end; | |
635 | GetSelection(&start, &end); | |
0b8e5844 VS |
636 | SetStyle(start, end, m_defaultStyle); |
637 | } | |
638 | ||
639 | #if wxUSE_UNICODE_MSLU | |
640 | // RichEdit doesn't have Unicode version of EM_REPLACESEL on Win9x, | |
641 | // but EM_STREAMIN works | |
136cb3c7 | 642 | if ( wxUsingUnicowsDll() && GetRichVersion() > 1 ) |
0b8e5844 | 643 | { |
79d26b32 | 644 | done = StreamIn(valueDos, wxFONTENCODING_SYSTEM, selectionOnly); |
aac7e7fe | 645 | } |
0b8e5844 | 646 | #endif // wxUSE_UNICODE_MSLU |
aac7e7fe | 647 | |
9d7de3c2 | 648 | #if !wxUSE_UNICODE |
aac7e7fe VZ |
649 | // next check if the text we're inserting must be shown in a non |
650 | // default charset -- this only works for RichEdit > 1.0 | |
651 | if ( GetRichVersion() > 1 ) | |
652 | { | |
653 | wxFont font = m_defaultStyle.GetFont(); | |
654 | if ( !font.Ok() ) | |
655 | font = GetFont(); | |
656 | ||
657 | if ( font.Ok() ) | |
658 | { | |
659 | wxFontEncoding encoding = font.GetEncoding(); | |
660 | if ( encoding != wxFONTENCODING_SYSTEM ) | |
661 | { | |
79d26b32 | 662 | done = StreamIn(valueDos, encoding, selectionOnly); |
aac7e7fe VZ |
663 | } |
664 | } | |
665 | } | |
9d7de3c2 | 666 | #endif // !wxUSE_UNICODE |
4bc1afd5 | 667 | } |
4bc1afd5 | 668 | |
aac7e7fe VZ |
669 | if ( !done ) |
670 | #endif // wxUSE_RICHEDIT | |
671 | { | |
79d26b32 VZ |
672 | if ( !selectionOnly ) |
673 | { | |
674 | SetSelection(-1, -1); | |
675 | } | |
676 | ||
aac7e7fe VZ |
677 | ::SendMessage(GetHwnd(), EM_REPLACESEL, 0, (LPARAM)valueDos.c_str()); |
678 | } | |
2bda0e17 | 679 | |
a1b82138 | 680 | AdjustSpaceLimit(); |
2bda0e17 KB |
681 | } |
682 | ||
a1b82138 VZ |
683 | void wxTextCtrl::AppendText(const wxString& text) |
684 | { | |
685 | SetInsertionPointEnd(); | |
aac7e7fe | 686 | |
a1b82138 VZ |
687 | WriteText(text); |
688 | } | |
689 | ||
690 | void wxTextCtrl::Clear() | |
691 | { | |
aac7e7fe | 692 | ::SetWindowText(GetHwnd(), wxT("")); |
a1b82138 VZ |
693 | } |
694 | ||
94af7d45 VZ |
695 | #ifdef __WIN32__ |
696 | ||
697 | bool wxTextCtrl::EmulateKeyPress(const wxKeyEvent& event) | |
698 | { | |
699 | SetFocus(); | |
700 | ||
701 | size_t lenOld = GetValue().length(); | |
702 | ||
703 | wxUint32 code = event.GetRawKeyCode(); | |
566d84a7 RL |
704 | ::keybd_event(code, 0, 0 /* key press */, 0); |
705 | ::keybd_event(code, 0, KEYEVENTF_KEYUP, 0); | |
94af7d45 VZ |
706 | |
707 | // assume that any alphanumeric key changes the total number of characters | |
708 | // in the control - this should work in 99% of cases | |
709 | return GetValue().length() != lenOld; | |
710 | } | |
711 | ||
712 | #endif // __WIN32__ | |
713 | ||
a1b82138 | 714 | // ---------------------------------------------------------------------------- |
2bda0e17 | 715 | // Clipboard operations |
a1b82138 VZ |
716 | // ---------------------------------------------------------------------------- |
717 | ||
cd471848 | 718 | void wxTextCtrl::Copy() |
2bda0e17 | 719 | { |
e702ff0f JS |
720 | if (CanCopy()) |
721 | { | |
a5aa8086 | 722 | ::SendMessage(GetHwnd(), WM_COPY, 0, 0L); |
e702ff0f | 723 | } |
2bda0e17 KB |
724 | } |
725 | ||
cd471848 | 726 | void wxTextCtrl::Cut() |
2bda0e17 | 727 | { |
e702ff0f JS |
728 | if (CanCut()) |
729 | { | |
a5aa8086 | 730 | ::SendMessage(GetHwnd(), WM_CUT, 0, 0L); |
e702ff0f | 731 | } |
2bda0e17 KB |
732 | } |
733 | ||
cd471848 | 734 | void wxTextCtrl::Paste() |
2bda0e17 | 735 | { |
e702ff0f JS |
736 | if (CanPaste()) |
737 | { | |
a5aa8086 | 738 | ::SendMessage(GetHwnd(), WM_PASTE, 0, 0L); |
e702ff0f | 739 | } |
2bda0e17 KB |
740 | } |
741 | ||
a1b82138 VZ |
742 | bool wxTextCtrl::CanCopy() const |
743 | { | |
744 | // Can copy if there's a selection | |
745 | long from, to; | |
a5aa8086 VZ |
746 | GetSelection(&from, &to); |
747 | return from != to; | |
a1b82138 VZ |
748 | } |
749 | ||
750 | bool wxTextCtrl::CanCut() const | |
751 | { | |
a5aa8086 | 752 | return CanCopy() && IsEditable(); |
a1b82138 VZ |
753 | } |
754 | ||
755 | bool wxTextCtrl::CanPaste() const | |
756 | { | |
aac7e7fe VZ |
757 | if ( !IsEditable() ) |
758 | return FALSE; | |
759 | ||
a1b82138 | 760 | #if wxUSE_RICHEDIT |
aac7e7fe | 761 | if ( IsRich() ) |
a1b82138 | 762 | { |
aac7e7fe VZ |
763 | UINT cf = 0; // 0 == any format |
764 | ||
765 | return ::SendMessage(GetHwnd(), EM_CANPASTE, cf, 0) != 0; | |
a1b82138 | 766 | } |
aac7e7fe | 767 | #endif // wxUSE_RICHEDIT |
a1b82138 VZ |
768 | |
769 | // Standard edit control: check for straight text on clipboard | |
aac7e7fe VZ |
770 | if ( !::OpenClipboard(GetHwndOf(wxTheApp->GetTopWindow())) ) |
771 | return FALSE; | |
772 | ||
773 | bool isTextAvailable = ::IsClipboardFormatAvailable(CF_TEXT) != 0; | |
774 | ::CloseClipboard(); | |
a1b82138 VZ |
775 | |
776 | return isTextAvailable; | |
777 | } | |
778 | ||
779 | // ---------------------------------------------------------------------------- | |
780 | // Accessors | |
781 | // ---------------------------------------------------------------------------- | |
782 | ||
debe6624 | 783 | void wxTextCtrl::SetEditable(bool editable) |
2bda0e17 | 784 | { |
a1b82138 VZ |
785 | HWND hWnd = GetHwnd(); |
786 | SendMessage(hWnd, EM_SETREADONLY, (WPARAM)!editable, (LPARAM)0L); | |
2bda0e17 KB |
787 | } |
788 | ||
debe6624 | 789 | void wxTextCtrl::SetInsertionPoint(long pos) |
2bda0e17 | 790 | { |
a5aa8086 | 791 | DoSetSelection(pos, pos); |
2bda0e17 KB |
792 | } |
793 | ||
cd471848 | 794 | void wxTextCtrl::SetInsertionPointEnd() |
2bda0e17 | 795 | { |
a5aa8086 VZ |
796 | long pos; |
797 | ||
798 | #if wxUSE_RICHEDIT | |
799 | if ( m_verRichEdit == 1 ) | |
800 | { | |
801 | // we don't have to waste time calling GetLastPosition() in this case | |
802 | pos = -1; | |
803 | } | |
804 | else // !RichEdit 1.0 | |
805 | #endif // wxUSE_RICHEDIT | |
806 | { | |
807 | pos = GetLastPosition(); | |
808 | } | |
809 | ||
a1b82138 | 810 | SetInsertionPoint(pos); |
2bda0e17 KB |
811 | } |
812 | ||
cd471848 | 813 | long wxTextCtrl::GetInsertionPoint() const |
2bda0e17 | 814 | { |
57c208c5 | 815 | #if wxUSE_RICHEDIT |
aac7e7fe | 816 | if ( IsRich() ) |
a1b82138 VZ |
817 | { |
818 | CHARRANGE range; | |
819 | range.cpMin = 0; | |
820 | range.cpMax = 0; | |
821 | SendMessage(GetHwnd(), EM_EXGETSEL, 0, (LPARAM) &range); | |
822 | return range.cpMin; | |
823 | } | |
aac7e7fe | 824 | #endif // wxUSE_RICHEDIT |
2bda0e17 | 825 | |
a1b82138 VZ |
826 | DWORD Pos = (DWORD)SendMessage(GetHwnd(), EM_GETSEL, 0, 0L); |
827 | return Pos & 0xFFFF; | |
2bda0e17 KB |
828 | } |
829 | ||
cd471848 | 830 | long wxTextCtrl::GetLastPosition() const |
2bda0e17 | 831 | { |
a5aa8086 VZ |
832 | int numLines = GetNumberOfLines(); |
833 | long posStartLastLine = XYToPosition(0, numLines - 1); | |
39136494 | 834 | |
a5aa8086 | 835 | long lenLastLine = GetLengthOfLineContainingPos(posStartLastLine); |
2bda0e17 | 836 | |
a5aa8086 | 837 | return posStartLastLine + lenLastLine; |
2bda0e17 KB |
838 | } |
839 | ||
a1b82138 VZ |
840 | // If the return values from and to are the same, there is no |
841 | // selection. | |
842 | void wxTextCtrl::GetSelection(long* from, long* to) const | |
843 | { | |
844 | #if wxUSE_RICHEDIT | |
aac7e7fe | 845 | if ( IsRich() ) |
a1b82138 VZ |
846 | { |
847 | CHARRANGE charRange; | |
aac7e7fe | 848 | ::SendMessage(GetHwnd(), EM_EXGETSEL, 0, (LPARAM) &charRange); |
a1b82138 VZ |
849 | |
850 | *from = charRange.cpMin; | |
851 | *to = charRange.cpMax; | |
a1b82138 | 852 | } |
4bc1afd5 | 853 | else |
aac7e7fe | 854 | #endif // !wxUSE_RICHEDIT |
4bc1afd5 VZ |
855 | { |
856 | DWORD dwStart, dwEnd; | |
aac7e7fe | 857 | ::SendMessage(GetHwnd(), EM_GETSEL, (WPARAM)&dwStart, (LPARAM)&dwEnd); |
a1b82138 | 858 | |
4bc1afd5 VZ |
859 | *from = dwStart; |
860 | *to = dwEnd; | |
861 | } | |
a1b82138 VZ |
862 | } |
863 | ||
864 | bool wxTextCtrl::IsEditable() const | |
865 | { | |
51c14c62 VZ |
866 | // strangely enough, we may be called before the control is created: our |
867 | // own Create() calls MSWGetStyle() which calls AcceptsFocus() which calls | |
868 | // us | |
869 | if ( !m_hWnd ) | |
870 | return TRUE; | |
871 | ||
a1b82138 VZ |
872 | long style = ::GetWindowLong(GetHwnd(), GWL_STYLE); |
873 | ||
a5aa8086 | 874 | return (style & ES_READONLY) == 0; |
a1b82138 VZ |
875 | } |
876 | ||
877 | // ---------------------------------------------------------------------------- | |
aac7e7fe | 878 | // selection |
a1b82138 VZ |
879 | // ---------------------------------------------------------------------------- |
880 | ||
aac7e7fe | 881 | void wxTextCtrl::SetSelection(long from, long to) |
2bda0e17 | 882 | { |
aac7e7fe VZ |
883 | // if from and to are both -1, it means (in wxWindows) that all text should |
884 | // be selected - translate into Windows convention | |
885 | if ( (from == -1) && (to == -1) ) | |
886 | { | |
887 | from = 0; | |
888 | to = -1; | |
889 | } | |
890 | ||
a5aa8086 VZ |
891 | DoSetSelection(from, to); |
892 | } | |
893 | ||
894 | void wxTextCtrl::DoSetSelection(long from, long to, bool scrollCaret) | |
895 | { | |
789295bf | 896 | HWND hWnd = GetHwnd(); |
39136494 | 897 | |
2bda0e17 | 898 | #ifdef __WIN32__ |
aac7e7fe VZ |
899 | #if wxUSE_RICHEDIT |
900 | if ( IsRich() ) | |
901 | { | |
902 | CHARRANGE range; | |
903 | range.cpMin = from; | |
904 | range.cpMax = to; | |
905 | SendMessage(hWnd, EM_EXSETSEL, 0, (LPARAM) &range); | |
906 | } | |
907 | else | |
908 | #endif // wxUSE_RICHEDIT | |
909 | { | |
910 | SendMessage(hWnd, EM_SETSEL, (WPARAM)from, (LPARAM)to); | |
911 | } | |
a1b82138 | 912 | |
aac7e7fe | 913 | if ( scrollCaret ) |
2bda0e17 | 914 | { |
aac7e7fe | 915 | SendMessage(hWnd, EM_SCROLLCARET, (WPARAM)0, (LPARAM)0); |
2bda0e17 | 916 | } |
aac7e7fe VZ |
917 | #else // Win16 |
918 | // WPARAM is 0: selection is scrolled into view | |
919 | SendMessage(hWnd, EM_SETSEL, (WPARAM)0, (LPARAM)MAKELONG(from, to)); | |
920 | #endif // Win32/16 | |
921 | } | |
922 | ||
923 | // ---------------------------------------------------------------------------- | |
924 | // Editing | |
925 | // ---------------------------------------------------------------------------- | |
39136494 | 926 | |
aac7e7fe VZ |
927 | void wxTextCtrl::Replace(long from, long to, const wxString& value) |
928 | { | |
929 | // Set selection and remove it | |
f882d57e | 930 | DoSetSelection(from, to, FALSE /* don't scroll caret into view */); |
aac7e7fe VZ |
931 | |
932 | SendMessage(GetHwnd(), EM_REPLACESEL, | |
2bda0e17 | 933 | #ifdef __WIN32__ |
aac7e7fe | 934 | TRUE, |
2bda0e17 | 935 | #else |
aac7e7fe | 936 | FALSE, |
2bda0e17 | 937 | #endif |
aac7e7fe VZ |
938 | (LPARAM)value.c_str()); |
939 | } | |
940 | ||
941 | void wxTextCtrl::Remove(long from, long to) | |
942 | { | |
943 | Replace(from, to, _T("")); | |
2bda0e17 KB |
944 | } |
945 | ||
946 | bool wxTextCtrl::LoadFile(const wxString& file) | |
947 | { | |
a1b82138 | 948 | if ( wxTextCtrlBase::LoadFile(file) ) |
cd471848 | 949 | { |
a1b82138 VZ |
950 | // update the size limit if needed |
951 | AdjustSpaceLimit(); | |
2bda0e17 | 952 | |
a1b82138 | 953 | return TRUE; |
2bda0e17 | 954 | } |
2bda0e17 | 955 | |
a1b82138 | 956 | return FALSE; |
2bda0e17 KB |
957 | } |
958 | ||
cd471848 | 959 | bool wxTextCtrl::IsModified() const |
2bda0e17 | 960 | { |
a5aa8086 | 961 | return SendMessage(GetHwnd(), EM_GETMODIFY, 0, 0) != 0; |
2bda0e17 KB |
962 | } |
963 | ||
964 | // Makes 'unmodified' | |
cd471848 | 965 | void wxTextCtrl::DiscardEdits() |
2bda0e17 | 966 | { |
a1b82138 | 967 | SendMessage(GetHwnd(), EM_SETMODIFY, FALSE, 0L); |
2bda0e17 KB |
968 | } |
969 | ||
cd471848 | 970 | int wxTextCtrl::GetNumberOfLines() const |
2bda0e17 | 971 | { |
789295bf | 972 | return (int)SendMessage(GetHwnd(), EM_GETLINECOUNT, (WPARAM)0, (LPARAM)0); |
2bda0e17 KB |
973 | } |
974 | ||
debe6624 | 975 | long wxTextCtrl::XYToPosition(long x, long y) const |
2bda0e17 | 976 | { |
2bda0e17 | 977 | // This gets the char index for the _beginning_ of this line |
a5aa8086 VZ |
978 | long charIndex = SendMessage(GetHwnd(), EM_LINEINDEX, (WPARAM)y, (LPARAM)0); |
979 | ||
980 | return charIndex + x; | |
2bda0e17 KB |
981 | } |
982 | ||
0efe5ba7 | 983 | bool wxTextCtrl::PositionToXY(long pos, long *x, long *y) const |
2bda0e17 | 984 | { |
789295bf | 985 | HWND hWnd = GetHwnd(); |
2bda0e17 KB |
986 | |
987 | // This gets the line number containing the character | |
a5aa8086 | 988 | long lineNo; |
0efe5ba7 | 989 | #if wxUSE_RICHEDIT |
aac7e7fe | 990 | if ( IsRich() ) |
0efe5ba7 | 991 | { |
a5aa8086 | 992 | lineNo = SendMessage(hWnd, EM_EXLINEFROMCHAR, 0, (LPARAM)pos); |
0efe5ba7 VZ |
993 | } |
994 | else | |
995 | #endif // wxUSE_RICHEDIT | |
a5aa8086 VZ |
996 | { |
997 | lineNo = SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)pos, 0); | |
998 | } | |
0efe5ba7 VZ |
999 | |
1000 | if ( lineNo == -1 ) | |
1001 | { | |
1002 | // no such line | |
1003 | return FALSE; | |
1004 | } | |
1005 | ||
2bda0e17 | 1006 | // This gets the char index for the _beginning_ of this line |
a5aa8086 | 1007 | long charIndex = SendMessage(hWnd, EM_LINEINDEX, (WPARAM)lineNo, (LPARAM)0); |
0efe5ba7 VZ |
1008 | if ( charIndex == -1 ) |
1009 | { | |
1010 | return FALSE; | |
1011 | } | |
1012 | ||
2bda0e17 | 1013 | // The X position must therefore be the different between pos and charIndex |
0efe5ba7 | 1014 | if ( x ) |
a5aa8086 | 1015 | *x = pos - charIndex; |
0efe5ba7 | 1016 | if ( y ) |
a5aa8086 | 1017 | *y = lineNo; |
0efe5ba7 VZ |
1018 | |
1019 | return TRUE; | |
2bda0e17 KB |
1020 | } |
1021 | ||
debe6624 | 1022 | void wxTextCtrl::ShowPosition(long pos) |
2bda0e17 | 1023 | { |
789295bf | 1024 | HWND hWnd = GetHwnd(); |
2bda0e17 KB |
1025 | |
1026 | // To scroll to a position, we pass the number of lines and characters | |
1027 | // to scroll *by*. This means that we need to: | |
1028 | // (1) Find the line position of the current line. | |
1029 | // (2) Find the line position of pos. | |
1030 | // (3) Scroll by (pos - current). | |
1031 | // For now, ignore the horizontal scrolling. | |
1032 | ||
1033 | // Is this where scrolling is relative to - the line containing the caret? | |
1034 | // Or is the first visible line??? Try first visible line. | |
1035 | // int currentLineLineNo1 = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L); | |
1036 | ||
1037 | int currentLineLineNo = (int)SendMessage(hWnd, EM_GETFIRSTVISIBLELINE, (WPARAM)0, (LPARAM)0L); | |
1038 | ||
1039 | int specifiedLineLineNo = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)pos, (LPARAM)0L); | |
39136494 | 1040 | |
2bda0e17 KB |
1041 | int linesToScroll = specifiedLineLineNo - currentLineLineNo; |
1042 | ||
2bda0e17 | 1043 | if (linesToScroll != 0) |
de4d7713 | 1044 | (void)SendMessage(hWnd, EM_LINESCROLL, (WPARAM)0, (LPARAM)linesToScroll); |
2bda0e17 KB |
1045 | } |
1046 | ||
a5aa8086 VZ |
1047 | long wxTextCtrl::GetLengthOfLineContainingPos(long pos) const |
1048 | { | |
1049 | return ::SendMessage(GetHwnd(), EM_LINELENGTH, (WPARAM)pos, 0); | |
1050 | } | |
1051 | ||
debe6624 | 1052 | int wxTextCtrl::GetLineLength(long lineNo) const |
2bda0e17 | 1053 | { |
a5aa8086 VZ |
1054 | long pos = XYToPosition(0, lineNo); |
1055 | ||
1056 | return GetLengthOfLineContainingPos(pos); | |
2bda0e17 KB |
1057 | } |
1058 | ||
debe6624 | 1059 | wxString wxTextCtrl::GetLineText(long lineNo) const |
2bda0e17 | 1060 | { |
a1b82138 | 1061 | size_t len = (size_t)GetLineLength(lineNo) + 1; |
488fe1fe | 1062 | |
f6bcfd97 BP |
1063 | // there must be at least enough place for the length WORD in the |
1064 | // buffer | |
1065 | len += sizeof(WORD); | |
4438caf4 | 1066 | |
f6bcfd97 BP |
1067 | wxString str; |
1068 | wxChar *buf = str.GetWriteBuf(len); | |
1069 | ||
33ac7e6f | 1070 | *(WORD *)buf = (WORD)len; |
f6bcfd97 BP |
1071 | len = (size_t)::SendMessage(GetHwnd(), EM_GETLINE, lineNo, (LPARAM)buf); |
1072 | buf[len] = 0; | |
4438caf4 | 1073 | |
f6bcfd97 | 1074 | str.UngetWriteBuf(len); |
4438caf4 VZ |
1075 | |
1076 | return str; | |
2bda0e17 KB |
1077 | } |
1078 | ||
d7eee191 VZ |
1079 | void wxTextCtrl::SetMaxLength(unsigned long len) |
1080 | { | |
1081 | ::SendMessage(GetHwnd(), EM_LIMITTEXT, len, 0); | |
1082 | } | |
1083 | ||
a1b82138 | 1084 | // ---------------------------------------------------------------------------- |
ca8b28f2 | 1085 | // Undo/redo |
a1b82138 VZ |
1086 | // ---------------------------------------------------------------------------- |
1087 | ||
ca8b28f2 JS |
1088 | void wxTextCtrl::Undo() |
1089 | { | |
1090 | if (CanUndo()) | |
1091 | { | |
789295bf | 1092 | ::SendMessage(GetHwnd(), EM_UNDO, 0, 0); |
ca8b28f2 JS |
1093 | } |
1094 | } | |
1095 | ||
1096 | void wxTextCtrl::Redo() | |
1097 | { | |
1098 | if (CanRedo()) | |
1099 | { | |
1100 | // Same as Undo, since Undo undoes the undo, i.e. a redo. | |
789295bf | 1101 | ::SendMessage(GetHwnd(), EM_UNDO, 0, 0); |
ca8b28f2 JS |
1102 | } |
1103 | } | |
1104 | ||
1105 | bool wxTextCtrl::CanUndo() const | |
1106 | { | |
a5aa8086 | 1107 | return ::SendMessage(GetHwnd(), EM_CANUNDO, 0, 0) != 0; |
ca8b28f2 JS |
1108 | } |
1109 | ||
1110 | bool wxTextCtrl::CanRedo() const | |
1111 | { | |
a5aa8086 | 1112 | return ::SendMessage(GetHwnd(), EM_CANUNDO, 0, 0) != 0; |
ca8b28f2 JS |
1113 | } |
1114 | ||
a1b82138 VZ |
1115 | // ---------------------------------------------------------------------------- |
1116 | // implemenation details | |
1117 | // ---------------------------------------------------------------------------- | |
39136494 | 1118 | |
2bda0e17 KB |
1119 | void wxTextCtrl::Command(wxCommandEvent & event) |
1120 | { | |
a1b82138 VZ |
1121 | SetValue(event.GetString()); |
1122 | ProcessCommand (event); | |
2bda0e17 KB |
1123 | } |
1124 | ||
1125 | void wxTextCtrl::OnDropFiles(wxDropFilesEvent& event) | |
1126 | { | |
a1b82138 VZ |
1127 | // By default, load the first file into the text window. |
1128 | if (event.GetNumberOfFiles() > 0) | |
1129 | { | |
1130 | LoadFile(event.GetFiles()[0]); | |
1131 | } | |
2bda0e17 KB |
1132 | } |
1133 | ||
a37d422a VZ |
1134 | // ---------------------------------------------------------------------------- |
1135 | // kbd input processing | |
1136 | // ---------------------------------------------------------------------------- | |
1137 | ||
1138 | bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG* pMsg) | |
1139 | { | |
1140 | MSG *msg = (MSG *)pMsg; | |
1141 | ||
1142 | // check for our special keys here: if we don't do it and the parent frame | |
1143 | // uses them as accelerators, they wouldn't work at all, so we disable | |
1144 | // usual preprocessing for them | |
1145 | if ( msg->message == WM_KEYDOWN ) | |
1146 | { | |
574c939e | 1147 | WORD vkey = (WORD) msg->wParam; |
a37d422a VZ |
1148 | if ( (HIWORD(msg->lParam) & KF_ALTDOWN) == KF_ALTDOWN ) |
1149 | { | |
1150 | if ( vkey == VK_BACK ) | |
1151 | return FALSE; | |
1152 | } | |
1153 | else // no Alt | |
1154 | { | |
1155 | if ( wxIsCtrlDown() ) | |
1156 | { | |
1157 | switch ( vkey ) | |
1158 | { | |
1159 | case 'C': | |
1160 | case 'V': | |
1161 | case 'X': | |
1162 | case VK_INSERT: | |
1163 | case VK_DELETE: | |
1164 | case VK_HOME: | |
1165 | case VK_END: | |
1166 | return FALSE; | |
1167 | } | |
1168 | } | |
1169 | else if ( wxIsShiftDown() ) | |
1170 | { | |
1171 | if ( vkey == VK_INSERT || vkey == VK_DELETE ) | |
1172 | return FALSE; | |
1173 | } | |
1174 | } | |
1175 | } | |
1176 | ||
1177 | return wxControl::MSWShouldPreProcessMessage(pMsg); | |
1178 | } | |
1179 | ||
2bda0e17 KB |
1180 | void wxTextCtrl::OnChar(wxKeyEvent& event) |
1181 | { | |
42e69d6b | 1182 | switch ( event.KeyCode() ) |
cd471848 | 1183 | { |
cd471848 | 1184 | case WXK_RETURN: |
39136494 | 1185 | if ( !(m_windowStyle & wxTE_MULTILINE) ) |
cd471848 VZ |
1186 | { |
1187 | wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId); | |
bfbd6dc1 | 1188 | InitCommandEvent(event); |
f6bcfd97 | 1189 | event.SetString(GetValue()); |
cd471848 VZ |
1190 | if ( GetEventHandler()->ProcessEvent(event) ) |
1191 | return; | |
1192 | } | |
5fb9fcfc VZ |
1193 | //else: multiline controls need Enter for themselves |
1194 | ||
1195 | break; | |
4d91c1d1 | 1196 | |
cd471848 | 1197 | case WXK_TAB: |
319fefa9 VZ |
1198 | // always produce navigation event - even if we process TAB |
1199 | // ourselves the fact that we got here means that the user code | |
1200 | // decided to skip processing of this TAB - probably to let it | |
1201 | // do its default job. | |
cd471848 | 1202 | { |
5fb9fcfc VZ |
1203 | wxNavigationKeyEvent eventNav; |
1204 | eventNav.SetDirection(!event.ShiftDown()); | |
8614c467 | 1205 | eventNav.SetWindowChange(event.ControlDown()); |
5fb9fcfc | 1206 | eventNav.SetEventObject(this); |
39136494 | 1207 | |
d9506e77 | 1208 | if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav) ) |
cd471848 VZ |
1209 | return; |
1210 | } | |
341c92a8 | 1211 | break; |
cd471848 | 1212 | } |
39136494 | 1213 | |
8614c467 | 1214 | // no, we didn't process it |
42e69d6b | 1215 | event.Skip(); |
2bda0e17 KB |
1216 | } |
1217 | ||
0cf5b099 VZ |
1218 | long wxTextCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) |
1219 | { | |
0cf5b099 VZ |
1220 | if ( nMsg == WM_GETDLGCODE ) |
1221 | { | |
1222 | // we always want the chars and the arrows | |
1223 | long lDlgCode = DLGC_WANTCHARS | DLGC_WANTARROWS; | |
1224 | ||
1225 | // we may have several different cases: | |
1226 | // 1. normal case: both TAB and ENTER are used for dialog navigation | |
2adfb497 VZ |
1227 | // 2. ctrl which wants TAB for itself: ENTER is used to pass to the |
1228 | // next control in the dialog | |
1229 | // 3. ctrl which wants ENTER for itself: TAB is used for dialog | |
1230 | // navigation | |
1231 | // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to pass | |
1232 | // to the next control | |
1233 | ||
1234 | // the multiline edit control should always get <Return> for itself | |
1235 | if ( HasFlag(wxTE_PROCESS_ENTER) || HasFlag(wxTE_MULTILINE) ) | |
0cf5b099 | 1236 | lDlgCode |= DLGC_WANTMESSAGE; |
2adfb497 VZ |
1237 | |
1238 | if ( HasFlag(wxTE_PROCESS_TAB) ) | |
0cf5b099 VZ |
1239 | lDlgCode |= DLGC_WANTTAB; |
1240 | ||
1241 | return lDlgCode; | |
1242 | } | |
1243 | ||
1244 | return wxTextCtrlBase::MSWWindowProc(nMsg, wParam, lParam); | |
1245 | } | |
1246 | ||
129223d6 VZ |
1247 | void wxTextCtrl::SetFocus() |
1248 | { | |
1249 | wxTextCtrlBase::SetFocus(); | |
1250 | ||
1251 | // to be consistent with the standard Windows behaviour we select all text | |
1252 | // in the single line edit controls when the user TABs to them and also, to | |
1253 | // be consistent with this behaviour in turn, do it whenever SetFocus() is | |
1254 | // called as well | |
1255 | if ( !HasFlag(wxTE_MULTILINE) ) | |
1256 | { | |
1257 | SetSelection(-1, -1); | |
1258 | } | |
1259 | } | |
1260 | ||
1261 | // ---------------------------------------------------------------------------- | |
1262 | // text control event processing | |
1263 | // ---------------------------------------------------------------------------- | |
1264 | ||
debe6624 | 1265 | bool wxTextCtrl::MSWCommand(WXUINT param, WXWORD WXUNUSED(id)) |
2bda0e17 | 1266 | { |
789295bf VZ |
1267 | switch (param) |
1268 | { | |
1269 | case EN_SETFOCUS: | |
1270 | case EN_KILLFOCUS: | |
1271 | { | |
1272 | wxFocusEvent event(param == EN_KILLFOCUS ? wxEVT_KILL_FOCUS | |
d7eee191 VZ |
1273 | : wxEVT_SET_FOCUS, |
1274 | m_windowId); | |
789295bf VZ |
1275 | event.SetEventObject( this ); |
1276 | GetEventHandler()->ProcessEvent(event); | |
1277 | } | |
1278 | break; | |
ae29de83 | 1279 | |
789295bf VZ |
1280 | case EN_CHANGE: |
1281 | { | |
1282 | wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, m_windowId); | |
bfbd6dc1 VZ |
1283 | InitCommandEvent(event); |
1284 | event.SetString(GetValue()); | |
1285 | ProcessCommand(event); | |
789295bf VZ |
1286 | } |
1287 | break; | |
2bda0e17 | 1288 | |
b12915c1 | 1289 | case EN_MAXTEXT: |
789295bf | 1290 | // the text size limit has been hit - increase it |
d7eee191 VZ |
1291 | if ( !AdjustSpaceLimit() ) |
1292 | { | |
1293 | wxCommandEvent event(wxEVT_COMMAND_TEXT_MAXLEN, m_windowId); | |
1294 | InitCommandEvent(event); | |
1295 | event.SetString(GetValue()); | |
1296 | ProcessCommand(event); | |
1297 | } | |
789295bf VZ |
1298 | break; |
1299 | ||
1300 | // the other notification messages are not processed | |
1301 | case EN_UPDATE: | |
b12915c1 | 1302 | case EN_ERRSPACE: |
789295bf VZ |
1303 | case EN_HSCROLL: |
1304 | case EN_VSCROLL: | |
f6bcfd97 | 1305 | return FALSE; |
789295bf VZ |
1306 | default: |
1307 | return FALSE; | |
1308 | } | |
1309 | ||
1310 | // processed | |
1311 | return TRUE; | |
2bda0e17 KB |
1312 | } |
1313 | ||
33ac7e6f | 1314 | WXHBRUSH wxTextCtrl::OnCtlColor(WXHDC pDC, WXHWND WXUNUSED(pWnd), WXUINT WXUNUSED(nCtlColor), |
788722ac JS |
1315 | #if wxUSE_CTL3D |
1316 | WXUINT message, | |
1317 | WXWPARAM wParam, | |
1318 | WXLPARAM lParam | |
1319 | #else | |
33ac7e6f KB |
1320 | WXUINT WXUNUSED(message), |
1321 | WXWPARAM WXUNUSED(wParam), | |
788722ac JS |
1322 | WXLPARAM WXUNUSED(lParam) |
1323 | #endif | |
1324 | ) | |
f6bcfd97 BP |
1325 | { |
1326 | #if wxUSE_CTL3D | |
1327 | if ( m_useCtl3D ) | |
1328 | { | |
1329 | HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam); | |
1330 | return (WXHBRUSH) hbrush; | |
1331 | } | |
1332 | #endif // wxUSE_CTL3D | |
1333 | ||
1334 | HDC hdc = (HDC)pDC; | |
1335 | if (GetParent()->GetTransparentBackground()) | |
1336 | SetBkMode(hdc, TRANSPARENT); | |
1337 | else | |
1338 | SetBkMode(hdc, OPAQUE); | |
1339 | ||
1340 | wxColour colBack = GetBackgroundColour(); | |
1341 | ||
1342 | if (!IsEnabled() && (GetWindowStyle() & wxTE_MULTILINE) == 0) | |
a756f210 | 1343 | colBack = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE); |
f6bcfd97 BP |
1344 | |
1345 | ::SetBkColor(hdc, wxColourToRGB(colBack)); | |
1346 | ::SetTextColor(hdc, wxColourToRGB(GetForegroundColour())); | |
1347 | ||
1348 | wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBack, wxSOLID); | |
1349 | ||
1350 | return (WXHBRUSH)brush->GetResourceHandle(); | |
1351 | } | |
1352 | ||
1353 | // In WIN16, need to override normal erasing because | |
1354 | // Ctl3D doesn't use the wxWindows background colour. | |
1355 | #ifdef __WIN16__ | |
1356 | void wxTextCtrl::OnEraseBackground(wxEraseEvent& event) | |
1357 | { | |
1358 | wxColour col(m_backgroundColour); | |
1359 | ||
1360 | #if wxUSE_CTL3D | |
1361 | if (m_useCtl3D) | |
a756f210 | 1362 | col = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW); |
f6bcfd97 BP |
1363 | #endif |
1364 | ||
1365 | RECT rect; | |
1366 | ::GetClientRect(GetHwnd(), &rect); | |
1367 | ||
a5aa8086 | 1368 | COLORREF ref = wxColourToRGB(col); |
f6bcfd97 BP |
1369 | HBRUSH hBrush = ::CreateSolidBrush(ref); |
1370 | if ( !hBrush ) | |
1371 | wxLogLastError(wxT("CreateSolidBrush")); | |
1372 | ||
1373 | HDC hdc = (HDC)event.GetDC()->GetHDC(); | |
1374 | ||
1375 | int mode = ::SetMapMode(hdc, MM_TEXT); | |
1376 | ||
1377 | ::FillRect(hdc, &rect, hBrush); | |
1378 | ::DeleteObject(hBrush); | |
1379 | ::SetMapMode(hdc, mode); | |
1380 | ||
1381 | } | |
aac7e7fe | 1382 | #endif // Win16 |
f6bcfd97 | 1383 | |
d7eee191 | 1384 | bool wxTextCtrl::AdjustSpaceLimit() |
789295bf | 1385 | { |
25889d3c | 1386 | #ifndef __WIN16__ |
d7eee191 VZ |
1387 | unsigned int limit = ::SendMessage(GetHwnd(), EM_GETLIMITTEXT, 0, 0); |
1388 | ||
1389 | // HACK: we try to automatically extend the limit for the amount of text | |
1390 | // to allow (interactively) entering more than 64Kb of text under | |
1391 | // Win9x but we shouldn't reset the text limit which was previously | |
1392 | // set explicitly with SetMaxLength() | |
1393 | // | |
1394 | // we could solve this by storing the limit we set in wxTextCtrl but | |
1395 | // to save space we prefer to simply test here the actual limit | |
1396 | // value: we consider that SetMaxLength() can only be called for | |
1397 | // values < 32Kb | |
1398 | if ( limit < 0x8000 ) | |
1399 | { | |
1400 | // we've got more text than limit set by SetMaxLength() | |
1401 | return FALSE; | |
1402 | } | |
1403 | ||
1404 | unsigned int len = ::GetWindowTextLength(GetHwnd()); | |
17d8ee1c | 1405 | if ( len >= limit ) |
789295bf VZ |
1406 | { |
1407 | limit = len + 0x8000; // 32Kb | |
1408 | ||
5ea105e0 | 1409 | #if wxUSE_RICHEDIT |
aac7e7fe | 1410 | if ( IsRich() ) |
b12915c1 VZ |
1411 | { |
1412 | // as a nice side effect, this also allows passing limit > 64Kb | |
1413 | ::SendMessage(GetHwnd(), EM_EXLIMITTEXT, 0, limit); | |
1414 | } | |
789295bf | 1415 | else |
b12915c1 VZ |
1416 | #endif // wxUSE_RICHEDIT |
1417 | { | |
1418 | if ( limit > 0xffff ) | |
1419 | { | |
1420 | // this will set it to a platform-dependent maximum (much more | |
1421 | // than 64Kb under NT) | |
1422 | limit = 0; | |
1423 | } | |
1424 | ||
789295bf | 1425 | ::SendMessage(GetHwnd(), EM_LIMITTEXT, limit, 0); |
b12915c1 | 1426 | } |
789295bf | 1427 | } |
b12915c1 | 1428 | #endif // !Win16 |
d7eee191 VZ |
1429 | |
1430 | // we changed the limit | |
1431 | return TRUE; | |
789295bf | 1432 | } |
2bda0e17 | 1433 | |
a1b82138 | 1434 | bool wxTextCtrl::AcceptsFocus() const |
2bda0e17 | 1435 | { |
a1b82138 VZ |
1436 | // we don't want focus if we can't be edited |
1437 | return IsEditable() && wxControl::AcceptsFocus(); | |
1438 | } | |
c085e333 | 1439 | |
f68586e5 | 1440 | wxSize wxTextCtrl::DoGetBestSize() const |
a1b82138 VZ |
1441 | { |
1442 | int cx, cy; | |
1443 | wxGetCharSize(GetHWND(), &cx, &cy, &GetFont()); | |
1444 | ||
1445 | int wText = DEFAULT_ITEM_WIDTH; | |
1446 | ||
1447 | int hText = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy); | |
1448 | if ( m_windowStyle & wxTE_MULTILINE ) | |
1449 | { | |
3988b155 | 1450 | hText *= wxMax(GetNumberOfLines(), 5); |
a1b82138 VZ |
1451 | } |
1452 | //else: for single line control everything is ok | |
1453 | ||
1454 | return wxSize(wText, hText); | |
2bda0e17 | 1455 | } |
a1b82138 VZ |
1456 | |
1457 | // ---------------------------------------------------------------------------- | |
1458 | // standard handlers for standard edit menu events | |
1459 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 1460 | |
bfbd6dc1 | 1461 | void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
1462 | { |
1463 | Cut(); | |
1464 | } | |
1465 | ||
bfbd6dc1 | 1466 | void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
1467 | { |
1468 | Copy(); | |
1469 | } | |
1470 | ||
bfbd6dc1 | 1471 | void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
1472 | { |
1473 | Paste(); | |
1474 | } | |
1475 | ||
bfbd6dc1 | 1476 | void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
1477 | { |
1478 | Undo(); | |
1479 | } | |
1480 | ||
bfbd6dc1 | 1481 | void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event)) |
e702ff0f JS |
1482 | { |
1483 | Redo(); | |
1484 | } | |
1485 | ||
1486 | void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event) | |
1487 | { | |
1488 | event.Enable( CanCut() ); | |
1489 | } | |
1490 | ||
1491 | void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event) | |
1492 | { | |
1493 | event.Enable( CanCopy() ); | |
1494 | } | |
1495 | ||
1496 | void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event) | |
1497 | { | |
1498 | event.Enable( CanPaste() ); | |
1499 | } | |
1500 | ||
1501 | void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event) | |
1502 | { | |
1503 | event.Enable( CanUndo() ); | |
1504 | } | |
1505 | ||
1506 | void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event) | |
1507 | { | |
1508 | event.Enable( CanRedo() ); | |
1509 | } | |
1510 | ||
4bc1afd5 VZ |
1511 | // the rest of the file only deals with the rich edit controls |
1512 | #if wxUSE_RICHEDIT | |
1513 | ||
c57e3339 VZ |
1514 | // ---------------------------------------------------------------------------- |
1515 | // EN_LINK processing | |
1516 | // ---------------------------------------------------------------------------- | |
1517 | ||
574c939e | 1518 | bool wxTextCtrl::MSWOnNotify(int WXUNUSED(idCtrl), WXLPARAM lParam, WXLPARAM *result) |
c57e3339 VZ |
1519 | { |
1520 | NMHDR *hdr = (NMHDR* )lParam; | |
1521 | if ( hdr->code == EN_LINK ) | |
1522 | { | |
1523 | ENLINK *enlink = (ENLINK *)hdr; | |
1524 | ||
1525 | switch ( enlink->msg ) | |
1526 | { | |
1527 | case WM_SETCURSOR: | |
1528 | // ok, so it is hardcoded - do we really nee to customize it? | |
1529 | ::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND))); | |
1530 | *result = TRUE; | |
1531 | break; | |
c57e3339 VZ |
1532 | case WM_MOUSEMOVE: |
1533 | case WM_LBUTTONDOWN: | |
1534 | case WM_LBUTTONUP: | |
1535 | case WM_LBUTTONDBLCLK: | |
1536 | case WM_RBUTTONDOWN: | |
1537 | case WM_RBUTTONUP: | |
1538 | case WM_RBUTTONDBLCLK: | |
1539 | // send a mouse event | |
1540 | { | |
1541 | static const wxEventType eventsMouse[] = | |
1542 | { | |
1543 | wxEVT_MOTION, | |
1544 | wxEVT_LEFT_DOWN, | |
1545 | wxEVT_LEFT_UP, | |
1546 | wxEVT_LEFT_DCLICK, | |
1547 | wxEVT_RIGHT_DOWN, | |
1548 | wxEVT_RIGHT_UP, | |
1549 | wxEVT_RIGHT_DCLICK, | |
1550 | }; | |
1551 | ||
1552 | // the event ids are consecutive | |
1553 | wxMouseEvent | |
1554 | evtMouse(eventsMouse[enlink->msg - WM_MOUSEMOVE]); | |
1555 | ||
1556 | InitMouseEvent(evtMouse, | |
1557 | GET_X_LPARAM(enlink->lParam), | |
1558 | GET_Y_LPARAM(enlink->lParam), | |
1559 | enlink->wParam); | |
1560 | ||
1561 | wxTextUrlEvent event(m_windowId, evtMouse, | |
1562 | enlink->chrg.cpMin, | |
1563 | enlink->chrg.cpMax); | |
1564 | ||
1565 | InitCommandEvent(event); | |
1566 | ||
1567 | *result = ProcessCommand(event); | |
1568 | } | |
1569 | break; | |
1570 | } | |
1571 | ||
1572 | return TRUE; | |
1573 | } | |
1574 | ||
1575 | // not processed | |
1576 | return FALSE; | |
1577 | } | |
1578 | ||
f6bcfd97 BP |
1579 | // ---------------------------------------------------------------------------- |
1580 | // colour setting for the rich edit controls | |
1581 | // ---------------------------------------------------------------------------- | |
1582 | ||
f6bcfd97 BP |
1583 | bool wxTextCtrl::SetBackgroundColour(const wxColour& colour) |
1584 | { | |
1585 | if ( !wxTextCtrlBase::SetBackgroundColour(colour) ) | |
1586 | { | |
1587 | // colour didn't really change | |
1588 | return FALSE; | |
1589 | } | |
1590 | ||
1591 | if ( IsRich() ) | |
1592 | { | |
1593 | // rich edit doesn't use WM_CTLCOLOR, hence we need to send | |
1594 | // EM_SETBKGNDCOLOR additionally | |
1595 | ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR, 0, wxColourToRGB(colour)); | |
1596 | } | |
1597 | ||
1598 | return TRUE; | |
1599 | } | |
1600 | ||
1601 | bool wxTextCtrl::SetForegroundColour(const wxColour& colour) | |
1602 | { | |
1603 | if ( !wxTextCtrlBase::SetForegroundColour(colour) ) | |
1604 | { | |
1605 | // colour didn't really change | |
1606 | return FALSE; | |
1607 | } | |
1608 | ||
1609 | if ( IsRich() ) | |
1610 | { | |
1611 | // change the colour of everything | |
1612 | CHARFORMAT cf; | |
1613 | wxZeroMemory(cf); | |
1614 | cf.cbSize = sizeof(cf); | |
1615 | cf.dwMask = CFM_COLOR; | |
1616 | cf.crTextColor = wxColourToRGB(colour); | |
1617 | ::SendMessage(GetHwnd(), EM_SETCHARFORMAT, SCF_ALL, (LPARAM)&cf); | |
1618 | } | |
1619 | ||
1620 | return TRUE; | |
1621 | } | |
1622 | ||
4bc1afd5 VZ |
1623 | // ---------------------------------------------------------------------------- |
1624 | // styling support for rich edit controls | |
1625 | // ---------------------------------------------------------------------------- | |
1626 | ||
1627 | bool wxTextCtrl::SetStyle(long start, long end, const wxTextAttr& style) | |
1628 | { | |
1629 | if ( !IsRich() ) | |
1630 | { | |
1631 | // can't do it with normal text control | |
1632 | return FALSE; | |
1633 | } | |
1634 | ||
a5aa8086 VZ |
1635 | // the richedit 1.0 doesn't handle setting background colour, so don't |
1636 | // even try to do anything if it's the only thing we want to change | |
1637 | if ( m_verRichEdit == 1 && !style.HasFont() && !style.HasTextColour() ) | |
4bc1afd5 | 1638 | { |
be329a3d RD |
1639 | // nothing to do: return TRUE if there was really nothing to do and |
1640 | // FALSE if we failed to set bg colour | |
4bc1afd5 VZ |
1641 | return !style.HasBackgroundColour(); |
1642 | } | |
1643 | ||
1644 | // order the range if needed | |
1645 | if ( start > end ) | |
1646 | { | |
1647 | long tmp = start; | |
1648 | start = end; | |
1649 | end = tmp; | |
1650 | } | |
1651 | ||
1652 | // we can only change the format of the selection, so select the range we | |
1653 | // want and restore the old selection later | |
1654 | long startOld, endOld; | |
1655 | GetSelection(&startOld, &endOld); | |
1656 | ||
1657 | // but do we really have to change the selection? | |
1658 | bool changeSel = start != startOld || end != endOld; | |
1659 | ||
1660 | if ( changeSel ) | |
aac7e7fe | 1661 | { |
f882d57e | 1662 | DoSetSelection(start, end, FALSE /* don't scroll caret into view */); |
aac7e7fe | 1663 | } |
4bc1afd5 VZ |
1664 | |
1665 | // initialize CHARFORMAT struct | |
be329a3d RD |
1666 | #if wxUSE_RICHEDIT2 |
1667 | CHARFORMAT2 cf; | |
1668 | #else | |
4bc1afd5 | 1669 | CHARFORMAT cf; |
be329a3d | 1670 | #endif |
a5aa8086 | 1671 | |
4bc1afd5 | 1672 | wxZeroMemory(cf); |
a5aa8086 VZ |
1673 | |
1674 | // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple | |
1675 | // CHARFORMAT in that case | |
1676 | #if wxUSE_RICHEDIT2 | |
1677 | if ( m_verRichEdit == 1 ) | |
1678 | { | |
1679 | // this is the only thing the control is going to grok | |
1680 | cf.cbSize = sizeof(CHARFORMAT); | |
1681 | } | |
1682 | else | |
1683 | #endif | |
1684 | { | |
1685 | // CHARFORMAT or CHARFORMAT2 | |
1686 | cf.cbSize = sizeof(cf); | |
1687 | } | |
4bc1afd5 VZ |
1688 | |
1689 | if ( style.HasFont() ) | |
1690 | { | |
aac7e7fe VZ |
1691 | // VZ: CFM_CHARSET doesn't seem to do anything at all in RichEdit 2.0 |
1692 | // but using it doesn't seem to hurt neither so leaving it for now | |
1693 | ||
784164e1 VZ |
1694 | cf.dwMask |= CFM_FACE | CFM_SIZE | CFM_CHARSET | |
1695 | CFM_ITALIC | CFM_BOLD | CFM_UNDERLINE; | |
4bc1afd5 VZ |
1696 | |
1697 | // fill in data from LOGFONT but recalculate lfHeight because we need | |
1698 | // the real height in twips and not the negative number which | |
1699 | // wxFillLogFont() returns (this is correct in general and works with | |
1700 | // the Windows font mapper, but not here) | |
1701 | LOGFONT lf; | |
1702 | wxFillLogFont(&lf, &style.GetFont()); | |
1703 | cf.yHeight = 20*style.GetFont().GetPointSize(); // 1 pt = 20 twips | |
1704 | cf.bCharSet = lf.lfCharSet; | |
1705 | cf.bPitchAndFamily = lf.lfPitchAndFamily; | |
1706 | wxStrncpy( cf.szFaceName, lf.lfFaceName, WXSIZEOF(cf.szFaceName) ); | |
1707 | ||
784164e1 VZ |
1708 | // also deal with underline/italic/bold attributes: note that we must |
1709 | // always set CFM_ITALIC &c bits in dwMask, even if we don't set the | |
1710 | // style to allow clearing it | |
4bc1afd5 VZ |
1711 | if ( lf.lfItalic ) |
1712 | { | |
4bc1afd5 VZ |
1713 | cf.dwEffects |= CFE_ITALIC; |
1714 | } | |
1715 | ||
1716 | if ( lf.lfWeight == FW_BOLD ) | |
1717 | { | |
4bc1afd5 VZ |
1718 | cf.dwEffects |= CFE_BOLD; |
1719 | } | |
1720 | ||
1721 | if ( lf.lfUnderline ) | |
1722 | { | |
4bc1afd5 VZ |
1723 | cf.dwEffects |= CFE_UNDERLINE; |
1724 | } | |
1725 | ||
1726 | // strikeout fonts are not supported by wxWindows | |
1727 | } | |
1728 | ||
1729 | if ( style.HasTextColour() ) | |
1730 | { | |
1731 | cf.dwMask |= CFM_COLOR; | |
1732 | cf.crTextColor = wxColourToRGB(style.GetTextColour()); | |
1733 | } | |
1734 | ||
be329a3d | 1735 | #if wxUSE_RICHEDIT2 |
a5aa8086 | 1736 | if ( m_verRichEdit != 1 && style.HasBackgroundColour() ) |
be329a3d RD |
1737 | { |
1738 | cf.dwMask |= CFM_BACKCOLOR; | |
1739 | cf.crBackColor = wxColourToRGB(style.GetBackgroundColour()); | |
1740 | } | |
784164e1 VZ |
1741 | #endif // wxUSE_RICHEDIT2 |
1742 | ||
4bc1afd5 VZ |
1743 | // do format the selection |
1744 | bool ok = ::SendMessage(GetHwnd(), EM_SETCHARFORMAT, | |
1745 | SCF_SELECTION, (LPARAM)&cf) != 0; | |
1746 | if ( !ok ) | |
1747 | { | |
1748 | wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed")); | |
1749 | } | |
1750 | ||
1751 | if ( changeSel ) | |
1752 | { | |
1753 | // restore the original selection | |
aac7e7fe | 1754 | DoSetSelection(startOld, endOld, FALSE); |
4bc1afd5 VZ |
1755 | } |
1756 | ||
1757 | return ok; | |
1758 | } | |
f6bcfd97 | 1759 | |
b12915c1 VZ |
1760 | // ---------------------------------------------------------------------------- |
1761 | // wxRichEditModule | |
1762 | // ---------------------------------------------------------------------------- | |
1763 | ||
b12915c1 VZ |
1764 | bool wxRichEditModule::OnInit() |
1765 | { | |
1766 | // don't do anything - we will load it when needed | |
1767 | return TRUE; | |
1768 | } | |
1769 | ||
1770 | void wxRichEditModule::OnExit() | |
1771 | { | |
136cb3c7 | 1772 | for ( size_t i = 0; i < WXSIZEOF(ms_hRichEdit); i++ ) |
b12915c1 | 1773 | { |
a5aa8086 VZ |
1774 | if ( ms_hRichEdit[i] ) |
1775 | { | |
1776 | ::FreeLibrary(ms_hRichEdit[i]); | |
1777 | } | |
b12915c1 VZ |
1778 | } |
1779 | } | |
1780 | ||
1781 | /* static */ | |
1782 | bool wxRichEditModule::Load(int version) | |
1783 | { | |
a5aa8086 VZ |
1784 | // we don't support loading richedit 3.0 as I don't know how to distinguish |
1785 | // it from 2.0 anyhow | |
1786 | wxCHECK_MSG( version == 1 || version == 2, FALSE, | |
b12915c1 VZ |
1787 | _T("incorrect richedit control version requested") ); |
1788 | ||
a5aa8086 VZ |
1789 | // make it the index in the array |
1790 | version--; | |
1791 | ||
a5aa8086 | 1792 | if ( ms_hRichEdit[version] == (HINSTANCE)-1 ) |
b12915c1 | 1793 | { |
a5aa8086 VZ |
1794 | // we had already tried to load it and failed |
1795 | return FALSE; | |
b12915c1 VZ |
1796 | } |
1797 | ||
28978e0c VZ |
1798 | if ( ms_hRichEdit[version] ) |
1799 | { | |
1800 | // we've already got this one | |
1801 | return TRUE; | |
1802 | } | |
1803 | ||
a5aa8086 VZ |
1804 | wxString dllname = version ? _T("riched20") : _T("riched32"); |
1805 | dllname += _T(".dll"); | |
b12915c1 | 1806 | |
a5aa8086 | 1807 | ms_hRichEdit[version] = ::LoadLibrary(dllname); |
b12915c1 | 1808 | |
a5aa8086 | 1809 | if ( !ms_hRichEdit[version] ) |
b12915c1 VZ |
1810 | { |
1811 | wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname.c_str()); | |
1812 | ||
a5aa8086 | 1813 | ms_hRichEdit[version] = (HINSTANCE)-1; |
b12915c1 VZ |
1814 | |
1815 | return FALSE; | |
1816 | } | |
1817 | ||
1818 | return TRUE; | |
1819 | } | |
1820 | ||
1821 | #endif // wxUSE_RICHEDIT | |
1822 | ||
1e6feb95 | 1823 | #endif // wxUSE_TEXTCTRL |