1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/textctrl.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
17 #pragma implementation "textctrl.h"
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/textctrl.h"
35 #include "wx/settings.h"
44 #include "wx/module.h"
47 #include "wx/clipbrd.h"
50 #include "wx/textfile.h"
54 #include "wx/msw/private.h"
55 #include "wx/msw/winundef.h"
61 #include <sys/types.h>
66 // old mingw32 has richedit stuff directly in windows.h and doesn't have
68 #if !defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__)
72 #include "wx/msw/missing.h"
74 #endif // wxUSE_RICHEDIT
76 // ----------------------------------------------------------------------------
78 // ----------------------------------------------------------------------------
82 // this module initializes RichEdit DLL(s) if needed
83 class wxRichEditModule
: public wxModule
86 virtual bool OnInit();
87 virtual void OnExit();
89 // load the richedit DLL of at least of required version
90 static bool Load(int version
= 1);
93 // the handles to richedit 1.0 and 2.0 (or 3.0) DLLs
94 static HINSTANCE ms_hRichEdit
[2];
96 DECLARE_DYNAMIC_CLASS(wxRichEditModule
)
99 HINSTANCE
wxRichEditModule::ms_hRichEdit
[2] = { NULL
, NULL
};
101 IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule
, wxModule
)
103 #endif // wxUSE_RICHEDIT
105 // ----------------------------------------------------------------------------
106 // event tables and other macros
107 // ----------------------------------------------------------------------------
109 #if wxUSE_EXTENDED_RTTI
110 WX_DEFINE_FLAGS( wxTextCtrlStyle
)
112 wxBEGIN_FLAGS( wxTextCtrlStyle
)
113 // new style border flags, we put them first to
114 // use them for streaming out
115 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
116 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
117 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
118 wxFLAGS_MEMBER(wxBORDER_RAISED
)
119 wxFLAGS_MEMBER(wxBORDER_STATIC
)
120 wxFLAGS_MEMBER(wxBORDER_NONE
)
122 // old style border flags
123 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
124 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
125 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
126 wxFLAGS_MEMBER(wxRAISED_BORDER
)
127 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
128 wxFLAGS_MEMBER(wxBORDER
)
130 // standard window styles
131 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
132 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
133 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
134 wxFLAGS_MEMBER(wxWANTS_CHARS
)
135 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
136 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
137 wxFLAGS_MEMBER(wxVSCROLL
)
138 wxFLAGS_MEMBER(wxHSCROLL
)
140 wxFLAGS_MEMBER(wxTE_PROCESS_ENTER
)
141 wxFLAGS_MEMBER(wxTE_PROCESS_TAB
)
142 wxFLAGS_MEMBER(wxTE_MULTILINE
)
143 wxFLAGS_MEMBER(wxTE_PASSWORD
)
144 wxFLAGS_MEMBER(wxTE_READONLY
)
145 wxFLAGS_MEMBER(wxHSCROLL
)
146 wxFLAGS_MEMBER(wxTE_RICH
)
147 wxFLAGS_MEMBER(wxTE_RICH2
)
148 wxFLAGS_MEMBER(wxTE_AUTO_URL
)
149 wxFLAGS_MEMBER(wxTE_NOHIDESEL
)
150 wxFLAGS_MEMBER(wxTE_LEFT
)
151 wxFLAGS_MEMBER(wxTE_CENTRE
)
152 wxFLAGS_MEMBER(wxTE_RIGHT
)
153 wxFLAGS_MEMBER(wxTE_DONTWRAP
)
154 wxFLAGS_MEMBER(wxTE_LINEWRAP
)
155 wxFLAGS_MEMBER(wxTE_WORDWRAP
)
157 wxEND_FLAGS( wxTextCtrlStyle
)
159 IMPLEMENT_DYNAMIC_CLASS_XTI(wxTextCtrl
, wxControl
,"wx/textctrl.h")
161 wxBEGIN_PROPERTIES_TABLE(wxTextCtrl
)
162 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
163 wxEVENT_PROPERTY( TextEnter
, wxEVT_COMMAND_TEXT_ENTER
, wxCommandEvent
)
165 wxPROPERTY( Font
, wxFont
, SetFont
, GetFont
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
166 wxPROPERTY( Value
, wxString
, SetValue
, GetValue
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
167 wxPROPERTY_FLAGS( WindowStyle
, wxTextCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
168 wxEND_PROPERTIES_TABLE()
170 wxBEGIN_HANDLERS_TABLE(wxTextCtrl
)
171 wxEND_HANDLERS_TABLE()
173 wxCONSTRUCTOR_6( wxTextCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Value
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
175 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxControl
)
179 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
180 EVT_CHAR(wxTextCtrl::OnChar
)
181 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
184 EVT_RIGHT_UP(wxTextCtrl::OnRightClick
)
187 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
188 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
189 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
190 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
191 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
192 EVT_MENU(wxID_CLEAR
, wxTextCtrl::OnDelete
)
193 EVT_MENU(wxID_SELECTALL
, wxTextCtrl::OnSelectAll
)
195 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
196 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
197 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
198 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
199 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
200 EVT_UPDATE_UI(wxID_CLEAR
, wxTextCtrl::OnUpdateDelete
)
201 EVT_UPDATE_UI(wxID_SELECTALL
, wxTextCtrl::OnUpdateSelectAll
)
203 EVT_SET_FOCUS(wxTextCtrl::OnSetFocus
)
206 // ============================================================================
208 // ============================================================================
210 // ----------------------------------------------------------------------------
212 // ----------------------------------------------------------------------------
214 void wxTextCtrl::Init()
218 #endif // wxUSE_RICHEDIT
220 m_privateContextMenu
= NULL
;
221 m_suppressNextUpdate
= FALSE
;
222 m_isNativeCaretShown
= true;
225 wxTextCtrl::~wxTextCtrl()
227 if (m_privateContextMenu
)
229 delete m_privateContextMenu
;
230 m_privateContextMenu
= NULL
;
234 bool wxTextCtrl::Create(wxWindow
*parent
, wxWindowID id
,
235 const wxString
& value
,
239 const wxValidator
& validator
,
240 const wxString
& name
)
243 if ((style
& wxBORDER_MASK
) == 0)
244 style
|= wxBORDER_SIMPLE
;
247 // base initialization
248 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
251 // translate wxWin style flags to MSW ones
252 WXDWORD msStyle
= MSWGetCreateWindowFlags();
254 // do create the control - either an EDIT or RICHEDIT
255 wxString windowClass
= wxT("EDIT");
258 if ( m_windowStyle
& wxTE_AUTO_URL
)
260 // automatic URL detection only works in RichEdit 2.0+
261 m_windowStyle
|= wxTE_RICH2
;
264 if ( m_windowStyle
& wxTE_RICH2
)
266 // using richedit 2.0 implies using wxTE_RICH
267 m_windowStyle
|= wxTE_RICH
;
270 // we need to load the richedit DLL before creating the rich edit control
271 if ( m_windowStyle
& wxTE_RICH
)
273 static bool s_errorGiven
= FALSE
;// MT-FIXME
275 // Which version do we need? Use 1.0 by default because it is much more
276 // like the the standard EDIT or 2.0 if explicitly requested, but use
277 // only 2.0 in Unicode mode as 1.0 doesn't support Unicode at all
279 // TODO: RichEdit 3.0 is apparently capable of emulating RichEdit 1.0
280 // (and thus EDIT) much better than RichEdit 2.0 so we probably
281 // should use 3.0 if available as it is the best of both worlds -
282 // but as I can't test it right now I don't do it (VZ)
284 const int verRichEdit
= 2;
285 #else // !wxUSE_UNICODE
286 int verRichEdit
= m_windowStyle
& wxTE_RICH2
? 2 : 1;
287 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
289 // only give the error msg once if the DLL can't be loaded
292 // try to load the RichEdit DLL (will do nothing if already done)
293 if ( !wxRichEditModule::Load(verRichEdit
) )
296 // try another version?
297 verRichEdit
= 3 - verRichEdit
; // 1 <-> 2
299 if ( !wxRichEditModule::Load(verRichEdit
) )
300 #endif // wxUSE_UNICODE
302 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
309 // have we managed to load any richedit version?
312 m_verRichEdit
= verRichEdit
;
313 if ( m_verRichEdit
== 1 )
315 windowClass
= wxT("RICHEDIT");
319 #ifndef RICHEDIT_CLASS
320 wxString RICHEDIT_CLASS
;
321 RICHEDIT_CLASS
.Printf(_T("RichEdit%d0"), m_verRichEdit
);
323 RICHEDIT_CLASS
+= _T('W');
325 RICHEDIT_CLASS
+= _T('A');
326 #endif // Unicode/ANSI
327 #endif // !RICHEDIT_CLASS
329 windowClass
= RICHEDIT_CLASS
;
333 #endif // wxUSE_RICHEDIT
335 // we need to turn '\n's into "\r\n"s for the multiline controls
337 if ( m_windowStyle
& wxTE_MULTILINE
)
339 valueWin
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
346 if ( !MSWCreateControl(windowClass
, msStyle
, pos
, size
, valueWin
) )
349 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
354 // enable the events we're interested in: we want to get EN_CHANGE as
355 // for the normal controls
356 LPARAM mask
= ENM_CHANGE
;
358 if ( GetRichVersion() == 1 )
360 // we also need EN_MSGFILTER for richedit 1.0 for the reasons
361 // explained in its handler
362 mask
|= ENM_MOUSEEVENTS
;
364 else if ( m_windowStyle
& wxTE_AUTO_URL
)
368 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT
, TRUE
, 0);
371 ::SendMessage(GetHwnd(), EM_SETEVENTMASK
, 0, mask
);
373 #endif // wxUSE_RICHEDIT
378 // Make sure the window style (etc.) reflects the HWND style (roughly)
379 void wxTextCtrl::AdoptAttributesFromHWND()
381 wxWindow::AdoptAttributesFromHWND();
383 HWND hWnd
= GetHwnd();
384 long style
= ::GetWindowLong(hWnd
, GWL_STYLE
);
386 // retrieve the style to see whether this is an edit or richedit ctrl
388 wxString classname
= wxGetWindowClass(GetHWND());
390 if ( classname
.IsSameAs(_T("EDIT"), FALSE
/* no case */) )
397 if ( wxSscanf(classname
, _T("RichEdit%d0%c"), &m_verRichEdit
, &c
) != 2 )
399 wxLogDebug(_T("Unknown edit control '%s'."), classname
.c_str());
404 #endif // wxUSE_RICHEDIT
406 if (style
& ES_MULTILINE
)
407 m_windowStyle
|= wxTE_MULTILINE
;
408 if (style
& ES_PASSWORD
)
409 m_windowStyle
|= wxTE_PASSWORD
;
410 if (style
& ES_READONLY
)
411 m_windowStyle
|= wxTE_READONLY
;
412 if (style
& ES_WANTRETURN
)
413 m_windowStyle
|= wxTE_PROCESS_ENTER
;
414 if (style
& ES_CENTER
)
415 m_windowStyle
|= wxTE_CENTRE
;
416 if (style
& ES_RIGHT
)
417 m_windowStyle
|= wxTE_RIGHT
;
420 WXDWORD
wxTextCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
422 long msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
424 // styles which we alaways add by default
425 if ( style
& wxTE_MULTILINE
)
427 wxASSERT_MSG( !(style
& wxTE_PROCESS_ENTER
),
428 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
430 msStyle
|= ES_MULTILINE
| ES_WANTRETURN
;
431 if ( !(style
& wxTE_NO_VSCROLL
) )
433 // always adjust the vertical scrollbar automatically if we have it
434 msStyle
|= WS_VSCROLL
| ES_AUTOVSCROLL
;
437 // we have to use this style for the rich edit controls because
438 // without it the vertical scrollbar never appears at all in
439 // richedit 3.0 because of our ECO_NOHIDESEL hack (search for it)
440 if ( style
& wxTE_RICH2
)
442 msStyle
|= ES_DISABLENOSCROLL
;
444 #endif // wxUSE_RICHEDIT
447 style
|= wxTE_PROCESS_ENTER
;
451 // there is really no reason to not have this style for single line
453 msStyle
|= ES_AUTOHSCROLL
;
456 // note that wxTE_DONTWRAP is the same as wxHSCROLL so if we have a horz
457 // scrollbar, there is no wrapping -- which makes sense
458 if ( style
& wxTE_DONTWRAP
)
460 // automatically scroll the control horizontally as necessary
462 // NB: ES_AUTOHSCROLL is needed for richedit controls or they don't
463 // show horz scrollbar at all, even in spite of WS_HSCROLL, and as
464 // it doesn't seem to do any harm for plain edit controls, add it
466 msStyle
|= WS_HSCROLL
| ES_AUTOHSCROLL
;
469 if ( style
& wxTE_READONLY
)
470 msStyle
|= ES_READONLY
;
472 if ( style
& wxTE_PASSWORD
)
473 msStyle
|= ES_PASSWORD
;
475 if ( style
& wxTE_NOHIDESEL
)
476 msStyle
|= ES_NOHIDESEL
;
478 // note that we can't do do "& wxTE_LEFT" as wxTE_LEFT == 0
479 if ( style
& wxTE_CENTRE
)
480 msStyle
|= ES_CENTER
;
481 else if ( style
& wxTE_RIGHT
)
484 msStyle
|= ES_LEFT
; // ES_LEFT is 0 as well but for consistency...
489 void wxTextCtrl::SetWindowStyleFlag(long style
)
492 // we have to deal with some styles separately because they can't be
493 // changed by simply calling SetWindowLong(GWL_STYLE) but can be changed
494 // using richedit-specific EM_SETOPTIONS
496 ((style
& wxTE_NOHIDESEL
) != (GetWindowStyle() & wxTE_NOHIDESEL
)) )
498 bool set
= (style
& wxTE_NOHIDESEL
) != 0;
500 ::SendMessage(GetHwnd(), EM_SETOPTIONS
, set
? ECOOP_OR
: ECOOP_AND
,
501 set
? ECO_NOHIDESEL
: ~ECO_NOHIDESEL
);
503 #endif // wxUSE_RICHEDIT
505 wxControl::SetWindowStyleFlag(style
);
508 // ----------------------------------------------------------------------------
509 // set/get the controls text
510 // ----------------------------------------------------------------------------
512 wxString
wxTextCtrl::GetValue() const
514 // range 0..-1 is special for GetRange() and means to retrieve all text
515 return GetRange(0, -1);
518 wxString
wxTextCtrl::GetRange(long from
, long to
) const
522 if ( from
>= to
&& to
!= -1 )
524 // nothing to retrieve
531 int len
= GetWindowTextLength(GetHwnd());
538 // we must use EM_STREAMOUT if we don't want to lose all characters
539 // not representable in the current character set (EM_GETTEXTRANGE
540 // simply replaces them with question marks...)
541 if ( GetRichVersion() > 1 )
543 // we must have some encoding, otherwise any 8bit chars in the
544 // control are simply *lost* (replaced by '?')
545 wxFontEncoding encoding
= wxFONTENCODING_SYSTEM
;
547 wxFont font
= m_defaultStyle
.GetFont();
553 encoding
= font
.GetEncoding();
556 if ( encoding
== wxFONTENCODING_SYSTEM
)
558 encoding
= wxLocale::GetSystemEncoding();
561 if ( encoding
== wxFONTENCODING_SYSTEM
)
563 encoding
= wxFONTENCODING_ISO8859_1
;
566 str
= StreamOut(encoding
);
570 // we have to manually extract the required part, luckily
571 // this is easy in this case as EOL characters in str are
572 // just LFs because we remove CRs in wxRichEditStreamOut
573 str
= str
.Mid(from
, to
- from
);
577 // StreamOut() wasn't used or failed, try to do it in normal way
579 #endif // !wxUSE_UNICODE
581 // alloc one extra WORD as needed by the control
582 wxStringBuffer
tmp(str
, ++len
);
586 textRange
.chrg
.cpMin
= from
;
587 textRange
.chrg
.cpMax
= to
;
588 textRange
.lpstrText
= p
;
590 (void)SendMessage(GetHwnd(), EM_GETTEXTRANGE
,
591 0, (LPARAM
)&textRange
);
593 if ( m_verRichEdit
> 1 )
595 // RichEdit 2.0 uses just CR ('\r') for the
596 // newlines which is neither Unix nor Windows
597 // style - convert it to something reasonable
600 if ( *p
== _T('\r') )
606 if ( m_verRichEdit
== 1 )
608 // convert to the canonical form - see comment below
609 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
612 //else: no text at all, leave the string empty
615 #endif // wxUSE_RICHEDIT
618 str
= wxGetWindowText(GetHWND());
620 // need only a range?
623 str
= str
.Mid(from
, to
- from
);
626 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
627 // canonical one (same one as above) for consistency with the other kinds
628 // of controls and, more importantly, with the other ports
629 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
635 void wxTextCtrl::SetValue(const wxString
& value
)
637 // if the text is long enough, it's faster to just set it instead of first
638 // comparing it with the old one (chances are that it will be different
639 // anyhow, this comparison is there to avoid flicker for small single-line
640 // edit controls mostly)
641 if ( (value
.length() > 0x400) || (value
!= GetValue()) )
643 DoWriteText(value
, FALSE
/* not selection only */);
645 // for compatibility, don't move the cursor when doing SetValue()
646 SetInsertionPoint(0);
650 // still send an event for consistency
654 // we should reset the modified flag even if the value didn't really change
656 // mark the control as being not dirty - we changed its text, not the
661 #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)
663 // TODO: using memcpy() would improve performance a lot for big amounts of text
666 wxRichEditStreamIn(DWORD dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
670 const wchar_t ** const ppws
= (const wchar_t **)dwCookie
;
672 wchar_t *wbuf
= (wchar_t *)buf
;
673 const wchar_t *wpc
= *ppws
;
678 cb
-= sizeof(wchar_t);
679 (*pcb
) += sizeof(wchar_t);
687 // helper struct used to pass parameters from wxTextCtrl to wxRichEditStreamOut
688 struct wxStreamOutData
695 wxRichEditStreamOut(DWORD_PTR dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
699 wxStreamOutData
*data
= (wxStreamOutData
*)dwCookie
;
701 const wchar_t *wbuf
= (const wchar_t *)buf
;
702 wchar_t *wpc
= data
->wpc
;
705 wchar_t wch
= *wbuf
++;
707 // turn "\r\n" into "\n" on the fly
713 cb
-= sizeof(wchar_t);
714 (*pcb
) += sizeof(wchar_t);
723 #if wxUSE_UNICODE_MSLU
724 #define UNUSED_IF_MSLU(param)
726 #define UNUSED_IF_MSLU(param) param
730 wxTextCtrl::StreamIn(const wxString
& value
,
731 wxFontEncoding
UNUSED_IF_MSLU(encoding
),
734 #if wxUSE_UNICODE_MSLU
735 const wchar_t *wpc
= value
.c_str();
736 #else // !wxUSE_UNICODE_MSLU
737 wxCSConv
conv(encoding
);
739 const size_t len
= conv
.MB2WC(NULL
, value
, value
.length());
742 wxWCharBuffer
wchBuf(len
);
743 wchar_t *wpc
= wchBuf
.data();
745 wchar_t *wchBuf
= (wchar_t *)malloc((len
+ 1)*sizeof(wchar_t));
746 wchar_t *wpc
= wchBuf
;
749 conv
.MB2WC(wpc
, value
, value
.length());
750 #endif // wxUSE_UNICODE_MSLU
752 // finally, stream it in the control
755 eds
.dwCookie
= (DWORD
)&wpc
;
756 // the cast below is needed for broken (very) old mingw32 headers
757 eds
.pfnCallback
= (EDITSTREAMCALLBACK
)wxRichEditStreamIn
;
759 // we're going to receive 2 EN_CHANGE notifications if we got any selection
760 // (same problem as in DoWriteText())
761 if ( selectionOnly
&& HasSelection() )
763 // so suppress one of them
764 m_suppressNextUpdate
= TRUE
;
767 ::SendMessage(GetHwnd(), EM_STREAMIN
,
770 (selectionOnly
? SFF_SELECTION
: 0),
775 wxLogLastError(_T("EM_STREAMIN"));
780 #endif // !wxUSE_WCHAR_T
785 #if !wxUSE_UNICODE_MSLU
788 wxTextCtrl::StreamOut(wxFontEncoding encoding
, bool selectionOnly
) const
792 const int len
= GetWindowTextLength(GetHwnd());
795 wxWCharBuffer
wchBuf(len
);
796 wchar_t *wpc
= wchBuf
.data();
798 wchar_t *wchBuf
= (wchar_t *)malloc((len
+ 1)*sizeof(wchar_t));
799 wchar_t *wpc
= wchBuf
;
802 wxStreamOutData data
;
808 eds
.dwCookie
= (DWORD
)&data
;
809 eds
.pfnCallback
= wxRichEditStreamOut
;
815 SF_TEXT
| SF_UNICODE
| (selectionOnly
? SFF_SELECTION
: 0),
821 wxLogLastError(_T("EM_STREAMOUT"));
823 else // streamed out ok
825 // NUL-terminate the string because its length could have been
826 // decreased by wxRichEditStreamOut
827 *(wchBuf
.data() + data
.len
) = L
'\0';
829 // now convert to the given encoding (this is a possibly lossful
830 // conversion but what else can we do)
831 wxCSConv
conv(encoding
);
832 size_t lenNeeded
= conv
.WC2MB(NULL
, wchBuf
, 0);
835 conv
.WC2MB(wxStringBuffer(out
, lenNeeded
), wchBuf
, lenNeeded
);
841 #endif // !wxUSE_WCHAR_T
846 #endif // !wxUSE_UNICODE_MSLU
848 #endif // wxUSE_RICHEDIT
850 void wxTextCtrl::WriteText(const wxString
& value
)
855 void wxTextCtrl::DoWriteText(const wxString
& value
, bool selectionOnly
)
858 if ( m_windowStyle
& wxTE_MULTILINE
)
859 valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
864 // there are several complications with the rich edit controls here
868 // first, ensure that the new text will be in the default style
869 if ( !m_defaultStyle
.IsDefault() )
872 GetSelection(&start
, &end
);
873 SetStyle(start
, end
, m_defaultStyle
);
876 #if wxUSE_UNICODE_MSLU
877 // RichEdit doesn't have Unicode version of EM_REPLACESEL on Win9x,
878 // but EM_STREAMIN works
879 if ( wxUsingUnicowsDll() && GetRichVersion() > 1 )
881 done
= StreamIn(valueDos
, wxFONTENCODING_SYSTEM
, selectionOnly
);
883 #endif // wxUSE_UNICODE_MSLU
886 // next check if the text we're inserting must be shown in a non
887 // default charset -- this only works for RichEdit > 1.0
888 if ( GetRichVersion() > 1 )
890 wxFont font
= m_defaultStyle
.GetFont();
896 wxFontEncoding encoding
= font
.GetEncoding();
897 if ( encoding
!= wxFONTENCODING_SYSTEM
)
899 // we have to use EM_STREAMIN to force richedit control 2.0+
900 // to show any text in the non default charset -- otherwise
901 // it thinks it knows better than we do and always shows it
902 // in the default one
903 done
= StreamIn(valueDos
, encoding
, selectionOnly
);
907 #endif // !wxUSE_UNICODE
911 #endif // wxUSE_RICHEDIT
913 // in some cases we get 2 EN_CHANGE notifications after the SendMessage
914 // call below which is confusing for the client code and so should be
917 // these cases are: (a) plain EDIT controls if EM_REPLACESEL is used
918 // and there is a non empty selection currently and (b) rich text
919 // controls in any case
923 #endif // wxUSE_RICHEDIT
924 (selectionOnly
&& HasSelection()) )
926 m_suppressNextUpdate
= TRUE
;
929 ::SendMessage(GetHwnd(), selectionOnly
? EM_REPLACESEL
: WM_SETTEXT
,
930 0, (LPARAM
)valueDos
.c_str());
932 // OTOH, non rich text controls don't generate any events at all when
933 // we use WM_SETTEXT -- have to emulate them here
937 #endif // wxUSE_RICHEDIT
940 // Windows already sends an update event for single-line
942 if ( m_windowStyle
& wxTE_MULTILINE
)
950 void wxTextCtrl::AppendText(const wxString
& text
)
952 SetInsertionPointEnd();
957 if ( IsMultiLine() && GetRichVersion() > 1 )
959 // setting the caret to the end and showing it simply doesn't work for
960 // RichEdit 2.0 -- force it to still do what we want
961 ::SendMessage(GetHwnd(), EM_LINESCROLL
, 0, GetNumberOfLines());
963 #endif // wxUSE_RICHEDIT
966 void wxTextCtrl::Clear()
968 ::SetWindowText(GetHwnd(), wxEmptyString
);
972 #endif // wxUSE_RICHEDIT
974 // rich edit controls send EN_UPDATE from WM_SETTEXT handler themselves
975 // but the normal ones don't -- make Clear() behaviour consistent by
976 // always sending this event
978 // Windows already sends an update event for single-line
980 if ( m_windowStyle
& wxTE_MULTILINE
)
987 bool wxTextCtrl::EmulateKeyPress(const wxKeyEvent
& event
)
991 size_t lenOld
= GetValue().length();
993 wxUint32 code
= event
.GetRawKeyCode();
994 ::keybd_event(code
, 0, 0 /* key press */, 0);
995 ::keybd_event(code
, 0, KEYEVENTF_KEYUP
, 0);
997 // assume that any alphanumeric key changes the total number of characters
998 // in the control - this should work in 99% of cases
999 return GetValue().length() != lenOld
;
1004 // ----------------------------------------------------------------------------
1005 // Clipboard operations
1006 // ----------------------------------------------------------------------------
1008 void wxTextCtrl::Copy()
1012 ::SendMessage(GetHwnd(), WM_COPY
, 0, 0L);
1016 void wxTextCtrl::Cut()
1020 ::SendMessage(GetHwnd(), WM_CUT
, 0, 0L);
1024 void wxTextCtrl::Paste()
1028 ::SendMessage(GetHwnd(), WM_PASTE
, 0, 0L);
1032 bool wxTextCtrl::HasSelection() const
1035 GetSelection(&from
, &to
);
1039 bool wxTextCtrl::CanCopy() const
1041 // Can copy if there's a selection
1042 return HasSelection();
1045 bool wxTextCtrl::CanCut() const
1047 return CanCopy() && IsEditable();
1050 bool wxTextCtrl::CanPaste() const
1052 if ( !IsEditable() )
1058 UINT cf
= 0; // 0 == any format
1060 return ::SendMessage(GetHwnd(), EM_CANPASTE
, cf
, 0) != 0;
1062 #endif // wxUSE_RICHEDIT
1064 // Standard edit control: check for straight text on clipboard
1065 if ( !::OpenClipboard(GetHwndOf(wxTheApp
->GetTopWindow())) )
1068 bool isTextAvailable
= ::IsClipboardFormatAvailable(CF_TEXT
) != 0;
1071 return isTextAvailable
;
1074 // ----------------------------------------------------------------------------
1076 // ----------------------------------------------------------------------------
1078 void wxTextCtrl::SetEditable(bool editable
)
1080 HWND hWnd
= GetHwnd();
1081 SendMessage(hWnd
, EM_SETREADONLY
, (WPARAM
)!editable
, (LPARAM
)0L);
1084 void wxTextCtrl::SetInsertionPoint(long pos
)
1086 DoSetSelection(pos
, pos
);
1089 void wxTextCtrl::SetInsertionPointEnd()
1091 // we must not do anything if the caret is already there because calling
1092 // SetInsertionPoint() thaws the controls if Freeze() had been called even
1093 // if it doesn't actually move the caret anywhere and so the simple fact of
1094 // doing it results in horrible flicker when appending big amounts of text
1095 // to the control in a few chunks (see DoAddText() test in the text sample)
1096 if ( GetInsertionPoint() == GetLastPosition() )
1102 if ( m_verRichEdit
== 1 )
1104 // we don't have to waste time calling GetLastPosition() in this case
1107 else // !RichEdit 1.0
1108 #endif // wxUSE_RICHEDIT
1110 pos
= GetLastPosition();
1113 SetInsertionPoint(pos
);
1116 long wxTextCtrl::GetInsertionPoint() const
1124 SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &range
);
1127 #endif // wxUSE_RICHEDIT
1129 DWORD Pos
= (DWORD
)SendMessage(GetHwnd(), EM_GETSEL
, 0, 0L);
1130 return Pos
& 0xFFFF;
1133 long wxTextCtrl::GetLastPosition() const
1135 int numLines
= GetNumberOfLines();
1136 long posStartLastLine
= XYToPosition(0, numLines
- 1);
1138 long lenLastLine
= GetLengthOfLineContainingPos(posStartLastLine
);
1140 return posStartLastLine
+ lenLastLine
;
1143 // If the return values from and to are the same, there is no
1145 void wxTextCtrl::GetSelection(long* from
, long* to
) const
1150 CHARRANGE charRange
;
1151 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &charRange
);
1153 *from
= charRange
.cpMin
;
1154 *to
= charRange
.cpMax
;
1157 #endif // !wxUSE_RICHEDIT
1159 DWORD dwStart
, dwEnd
;
1160 ::SendMessage(GetHwnd(), EM_GETSEL
, (WPARAM
)&dwStart
, (LPARAM
)&dwEnd
);
1167 bool wxTextCtrl::IsEditable() const
1169 // strangely enough, we may be called before the control is created: our
1170 // own Create() calls MSWGetStyle() which calls AcceptsFocus() which calls
1175 long style
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1177 return (style
& ES_READONLY
) == 0;
1180 // ----------------------------------------------------------------------------
1182 // ----------------------------------------------------------------------------
1184 void wxTextCtrl::SetSelection(long from
, long to
)
1186 // if from and to are both -1, it means (in wxWidgets) that all text should
1187 // be selected - translate into Windows convention
1188 if ( (from
== -1) && (to
== -1) )
1194 DoSetSelection(from
, to
);
1197 void wxTextCtrl::DoSetSelection(long from
, long to
, bool scrollCaret
)
1199 HWND hWnd
= GetHwnd();
1207 SendMessage(hWnd
, EM_EXSETSEL
, 0, (LPARAM
) &range
);
1210 #endif // wxUSE_RICHEDIT
1212 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)from
, (LPARAM
)to
);
1218 // richedit 3.0 (i.e. the version living in riched20.dll distributed
1219 // with Windows 2000 and beyond) doesn't honour EM_SCROLLCARET when
1220 // emulating richedit 2.0 unless the control has focus or ECO_NOHIDESEL
1221 // option is set (but it does work ok in richedit 1.0 mode...)
1223 // so to make it work we either need to give focus to it here which
1224 // will probably create many problems (dummy focus events; window
1225 // containing the text control being brought to foreground
1226 // unexpectedly; ...) or to temporarily set ECO_NOHIDESEL which may
1227 // create other problems too -- and in fact it does because if we turn
1228 // on/off this style while appending the text to the control, the
1229 // vertical scrollbar never appears in it even if we append tons of
1230 // text and to work around this the only solution I found was to use
1231 // ES_DISABLENOSCROLL
1233 // this is very ugly but I don't see any other way to make this work
1234 if ( GetRichVersion() > 1 )
1236 if ( !HasFlag(wxTE_NOHIDESEL
) )
1238 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1239 ECOOP_OR
, ECO_NOHIDESEL
);
1241 //else: everything is already ok
1243 #endif // wxUSE_RICHEDIT
1245 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
1248 // restore ECO_NOHIDESEL if we changed it
1249 if ( GetRichVersion() > 1 && !HasFlag(wxTE_NOHIDESEL
) )
1251 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1252 ECOOP_AND
, ~ECO_NOHIDESEL
);
1254 #endif // wxUSE_RICHEDIT
1258 // ----------------------------------------------------------------------------
1259 // Working with files
1260 // ----------------------------------------------------------------------------
1262 bool wxTextCtrl::LoadFile(const wxString
& file
)
1264 if ( wxTextCtrlBase::LoadFile(file
) )
1266 // update the size limit if needed
1275 // ----------------------------------------------------------------------------
1277 // ----------------------------------------------------------------------------
1279 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
1281 // Set selection and remove it
1282 DoSetSelection(from
, to
, FALSE
/* don't scroll caret into view */);
1284 DoWriteText(value
, TRUE
/* selection only */);
1287 void wxTextCtrl::Remove(long from
, long to
)
1289 Replace(from
, to
, wxEmptyString
);
1292 bool wxTextCtrl::IsModified() const
1294 return SendMessage(GetHwnd(), EM_GETMODIFY
, 0, 0) != 0;
1297 void wxTextCtrl::MarkDirty()
1299 SendMessage(GetHwnd(), EM_SETMODIFY
, TRUE
, 0L);
1302 void wxTextCtrl::DiscardEdits()
1304 SendMessage(GetHwnd(), EM_SETMODIFY
, FALSE
, 0L);
1307 int wxTextCtrl::GetNumberOfLines() const
1309 return (int)SendMessage(GetHwnd(), EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0);
1312 // ----------------------------------------------------------------------------
1313 // Positions <-> coords
1314 // ----------------------------------------------------------------------------
1316 long wxTextCtrl::XYToPosition(long x
, long y
) const
1318 // This gets the char index for the _beginning_ of this line
1319 long charIndex
= SendMessage(GetHwnd(), EM_LINEINDEX
, (WPARAM
)y
, (LPARAM
)0);
1321 return charIndex
+ x
;
1324 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
1326 HWND hWnd
= GetHwnd();
1328 // This gets the line number containing the character
1333 lineNo
= SendMessage(hWnd
, EM_EXLINEFROMCHAR
, 0, (LPARAM
)pos
);
1336 #endif // wxUSE_RICHEDIT
1338 lineNo
= SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, 0);
1347 // This gets the char index for the _beginning_ of this line
1348 long charIndex
= SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)lineNo
, (LPARAM
)0);
1349 if ( charIndex
== -1 )
1354 // The X position must therefore be the different between pos and charIndex
1356 *x
= pos
- charIndex
;
1363 wxTextCtrlHitTestResult
1364 wxTextCtrl::HitTest(const wxPoint
& pt
, long *posOut
) const
1366 // first get the position from Windows
1373 // for rich edit controls the position is passed iva the struct fields
1376 lParam
= (LPARAM
)&ptl
;
1379 #endif // wxUSE_RICHEDIT
1381 // for the plain ones, we are limited to 16 bit positions which are
1382 // combined in a single 32 bit value
1383 lParam
= MAKELPARAM(pt
.x
, pt
.y
);
1386 LRESULT pos
= SendMessage(GetHwnd(), EM_CHARFROMPOS
, 0, lParam
);
1390 // this seems to indicate an error...
1391 return wxTE_HT_UNKNOWN
;
1396 #endif // wxUSE_RICHEDIT
1398 // for plain EDIT controls the higher word contains something else
1403 // next determine where it is relatively to our point: EM_CHARFROMPOS
1404 // always returns the closest character but we need to be more precise, so
1405 // double check that we really are where it pretends
1409 // FIXME: we need to distinguish between richedit 2 and 3 here somehow but
1410 // we don't know how to do it
1413 SendMessage(GetHwnd(), EM_POSFROMCHAR
, (WPARAM
)&ptReal
, pos
);
1416 #endif // wxUSE_RICHEDIT
1418 LRESULT lRc
= SendMessage(GetHwnd(), EM_POSFROMCHAR
, pos
, 0);
1422 // this is apparently returned when pos corresponds to the last
1429 ptReal
.x
= LOWORD(lRc
);
1430 ptReal
.y
= HIWORD(lRc
);
1434 wxTextCtrlHitTestResult rc
;
1436 if ( pt
.y
> ptReal
.y
+ GetCharHeight() )
1438 else if ( pt
.x
> ptReal
.x
+ GetCharWidth() )
1439 rc
= wxTE_HT_BEYOND
;
1441 rc
= wxTE_HT_ON_TEXT
;
1449 // ----------------------------------------------------------------------------
1451 // ----------------------------------------------------------------------------
1453 void wxTextCtrl::ShowPosition(long pos
)
1455 HWND hWnd
= GetHwnd();
1457 // To scroll to a position, we pass the number of lines and characters
1458 // to scroll *by*. This means that we need to:
1459 // (1) Find the line position of the current line.
1460 // (2) Find the line position of pos.
1461 // (3) Scroll by (pos - current).
1462 // For now, ignore the horizontal scrolling.
1464 // Is this where scrolling is relative to - the line containing the caret?
1465 // Or is the first visible line??? Try first visible line.
1466 // int currentLineLineNo1 = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L);
1468 int currentLineLineNo
= (int)SendMessage(hWnd
, EM_GETFIRSTVISIBLELINE
, (WPARAM
)0, (LPARAM
)0L);
1470 int specifiedLineLineNo
= (int)SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, (LPARAM
)0L);
1472 int linesToScroll
= specifiedLineLineNo
- currentLineLineNo
;
1474 if (linesToScroll
!= 0)
1475 (void)SendMessage(hWnd
, EM_LINESCROLL
, (WPARAM
)0, (LPARAM
)linesToScroll
);
1478 long wxTextCtrl::GetLengthOfLineContainingPos(long pos
) const
1480 return ::SendMessage(GetHwnd(), EM_LINELENGTH
, (WPARAM
)pos
, 0);
1483 int wxTextCtrl::GetLineLength(long lineNo
) const
1485 long pos
= XYToPosition(0, lineNo
);
1487 return GetLengthOfLineContainingPos(pos
);
1490 wxString
wxTextCtrl::GetLineText(long lineNo
) const
1492 size_t len
= (size_t)GetLineLength(lineNo
) + 1;
1494 // there must be at least enough place for the length WORD in the
1496 len
+= sizeof(WORD
);
1500 wxStringBufferLength
tmp(str
, len
);
1503 *(WORD
*)buf
= (WORD
)len
;
1504 len
= (size_t)::SendMessage(GetHwnd(), EM_GETLINE
, lineNo
, (LPARAM
)buf
);
1509 // remove the '\r' returned by the rich edit control, the user code
1510 // should never see it
1511 if ( buf
[len
- 2] == _T('\r') && buf
[len
- 1] == _T('\n') )
1513 buf
[len
- 2] = _T('\n');
1517 #endif // wxUSE_RICHEDIT
1519 // remove the '\n' at the end, if any (this is how this function is
1520 // supposed to work according to the docs)
1521 if ( buf
[len
- 1] == _T('\n') )
1533 void wxTextCtrl::SetMaxLength(unsigned long len
)
1537 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, (LPARAM
) (DWORD
) len
);
1540 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, len
, 0);
1543 // ----------------------------------------------------------------------------
1545 // ----------------------------------------------------------------------------
1547 void wxTextCtrl::Undo()
1551 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
1555 void wxTextCtrl::Redo()
1560 if (GetRichVersion() > 1)
1561 ::SendMessage(GetHwnd(), EM_REDO
, 0, 0);
1564 // Same as Undo, since Undo undoes the undo, i.e. a redo.
1565 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
1569 bool wxTextCtrl::CanUndo() const
1571 return ::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0;
1574 bool wxTextCtrl::CanRedo() const
1577 if (GetRichVersion() > 1)
1578 return ::SendMessage(GetHwnd(), EM_CANREDO
, 0, 0) != 0;
1581 return ::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0;
1584 // ----------------------------------------------------------------------------
1585 // caret handling (Windows only)
1586 // ----------------------------------------------------------------------------
1588 bool wxTextCtrl::ShowNativeCaret(bool show
)
1590 if ( show
!= m_isNativeCaretShown
)
1592 if ( !(show
? ::ShowCaret(GetHwnd()) : ::HideCaret(GetHwnd())) )
1594 // not an error, may simply indicate that it's not shown/hidden
1595 // yet (i.e. it had been hidden/showh 2 times before)
1599 m_isNativeCaretShown
= show
;
1605 // ----------------------------------------------------------------------------
1606 // implemenation details
1607 // ----------------------------------------------------------------------------
1609 void wxTextCtrl::Command(wxCommandEvent
& event
)
1611 SetValue(event
.GetString());
1612 ProcessCommand (event
);
1615 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
1617 // By default, load the first file into the text window.
1618 if (event
.GetNumberOfFiles() > 0)
1620 LoadFile(event
.GetFiles()[0]);
1624 // ----------------------------------------------------------------------------
1625 // kbd input processing
1626 // ----------------------------------------------------------------------------
1628 bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG
* pMsg
)
1630 MSG
*msg
= (MSG
*)pMsg
;
1632 // check for our special keys here: if we don't do it and the parent frame
1633 // uses them as accelerators, they wouldn't work at all, so we disable
1634 // usual preprocessing for them
1635 if ( msg
->message
== WM_KEYDOWN
)
1637 WORD vkey
= (WORD
) msg
->wParam
;
1638 if ( (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
1640 if ( vkey
== VK_BACK
)
1645 // we want to process some Ctrl-foo and Shift-bar but no key
1646 // combinations without either Ctrl or Shift nor with both of them
1648 const int ctrl
= wxIsCtrlDown(),
1649 shift
= wxIsShiftDown();
1650 switch ( ctrl
+ shift
)
1653 wxFAIL_MSG( _T("how many modifiers have we got?") );
1661 // either Ctrl or Shift pressed
1676 else // Shift is pressed
1678 if ( vkey
== VK_INSERT
|| vkey
== VK_DELETE
)
1685 return wxControl::MSWShouldPreProcessMessage(pMsg
);
1688 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
1690 switch ( event
.GetKeyCode() )
1693 if ( !HasFlag(wxTE_MULTILINE
) )
1695 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1696 InitCommandEvent(event
);
1697 event
.SetString(GetValue());
1698 if ( GetEventHandler()->ProcessEvent(event
) )
1701 //else: multiline controls need Enter for themselves
1706 // ok, so this is getting absolutely ridiculous but I don't see
1707 // any other way to fix this bug: when a multiline text control is
1708 // inside a wxFrame, we need to generate the navigation event as
1709 // otherwise nothing happens at all, but when the same control is
1710 // created inside a dialog, IsDialogMessage() *does* switch focus
1711 // all by itself and so if we do it here as well, it is advanced
1712 // twice and goes to the next control... to prevent this from
1713 // happening we're doing this ugly check, the logic being that if
1714 // we don't have focus then it had been already changed to the next
1717 // the right thing to do would, of course, be to understand what
1718 // the hell is IsDialogMessage() doing but this is beyond my feeble
1719 // forces at the moment unfortunately
1720 if ( !(m_windowStyle
& wxTE_PROCESS_TAB
))
1722 if ( FindFocus() == this )
1725 if (!event
.ShiftDown())
1726 flags
|= wxNavigationKeyEvent::IsForward
;
1727 if (event
.ControlDown())
1728 flags
|= wxNavigationKeyEvent::WinChange
;
1729 if (Navigate(flags
))
1735 // Insert tab since calling the default Windows handler
1736 // doesn't seem to do it
1737 WriteText(wxT("\t"));
1742 // no, we didn't process it
1746 WXLRESULT
wxTextCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1748 WXLRESULT lRc
= wxTextCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
1750 if ( nMsg
== WM_GETDLGCODE
)
1752 // we always want the chars and the arrows: the arrows for navigation
1753 // and the chars because we want Ctrl-C to work even in a read only
1755 long lDlgCode
= DLGC_WANTCHARS
| DLGC_WANTARROWS
;
1759 // we may have several different cases:
1760 // 1. normal case: both TAB and ENTER are used for dlg navigation
1761 // 2. ctrl which wants TAB for itself: ENTER is used to pass to the
1762 // next control in the dialog
1763 // 3. ctrl which wants ENTER for itself: TAB is used for dialog
1765 // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to go
1766 // to the next control
1768 // the multiline edit control should always get <Return> for itself
1769 if ( HasFlag(wxTE_PROCESS_ENTER
) || HasFlag(wxTE_MULTILINE
) )
1770 lDlgCode
|= DLGC_WANTMESSAGE
;
1772 if ( HasFlag(wxTE_PROCESS_TAB
) )
1773 lDlgCode
|= DLGC_WANTTAB
;
1779 // NB: use "=", not "|=" as the base class version returns the
1780 // same flags is this state as usual (i.e. including
1781 // DLGC_WANTMESSAGE). This is strange (how does it work in the
1782 // native Win32 apps?) but for now live with it.
1790 // ----------------------------------------------------------------------------
1791 // text control event processing
1792 // ----------------------------------------------------------------------------
1794 bool wxTextCtrl::SendUpdateEvent()
1796 // is event reporting suspended?
1797 if ( m_suppressNextUpdate
)
1799 // do process the next one
1800 m_suppressNextUpdate
= FALSE
;
1805 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, GetId());
1806 InitCommandEvent(event
);
1807 event
.SetString(GetValue());
1809 return ProcessCommand(event
);
1812 bool wxTextCtrl::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
1819 wxFocusEvent
event(param
== EN_KILLFOCUS
? wxEVT_KILL_FOCUS
1822 event
.SetEventObject(this);
1823 GetEventHandler()->ProcessEvent(event
);
1832 // the text size limit has been hit -- try to increase it
1833 if ( !AdjustSpaceLimit() )
1835 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, m_windowId
);
1836 InitCommandEvent(event
);
1837 event
.SetString(GetValue());
1838 ProcessCommand(event
);
1842 // the other edit notification messages are not processed
1851 WXHBRUSH
wxTextCtrl::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
1857 WXUINT
WXUNUSED(message
),
1858 WXWPARAM
WXUNUSED(wParam
),
1859 WXLPARAM
WXUNUSED(lParam
)
1866 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
1867 return (WXHBRUSH
) hbrush
;
1869 #endif // wxUSE_CTL3D
1872 wxColour colBack
= GetBackgroundColour();
1874 if (!IsEnabled() && (GetWindowStyle() & wxTE_MULTILINE
) == 0)
1875 colBack
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
1877 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
1878 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
1880 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
1882 return (WXHBRUSH
)brush
->GetResourceHandle();
1885 bool wxTextCtrl::AdjustSpaceLimit()
1887 unsigned int limit
= ::SendMessage(GetHwnd(), EM_GETLIMITTEXT
, 0, 0);
1889 // HACK: we try to automatically extend the limit for the amount of text
1890 // to allow (interactively) entering more than 64Kb of text under
1891 // Win9x but we shouldn't reset the text limit which was previously
1892 // set explicitly with SetMaxLength()
1894 // we could solve this by storing the limit we set in wxTextCtrl but
1895 // to save space we prefer to simply test here the actual limit
1896 // value: we consider that SetMaxLength() can only be called for
1898 if ( limit
< 0x8000 )
1900 // we've got more text than limit set by SetMaxLength()
1904 unsigned int len
= ::GetWindowTextLength(GetHwnd());
1907 limit
= len
+ 0x8000; // 32Kb
1912 // as a nice side effect, this also allows passing limit > 64Kb
1913 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, limit
);
1916 #endif // wxUSE_RICHEDIT
1918 if ( limit
> 0xffff )
1920 // this will set it to a platform-dependent maximum (much more
1921 // than 64Kb under NT)
1925 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, limit
, 0);
1929 // we changed the limit
1933 bool wxTextCtrl::AcceptsFocus() const
1935 // we don't want focus if we can't be edited unless we're a multiline
1936 // control because then it might be still nice to get focus from keyboard
1937 // to be able to scroll it without mouse
1938 return (IsEditable() || IsMultiLine()) && wxControl::AcceptsFocus();
1941 wxSize
wxTextCtrl::DoGetBestSize() const
1944 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
1946 int wText
= DEFAULT_ITEM_WIDTH
;
1949 if ( m_windowStyle
& wxTE_MULTILINE
)
1951 hText
*= wxMax(GetNumberOfLines(), 5);
1953 //else: for single line control everything is ok
1955 // we have to add the adjustments for the control height only once, not
1956 // once per line, so do it after multiplication above
1957 hText
+= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
) - cy
;
1959 return wxSize(wText
, hText
);
1962 // ----------------------------------------------------------------------------
1963 // standard handlers for standard edit menu events
1964 // ----------------------------------------------------------------------------
1966 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1971 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1976 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1981 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1986 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1991 void wxTextCtrl::OnDelete(wxCommandEvent
& WXUNUSED(event
))
1994 GetSelection(& from
, & to
);
1995 if (from
!= -1 && to
!= -1)
1999 void wxTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
2001 SetSelection(-1, -1);
2004 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
2006 event
.Enable( CanCut() );
2009 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
2011 event
.Enable( CanCopy() );
2014 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
2016 event
.Enable( CanPaste() );
2019 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
2021 event
.Enable( CanUndo() );
2024 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
2026 event
.Enable( CanRedo() );
2029 void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent
& event
)
2032 GetSelection(& from
, & to
);
2033 event
.Enable(from
!= -1 && to
!= -1 && from
!= to
&& IsEditable()) ;
2036 void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
2038 event
.Enable(GetLastPosition() > 0);
2041 void wxTextCtrl::OnRightClick(wxMouseEvent
& event
)
2046 if (!m_privateContextMenu
)
2048 m_privateContextMenu
= new wxMenu
;
2049 m_privateContextMenu
->Append(wxID_UNDO
, _("&Undo"));
2050 m_privateContextMenu
->Append(wxID_REDO
, _("&Redo"));
2051 m_privateContextMenu
->AppendSeparator();
2052 m_privateContextMenu
->Append(wxID_CUT
, _("Cu&t"));
2053 m_privateContextMenu
->Append(wxID_COPY
, _("&Copy"));
2054 m_privateContextMenu
->Append(wxID_PASTE
, _("&Paste"));
2055 m_privateContextMenu
->Append(wxID_CLEAR
, _("&Delete"));
2056 m_privateContextMenu
->AppendSeparator();
2057 m_privateContextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
2059 PopupMenu(m_privateContextMenu
, event
.GetPosition());
2067 void wxTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
2069 // be sure the caret remains invisible if the user had hidden it
2070 if ( !m_isNativeCaretShown
)
2072 ::HideCaret(GetHwnd());
2076 // the rest of the file only deals with the rich edit controls
2079 // ----------------------------------------------------------------------------
2080 // EN_LINK processing
2081 // ----------------------------------------------------------------------------
2083 bool wxTextCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
2085 NMHDR
*hdr
= (NMHDR
* )lParam
;
2086 switch ( hdr
->code
)
2090 const MSGFILTER
*msgf
= (MSGFILTER
*)lParam
;
2091 UINT msg
= msgf
->msg
;
2093 // this is a bit crazy but richedit 1.0 sends us all mouse
2094 // events _except_ WM_LBUTTONUP (don't ask me why) so we have
2095 // generate the wxWin events for this message manually
2097 // NB: in fact, this is still not totally correct as it does
2098 // send us WM_LBUTTONUP if the selection was cleared by the
2099 // last click -- so currently we get 2 events in this case,
2100 // but as I don't see any obvious way to check for this I
2101 // leave this code in place because it's still better than
2102 // not getting left up events at all
2103 if ( msg
== WM_LBUTTONUP
)
2105 WXUINT flags
= msgf
->wParam
;
2106 int x
= GET_X_LPARAM(msgf
->lParam
),
2107 y
= GET_Y_LPARAM(msgf
->lParam
);
2109 HandleMouseEvent(msg
, x
, y
, flags
);
2113 // return TRUE to process the event (and FALSE to ignore it)
2118 const ENLINK
*enlink
= (ENLINK
*)hdr
;
2120 switch ( enlink
->msg
)
2123 // ok, so it is hardcoded - do we really nee to
2125 ::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND
)));
2130 case WM_LBUTTONDOWN
:
2132 case WM_LBUTTONDBLCLK
:
2133 case WM_RBUTTONDOWN
:
2135 case WM_RBUTTONDBLCLK
:
2136 // send a mouse event
2138 static const wxEventType eventsMouse
[] =
2149 // the event ids are consecutive
2151 evtMouse(eventsMouse
[enlink
->msg
- WM_MOUSEMOVE
]);
2153 InitMouseEvent(evtMouse
,
2154 GET_X_LPARAM(enlink
->lParam
),
2155 GET_Y_LPARAM(enlink
->lParam
),
2158 wxTextUrlEvent
event(m_windowId
, evtMouse
,
2160 enlink
->chrg
.cpMax
);
2162 InitCommandEvent(event
);
2164 *result
= ProcessCommand(event
);
2172 // not processed, leave it to the base class
2173 return wxTextCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
);
2176 // ----------------------------------------------------------------------------
2177 // colour setting for the rich edit controls
2178 // ----------------------------------------------------------------------------
2180 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
2182 if ( !wxTextCtrlBase::SetBackgroundColour(colour
) )
2184 // colour didn't really change
2190 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
2191 // EM_SETBKGNDCOLOR additionally
2192 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR
, 0, wxColourToRGB(colour
));
2198 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
2200 if ( !wxTextCtrlBase::SetForegroundColour(colour
) )
2202 // colour didn't really change
2208 // change the colour of everything
2211 cf
.cbSize
= sizeof(cf
);
2212 cf
.dwMask
= CFM_COLOR
;
2213 cf
.crTextColor
= wxColourToRGB(colour
);
2214 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
, SCF_ALL
, (LPARAM
)&cf
);
2220 // ----------------------------------------------------------------------------
2221 // styling support for rich edit controls
2222 // ----------------------------------------------------------------------------
2226 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
2230 // can't do it with normal text control
2234 // the richedit 1.0 doesn't handle setting background colour, so don't
2235 // even try to do anything if it's the only thing we want to change
2236 if ( m_verRichEdit
== 1 && !style
.HasFont() && !style
.HasTextColour() &&
2237 !style
.HasLeftIndent() && !style
.HasRightIndent() && !style
.HasAlignment() &&
2240 // nothing to do: return TRUE if there was really nothing to do and
2241 // FALSE if we failed to set bg colour
2242 return !style
.HasBackgroundColour();
2245 // order the range if needed
2253 // we can only change the format of the selection, so select the range we
2254 // want and restore the old selection later
2255 long startOld
, endOld
;
2256 GetSelection(&startOld
, &endOld
);
2258 // but do we really have to change the selection?
2259 bool changeSel
= start
!= startOld
|| end
!= endOld
;
2263 DoSetSelection(start
, end
, FALSE
/* don't scroll caret into view */);
2266 // initialize CHARFORMAT struct
2275 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2276 // CHARFORMAT in that case
2278 if ( m_verRichEdit
== 1 )
2280 // this is the only thing the control is going to grok
2281 cf
.cbSize
= sizeof(CHARFORMAT
);
2286 // CHARFORMAT or CHARFORMAT2
2287 cf
.cbSize
= sizeof(cf
);
2290 if ( style
.HasFont() )
2292 // VZ: CFM_CHARSET doesn't seem to do anything at all in RichEdit 2.0
2293 // but using it doesn't seem to hurt neither so leaving it for now
2295 cf
.dwMask
|= CFM_FACE
| CFM_SIZE
| CFM_CHARSET
|
2296 CFM_ITALIC
| CFM_BOLD
| CFM_UNDERLINE
;
2298 // fill in data from LOGFONT but recalculate lfHeight because we need
2299 // the real height in twips and not the negative number which
2300 // wxFillLogFont() returns (this is correct in general and works with
2301 // the Windows font mapper, but not here)
2303 wxFillLogFont(&lf
, &style
.GetFont());
2304 cf
.yHeight
= 20*style
.GetFont().GetPointSize(); // 1 pt = 20 twips
2305 cf
.bCharSet
= lf
.lfCharSet
;
2306 cf
.bPitchAndFamily
= lf
.lfPitchAndFamily
;
2307 wxStrncpy( cf
.szFaceName
, lf
.lfFaceName
, WXSIZEOF(cf
.szFaceName
) );
2309 // also deal with underline/italic/bold attributes: note that we must
2310 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
2311 // style to allow clearing it
2314 cf
.dwEffects
|= CFE_ITALIC
;
2317 if ( lf
.lfWeight
== FW_BOLD
)
2319 cf
.dwEffects
|= CFE_BOLD
;
2322 if ( lf
.lfUnderline
)
2324 cf
.dwEffects
|= CFE_UNDERLINE
;
2327 // strikeout fonts are not supported by wxWidgets
2330 if ( style
.HasTextColour() )
2332 cf
.dwMask
|= CFM_COLOR
;
2333 cf
.crTextColor
= wxColourToRGB(style
.GetTextColour());
2337 if ( m_verRichEdit
!= 1 && style
.HasBackgroundColour() )
2339 cf
.dwMask
|= CFM_BACKCOLOR
;
2340 cf
.crBackColor
= wxColourToRGB(style
.GetBackgroundColour());
2342 #endif // wxUSE_RICHEDIT2
2344 // do format the selection
2345 bool ok
= ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
,
2346 SCF_SELECTION
, (LPARAM
)&cf
) != 0;
2349 wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed"));
2352 // now do the paragraph formatting
2355 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2356 // PARAFORMAT in that case
2358 if ( m_verRichEdit
== 1 )
2360 // this is the only thing the control is going to grok
2361 pf
.cbSize
= sizeof(PARAFORMAT
);
2366 // PARAFORMAT or PARAFORMAT2
2367 pf
.cbSize
= sizeof(pf
);
2370 if (style
.HasAlignment())
2372 pf
.dwMask
|= PFM_ALIGNMENT
;
2373 if (style
.GetAlignment() == wxTEXT_ALIGNMENT_RIGHT
)
2374 pf
.wAlignment
= PFA_RIGHT
;
2375 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_CENTRE
)
2376 pf
.wAlignment
= PFA_CENTER
;
2377 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_JUSTIFIED
)
2378 pf
.wAlignment
= PFA_JUSTIFY
;
2380 pf
.wAlignment
= PFA_LEFT
;
2383 if (style
.HasLeftIndent())
2385 pf
.dwMask
|= PFM_STARTINDENT
| PFM_OFFSET
;
2387 // Convert from 1/10 mm to TWIPS
2388 pf
.dxStartIndent
= (int) (((double) style
.GetLeftIndent()) * mm2twips
/ 10.0) ;
2389 pf
.dxOffset
= (int) (((double) style
.GetLeftSubIndent()) * mm2twips
/ 10.0) ;
2392 if (style
.HasRightIndent())
2394 pf
.dwMask
|= PFM_RIGHTINDENT
;
2396 // Convert from 1/10 mm to TWIPS
2397 pf
.dxRightIndent
= (int) (((double) style
.GetRightIndent()) * mm2twips
/ 10.0) ;
2400 if (style
.HasTabs())
2402 pf
.dwMask
|= PFM_TABSTOPS
;
2404 const wxArrayInt
& tabs
= style
.GetTabs();
2406 pf
.cTabCount
= wxMin(tabs
.GetCount(), MAX_TAB_STOPS
);
2408 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2410 // Convert from 1/10 mm to TWIPS
2411 pf
.rgxTabs
[i
] = (int) (((double) tabs
[i
]) * mm2twips
/ 10.0) ;
2417 // do format the selection
2418 bool ok
= ::SendMessage(GetHwnd(), EM_SETPARAFORMAT
,
2419 0, (LPARAM
) &pf
) != 0;
2422 wxLogDebug(_T("SendMessage(EM_SETPARAFORMAT, 0) failed"));
2428 // restore the original selection
2429 DoSetSelection(startOld
, endOld
, FALSE
);
2435 bool wxTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
2437 if ( !wxTextCtrlBase::SetDefaultStyle(style
) )
2440 // we have to do this or the style wouldn't apply for the text typed by the
2442 long posLast
= GetLastPosition();
2443 SetStyle(posLast
, posLast
, m_defaultStyle
);
2448 bool wxTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
2452 // can't do it with normal text control
2456 // initialize CHARFORMAT struct
2465 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2466 // CHARFORMAT in that case
2468 if ( m_verRichEdit
== 1 )
2470 // this is the only thing the control is going to grok
2471 cf
.cbSize
= sizeof(CHARFORMAT
);
2476 // CHARFORMAT or CHARFORMAT2
2477 cf
.cbSize
= sizeof(cf
);
2479 // we can only change the format of the selection, so select the range we
2480 // want and restore the old selection later
2481 long startOld
, endOld
;
2482 GetSelection(&startOld
, &endOld
);
2484 // but do we really have to change the selection?
2485 bool changeSel
= position
!= startOld
|| position
!= endOld
;
2489 DoSetSelection(position
, position
, FALSE
/* don't scroll caret into view */);
2492 // get the selection formatting
2493 (void) ::SendMessage(GetHwnd(), EM_GETCHARFORMAT
,
2494 SCF_SELECTION
, (LPARAM
)&cf
) ;
2497 lf
.lfHeight
= cf
.yHeight
;
2499 lf
.lfCharSet
= ANSI_CHARSET
; // FIXME: how to get correct charset?
2500 lf
.lfClipPrecision
= 0;
2501 lf
.lfEscapement
= 0;
2502 wxStrcpy(lf
.lfFaceName
, cf
.szFaceName
);
2503 if (cf
.dwEffects
& CFE_ITALIC
)
2505 lf
.lfOrientation
= 0;
2506 lf
.lfPitchAndFamily
= cf
.bPitchAndFamily
;
2508 if (cf
.dwEffects
& CFE_STRIKEOUT
)
2509 lf
.lfStrikeOut
= TRUE
;
2510 if (cf
.dwEffects
& CFE_UNDERLINE
)
2511 lf
.lfUnderline
= TRUE
;
2512 if (cf
.dwEffects
& CFE_BOLD
)
2513 lf
.lfWeight
= FW_BOLD
;
2515 wxFont font
= wxCreateFontFromLogFont(& lf
);
2518 style
.SetFont(font
);
2520 style
.SetTextColour(wxColour(cf
.crTextColor
));
2523 if ( m_verRichEdit
!= 1 )
2525 // cf.dwMask |= CFM_BACKCOLOR;
2526 style
.SetBackgroundColour(wxColour(cf
.crBackColor
));
2528 #endif // wxUSE_RICHEDIT2
2530 // now get the paragraph formatting
2533 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2534 // PARAFORMAT in that case
2536 if ( m_verRichEdit
== 1 )
2538 // this is the only thing the control is going to grok
2539 pf
.cbSize
= sizeof(PARAFORMAT
);
2544 // PARAFORMAT or PARAFORMAT2
2545 pf
.cbSize
= sizeof(pf
);
2548 // do format the selection
2549 (void) ::SendMessage(GetHwnd(), EM_GETPARAFORMAT
, 0, (LPARAM
) &pf
) ;
2551 style
.SetLeftIndent( (int) ((double) pf
.dxStartIndent
* twips2mm
* 10.0), (int) ((double) pf
.dxOffset
* twips2mm
* 10.0) );
2552 style
.SetRightIndent( (int) ((double) pf
.dxRightIndent
* twips2mm
* 10.0) );
2554 if (pf
.wAlignment
== PFA_CENTER
)
2555 style
.SetAlignment(wxTEXT_ALIGNMENT_CENTRE
);
2556 else if (pf
.wAlignment
== PFA_RIGHT
)
2557 style
.SetAlignment(wxTEXT_ALIGNMENT_RIGHT
);
2558 else if (pf
.wAlignment
== PFA_JUSTIFY
)
2559 style
.SetAlignment(wxTEXT_ALIGNMENT_JUSTIFIED
);
2561 style
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
2563 wxArrayInt tabStops
;
2565 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2567 tabStops
.Add( (int) ((double) (pf
.rgxTabs
[i
] & 0xFFFF) * twips2mm
* 10.0) );
2572 // restore the original selection
2573 DoSetSelection(startOld
, endOld
, FALSE
);
2581 // ----------------------------------------------------------------------------
2583 // ----------------------------------------------------------------------------
2585 bool wxRichEditModule::OnInit()
2587 // don't do anything - we will load it when needed
2591 void wxRichEditModule::OnExit()
2593 for ( size_t i
= 0; i
< WXSIZEOF(ms_hRichEdit
); i
++ )
2595 if ( ms_hRichEdit
[i
] )
2597 ::FreeLibrary(ms_hRichEdit
[i
]);
2598 ms_hRichEdit
[i
] = NULL
;
2604 bool wxRichEditModule::Load(int version
)
2606 // we don't support loading richedit 3.0 as I don't know how to distinguish
2607 // it from 2.0 anyhow
2608 wxCHECK_MSG( version
== 1 || version
== 2, FALSE
,
2609 _T("incorrect richedit control version requested") );
2611 // make it the index in the array
2614 if ( ms_hRichEdit
[version
] == (HINSTANCE
)-1 )
2616 // we had already tried to load it and failed
2620 if ( ms_hRichEdit
[version
] )
2622 // we've already got this one
2626 wxString dllname
= version
? _T("riched20") : _T("riched32");
2627 dllname
+= _T(".dll");
2629 ms_hRichEdit
[version
] = ::LoadLibrary(dllname
);
2631 if ( !ms_hRichEdit
[version
] )
2633 wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname
.c_str());
2635 ms_hRichEdit
[version
] = (HINSTANCE
)-1;
2643 #endif // wxUSE_RICHEDIT
2645 #endif // wxUSE_TEXTCTRL