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