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