]> git.saurik.com Git - wxWidgets.git/blob - src/msw/textctrl.cpp
changed Replace and Remove to always use EM_REPLACESEL instead of
[wxWidgets.git] / src / msw / textctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/textctrl.cpp
3 // Purpose: wxTextCtrl
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 #ifdef __GNUG__
17 #pragma implementation "textctrl.h"
18 #endif
19
20 // ----------------------------------------------------------------------------
21 // headers
22 // ----------------------------------------------------------------------------
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #if wxUSE_TEXTCTRL
32
33 #ifndef WX_PRECOMP
34 #include "wx/textctrl.h"
35 #include "wx/settings.h"
36 #include "wx/brush.h"
37 #include "wx/utils.h"
38 #include "wx/intl.h"
39 #include "wx/log.h"
40 #include "wx/app.h"
41 #endif
42
43 #include "wx/module.h"
44
45 #if wxUSE_CLIPBOARD
46 #include "wx/clipbrd.h"
47 #endif
48
49 #include "wx/textfile.h"
50
51 #include <windowsx.h>
52
53 #include "wx/msw/private.h"
54
55 #include <string.h>
56 #include <stdlib.h>
57 #include <sys/types.h>
58
59 #if wxUSE_RICHEDIT && (!defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__))
60 #include <richedit.h>
61 #endif
62
63 // old mingw32 doesn't define this
64 #ifndef CFM_CHARSET
65 #define CFM_CHARSET 0x08000000
66 #endif // CFM_CHARSET
67
68 #ifndef CFM_BACKCOLOR
69 #define CFM_BACKCOLOR 0x04000000
70 #endif
71
72 // ----------------------------------------------------------------------------
73 // private classes
74 // ----------------------------------------------------------------------------
75
76 #if wxUSE_RICHEDIT
77
78 // this module initializes RichEdit DLL if needed
79 class wxRichEditModule : public wxModule
80 {
81 public:
82 virtual bool OnInit();
83 virtual void OnExit();
84
85 // get the version currently loaded, -1 if none
86 static int GetLoadedVersion() { return ms_verRichEdit; }
87
88 // load the richedit DLL of at least of required version
89 static bool Load(int version = 1);
90
91 private:
92 // the handle to richedit DLL and the version of the DLL loaded
93 static HINSTANCE ms_hRichEdit;
94
95 // the DLL version loaded or -1 if none
96 static int ms_verRichEdit;
97
98 DECLARE_DYNAMIC_CLASS(wxRichEditModule)
99 };
100
101 HINSTANCE wxRichEditModule::ms_hRichEdit = (HINSTANCE)NULL;
102 int wxRichEditModule::ms_verRichEdit = -1;
103
104 IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule, wxModule)
105
106 #endif // wxUSE_RICHEDIT
107
108 // ----------------------------------------------------------------------------
109 // event tables and other macros
110 // ----------------------------------------------------------------------------
111
112 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxControl)
113
114 BEGIN_EVENT_TABLE(wxTextCtrl, wxControl)
115 EVT_CHAR(wxTextCtrl::OnChar)
116 EVT_DROP_FILES(wxTextCtrl::OnDropFiles)
117
118 EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
119 EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
120 EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste)
121 EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo)
122 EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo)
123
124 EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut)
125 EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy)
126 EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste)
127 EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo)
128 EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo)
129 #ifdef __WIN16__
130 EVT_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground)
131 #endif
132 END_EVENT_TABLE()
133
134 // ============================================================================
135 // implementation
136 // ============================================================================
137
138 // ----------------------------------------------------------------------------
139 // creation
140 // ----------------------------------------------------------------------------
141
142 wxTextCtrl::wxTextCtrl()
143 {
144 #if wxUSE_RICHEDIT
145 m_isRich = FALSE;
146 #endif
147 }
148
149 bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id,
150 const wxString& value,
151 const wxPoint& pos,
152 const wxSize& size,
153 long style,
154 const wxValidator& validator,
155 const wxString& name)
156 {
157 // base initialization
158 if ( !CreateBase(parent, id, pos, size, style, validator, name) )
159 return FALSE;
160
161 if ( parent )
162 parent->AddChild(this);
163
164 // translate wxWin style flags to MSW ones, checking for consistency while
165 // doing it
166 long msStyle = ES_LEFT | WS_VISIBLE | WS_CHILD | WS_TABSTOP;
167
168 if ( m_windowStyle & wxCLIP_SIBLINGS )
169 msStyle |= WS_CLIPSIBLINGS;
170
171 if ( m_windowStyle & wxTE_MULTILINE )
172 {
173 wxASSERT_MSG( !(m_windowStyle & wxTE_PROCESS_ENTER),
174 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
175
176 msStyle |= ES_MULTILINE | ES_WANTRETURN;
177 if ((m_windowStyle & wxTE_NO_VSCROLL) == 0)
178 msStyle |= WS_VSCROLL;
179 m_windowStyle |= wxTE_PROCESS_ENTER;
180 }
181 else
182 msStyle |= ES_AUTOHSCROLL;
183
184 if (m_windowStyle & wxHSCROLL)
185 msStyle |= (WS_HSCROLL | ES_AUTOHSCROLL);
186
187 if (m_windowStyle & wxTE_READONLY)
188 msStyle |= ES_READONLY;
189
190 if (m_windowStyle & wxTE_PASSWORD) // hidden input
191 msStyle |= ES_PASSWORD;
192
193 if (m_windowStyle & wxTE_AUTO_SCROLL)
194 msStyle |= ES_AUTOHSCROLL;
195
196
197 // we always want the characters and the arrows
198 m_lDlgCode = DLGC_WANTCHARS | DLGC_WANTARROWS;
199
200 // we may have several different cases:
201 // 1. normal case: both TAB and ENTER are used for dialog navigation
202 // 2. ctrl which wants TAB for itself: ENTER is used to pass to the next
203 // control in the dialog
204 // 3. ctrl which wants ENTER for itself: TAB is used for dialog navigation
205 // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to pass to
206 // the next control
207 if ( m_windowStyle & wxTE_PROCESS_ENTER )
208 m_lDlgCode |= DLGC_WANTMESSAGE;
209 if ( m_windowStyle & wxTE_PROCESS_TAB )
210 m_lDlgCode |= DLGC_WANTTAB;
211
212 // do create the control - either an EDIT or RICHEDIT
213 wxString windowClass = wxT("EDIT");
214
215 #if wxUSE_RICHEDIT
216 if ( m_windowStyle & wxTE_RICH )
217 {
218 static bool s_errorGiven = FALSE; // MT-FIXME
219
220 // only give the error msg once if the DLL can't be loaded
221 if ( !s_errorGiven )
222 {
223 // first try to load the RichEdit DLL (will do nothing if already
224 // done)
225 if ( !wxRichEditModule::Load() )
226 {
227 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
228
229 s_errorGiven = TRUE;
230 }
231 }
232
233 if ( s_errorGiven )
234 {
235 m_isRich = FALSE;
236 }
237 else
238 {
239 msStyle |= ES_AUTOVSCROLL;
240 m_isRich = TRUE;
241
242 int ver = wxRichEditModule::GetLoadedVersion();
243 if ( ver == 1 )
244 {
245 windowClass = wxT("RICHEDIT");
246 }
247 else
248 {
249 #ifndef RICHEDIT_CLASS
250 wxString RICHEDIT_CLASS;
251 RICHEDIT_CLASS.Printf(_T("RichEdit%d0"), ver);
252 #if wxUSE_UNICODE
253 RICHEDIT_CLASS += _T('W');
254 #else // ANSI
255 RICHEDIT_CLASS += _T('A');
256 #endif // Unicode/ANSI
257 #endif // !RICHEDIT_CLASS
258
259 windowClass = RICHEDIT_CLASS;
260 }
261 }
262 }
263 else
264 m_isRich = FALSE;
265 #endif // wxUSE_RICHEDIT
266
267 bool want3D;
268 WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D);
269
270 // Even with extended styles, need to combine with WS_BORDER for them to
271 // look right.
272 if ( want3D || wxStyleHasBorder(m_windowStyle) )
273 msStyle |= WS_BORDER;
274
275 // NB: don't use pos and size as CreateWindowEx arguments because they
276 // might be -1 in which case we should use the default values (and
277 // SetSize called below takes care of it)
278 m_hWnd = (WXHWND)::CreateWindowEx(exStyle,
279 windowClass.c_str(),
280 NULL,
281 msStyle,
282 0, 0, 0, 0,
283 GetHwndOf(parent),
284 (HMENU)m_windowId,
285 wxGetInstance(),
286 NULL);
287
288 wxCHECK_MSG( m_hWnd, FALSE, wxT("Failed to create text ctrl") );
289
290 #if wxUSE_CTL3D
291 if ( want3D )
292 {
293 Ctl3dSubclassCtl(GetHwnd());
294 m_useCtl3D = TRUE;
295 }
296 #endif
297
298 #if wxUSE_RICHEDIT
299 if (m_isRich)
300 {
301 // have to enable events manually
302 LPARAM mask = ENM_CHANGE | ENM_DROPFILES | ENM_SELCHANGE | ENM_UPDATE;
303
304 if ( m_windowStyle & wxTE_AUTO_URL )
305 {
306 mask |= ENM_LINK;
307
308 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT, TRUE, 0);
309 }
310
311 ::SendMessage(GetHwnd(), EM_SETEVENTMASK, 0, mask);
312 }
313 #endif // wxUSE_RICHEDIT
314
315 SubclassWin(GetHWND());
316
317 // set font, position, size and initial value
318 wxFont& fontParent = parent->GetFont();
319 if ( fontParent.Ok() )
320 {
321 SetFont(fontParent);
322 }
323 else
324 {
325 SetFont(wxSystemSettings::GetSystemFont(wxSYS_SYSTEM_FONT));
326 }
327
328 // Causes a crash for Symantec C++ and WIN32 for some reason
329 #if !(defined(__SC__) && defined(__WIN32__))
330 if ( !value.IsEmpty() )
331 {
332 SetValue(value);
333 }
334 #endif
335
336 // set colours
337 SetupColours();
338
339 SetSize(pos.x, pos.y, size.x, size.y);
340
341 return TRUE;
342 }
343
344 // Make sure the window style (etc.) reflects the HWND style (roughly)
345 void wxTextCtrl::AdoptAttributesFromHWND()
346 {
347 wxWindow::AdoptAttributesFromHWND();
348
349 HWND hWnd = GetHwnd();
350 long style = GetWindowLong(hWnd, GWL_STYLE);
351
352 // retrieve the style to see whether this is an edit or richedit ctrl
353 #if wxUSE_RICHEDIT
354 wxChar buf[256];
355
356 GetClassName(hWnd, buf, WXSIZEOF(buf));
357
358 if ( wxStricmp(buf, wxT("EDIT")) == 0 )
359 m_isRich = FALSE;
360 else
361 m_isRich = TRUE;
362 #endif // wxUSE_RICHEDIT
363
364 if (style & ES_MULTILINE)
365 m_windowStyle |= wxTE_MULTILINE;
366 if (style & ES_PASSWORD)
367 m_windowStyle |= wxTE_PASSWORD;
368 if (style & ES_READONLY)
369 m_windowStyle |= wxTE_READONLY;
370 if (style & ES_WANTRETURN)
371 m_windowStyle |= wxTE_PROCESS_ENTER;
372 }
373
374 void wxTextCtrl::SetupColours()
375 {
376 wxColour bkgndColour;
377 // if (IsEditable() || (m_windowStyle & wxTE_MULTILINE))
378 bkgndColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW);
379 // else
380 // bkgndColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE);
381
382 SetBackgroundColour(bkgndColour);
383 SetForegroundColour(GetParent()->GetForegroundColour());
384 }
385
386 // ----------------------------------------------------------------------------
387 // set/get the controls text
388 // ----------------------------------------------------------------------------
389
390 wxString wxTextCtrl::GetValue() const
391 {
392 // we can't use wxGetWindowText() (i.e. WM_GETTEXT internally) for
393 // retrieving more than 64Kb under Win9x
394 #if wxUSE_RICHEDIT
395 if ( m_isRich )
396 {
397 wxString str;
398
399 int len = GetWindowTextLength(GetHwnd());
400 if ( len )
401 {
402 // alloc one extra WORD as needed by the control
403 wxChar *p = str.GetWriteBuf(++len);
404
405 TEXTRANGE textRange;
406 textRange.chrg.cpMin = 0;
407 textRange.chrg.cpMax = -1;
408 textRange.lpstrText = p;
409
410 (void)SendMessage(GetHwnd(), EM_GETTEXTRANGE, 0, (LPARAM)&textRange);
411
412 // believe it or not, but EM_GETTEXTRANGE uses just CR ('\r') for
413 // the newlines which is neither Unix nor Windows style (Win95 with
414 // riched20.dll shows this behaviour) - convert it to something
415 // reasonable
416 for ( ; *p; p++ )
417 {
418 if ( *p == _T('\r') )
419 *p = _T('\n');
420 }
421
422 str.UngetWriteBuf();
423 }
424 //else: no text at all, leave the string empty
425
426 return str;
427 }
428 #endif // wxUSE_RICHEDIT
429
430 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
431 // same one as above for consitency
432 wxString str = wxGetWindowText(GetHWND());
433
434 return wxTextFile::Translate(str, wxTextFileType_Unix);
435 }
436
437 void wxTextCtrl::SetValue(const wxString& value)
438 {
439 // if the text is long enough, it's faster to just set it instead of first
440 // comparing it with the old one (chances are that it will be different
441 // anyhow, this comparison is there to avoid flicker for small single-line
442 // edit controls mostly)
443 if ( (value.length() > 0x400) || (value != GetValue()) )
444 {
445 wxString valueDos = wxTextFile::Translate(value, wxTextFileType_Dos);
446
447 SetWindowText(GetHwnd(), valueDos.c_str());
448
449 // for compatibility with the GTK and because it is more logical, we
450 // move the cursor to the end of the text after SetValue()
451
452 // GRG, Jun/2000: Changed this back after a lot of discussion
453 // in the lists. wxWindows 2.2 will have a set of flags to
454 // customize this behaviour.
455 //SetInsertionPointEnd();
456
457 AdjustSpaceLimit();
458 }
459 }
460
461 void wxTextCtrl::WriteText(const wxString& value)
462 {
463 wxString valueDos = wxTextFile::Translate(value, wxTextFileType_Dos);
464
465 #if wxUSE_RICHEDIT
466 // ensure that the new text will be in the default style
467 if ( IsRich() &&
468 (m_defaultStyle.HasFont() || m_defaultStyle.HasTextColour()) )
469 {
470 long start, end;
471 GetSelection(&start, &end);
472 SetStyle(start, end, m_defaultStyle );
473 }
474 #endif // wxUSE_RICHEDIT
475
476 SendMessage(GetHwnd(), EM_REPLACESEL, 0, (LPARAM)valueDos.c_str());
477
478 AdjustSpaceLimit();
479 }
480
481 void wxTextCtrl::AppendText(const wxString& text)
482 {
483 SetInsertionPointEnd();
484 WriteText(text);
485 }
486
487 void wxTextCtrl::Clear()
488 {
489 SetWindowText(GetHwnd(), wxT(""));
490 }
491
492 // ----------------------------------------------------------------------------
493 // Clipboard operations
494 // ----------------------------------------------------------------------------
495
496 void wxTextCtrl::Copy()
497 {
498 if (CanCopy())
499 {
500 HWND hWnd = GetHwnd();
501 SendMessage(hWnd, WM_COPY, 0, 0L);
502 }
503 }
504
505 void wxTextCtrl::Cut()
506 {
507 if (CanCut())
508 {
509 HWND hWnd = GetHwnd();
510 SendMessage(hWnd, WM_CUT, 0, 0L);
511 }
512 }
513
514 void wxTextCtrl::Paste()
515 {
516 if (CanPaste())
517 {
518 HWND hWnd = GetHwnd();
519 SendMessage(hWnd, WM_PASTE, 0, 0L);
520 }
521 }
522
523 bool wxTextCtrl::CanCopy() const
524 {
525 // Can copy if there's a selection
526 long from, to;
527 GetSelection(& from, & to);
528 return (from != to) ;
529 }
530
531 bool wxTextCtrl::CanCut() const
532 {
533 // Can cut if there's a selection
534 long from, to;
535 GetSelection(& from, & to);
536 return (from != to) && (IsEditable());
537 }
538
539 bool wxTextCtrl::CanPaste() const
540 {
541 #if wxUSE_RICHEDIT
542 if (m_isRich)
543 {
544 int dataFormat = 0; // 0 == any format
545 return (::SendMessage( GetHwnd(), EM_CANPASTE, (WPARAM) (UINT) dataFormat, 0) != 0);
546 }
547 #endif
548 if (!IsEditable())
549 return FALSE;
550
551 // Standard edit control: check for straight text on clipboard
552 bool isTextAvailable = FALSE;
553 if ( ::OpenClipboard(GetHwndOf(wxTheApp->GetTopWindow())) )
554 {
555 isTextAvailable = (::IsClipboardFormatAvailable(CF_TEXT) != 0);
556 ::CloseClipboard();
557 }
558
559 return isTextAvailable;
560 }
561
562 // ----------------------------------------------------------------------------
563 // Accessors
564 // ----------------------------------------------------------------------------
565
566 void wxTextCtrl::SetEditable(bool editable)
567 {
568 HWND hWnd = GetHwnd();
569 SendMessage(hWnd, EM_SETREADONLY, (WPARAM)!editable, (LPARAM)0L);
570 }
571
572 void wxTextCtrl::SetInsertionPoint(long pos)
573 {
574 HWND hWnd = GetHwnd();
575 #ifdef __WIN32__
576 #if wxUSE_RICHEDIT
577 if ( m_isRich)
578 {
579 CHARRANGE range;
580 range.cpMin = pos;
581 range.cpMax = pos;
582 SendMessage(hWnd, EM_EXSETSEL, 0, (LPARAM) &range);
583 SendMessage(hWnd, EM_SCROLLCARET, (WPARAM)0, (LPARAM)0);
584 }
585 else
586 #endif // wxUSE_RICHEDIT
587 {
588 SendMessage(hWnd, EM_SETSEL, pos, pos);
589 SendMessage(hWnd, EM_SCROLLCARET, (WPARAM)0, (LPARAM)0);
590 }
591 #else // Win16
592 SendMessage(hWnd, EM_SETSEL, 0, MAKELPARAM(pos, pos));
593 #endif // Win32/16
594
595 static const wxChar *nothing = _T("");
596 SendMessage(hWnd, EM_REPLACESEL, 0, (LPARAM)nothing);
597 }
598
599 void wxTextCtrl::SetInsertionPointEnd()
600 {
601 long pos = GetLastPosition();
602 SetInsertionPoint(pos);
603 }
604
605 long wxTextCtrl::GetInsertionPoint() const
606 {
607 #if wxUSE_RICHEDIT
608 if (m_isRich)
609 {
610 CHARRANGE range;
611 range.cpMin = 0;
612 range.cpMax = 0;
613 SendMessage(GetHwnd(), EM_EXGETSEL, 0, (LPARAM) &range);
614 return range.cpMin;
615 }
616 #endif
617
618 DWORD Pos = (DWORD)SendMessage(GetHwnd(), EM_GETSEL, 0, 0L);
619 return Pos & 0xFFFF;
620 }
621
622 long wxTextCtrl::GetLastPosition() const
623 {
624 HWND hWnd = GetHwnd();
625
626 // Will always return a number > 0 (according to docs)
627 int noLines = (int)SendMessage(hWnd, EM_GETLINECOUNT, (WPARAM)0, (LPARAM)0L);
628
629 // This gets the char index for the _beginning_ of the last line
630 int charIndex = (int)SendMessage(hWnd, EM_LINEINDEX, (WPARAM)(noLines-1), (LPARAM)0L);
631
632 // Get number of characters in the last line. We'll add this to the character
633 // index for the last line, 1st position.
634 int lineLength = (int)SendMessage(hWnd, EM_LINELENGTH, (WPARAM)charIndex, (LPARAM)0L);
635
636 return (long)(charIndex + lineLength);
637 }
638
639 // If the return values from and to are the same, there is no
640 // selection.
641 void wxTextCtrl::GetSelection(long* from, long* to) const
642 {
643 #if wxUSE_RICHEDIT
644 if (m_isRich)
645 {
646 CHARRANGE charRange;
647 ::SendMessage(GetHwnd(), EM_EXGETSEL, 0, (LPARAM) (CHARRANGE*) & charRange);
648
649 *from = charRange.cpMin;
650 *to = charRange.cpMax;
651 }
652 else
653 #endif // rich/!rich
654 {
655 DWORD dwStart, dwEnd;
656 WPARAM wParam = (WPARAM) &dwStart; // receives starting position
657 LPARAM lParam = (LPARAM) &dwEnd; // receives ending position
658
659 ::SendMessage(GetHwnd(), EM_GETSEL, wParam, lParam);
660
661 *from = dwStart;
662 *to = dwEnd;
663 }
664 }
665
666 bool wxTextCtrl::IsEditable() const
667 {
668 long style = ::GetWindowLong(GetHwnd(), GWL_STYLE);
669
670 return ((style & ES_READONLY) == 0);
671 }
672
673 // ----------------------------------------------------------------------------
674 // Editing
675 // ----------------------------------------------------------------------------
676
677 void wxTextCtrl::Replace(long from, long to, const wxString& value)
678 {
679 HWND hWnd = GetHwnd();
680 long fromChar = from;
681 long toChar = to;
682
683 // Set selection and remove it
684 #ifdef __WIN32__
685 SendMessage(hWnd, EM_SETSEL, fromChar, toChar);
686 SendMessage(hWnd, EM_REPLACESEL, (WPARAM)TRUE, (LPARAM)value.c_str());
687 #else
688 SendMessage(hWnd, EM_SETSEL, (WPARAM)0, (LPARAM)MAKELONG(fromChar, toChar));
689 SendMessage(hWnd, EM_REPLACESEL, (WPARAM)0, (LPARAM)value.c_str());
690 #endif
691 }
692
693 void wxTextCtrl::Remove(long from, long to)
694 {
695 HWND hWnd = GetHwnd();
696 long fromChar = from;
697 long toChar = to;
698
699 // Cut all selected text
700 #ifdef __WIN32__
701 SendMessage(hWnd, EM_SETSEL, fromChar, toChar);
702 SendMessage(hWnd, EM_REPLACESEL, (WPARAM)TRUE, (LPARAM)"");
703 #else
704 SendMessage(hWnd, EM_SETSEL, (WPARAM)0, (LPARAM)MAKELONG(fromChar, toChar));
705 SendMessage(hWnd, EM_REPLACESEL, (WPARAM)0, (LPARAM)"");
706 #endif
707 }
708
709 void wxTextCtrl::SetSelection(long from, long to)
710 {
711 HWND hWnd = GetHwnd();
712 long fromChar = from;
713 long toChar = to;
714
715 // if from and to are both -1, it means (in wxWindows) that all text should
716 // be selected. Translate into Windows convention
717 if ((from == -1) && (to == -1))
718 {
719 fromChar = 0;
720 toChar = -1;
721 }
722
723 #ifdef __WIN32__
724 SendMessage(hWnd, EM_SETSEL, (WPARAM)fromChar, (LPARAM)toChar);
725 SendMessage(hWnd, EM_SCROLLCARET, (WPARAM)0, (LPARAM)0);
726 #else
727 // WPARAM is 0: selection is scrolled into view
728 SendMessage(hWnd, EM_SETSEL, (WPARAM)0, (LPARAM)MAKELONG(fromChar, toChar));
729 #endif
730 }
731
732 bool wxTextCtrl::LoadFile(const wxString& file)
733 {
734 if ( wxTextCtrlBase::LoadFile(file) )
735 {
736 // update the size limit if needed
737 AdjustSpaceLimit();
738
739 return TRUE;
740 }
741
742 return FALSE;
743 }
744
745 bool wxTextCtrl::IsModified() const
746 {
747 return (SendMessage(GetHwnd(), EM_GETMODIFY, 0, 0) != 0);
748 }
749
750 // Makes 'unmodified'
751 void wxTextCtrl::DiscardEdits()
752 {
753 SendMessage(GetHwnd(), EM_SETMODIFY, FALSE, 0L);
754 }
755
756 int wxTextCtrl::GetNumberOfLines() const
757 {
758 return (int)SendMessage(GetHwnd(), EM_GETLINECOUNT, (WPARAM)0, (LPARAM)0);
759 }
760
761 long wxTextCtrl::XYToPosition(long x, long y) const
762 {
763 HWND hWnd = GetHwnd();
764
765 // This gets the char index for the _beginning_ of this line
766 int charIndex = (int)SendMessage(hWnd, EM_LINEINDEX, (WPARAM)y, (LPARAM)0);
767 return (long)(x + charIndex);
768 }
769
770 bool wxTextCtrl::PositionToXY(long pos, long *x, long *y) const
771 {
772 HWND hWnd = GetHwnd();
773
774 // This gets the line number containing the character
775 int lineNo;
776 #if wxUSE_RICHEDIT
777 if ( m_isRich )
778 {
779 lineNo = (int)SendMessage(hWnd, EM_EXLINEFROMCHAR, 0, (LPARAM)pos);
780 }
781 else
782 #endif // wxUSE_RICHEDIT
783 lineNo = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)pos, 0);
784
785 if ( lineNo == -1 )
786 {
787 // no such line
788 return FALSE;
789 }
790
791 // This gets the char index for the _beginning_ of this line
792 int charIndex = (int)SendMessage(hWnd, EM_LINEINDEX, (WPARAM)lineNo, (LPARAM)0);
793 if ( charIndex == -1 )
794 {
795 return FALSE;
796 }
797
798 // The X position must therefore be the different between pos and charIndex
799 if ( x )
800 *x = (long)(pos - charIndex);
801 if ( y )
802 *y = (long)lineNo;
803
804 return TRUE;
805 }
806
807 void wxTextCtrl::ShowPosition(long pos)
808 {
809 HWND hWnd = GetHwnd();
810
811 // To scroll to a position, we pass the number of lines and characters
812 // to scroll *by*. This means that we need to:
813 // (1) Find the line position of the current line.
814 // (2) Find the line position of pos.
815 // (3) Scroll by (pos - current).
816 // For now, ignore the horizontal scrolling.
817
818 // Is this where scrolling is relative to - the line containing the caret?
819 // Or is the first visible line??? Try first visible line.
820 // int currentLineLineNo1 = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L);
821
822 int currentLineLineNo = (int)SendMessage(hWnd, EM_GETFIRSTVISIBLELINE, (WPARAM)0, (LPARAM)0L);
823
824 int specifiedLineLineNo = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)pos, (LPARAM)0L);
825
826 int linesToScroll = specifiedLineLineNo - currentLineLineNo;
827
828 if (linesToScroll != 0)
829 (void)SendMessage(hWnd, EM_LINESCROLL, (WPARAM)0, (LPARAM)linesToScroll);
830 }
831
832 int wxTextCtrl::GetLineLength(long lineNo) const
833 {
834 long charIndex = XYToPosition(0, lineNo);
835 int len = (int)SendMessage(GetHwnd(), EM_LINELENGTH, charIndex, 0);
836 return len;
837 }
838
839 wxString wxTextCtrl::GetLineText(long lineNo) const
840 {
841 size_t len = (size_t)GetLineLength(lineNo) + 1;
842
843 // there must be at least enough place for the length WORD in the
844 // buffer
845 len += sizeof(WORD);
846
847 wxString str;
848 wxChar *buf = str.GetWriteBuf(len);
849
850 *(WORD *)buf = (WORD)len;
851 len = (size_t)::SendMessage(GetHwnd(), EM_GETLINE, lineNo, (LPARAM)buf);
852 buf[len] = 0;
853
854 str.UngetWriteBuf(len);
855
856 return str;
857 }
858
859 // ----------------------------------------------------------------------------
860 // Undo/redo
861 // ----------------------------------------------------------------------------
862
863 void wxTextCtrl::Undo()
864 {
865 if (CanUndo())
866 {
867 ::SendMessage(GetHwnd(), EM_UNDO, 0, 0);
868 }
869 }
870
871 void wxTextCtrl::Redo()
872 {
873 if (CanRedo())
874 {
875 // Same as Undo, since Undo undoes the undo, i.e. a redo.
876 ::SendMessage(GetHwnd(), EM_UNDO, 0, 0);
877 }
878 }
879
880 bool wxTextCtrl::CanUndo() const
881 {
882 return (::SendMessage(GetHwnd(), EM_CANUNDO, 0, 0) != 0);
883 }
884
885 bool wxTextCtrl::CanRedo() const
886 {
887 return (::SendMessage(GetHwnd(), EM_CANUNDO, 0, 0) != 0);
888 }
889
890 // ----------------------------------------------------------------------------
891 // implemenation details
892 // ----------------------------------------------------------------------------
893
894 void wxTextCtrl::Command(wxCommandEvent & event)
895 {
896 SetValue(event.GetString());
897 ProcessCommand (event);
898 }
899
900 void wxTextCtrl::OnDropFiles(wxDropFilesEvent& event)
901 {
902 // By default, load the first file into the text window.
903 if (event.GetNumberOfFiles() > 0)
904 {
905 LoadFile(event.GetFiles()[0]);
906 }
907 }
908
909 void wxTextCtrl::OnChar(wxKeyEvent& event)
910 {
911 switch ( event.KeyCode() )
912 {
913 case WXK_RETURN:
914 if ( !(m_windowStyle & wxTE_MULTILINE) )
915 {
916 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
917 InitCommandEvent(event);
918 event.SetString(GetValue());
919 if ( GetEventHandler()->ProcessEvent(event) )
920 return;
921 }
922 //else: multiline controls need Enter for themselves
923
924 break;
925
926 case WXK_TAB:
927 // always produce navigation event - even if we process TAB
928 // ourselves the fact that we got here means that the user code
929 // decided to skip processing of this TAB - probably to let it
930 // do its default job.
931 {
932 wxNavigationKeyEvent eventNav;
933 eventNav.SetDirection(!event.ShiftDown());
934 eventNav.SetWindowChange(event.ControlDown());
935 eventNav.SetEventObject(this);
936
937 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav) )
938 return;
939 }
940 break;
941 }
942
943 // no, we didn't process it
944 event.Skip();
945 }
946
947 bool wxTextCtrl::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
948 {
949 switch (param)
950 {
951 case EN_SETFOCUS:
952 case EN_KILLFOCUS:
953 {
954 wxFocusEvent event(param == EN_KILLFOCUS ? wxEVT_KILL_FOCUS
955 : wxEVT_SET_FOCUS,
956 m_windowId);
957 event.SetEventObject( this );
958 GetEventHandler()->ProcessEvent(event);
959 }
960 break;
961
962 case EN_CHANGE:
963 {
964 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, m_windowId);
965 InitCommandEvent(event);
966 event.SetString(GetValue());
967 ProcessCommand(event);
968 }
969 break;
970
971 case EN_MAXTEXT:
972 // the text size limit has been hit - increase it
973 AdjustSpaceLimit();
974 break;
975
976 // the other notification messages are not processed
977 case EN_UPDATE:
978 case EN_ERRSPACE:
979 case EN_HSCROLL:
980 case EN_VSCROLL:
981 return FALSE;
982 default:
983 return FALSE;
984 }
985
986 // processed
987 return TRUE;
988 }
989
990 WXHBRUSH wxTextCtrl::OnCtlColor(WXHDC pDC, WXHWND WXUNUSED(pWnd), WXUINT WXUNUSED(nCtlColor),
991 #if wxUSE_CTL3D
992 WXUINT message,
993 WXWPARAM wParam,
994 WXLPARAM lParam
995 #else
996 WXUINT WXUNUSED(message),
997 WXWPARAM WXUNUSED(wParam),
998 WXLPARAM WXUNUSED(lParam)
999 #endif
1000 )
1001 {
1002 #if wxUSE_CTL3D
1003 if ( m_useCtl3D )
1004 {
1005 HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam);
1006 return (WXHBRUSH) hbrush;
1007 }
1008 #endif // wxUSE_CTL3D
1009
1010 HDC hdc = (HDC)pDC;
1011 if (GetParent()->GetTransparentBackground())
1012 SetBkMode(hdc, TRANSPARENT);
1013 else
1014 SetBkMode(hdc, OPAQUE);
1015
1016 wxColour colBack = GetBackgroundColour();
1017
1018 if (!IsEnabled() && (GetWindowStyle() & wxTE_MULTILINE) == 0)
1019 colBack = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE);
1020
1021 ::SetBkColor(hdc, wxColourToRGB(colBack));
1022 ::SetTextColor(hdc, wxColourToRGB(GetForegroundColour()));
1023
1024 wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBack, wxSOLID);
1025
1026 return (WXHBRUSH)brush->GetResourceHandle();
1027 }
1028
1029 // In WIN16, need to override normal erasing because
1030 // Ctl3D doesn't use the wxWindows background colour.
1031 #ifdef __WIN16__
1032 void wxTextCtrl::OnEraseBackground(wxEraseEvent& event)
1033 {
1034 wxColour col(m_backgroundColour);
1035
1036 #if wxUSE_CTL3D
1037 if (m_useCtl3D)
1038 col = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW);
1039 #endif
1040
1041 RECT rect;
1042 ::GetClientRect(GetHwnd(), &rect);
1043
1044 COLORREF ref = PALETTERGB(col.Red(),
1045 col.Green(),
1046 col.Blue());
1047 HBRUSH hBrush = ::CreateSolidBrush(ref);
1048 if ( !hBrush )
1049 wxLogLastError(wxT("CreateSolidBrush"));
1050
1051 HDC hdc = (HDC)event.GetDC()->GetHDC();
1052
1053 int mode = ::SetMapMode(hdc, MM_TEXT);
1054
1055 ::FillRect(hdc, &rect, hBrush);
1056 ::DeleteObject(hBrush);
1057 ::SetMapMode(hdc, mode);
1058
1059 }
1060 #endif
1061
1062 void wxTextCtrl::AdjustSpaceLimit()
1063 {
1064 #ifndef __WIN16__
1065 unsigned int len = ::GetWindowTextLength(GetHwnd()),
1066 limit = ::SendMessage(GetHwnd(), EM_GETLIMITTEXT, 0, 0);
1067 if ( len >= limit )
1068 {
1069 limit = len + 0x8000; // 32Kb
1070
1071 #if wxUSE_RICHEDIT
1072 if ( m_isRich )
1073 {
1074 // as a nice side effect, this also allows passing limit > 64Kb
1075 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT, 0, limit);
1076 }
1077 else
1078 #endif // wxUSE_RICHEDIT
1079 {
1080 if ( limit > 0xffff )
1081 {
1082 // this will set it to a platform-dependent maximum (much more
1083 // than 64Kb under NT)
1084 limit = 0;
1085 }
1086
1087 ::SendMessage(GetHwnd(), EM_LIMITTEXT, limit, 0);
1088 }
1089 }
1090 #endif // !Win16
1091 }
1092
1093 bool wxTextCtrl::AcceptsFocus() const
1094 {
1095 // we don't want focus if we can't be edited
1096 return IsEditable() && wxControl::AcceptsFocus();
1097 }
1098
1099 wxSize wxTextCtrl::DoGetBestSize() const
1100 {
1101 int cx, cy;
1102 wxGetCharSize(GetHWND(), &cx, &cy, &GetFont());
1103
1104 int wText = DEFAULT_ITEM_WIDTH;
1105
1106 int hText = EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy);
1107 if ( m_windowStyle & wxTE_MULTILINE )
1108 {
1109 hText *= wxMax(GetNumberOfLines(), 5);
1110 }
1111 //else: for single line control everything is ok
1112
1113 return wxSize(wText, hText);
1114 }
1115
1116 // ----------------------------------------------------------------------------
1117 // standard handlers for standard edit menu events
1118 // ----------------------------------------------------------------------------
1119
1120 void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
1121 {
1122 Cut();
1123 }
1124
1125 void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
1126 {
1127 Copy();
1128 }
1129
1130 void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
1131 {
1132 Paste();
1133 }
1134
1135 void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
1136 {
1137 Undo();
1138 }
1139
1140 void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
1141 {
1142 Redo();
1143 }
1144
1145 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
1146 {
1147 event.Enable( CanCut() );
1148 }
1149
1150 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
1151 {
1152 event.Enable( CanCopy() );
1153 }
1154
1155 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
1156 {
1157 event.Enable( CanPaste() );
1158 }
1159
1160 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
1161 {
1162 event.Enable( CanUndo() );
1163 }
1164
1165 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
1166 {
1167 event.Enable( CanRedo() );
1168 }
1169
1170 // the rest of the file only deals with the rich edit controls
1171 #if wxUSE_RICHEDIT
1172
1173 // ----------------------------------------------------------------------------
1174 // EN_LINK processing
1175 // ----------------------------------------------------------------------------
1176
1177 bool wxTextCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
1178 {
1179 NMHDR *hdr = (NMHDR* )lParam;
1180 if ( hdr->code == EN_LINK )
1181 {
1182 ENLINK *enlink = (ENLINK *)hdr;
1183
1184 switch ( enlink->msg )
1185 {
1186 case WM_SETCURSOR:
1187 // ok, so it is hardcoded - do we really nee to customize it?
1188 ::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND)));
1189 *result = TRUE;
1190 break;
1191
1192 case WM_MOUSEMOVE:
1193 case WM_LBUTTONDOWN:
1194 case WM_LBUTTONUP:
1195 case WM_LBUTTONDBLCLK:
1196 case WM_RBUTTONDOWN:
1197 case WM_RBUTTONUP:
1198 case WM_RBUTTONDBLCLK:
1199 // send a mouse event
1200 {
1201 static const wxEventType eventsMouse[] =
1202 {
1203 wxEVT_MOTION,
1204 wxEVT_LEFT_DOWN,
1205 wxEVT_LEFT_UP,
1206 wxEVT_LEFT_DCLICK,
1207 wxEVT_RIGHT_DOWN,
1208 wxEVT_RIGHT_UP,
1209 wxEVT_RIGHT_DCLICK,
1210 };
1211
1212 // the event ids are consecutive
1213 wxMouseEvent
1214 evtMouse(eventsMouse[enlink->msg - WM_MOUSEMOVE]);
1215
1216 InitMouseEvent(evtMouse,
1217 GET_X_LPARAM(enlink->lParam),
1218 GET_Y_LPARAM(enlink->lParam),
1219 enlink->wParam);
1220
1221 wxTextUrlEvent event(m_windowId, evtMouse,
1222 enlink->chrg.cpMin,
1223 enlink->chrg.cpMax);
1224
1225 InitCommandEvent(event);
1226
1227 *result = ProcessCommand(event);
1228 }
1229 break;
1230 }
1231
1232 return TRUE;
1233 }
1234
1235 // not processed
1236 return FALSE;
1237 }
1238
1239 // ----------------------------------------------------------------------------
1240 // colour setting for the rich edit controls
1241 // ----------------------------------------------------------------------------
1242
1243 // Watcom C++ doesn't define this
1244 #ifndef SCF_ALL
1245 #define SCF_ALL 0x0004
1246 #endif
1247
1248 bool wxTextCtrl::SetBackgroundColour(const wxColour& colour)
1249 {
1250 if ( !wxTextCtrlBase::SetBackgroundColour(colour) )
1251 {
1252 // colour didn't really change
1253 return FALSE;
1254 }
1255
1256 if ( IsRich() )
1257 {
1258 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
1259 // EM_SETBKGNDCOLOR additionally
1260 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR, 0, wxColourToRGB(colour));
1261 }
1262
1263 return TRUE;
1264 }
1265
1266 bool wxTextCtrl::SetForegroundColour(const wxColour& colour)
1267 {
1268 if ( !wxTextCtrlBase::SetForegroundColour(colour) )
1269 {
1270 // colour didn't really change
1271 return FALSE;
1272 }
1273
1274 if ( IsRich() )
1275 {
1276 // change the colour of everything
1277 CHARFORMAT cf;
1278 wxZeroMemory(cf);
1279 cf.cbSize = sizeof(cf);
1280 cf.dwMask = CFM_COLOR;
1281 cf.crTextColor = wxColourToRGB(colour);
1282 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT, SCF_ALL, (LPARAM)&cf);
1283 }
1284
1285 return TRUE;
1286 }
1287
1288 // ----------------------------------------------------------------------------
1289 // styling support for rich edit controls
1290 // ----------------------------------------------------------------------------
1291
1292 bool wxTextCtrl::SetStyle(long start, long end, const wxTextAttr& style)
1293 {
1294 if ( !IsRich() )
1295 {
1296 // can't do it with normal text control
1297 return FALSE;
1298 }
1299
1300 // the rich text control doesn't handle setting background colour, so don't
1301 // even try if it's the only thing we want to change
1302 if ( wxRichEditModule::GetLoadedVersion() < 2 &&
1303 !style.HasFont() && !style.HasTextColour() )
1304 {
1305 // nothing to do: return TRUE if there was really nothing to do and
1306 // FALSE if we failed to set bg colour
1307 return !style.HasBackgroundColour();
1308 }
1309
1310 // order the range if needed
1311 if ( start > end )
1312 {
1313 long tmp = start;
1314 start = end;
1315 end = tmp;
1316 }
1317
1318 // we can only change the format of the selection, so select the range we
1319 // want and restore the old selection later
1320 long startOld, endOld;
1321 GetSelection(&startOld, &endOld);
1322
1323 // but do we really have to change the selection?
1324 bool changeSel = start != startOld || end != endOld;
1325
1326 if ( changeSel )
1327 SendMessage(GetHwnd(), EM_SETSEL, (WPARAM) start, (LPARAM) end);
1328
1329 // initialize CHARFORMAT struct
1330 #if wxUSE_RICHEDIT2
1331 CHARFORMAT2 cf;
1332 #else
1333 CHARFORMAT cf;
1334 #endif
1335 wxZeroMemory(cf);
1336 cf.cbSize = sizeof(cf);
1337
1338 if ( style.HasFont() )
1339 {
1340 cf.dwMask |= CFM_FACE | CFM_SIZE | CFM_CHARSET |
1341 CFM_ITALIC | CFM_BOLD | CFM_UNDERLINE;
1342
1343 // fill in data from LOGFONT but recalculate lfHeight because we need
1344 // the real height in twips and not the negative number which
1345 // wxFillLogFont() returns (this is correct in general and works with
1346 // the Windows font mapper, but not here)
1347 LOGFONT lf;
1348 wxFillLogFont(&lf, &style.GetFont());
1349 cf.yHeight = 20*style.GetFont().GetPointSize(); // 1 pt = 20 twips
1350 cf.bCharSet = lf.lfCharSet;
1351 cf.bPitchAndFamily = lf.lfPitchAndFamily;
1352 wxStrncpy( cf.szFaceName, lf.lfFaceName, WXSIZEOF(cf.szFaceName) );
1353
1354 // also deal with underline/italic/bold attributes: note that we must
1355 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
1356 // style to allow clearing it
1357 if ( lf.lfItalic )
1358 {
1359 cf.dwEffects |= CFE_ITALIC;
1360 }
1361
1362 if ( lf.lfWeight == FW_BOLD )
1363 {
1364 cf.dwEffects |= CFE_BOLD;
1365 }
1366
1367 if ( lf.lfUnderline )
1368 {
1369 cf.dwEffects |= CFE_UNDERLINE;
1370 }
1371
1372 // strikeout fonts are not supported by wxWindows
1373 }
1374
1375 if ( style.HasTextColour() )
1376 {
1377 cf.dwMask |= CFM_COLOR;
1378 cf.crTextColor = wxColourToRGB(style.GetTextColour());
1379 }
1380
1381 #if wxUSE_RICHEDIT2
1382 if ( wxRichEditModule::GetLoadedVersion() > 1 && style.HasBackgroundColour() )
1383 {
1384 cf.dwMask |= CFM_BACKCOLOR;
1385 cf.crBackColor = wxColourToRGB(style.GetBackgroundColour());
1386 }
1387 #endif // wxUSE_RICHEDIT2
1388
1389 // do format the selection
1390 bool ok = ::SendMessage(GetHwnd(), EM_SETCHARFORMAT,
1391 SCF_SELECTION, (LPARAM)&cf) != 0;
1392 if ( !ok )
1393 {
1394 wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed"));
1395 }
1396
1397 if ( changeSel )
1398 {
1399 // restore the original selection
1400 SendMessage(GetHwnd(), EM_SETSEL, (WPARAM)startOld, (LPARAM)endOld);
1401 }
1402
1403 return ok;
1404 }
1405
1406 // ----------------------------------------------------------------------------
1407 // wxRichEditModule
1408 // ----------------------------------------------------------------------------
1409
1410 bool wxRichEditModule::OnInit()
1411 {
1412 // don't do anything - we will load it when needed
1413 return TRUE;
1414 }
1415
1416 void wxRichEditModule::OnExit()
1417 {
1418 if ( ms_hRichEdit )
1419 {
1420 FreeLibrary(ms_hRichEdit);
1421 }
1422 }
1423
1424 /* static */
1425 bool wxRichEditModule::Load(int version)
1426 {
1427 wxCHECK_MSG( version >= 1 && version <= 3, FALSE,
1428 _T("incorrect richedit control version requested") );
1429
1430 if ( version <= ms_verRichEdit )
1431 {
1432 // we've already got this or better
1433 return TRUE;
1434 }
1435
1436 if ( ms_hRichEdit )
1437 {
1438 ::FreeLibrary(ms_hRichEdit);
1439 }
1440
1441 // always try load riched20.dll first - like this we won't have to reload
1442 // it later if we're first asked for RE 1 and then for RE 2 or 3
1443 wxString dllname = _T("riched20.dll");
1444 ms_hRichEdit = ::LoadLibrary(dllname);
1445 ms_verRichEdit = 2; // no way to tell if it's 2 or 3, assume 2
1446
1447 if ( !ms_hRichEdit && (version == 1) )
1448 {
1449 // fall back to RE 1
1450 dllname = _T("riched32.dll");
1451 ms_hRichEdit = ::LoadLibrary(dllname);
1452 ms_verRichEdit = 1;
1453 }
1454
1455 if ( !ms_hRichEdit )
1456 {
1457 wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname.c_str());
1458
1459 ms_verRichEdit = -1;
1460
1461 return FALSE;
1462 }
1463
1464 return TRUE;
1465 }
1466
1467 #endif // wxUSE_RICHEDIT
1468
1469 #endif // wxUSE_TEXTCTRL