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