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 ( !CreateBase(parent
, id
, pos
, size
, style
, validator
, name
) )
252 parent
->AddChild(this);
254 // translate wxWin style flags to MSW ones
255 WXDWORD msStyle
= MSWGetCreateWindowFlags();
257 // do create the control - either an EDIT or RICHEDIT
258 wxString windowClass
= wxT("EDIT");
261 if ( m_windowStyle
& wxTE_AUTO_URL
)
263 // automatic URL detection only works in RichEdit 2.0+
264 m_windowStyle
|= wxTE_RICH2
;
267 if ( m_windowStyle
& wxTE_RICH2
)
269 // using richedit 2.0 implies using wxTE_RICH
270 m_windowStyle
|= wxTE_RICH
;
273 // we need to load the richedit DLL before creating the rich edit control
274 if ( m_windowStyle
& wxTE_RICH
)
276 static bool s_errorGiven
= FALSE
;// MT-FIXME
278 // Which version do we need? Use 1.0 by default because it is much more
279 // like the the standard EDIT or 2.0 if explicitly requested, but use
280 // only 2.0 in Unicode mode as 1.0 doesn't support Unicode at all
282 // TODO: RichEdit 3.0 is apparently capable of emulating RichEdit 1.0
283 // (and thus EDIT) much better than RichEdit 2.0 so we probably
284 // should use 3.0 if available as it is the best of both worlds -
285 // but as I can't test it right now I don't do it (VZ)
287 const int verRichEdit
= 2;
288 #else // !wxUSE_UNICODE
289 int verRichEdit
= m_windowStyle
& wxTE_RICH2
? 2 : 1;
290 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
292 // only give the error msg once if the DLL can't be loaded
295 // try to load the RichEdit DLL (will do nothing if already done)
296 if ( !wxRichEditModule::Load(verRichEdit
) )
299 // try another version?
300 verRichEdit
= 3 - verRichEdit
; // 1 <-> 2
302 if ( !wxRichEditModule::Load(verRichEdit
) )
303 #endif // wxUSE_UNICODE
305 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
312 // have we managed to load any richedit version?
315 m_verRichEdit
= verRichEdit
;
316 if ( m_verRichEdit
== 1 )
318 windowClass
= wxT("RICHEDIT");
322 #ifndef RICHEDIT_CLASS
323 wxString RICHEDIT_CLASS
;
324 RICHEDIT_CLASS
.Printf(_T("RichEdit%d0"), m_verRichEdit
);
326 RICHEDIT_CLASS
+= _T('W');
328 RICHEDIT_CLASS
+= _T('A');
329 #endif // Unicode/ANSI
330 #endif // !RICHEDIT_CLASS
332 windowClass
= RICHEDIT_CLASS
;
336 #endif // wxUSE_RICHEDIT
338 // we need to turn '\n's into "\r\n"s for the multiline controls
340 if ( m_windowStyle
& wxTE_MULTILINE
)
342 valueWin
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
349 if ( !MSWCreateControl(windowClass
, msStyle
, pos
, size
, valueWin
) )
352 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
357 // enable the events we're interested in: we want to get EN_CHANGE as
358 // for the normal controls
359 LPARAM mask
= ENM_CHANGE
;
361 if ( GetRichVersion() == 1 )
363 // we also need EN_MSGFILTER for richedit 1.0 for the reasons
364 // explained in its handler
365 mask
|= ENM_MOUSEEVENTS
;
367 else if ( m_windowStyle
& wxTE_AUTO_URL
)
371 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT
, TRUE
, 0);
374 ::SendMessage(GetHwnd(), EM_SETEVENTMASK
, 0, mask
);
376 #endif // wxUSE_RICHEDIT
381 // Make sure the window style (etc.) reflects the HWND style (roughly)
382 void wxTextCtrl::AdoptAttributesFromHWND()
384 wxWindow::AdoptAttributesFromHWND();
386 HWND hWnd
= GetHwnd();
387 long style
= ::GetWindowLong(hWnd
, GWL_STYLE
);
389 // retrieve the style to see whether this is an edit or richedit ctrl
391 wxString classname
= wxGetWindowClass(GetHWND());
393 if ( classname
.IsSameAs(_T("EDIT"), FALSE
/* no case */) )
400 if ( wxSscanf(classname
, _T("RichEdit%d0%c"), &m_verRichEdit
, &c
) != 2 )
402 wxLogDebug(_T("Unknown edit control '%s'."), classname
.c_str());
407 #endif // wxUSE_RICHEDIT
409 if (style
& ES_MULTILINE
)
410 m_windowStyle
|= wxTE_MULTILINE
;
411 if (style
& ES_PASSWORD
)
412 m_windowStyle
|= wxTE_PASSWORD
;
413 if (style
& ES_READONLY
)
414 m_windowStyle
|= wxTE_READONLY
;
415 if (style
& ES_WANTRETURN
)
416 m_windowStyle
|= wxTE_PROCESS_ENTER
;
417 if (style
& ES_CENTER
)
418 m_windowStyle
|= wxTE_CENTRE
;
419 if (style
& ES_RIGHT
)
420 m_windowStyle
|= wxTE_RIGHT
;
423 WXDWORD
wxTextCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
425 long msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
427 // styles which we alaways add by default
428 if ( style
& wxTE_MULTILINE
)
430 wxASSERT_MSG( !(style
& wxTE_PROCESS_ENTER
),
431 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
433 msStyle
|= ES_MULTILINE
| ES_WANTRETURN
;
434 if ( !(style
& wxTE_NO_VSCROLL
) )
436 // always adjust the vertical scrollbar automatically if we have it
437 msStyle
|= WS_VSCROLL
| ES_AUTOVSCROLL
;
440 // we have to use this style for the rich edit controls because
441 // without it the vertical scrollbar never appears at all in
442 // richedit 3.0 because of our ECO_NOHIDESEL hack (search for it)
443 if ( style
& wxTE_RICH2
)
445 msStyle
|= ES_DISABLENOSCROLL
;
447 #endif // wxUSE_RICHEDIT
450 style
|= wxTE_PROCESS_ENTER
;
454 // there is really no reason to not have this style for single line
456 msStyle
|= ES_AUTOHSCROLL
;
459 // note that wxTE_DONTWRAP is the same as wxHSCROLL so if we have a horz
460 // scrollbar, there is no wrapping -- which makes sense
461 if ( style
& wxTE_DONTWRAP
)
463 // automatically scroll the control horizontally as necessary
465 // NB: ES_AUTOHSCROLL is needed for richedit controls or they don't
466 // show horz scrollbar at all, even in spite of WS_HSCROLL, and as
467 // it doesn't seem to do any harm for plain edit controls, add it
469 msStyle
|= WS_HSCROLL
| ES_AUTOHSCROLL
;
472 if ( style
& wxTE_READONLY
)
473 msStyle
|= ES_READONLY
;
475 if ( style
& wxTE_PASSWORD
)
476 msStyle
|= ES_PASSWORD
;
478 if ( style
& wxTE_NOHIDESEL
)
479 msStyle
|= ES_NOHIDESEL
;
481 // note that we can't do do "& wxTE_LEFT" as wxTE_LEFT == 0
482 if ( style
& wxTE_CENTRE
)
483 msStyle
|= ES_CENTER
;
484 else if ( style
& wxTE_RIGHT
)
487 msStyle
|= ES_LEFT
; // ES_LEFT is 0 as well but for consistency...
492 void wxTextCtrl::SetWindowStyleFlag(long style
)
495 // we have to deal with some styles separately because they can't be
496 // changed by simply calling SetWindowLong(GWL_STYLE) but can be changed
497 // using richedit-specific EM_SETOPTIONS
499 ((style
& wxTE_NOHIDESEL
) != (GetWindowStyle() & wxTE_NOHIDESEL
)) )
501 bool set
= (style
& wxTE_NOHIDESEL
) != 0;
503 ::SendMessage(GetHwnd(), EM_SETOPTIONS
, set
? ECOOP_OR
: ECOOP_AND
,
504 set
? ECO_NOHIDESEL
: ~ECO_NOHIDESEL
);
506 #endif // wxUSE_RICHEDIT
508 wxControl::SetWindowStyleFlag(style
);
511 // ----------------------------------------------------------------------------
512 // set/get the controls text
513 // ----------------------------------------------------------------------------
515 wxString
wxTextCtrl::GetValue() const
517 // range 0..-1 is special for GetRange() and means to retrieve all text
518 return GetRange(0, -1);
521 wxString
wxTextCtrl::GetRange(long from
, long to
) const
525 if ( from
>= to
&& to
!= -1 )
527 // nothing to retrieve
534 int len
= GetWindowTextLength(GetHwnd());
541 // we must use EM_STREAMOUT if we don't want to lose all characters
542 // not representable in the current character set (EM_GETTEXTRANGE
543 // simply replaces them with question marks...)
544 if ( GetRichVersion() > 1 )
546 // we must have some encoding, otherwise any 8bit chars in the
547 // control are simply *lost* (replaced by '?')
548 wxFontEncoding encoding
= wxFONTENCODING_SYSTEM
;
550 wxFont font
= m_defaultStyle
.GetFont();
556 encoding
= font
.GetEncoding();
559 if ( encoding
== wxFONTENCODING_SYSTEM
)
561 encoding
= wxLocale::GetSystemEncoding();
564 if ( encoding
== wxFONTENCODING_SYSTEM
)
566 encoding
= wxFONTENCODING_ISO8859_1
;
569 str
= StreamOut(encoding
);
573 // we have to manually extract the required part, luckily
574 // this is easy in this case as EOL characters in str are
575 // just LFs because we remove CRs in wxRichEditStreamOut
576 str
= str
.Mid(from
, to
- from
);
580 // StreamOut() wasn't used or failed, try to do it in normal way
582 #endif // !wxUSE_UNICODE
584 // alloc one extra WORD as needed by the control
585 wxStringBuffer
tmp(str
, ++len
);
589 textRange
.chrg
.cpMin
= from
;
590 textRange
.chrg
.cpMax
= to
;
591 textRange
.lpstrText
= p
;
593 (void)SendMessage(GetHwnd(), EM_GETTEXTRANGE
,
594 0, (LPARAM
)&textRange
);
596 if ( m_verRichEdit
> 1 )
598 // RichEdit 2.0 uses just CR ('\r') for the
599 // newlines which is neither Unix nor Windows
600 // style - convert it to something reasonable
603 if ( *p
== _T('\r') )
609 if ( m_verRichEdit
== 1 )
611 // convert to the canonical form - see comment below
612 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
615 //else: no text at all, leave the string empty
618 #endif // wxUSE_RICHEDIT
621 str
= wxGetWindowText(GetHWND());
623 // need only a range?
626 str
= str
.Mid(from
, to
- from
);
629 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
630 // canonical one (same one as above) for consistency with the other kinds
631 // of controls and, more importantly, with the other ports
632 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
638 void wxTextCtrl::SetValue(const wxString
& value
)
640 // if the text is long enough, it's faster to just set it instead of first
641 // comparing it with the old one (chances are that it will be different
642 // anyhow, this comparison is there to avoid flicker for small single-line
643 // edit controls mostly)
644 if ( (value
.length() > 0x400) || (value
!= GetValue()) )
646 DoWriteText(value
, FALSE
/* not selection only */);
648 // for compatibility, don't move the cursor when doing SetValue()
649 SetInsertionPoint(0);
653 // still send an event for consistency
657 // we should reset the modified flag even if the value didn't really change
659 // mark the control as being not dirty - we changed its text, not the
664 #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)
666 // TODO: using memcpy() would improve performance a lot for big amounts of text
669 wxRichEditStreamIn(DWORD dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
673 const wchar_t ** const ppws
= (const wchar_t **)dwCookie
;
675 wchar_t *wbuf
= (wchar_t *)buf
;
676 const wchar_t *wpc
= *ppws
;
681 cb
-= sizeof(wchar_t);
682 (*pcb
) += sizeof(wchar_t);
690 // helper struct used to pass parameters from wxTextCtrl to wxRichEditStreamOut
691 struct wxStreamOutData
698 wxRichEditStreamOut(DWORD_PTR dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
702 wxStreamOutData
*data
= (wxStreamOutData
*)dwCookie
;
704 const wchar_t *wbuf
= (const wchar_t *)buf
;
705 wchar_t *wpc
= data
->wpc
;
708 wchar_t wch
= *wbuf
++;
710 // turn "\r\n" into "\n" on the fly
716 cb
-= sizeof(wchar_t);
717 (*pcb
) += sizeof(wchar_t);
726 #if wxUSE_UNICODE_MSLU
727 #define UNUSED_IF_MSLU(param)
729 #define UNUSED_IF_MSLU(param) param
733 wxTextCtrl::StreamIn(const wxString
& value
,
734 wxFontEncoding
UNUSED_IF_MSLU(encoding
),
737 #if wxUSE_UNICODE_MSLU
738 const wchar_t *wpc
= value
.c_str();
739 #else // !wxUSE_UNICODE_MSLU
740 wxCSConv
conv(encoding
);
742 const size_t len
= conv
.MB2WC(NULL
, value
, value
.length());
745 wxWCharBuffer
wchBuf(len
);
746 wchar_t *wpc
= wchBuf
.data();
748 wchar_t *wchBuf
= (wchar_t *)malloc((len
+ 1)*sizeof(wchar_t));
749 wchar_t *wpc
= wchBuf
;
752 conv
.MB2WC(wpc
, value
, value
.length());
753 #endif // wxUSE_UNICODE_MSLU
755 // finally, stream it in the control
758 eds
.dwCookie
= (DWORD
)&wpc
;
759 // the cast below is needed for broken (very) old mingw32 headers
760 eds
.pfnCallback
= (EDITSTREAMCALLBACK
)wxRichEditStreamIn
;
762 // we're going to receive 2 EN_CHANGE notifications if we got any selection
763 // (same problem as in DoWriteText())
764 if ( selectionOnly
&& HasSelection() )
766 // so suppress one of them
767 m_suppressNextUpdate
= TRUE
;
770 ::SendMessage(GetHwnd(), EM_STREAMIN
,
773 (selectionOnly
? SFF_SELECTION
: 0),
778 wxLogLastError(_T("EM_STREAMIN"));
783 #endif // !wxUSE_WCHAR_T
788 #if !wxUSE_UNICODE_MSLU
791 wxTextCtrl::StreamOut(wxFontEncoding encoding
, bool selectionOnly
) const
795 const int len
= GetWindowTextLength(GetHwnd());
798 wxWCharBuffer
wchBuf(len
);
799 wchar_t *wpc
= wchBuf
.data();
801 wchar_t *wchBuf
= (wchar_t *)malloc((len
+ 1)*sizeof(wchar_t));
802 wchar_t *wpc
= wchBuf
;
805 wxStreamOutData data
;
811 eds
.dwCookie
= (DWORD
)&data
;
812 eds
.pfnCallback
= wxRichEditStreamOut
;
818 SF_TEXT
| SF_UNICODE
| (selectionOnly
? SFF_SELECTION
: 0),
824 wxLogLastError(_T("EM_STREAMOUT"));
826 else // streamed out ok
828 // NUL-terminate the string because its length could have been
829 // decreased by wxRichEditStreamOut
830 *(wchBuf
.data() + data
.len
) = L
'\0';
832 // now convert to the given encoding (this is a possibly lossful
833 // conversion but what else can we do)
834 wxCSConv
conv(encoding
);
835 size_t lenNeeded
= conv
.WC2MB(NULL
, wchBuf
, 0);
838 conv
.WC2MB(wxStringBuffer(out
, lenNeeded
), wchBuf
, lenNeeded
);
844 #endif // !wxUSE_WCHAR_T
849 #endif // !wxUSE_UNICODE_MSLU
851 #endif // wxUSE_RICHEDIT
853 void wxTextCtrl::WriteText(const wxString
& value
)
858 void wxTextCtrl::DoWriteText(const wxString
& value
, bool selectionOnly
)
861 if ( m_windowStyle
& wxTE_MULTILINE
)
862 valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
867 // there are several complications with the rich edit controls here
871 // first, ensure that the new text will be in the default style
872 if ( !m_defaultStyle
.IsDefault() )
875 GetSelection(&start
, &end
);
876 SetStyle(start
, end
, m_defaultStyle
);
879 #if wxUSE_UNICODE_MSLU
880 // RichEdit doesn't have Unicode version of EM_REPLACESEL on Win9x,
881 // but EM_STREAMIN works
882 if ( wxUsingUnicowsDll() && GetRichVersion() > 1 )
884 done
= StreamIn(valueDos
, wxFONTENCODING_SYSTEM
, selectionOnly
);
886 #endif // wxUSE_UNICODE_MSLU
889 // next check if the text we're inserting must be shown in a non
890 // default charset -- this only works for RichEdit > 1.0
891 if ( GetRichVersion() > 1 )
893 wxFont font
= m_defaultStyle
.GetFont();
899 wxFontEncoding encoding
= font
.GetEncoding();
900 if ( encoding
!= wxFONTENCODING_SYSTEM
)
902 // we have to use EM_STREAMIN to force richedit control 2.0+
903 // to show any text in the non default charset -- otherwise
904 // it thinks it knows better than we do and always shows it
905 // in the default one
906 done
= StreamIn(valueDos
, encoding
, selectionOnly
);
910 #endif // !wxUSE_UNICODE
914 #endif // wxUSE_RICHEDIT
916 // in some cases we get 2 EN_CHANGE notifications after the SendMessage
917 // call below which is confusing for the client code and so should be
920 // these cases are: (a) plain EDIT controls if EM_REPLACESEL is used
921 // and there is a non empty selection currently and (b) rich text
922 // controls in any case
926 #endif // wxUSE_RICHEDIT
927 (selectionOnly
&& HasSelection()) )
929 m_suppressNextUpdate
= TRUE
;
932 ::SendMessage(GetHwnd(), selectionOnly
? EM_REPLACESEL
: WM_SETTEXT
,
933 0, (LPARAM
)valueDos
.c_str());
935 // OTOH, non rich text controls don't generate any events at all when
936 // we use WM_SETTEXT -- have to emulate them here
940 #endif // wxUSE_RICHEDIT
943 // Windows already sends an update event for single-line
945 if ( m_windowStyle
& wxTE_MULTILINE
)
953 void wxTextCtrl::AppendText(const wxString
& text
)
955 SetInsertionPointEnd();
960 if ( IsMultiLine() && GetRichVersion() > 1 )
962 // setting the caret to the end and showing it simply doesn't work for
963 // RichEdit 2.0 -- force it to still do what we want
964 ::SendMessage(GetHwnd(), EM_LINESCROLL
, 0, GetNumberOfLines());
966 #endif // wxUSE_RICHEDIT
969 void wxTextCtrl::Clear()
971 ::SetWindowText(GetHwnd(), wxEmptyString
);
975 #endif // wxUSE_RICHEDIT
977 // rich edit controls send EN_UPDATE from WM_SETTEXT handler themselves
978 // but the normal ones don't -- make Clear() behaviour consistent by
979 // always sending this event
981 // Windows already sends an update event for single-line
983 if ( m_windowStyle
& wxTE_MULTILINE
)
990 bool wxTextCtrl::EmulateKeyPress(const wxKeyEvent
& event
)
994 size_t lenOld
= GetValue().length();
996 wxUint32 code
= event
.GetRawKeyCode();
997 ::keybd_event(code
, 0, 0 /* key press */, 0);
998 ::keybd_event(code
, 0, KEYEVENTF_KEYUP
, 0);
1000 // assume that any alphanumeric key changes the total number of characters
1001 // in the control - this should work in 99% of cases
1002 return GetValue().length() != lenOld
;
1007 // ----------------------------------------------------------------------------
1008 // Clipboard operations
1009 // ----------------------------------------------------------------------------
1011 void wxTextCtrl::Copy()
1015 ::SendMessage(GetHwnd(), WM_COPY
, 0, 0L);
1019 void wxTextCtrl::Cut()
1023 ::SendMessage(GetHwnd(), WM_CUT
, 0, 0L);
1027 void wxTextCtrl::Paste()
1031 ::SendMessage(GetHwnd(), WM_PASTE
, 0, 0L);
1035 bool wxTextCtrl::HasSelection() const
1038 GetSelection(&from
, &to
);
1042 bool wxTextCtrl::CanCopy() const
1044 // Can copy if there's a selection
1045 return HasSelection();
1048 bool wxTextCtrl::CanCut() const
1050 return CanCopy() && IsEditable();
1053 bool wxTextCtrl::CanPaste() const
1055 if ( !IsEditable() )
1061 UINT cf
= 0; // 0 == any format
1063 return ::SendMessage(GetHwnd(), EM_CANPASTE
, cf
, 0) != 0;
1065 #endif // wxUSE_RICHEDIT
1067 // Standard edit control: check for straight text on clipboard
1068 if ( !::OpenClipboard(GetHwndOf(wxTheApp
->GetTopWindow())) )
1071 bool isTextAvailable
= ::IsClipboardFormatAvailable(CF_TEXT
) != 0;
1074 return isTextAvailable
;
1077 // ----------------------------------------------------------------------------
1079 // ----------------------------------------------------------------------------
1081 void wxTextCtrl::SetEditable(bool editable
)
1083 HWND hWnd
= GetHwnd();
1084 SendMessage(hWnd
, EM_SETREADONLY
, (WPARAM
)!editable
, (LPARAM
)0L);
1087 void wxTextCtrl::SetInsertionPoint(long pos
)
1089 DoSetSelection(pos
, pos
);
1092 void wxTextCtrl::SetInsertionPointEnd()
1094 // we must not do anything if the caret is already there because calling
1095 // SetInsertionPoint() thaws the controls if Freeze() had been called even
1096 // if it doesn't actually move the caret anywhere and so the simple fact of
1097 // doing it results in horrible flicker when appending big amounts of text
1098 // to the control in a few chunks (see DoAddText() test in the text sample)
1099 if ( GetInsertionPoint() == GetLastPosition() )
1105 if ( m_verRichEdit
== 1 )
1107 // we don't have to waste time calling GetLastPosition() in this case
1110 else // !RichEdit 1.0
1111 #endif // wxUSE_RICHEDIT
1113 pos
= GetLastPosition();
1116 SetInsertionPoint(pos
);
1119 long wxTextCtrl::GetInsertionPoint() const
1127 SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &range
);
1130 #endif // wxUSE_RICHEDIT
1132 DWORD Pos
= (DWORD
)SendMessage(GetHwnd(), EM_GETSEL
, 0, 0L);
1133 return Pos
& 0xFFFF;
1136 long wxTextCtrl::GetLastPosition() const
1138 int numLines
= GetNumberOfLines();
1139 long posStartLastLine
= XYToPosition(0, numLines
- 1);
1141 long lenLastLine
= GetLengthOfLineContainingPos(posStartLastLine
);
1143 return posStartLastLine
+ lenLastLine
;
1146 // If the return values from and to are the same, there is no
1148 void wxTextCtrl::GetSelection(long* from
, long* to
) const
1153 CHARRANGE charRange
;
1154 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &charRange
);
1156 *from
= charRange
.cpMin
;
1157 *to
= charRange
.cpMax
;
1160 #endif // !wxUSE_RICHEDIT
1162 DWORD dwStart
, dwEnd
;
1163 ::SendMessage(GetHwnd(), EM_GETSEL
, (WPARAM
)&dwStart
, (LPARAM
)&dwEnd
);
1170 bool wxTextCtrl::IsEditable() const
1172 // strangely enough, we may be called before the control is created: our
1173 // own Create() calls MSWGetStyle() which calls AcceptsFocus() which calls
1178 long style
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1180 return (style
& ES_READONLY
) == 0;
1183 // ----------------------------------------------------------------------------
1185 // ----------------------------------------------------------------------------
1187 void wxTextCtrl::SetSelection(long from
, long to
)
1189 // if from and to are both -1, it means (in wxWidgets) that all text should
1190 // be selected - translate into Windows convention
1191 if ( (from
== -1) && (to
== -1) )
1197 DoSetSelection(from
, to
);
1200 void wxTextCtrl::DoSetSelection(long from
, long to
, bool scrollCaret
)
1202 HWND hWnd
= GetHwnd();
1210 SendMessage(hWnd
, EM_EXSETSEL
, 0, (LPARAM
) &range
);
1213 #endif // wxUSE_RICHEDIT
1215 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)from
, (LPARAM
)to
);
1221 // richedit 3.0 (i.e. the version living in riched20.dll distributed
1222 // with Windows 2000 and beyond) doesn't honour EM_SCROLLCARET when
1223 // emulating richedit 2.0 unless the control has focus or ECO_NOHIDESEL
1224 // option is set (but it does work ok in richedit 1.0 mode...)
1226 // so to make it work we either need to give focus to it here which
1227 // will probably create many problems (dummy focus events; window
1228 // containing the text control being brought to foreground
1229 // unexpectedly; ...) or to temporarily set ECO_NOHIDESEL which may
1230 // create other problems too -- and in fact it does because if we turn
1231 // on/off this style while appending the text to the control, the
1232 // vertical scrollbar never appears in it even if we append tons of
1233 // text and to work around this the only solution I found was to use
1234 // ES_DISABLENOSCROLL
1236 // this is very ugly but I don't see any other way to make this work
1237 if ( GetRichVersion() > 1 )
1239 if ( !HasFlag(wxTE_NOHIDESEL
) )
1241 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1242 ECOOP_OR
, ECO_NOHIDESEL
);
1244 //else: everything is already ok
1246 #endif // wxUSE_RICHEDIT
1248 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
1251 // restore ECO_NOHIDESEL if we changed it
1252 if ( GetRichVersion() > 1 && !HasFlag(wxTE_NOHIDESEL
) )
1254 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1255 ECOOP_AND
, ~ECO_NOHIDESEL
);
1257 #endif // wxUSE_RICHEDIT
1261 // ----------------------------------------------------------------------------
1262 // Working with files
1263 // ----------------------------------------------------------------------------
1265 bool wxTextCtrl::LoadFile(const wxString
& file
)
1267 if ( wxTextCtrlBase::LoadFile(file
) )
1269 // update the size limit if needed
1278 // ----------------------------------------------------------------------------
1280 // ----------------------------------------------------------------------------
1282 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
1284 // Set selection and remove it
1285 DoSetSelection(from
, to
, FALSE
/* don't scroll caret into view */);
1287 DoWriteText(value
, TRUE
/* selection only */);
1290 void wxTextCtrl::Remove(long from
, long to
)
1292 Replace(from
, to
, wxEmptyString
);
1295 bool wxTextCtrl::IsModified() const
1297 return SendMessage(GetHwnd(), EM_GETMODIFY
, 0, 0) != 0;
1300 void wxTextCtrl::MarkDirty()
1302 SendMessage(GetHwnd(), EM_SETMODIFY
, TRUE
, 0L);
1305 void wxTextCtrl::DiscardEdits()
1307 SendMessage(GetHwnd(), EM_SETMODIFY
, FALSE
, 0L);
1310 int wxTextCtrl::GetNumberOfLines() const
1312 return (int)SendMessage(GetHwnd(), EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0);
1315 // ----------------------------------------------------------------------------
1316 // Positions <-> coords
1317 // ----------------------------------------------------------------------------
1319 long wxTextCtrl::XYToPosition(long x
, long y
) const
1321 // This gets the char index for the _beginning_ of this line
1322 long charIndex
= SendMessage(GetHwnd(), EM_LINEINDEX
, (WPARAM
)y
, (LPARAM
)0);
1324 return charIndex
+ x
;
1327 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
1329 HWND hWnd
= GetHwnd();
1331 // This gets the line number containing the character
1336 lineNo
= SendMessage(hWnd
, EM_EXLINEFROMCHAR
, 0, (LPARAM
)pos
);
1339 #endif // wxUSE_RICHEDIT
1341 lineNo
= SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, 0);
1350 // This gets the char index for the _beginning_ of this line
1351 long charIndex
= SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)lineNo
, (LPARAM
)0);
1352 if ( charIndex
== -1 )
1357 // The X position must therefore be the different between pos and charIndex
1359 *x
= pos
- charIndex
;
1366 wxTextCtrlHitTestResult
1367 wxTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*col
, wxTextCoord
*row
) const
1369 // first get the position from Windows
1376 // for rich edit controls the position is passed iva the struct fields
1379 lParam
= (LPARAM
)&ptl
;
1382 #endif // wxUSE_RICHEDIT
1384 // for the plain ones, we are limited to 16 bit positions which are
1385 // combined in a single 32 bit value
1386 lParam
= MAKELPARAM(pt
.x
, pt
.y
);
1389 LRESULT pos
= SendMessage(GetHwnd(), EM_CHARFROMPOS
, 0, lParam
);
1393 // this seems to indicate an error...
1394 return wxTE_HT_UNKNOWN
;
1399 #endif // wxUSE_RICHEDIT
1401 // for plain EDIT controls the higher word contains something else
1406 // next determine where it is relatively to our point: EM_CHARFROMPOS
1407 // always returns the closest character but we need to be more precise, so
1408 // double check that we really are where it pretends
1412 // FIXME: we need to distinguish between richedit 2 and 3 here somehow but
1413 // we don't know how to do it
1416 SendMessage(GetHwnd(), EM_POSFROMCHAR
, (WPARAM
)&ptReal
, pos
);
1419 #endif // wxUSE_RICHEDIT
1421 LRESULT lRc
= SendMessage(GetHwnd(), EM_POSFROMCHAR
, pos
, 0);
1425 // this is apparently returned when pos corresponds to the last
1432 ptReal
.x
= LOWORD(lRc
);
1433 ptReal
.y
= HIWORD(lRc
);
1437 wxTextCtrlHitTestResult rc
;
1439 if ( pt
.y
> ptReal
.y
+ GetCharHeight() )
1441 else if ( pt
.x
> ptReal
.x
+ GetCharWidth() )
1442 rc
= wxTE_HT_BEYOND
;
1444 rc
= wxTE_HT_ON_TEXT
;
1446 // finally translate to column/row
1447 if ( !PositionToXY(pos
, col
, row
) )
1449 wxFAIL_MSG( _T("PositionToXY() not expected to fail in HitTest()") );
1455 // ----------------------------------------------------------------------------
1457 // ----------------------------------------------------------------------------
1459 void wxTextCtrl::ShowPosition(long pos
)
1461 HWND hWnd
= GetHwnd();
1463 // To scroll to a position, we pass the number of lines and characters
1464 // to scroll *by*. This means that we need to:
1465 // (1) Find the line position of the current line.
1466 // (2) Find the line position of pos.
1467 // (3) Scroll by (pos - current).
1468 // For now, ignore the horizontal scrolling.
1470 // Is this where scrolling is relative to - the line containing the caret?
1471 // Or is the first visible line??? Try first visible line.
1472 // int currentLineLineNo1 = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L);
1474 int currentLineLineNo
= (int)SendMessage(hWnd
, EM_GETFIRSTVISIBLELINE
, (WPARAM
)0, (LPARAM
)0L);
1476 int specifiedLineLineNo
= (int)SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, (LPARAM
)0L);
1478 int linesToScroll
= specifiedLineLineNo
- currentLineLineNo
;
1480 if (linesToScroll
!= 0)
1481 (void)SendMessage(hWnd
, EM_LINESCROLL
, (WPARAM
)0, (LPARAM
)linesToScroll
);
1484 long wxTextCtrl::GetLengthOfLineContainingPos(long pos
) const
1486 return ::SendMessage(GetHwnd(), EM_LINELENGTH
, (WPARAM
)pos
, 0);
1489 int wxTextCtrl::GetLineLength(long lineNo
) const
1491 long pos
= XYToPosition(0, lineNo
);
1493 return GetLengthOfLineContainingPos(pos
);
1496 wxString
wxTextCtrl::GetLineText(long lineNo
) const
1498 size_t len
= (size_t)GetLineLength(lineNo
) + 1;
1500 // there must be at least enough place for the length WORD in the
1502 len
+= sizeof(WORD
);
1506 wxStringBufferLength
tmp(str
, len
);
1509 *(WORD
*)buf
= (WORD
)len
;
1510 len
= (size_t)::SendMessage(GetHwnd(), EM_GETLINE
, lineNo
, (LPARAM
)buf
);
1515 // remove the '\r' returned by the rich edit control, the user code
1516 // should never see it
1517 if ( buf
[len
- 2] == _T('\r') && buf
[len
- 1] == _T('\n') )
1519 buf
[len
- 2] = _T('\n');
1523 #endif // wxUSE_RICHEDIT
1525 // remove the '\n' at the end, if any (this is how this function is
1526 // supposed to work according to the docs)
1527 if ( buf
[len
- 1] == _T('\n') )
1539 void wxTextCtrl::SetMaxLength(unsigned long len
)
1541 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, len
, 0);
1544 // ----------------------------------------------------------------------------
1546 // ----------------------------------------------------------------------------
1548 void wxTextCtrl::Undo()
1552 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
1556 void wxTextCtrl::Redo()
1560 // Same as Undo, since Undo undoes the undo, i.e. a redo.
1561 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
1565 bool wxTextCtrl::CanUndo() const
1567 return ::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0;
1570 bool wxTextCtrl::CanRedo() const
1572 return ::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0;
1575 // ----------------------------------------------------------------------------
1576 // caret handling (Windows only)
1577 // ----------------------------------------------------------------------------
1579 bool wxTextCtrl::ShowNativeCaret(bool show
)
1581 if ( show
!= m_isNativeCaretShown
)
1583 if ( !(show
? ::ShowCaret(GetHwnd()) : ::HideCaret(GetHwnd())) )
1585 // not an error, may simply indicate that it's not shown/hidden
1586 // yet (i.e. it had been hidden/showh 2 times before)
1590 m_isNativeCaretShown
= show
;
1596 // ----------------------------------------------------------------------------
1597 // implemenation details
1598 // ----------------------------------------------------------------------------
1600 void wxTextCtrl::Command(wxCommandEvent
& event
)
1602 SetValue(event
.GetString());
1603 ProcessCommand (event
);
1606 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
1608 // By default, load the first file into the text window.
1609 if (event
.GetNumberOfFiles() > 0)
1611 LoadFile(event
.GetFiles()[0]);
1615 // ----------------------------------------------------------------------------
1616 // kbd input processing
1617 // ----------------------------------------------------------------------------
1619 bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG
* pMsg
)
1621 MSG
*msg
= (MSG
*)pMsg
;
1623 // check for our special keys here: if we don't do it and the parent frame
1624 // uses them as accelerators, they wouldn't work at all, so we disable
1625 // usual preprocessing for them
1626 if ( msg
->message
== WM_KEYDOWN
)
1628 WORD vkey
= (WORD
) msg
->wParam
;
1629 if ( (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
1631 if ( vkey
== VK_BACK
)
1636 // we want to process some Ctrl-foo and Shift-bar but no key
1637 // combinations without either Ctrl or Shift nor with both of them
1639 const int ctrl
= wxIsCtrlDown(),
1640 shift
= wxIsShiftDown();
1641 switch ( ctrl
+ shift
)
1644 wxFAIL_MSG( _T("how many modifiers have we got?") );
1652 // either Ctrl or Shift pressed
1667 else // Shift is pressed
1669 if ( vkey
== VK_INSERT
|| vkey
== VK_DELETE
)
1676 return wxControl::MSWShouldPreProcessMessage(pMsg
);
1679 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
1681 switch ( event
.GetKeyCode() )
1684 if ( !HasFlag(wxTE_MULTILINE
) )
1686 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1687 InitCommandEvent(event
);
1688 event
.SetString(GetValue());
1689 if ( GetEventHandler()->ProcessEvent(event
) )
1692 //else: multiline controls need Enter for themselves
1697 // ok, so this is getting absolutely ridiculous but I don't see
1698 // any other way to fix this bug: when a multiline text control is
1699 // inside a wxFrame, we need to generate the navigation event as
1700 // otherwise nothing happens at all, but when the same control is
1701 // created inside a dialog, IsDialogMessage() *does* switch focus
1702 // all by itself and so if we do it here as well, it is advanced
1703 // twice and goes to the next control... to prevent this from
1704 // happening we're doing this ugly check, the logic being that if
1705 // we don't have focus then it had been already changed to the next
1708 // the right thing to do would, of course, be to understand what
1709 // the hell is IsDialogMessage() doing but this is beyond my feeble
1710 // forces at the moment unfortunately
1711 if ( !(m_windowStyle
& wxTE_PROCESS_TAB
))
1713 if ( FindFocus() == this )
1716 if (!event
.ShiftDown())
1717 flags
|= wxNavigationKeyEvent::IsForward
;
1718 if (event
.ControlDown())
1719 flags
|= wxNavigationKeyEvent::WinChange
;
1720 if (Navigate(flags
))
1726 // Insert tab since calling the default Windows handler
1727 // doesn't seem to do it
1728 WriteText(wxT("\t"));
1733 // no, we didn't process it
1737 WXLRESULT
wxTextCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1739 WXLRESULT lRc
= wxTextCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
1741 if ( nMsg
== WM_GETDLGCODE
)
1743 // we always want the chars and the arrows: the arrows for navigation
1744 // and the chars because we want Ctrl-C to work even in a read only
1746 long lDlgCode
= DLGC_WANTCHARS
| DLGC_WANTARROWS
;
1750 // we may have several different cases:
1751 // 1. normal case: both TAB and ENTER are used for dlg navigation
1752 // 2. ctrl which wants TAB for itself: ENTER is used to pass to the
1753 // next control in the dialog
1754 // 3. ctrl which wants ENTER for itself: TAB is used for dialog
1756 // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to go
1757 // to the next control
1759 // the multiline edit control should always get <Return> for itself
1760 if ( HasFlag(wxTE_PROCESS_ENTER
) || HasFlag(wxTE_MULTILINE
) )
1761 lDlgCode
|= DLGC_WANTMESSAGE
;
1763 if ( HasFlag(wxTE_PROCESS_TAB
) )
1764 lDlgCode
|= DLGC_WANTTAB
;
1770 // NB: use "=", not "|=" as the base class version returns the
1771 // same flags is this state as usual (i.e. including
1772 // DLGC_WANTMESSAGE). This is strange (how does it work in the
1773 // native Win32 apps?) but for now live with it.
1781 // ----------------------------------------------------------------------------
1782 // text control event processing
1783 // ----------------------------------------------------------------------------
1785 bool wxTextCtrl::SendUpdateEvent()
1787 // is event reporting suspended?
1788 if ( m_suppressNextUpdate
)
1790 // do process the next one
1791 m_suppressNextUpdate
= FALSE
;
1796 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, GetId());
1797 InitCommandEvent(event
);
1798 event
.SetString(GetValue());
1800 return ProcessCommand(event
);
1803 bool wxTextCtrl::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
1810 wxFocusEvent
event(param
== EN_KILLFOCUS
? wxEVT_KILL_FOCUS
1813 event
.SetEventObject(this);
1814 GetEventHandler()->ProcessEvent(event
);
1823 // the text size limit has been hit -- try to increase it
1824 if ( !AdjustSpaceLimit() )
1826 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, m_windowId
);
1827 InitCommandEvent(event
);
1828 event
.SetString(GetValue());
1829 ProcessCommand(event
);
1833 // the other edit notification messages are not processed
1842 WXHBRUSH
wxTextCtrl::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
1848 WXUINT
WXUNUSED(message
),
1849 WXWPARAM
WXUNUSED(wParam
),
1850 WXLPARAM
WXUNUSED(lParam
)
1857 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
1858 return (WXHBRUSH
) hbrush
;
1860 #endif // wxUSE_CTL3D
1863 wxColour colBack
= GetBackgroundColour();
1865 if (!IsEnabled() && (GetWindowStyle() & wxTE_MULTILINE
) == 0)
1866 colBack
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
1868 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
1869 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
1871 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
1873 return (WXHBRUSH
)brush
->GetResourceHandle();
1876 bool wxTextCtrl::AdjustSpaceLimit()
1878 unsigned int limit
= ::SendMessage(GetHwnd(), EM_GETLIMITTEXT
, 0, 0);
1880 // HACK: we try to automatically extend the limit for the amount of text
1881 // to allow (interactively) entering more than 64Kb of text under
1882 // Win9x but we shouldn't reset the text limit which was previously
1883 // set explicitly with SetMaxLength()
1885 // we could solve this by storing the limit we set in wxTextCtrl but
1886 // to save space we prefer to simply test here the actual limit
1887 // value: we consider that SetMaxLength() can only be called for
1889 if ( limit
< 0x8000 )
1891 // we've got more text than limit set by SetMaxLength()
1895 unsigned int len
= ::GetWindowTextLength(GetHwnd());
1898 limit
= len
+ 0x8000; // 32Kb
1903 // as a nice side effect, this also allows passing limit > 64Kb
1904 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, limit
);
1907 #endif // wxUSE_RICHEDIT
1909 if ( limit
> 0xffff )
1911 // this will set it to a platform-dependent maximum (much more
1912 // than 64Kb under NT)
1916 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, limit
, 0);
1920 // we changed the limit
1924 bool wxTextCtrl::AcceptsFocus() const
1926 // we don't want focus if we can't be edited unless we're a multiline
1927 // control because then it might be still nice to get focus from keyboard
1928 // to be able to scroll it without mouse
1929 return (IsEditable() || IsMultiLine()) && wxControl::AcceptsFocus();
1932 wxSize
wxTextCtrl::DoGetBestSize() const
1935 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
1937 int wText
= DEFAULT_ITEM_WIDTH
;
1940 if ( m_windowStyle
& wxTE_MULTILINE
)
1942 hText
*= wxMax(GetNumberOfLines(), 5);
1944 //else: for single line control everything is ok
1946 // we have to add the adjustments for the control height only once, not
1947 // once per line, so do it after multiplication above
1948 hText
+= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
) - cy
;
1950 return wxSize(wText
, hText
);
1953 // ----------------------------------------------------------------------------
1954 // standard handlers for standard edit menu events
1955 // ----------------------------------------------------------------------------
1957 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1962 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1967 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1972 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1977 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1982 void wxTextCtrl::OnDelete(wxCommandEvent
& WXUNUSED(event
))
1985 GetSelection(& from
, & to
);
1986 if (from
!= -1 && to
!= -1)
1990 void wxTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
1992 SetSelection(-1, -1);
1995 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1997 event
.Enable( CanCut() );
2000 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
2002 event
.Enable( CanCopy() );
2005 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
2007 event
.Enable( CanPaste() );
2010 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
2012 event
.Enable( CanUndo() );
2015 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
2017 event
.Enable( CanRedo() );
2020 void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent
& event
)
2023 GetSelection(& from
, & to
);
2024 event
.Enable(from
!= -1 && to
!= -1 && from
!= to
&& IsEditable()) ;
2027 void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
2029 event
.Enable(GetLastPosition() > 0);
2032 void wxTextCtrl::OnRightClick(wxMouseEvent
& event
)
2037 if (!m_privateContextMenu
)
2039 m_privateContextMenu
= new wxMenu
;
2040 m_privateContextMenu
->Append(wxID_UNDO
, _("&Undo"));
2041 m_privateContextMenu
->Append(wxID_REDO
, _("&Redo"));
2042 m_privateContextMenu
->AppendSeparator();
2043 m_privateContextMenu
->Append(wxID_CUT
, _("Cu&t"));
2044 m_privateContextMenu
->Append(wxID_COPY
, _("&Copy"));
2045 m_privateContextMenu
->Append(wxID_PASTE
, _("&Paste"));
2046 m_privateContextMenu
->Append(wxID_CLEAR
, _("&Delete"));
2047 m_privateContextMenu
->AppendSeparator();
2048 m_privateContextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
2050 PopupMenu(m_privateContextMenu
, event
.GetPosition());
2058 void wxTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
2060 // be sure the caret remains invisible if the user had hidden it
2061 if ( !m_isNativeCaretShown
)
2063 ::HideCaret(GetHwnd());
2067 // the rest of the file only deals with the rich edit controls
2070 // ----------------------------------------------------------------------------
2071 // EN_LINK processing
2072 // ----------------------------------------------------------------------------
2074 bool wxTextCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
2076 NMHDR
*hdr
= (NMHDR
* )lParam
;
2077 switch ( hdr
->code
)
2081 const MSGFILTER
*msgf
= (MSGFILTER
*)lParam
;
2082 UINT msg
= msgf
->msg
;
2084 // this is a bit crazy but richedit 1.0 sends us all mouse
2085 // events _except_ WM_LBUTTONUP (don't ask me why) so we have
2086 // generate the wxWin events for this message manually
2088 // NB: in fact, this is still not totally correct as it does
2089 // send us WM_LBUTTONUP if the selection was cleared by the
2090 // last click -- so currently we get 2 events in this case,
2091 // but as I don't see any obvious way to check for this I
2092 // leave this code in place because it's still better than
2093 // not getting left up events at all
2094 if ( msg
== WM_LBUTTONUP
)
2096 WXUINT flags
= msgf
->wParam
;
2097 int x
= GET_X_LPARAM(msgf
->lParam
),
2098 y
= GET_Y_LPARAM(msgf
->lParam
);
2100 HandleMouseEvent(msg
, x
, y
, flags
);
2104 // return TRUE to process the event (and FALSE to ignore it)
2109 const ENLINK
*enlink
= (ENLINK
*)hdr
;
2111 switch ( enlink
->msg
)
2114 // ok, so it is hardcoded - do we really nee to
2116 ::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND
)));
2121 case WM_LBUTTONDOWN
:
2123 case WM_LBUTTONDBLCLK
:
2124 case WM_RBUTTONDOWN
:
2126 case WM_RBUTTONDBLCLK
:
2127 // send a mouse event
2129 static const wxEventType eventsMouse
[] =
2140 // the event ids are consecutive
2142 evtMouse(eventsMouse
[enlink
->msg
- WM_MOUSEMOVE
]);
2144 InitMouseEvent(evtMouse
,
2145 GET_X_LPARAM(enlink
->lParam
),
2146 GET_Y_LPARAM(enlink
->lParam
),
2149 wxTextUrlEvent
event(m_windowId
, evtMouse
,
2151 enlink
->chrg
.cpMax
);
2153 InitCommandEvent(event
);
2155 *result
= ProcessCommand(event
);
2163 // not processed, leave it to the base class
2164 return wxTextCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
);
2167 // ----------------------------------------------------------------------------
2168 // colour setting for the rich edit controls
2169 // ----------------------------------------------------------------------------
2171 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
2173 if ( !wxTextCtrlBase::SetBackgroundColour(colour
) )
2175 // colour didn't really change
2181 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
2182 // EM_SETBKGNDCOLOR additionally
2183 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR
, 0, wxColourToRGB(colour
));
2189 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
2191 if ( !wxTextCtrlBase::SetForegroundColour(colour
) )
2193 // colour didn't really change
2199 // change the colour of everything
2202 cf
.cbSize
= sizeof(cf
);
2203 cf
.dwMask
= CFM_COLOR
;
2204 cf
.crTextColor
= wxColourToRGB(colour
);
2205 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
, SCF_ALL
, (LPARAM
)&cf
);
2211 // ----------------------------------------------------------------------------
2212 // styling support for rich edit controls
2213 // ----------------------------------------------------------------------------
2217 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
2221 // can't do it with normal text control
2225 // the richedit 1.0 doesn't handle setting background colour, so don't
2226 // even try to do anything if it's the only thing we want to change
2227 if ( m_verRichEdit
== 1 && !style
.HasFont() && !style
.HasTextColour() &&
2228 !style
.HasLeftIndent() && !style
.HasRightIndent() && !style
.HasAlignment() &&
2231 // nothing to do: return TRUE if there was really nothing to do and
2232 // FALSE if we failed to set bg colour
2233 return !style
.HasBackgroundColour();
2236 // order the range if needed
2244 // we can only change the format of the selection, so select the range we
2245 // want and restore the old selection later
2246 long startOld
, endOld
;
2247 GetSelection(&startOld
, &endOld
);
2249 // but do we really have to change the selection?
2250 bool changeSel
= start
!= startOld
|| end
!= endOld
;
2254 DoSetSelection(start
, end
, FALSE
/* don't scroll caret into view */);
2257 // initialize CHARFORMAT struct
2266 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2267 // CHARFORMAT in that case
2269 if ( m_verRichEdit
== 1 )
2271 // this is the only thing the control is going to grok
2272 cf
.cbSize
= sizeof(CHARFORMAT
);
2277 // CHARFORMAT or CHARFORMAT2
2278 cf
.cbSize
= sizeof(cf
);
2281 if ( style
.HasFont() )
2283 // VZ: CFM_CHARSET doesn't seem to do anything at all in RichEdit 2.0
2284 // but using it doesn't seem to hurt neither so leaving it for now
2286 cf
.dwMask
|= CFM_FACE
| CFM_SIZE
| CFM_CHARSET
|
2287 CFM_ITALIC
| CFM_BOLD
| CFM_UNDERLINE
;
2289 // fill in data from LOGFONT but recalculate lfHeight because we need
2290 // the real height in twips and not the negative number which
2291 // wxFillLogFont() returns (this is correct in general and works with
2292 // the Windows font mapper, but not here)
2294 wxFillLogFont(&lf
, &style
.GetFont());
2295 cf
.yHeight
= 20*style
.GetFont().GetPointSize(); // 1 pt = 20 twips
2296 cf
.bCharSet
= lf
.lfCharSet
;
2297 cf
.bPitchAndFamily
= lf
.lfPitchAndFamily
;
2298 wxStrncpy( cf
.szFaceName
, lf
.lfFaceName
, WXSIZEOF(cf
.szFaceName
) );
2300 // also deal with underline/italic/bold attributes: note that we must
2301 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
2302 // style to allow clearing it
2305 cf
.dwEffects
|= CFE_ITALIC
;
2308 if ( lf
.lfWeight
== FW_BOLD
)
2310 cf
.dwEffects
|= CFE_BOLD
;
2313 if ( lf
.lfUnderline
)
2315 cf
.dwEffects
|= CFE_UNDERLINE
;
2318 // strikeout fonts are not supported by wxWidgets
2321 if ( style
.HasTextColour() )
2323 cf
.dwMask
|= CFM_COLOR
;
2324 cf
.crTextColor
= wxColourToRGB(style
.GetTextColour());
2328 if ( m_verRichEdit
!= 1 && style
.HasBackgroundColour() )
2330 cf
.dwMask
|= CFM_BACKCOLOR
;
2331 cf
.crBackColor
= wxColourToRGB(style
.GetBackgroundColour());
2333 #endif // wxUSE_RICHEDIT2
2335 // do format the selection
2336 bool ok
= ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
,
2337 SCF_SELECTION
, (LPARAM
)&cf
) != 0;
2340 wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed"));
2343 // now do the paragraph formatting
2346 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2347 // PARAFORMAT in that case
2349 if ( m_verRichEdit
== 1 )
2351 // this is the only thing the control is going to grok
2352 pf
.cbSize
= sizeof(PARAFORMAT
);
2357 // PARAFORMAT or PARAFORMAT2
2358 pf
.cbSize
= sizeof(pf
);
2361 if (style
.HasAlignment())
2363 pf
.dwMask
|= PFM_ALIGNMENT
;
2364 if (style
.GetAlignment() == wxTEXT_ALIGNMENT_RIGHT
)
2365 pf
.wAlignment
= PFA_RIGHT
;
2366 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_CENTRE
)
2367 pf
.wAlignment
= PFA_CENTER
;
2368 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_JUSTIFIED
)
2369 pf
.wAlignment
= PFA_JUSTIFY
;
2371 pf
.wAlignment
= PFA_LEFT
;
2374 if (style
.HasLeftIndent())
2376 pf
.dwMask
|= PFM_STARTINDENT
| PFM_OFFSET
;
2378 // Convert from 1/10 mm to TWIPS
2379 pf
.dxStartIndent
= (int) (((double) style
.GetLeftIndent()) * mm2twips
/ 10.0) ;
2380 pf
.dxOffset
= (int) (((double) style
.GetLeftSubIndent()) * mm2twips
/ 10.0) ;
2383 if (style
.HasRightIndent())
2385 pf
.dwMask
|= PFM_RIGHTINDENT
;
2387 // Convert from 1/10 mm to TWIPS
2388 pf
.dxRightIndent
= (int) (((double) style
.GetRightIndent()) * mm2twips
/ 10.0) ;
2391 if (style
.HasTabs())
2393 pf
.dwMask
|= PFM_TABSTOPS
;
2395 const wxArrayInt
& tabs
= style
.GetTabs();
2397 pf
.cTabCount
= wxMin(tabs
.GetCount(), MAX_TAB_STOPS
);
2399 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2401 // Convert from 1/10 mm to TWIPS
2402 pf
.rgxTabs
[i
] = (int) (((double) tabs
[i
]) * mm2twips
/ 10.0) ;
2408 // do format the selection
2409 bool ok
= ::SendMessage(GetHwnd(), EM_SETPARAFORMAT
,
2410 0, (LPARAM
) &pf
) != 0;
2413 wxLogDebug(_T("SendMessage(EM_SETPARAFORMAT, 0) failed"));
2419 // restore the original selection
2420 DoSetSelection(startOld
, endOld
, FALSE
);
2426 bool wxTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
2428 if ( !wxTextCtrlBase::SetDefaultStyle(style
) )
2431 // we have to do this or the style wouldn't apply for the text typed by the
2433 long posLast
= GetLastPosition();
2434 SetStyle(posLast
, posLast
, m_defaultStyle
);
2439 bool wxTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
2443 // can't do it with normal text control
2447 // initialize CHARFORMAT struct
2456 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2457 // CHARFORMAT in that case
2459 if ( m_verRichEdit
== 1 )
2461 // this is the only thing the control is going to grok
2462 cf
.cbSize
= sizeof(CHARFORMAT
);
2467 // CHARFORMAT or CHARFORMAT2
2468 cf
.cbSize
= sizeof(cf
);
2470 // we can only change the format of the selection, so select the range we
2471 // want and restore the old selection later
2472 long startOld
, endOld
;
2473 GetSelection(&startOld
, &endOld
);
2475 // but do we really have to change the selection?
2476 bool changeSel
= position
!= startOld
|| position
!= endOld
;
2480 DoSetSelection(position
, position
, FALSE
/* don't scroll caret into view */);
2483 // get the selection formatting
2484 (void) ::SendMessage(GetHwnd(), EM_GETCHARFORMAT
,
2485 SCF_SELECTION
, (LPARAM
)&cf
) ;
2488 lf
.lfHeight
= cf
.yHeight
;
2490 lf
.lfCharSet
= ANSI_CHARSET
; // FIXME: how to get correct charset?
2491 lf
.lfClipPrecision
= 0;
2492 lf
.lfEscapement
= 0;
2493 wxStrcpy(lf
.lfFaceName
, cf
.szFaceName
);
2494 if (cf
.dwEffects
& CFE_ITALIC
)
2496 lf
.lfOrientation
= 0;
2497 lf
.lfPitchAndFamily
= cf
.bPitchAndFamily
;
2499 if (cf
.dwEffects
& CFE_STRIKEOUT
)
2500 lf
.lfStrikeOut
= TRUE
;
2501 if (cf
.dwEffects
& CFE_UNDERLINE
)
2502 lf
.lfUnderline
= TRUE
;
2503 if (cf
.dwEffects
& CFE_BOLD
)
2504 lf
.lfWeight
= FW_BOLD
;
2506 wxFont font
= wxCreateFontFromLogFont(& lf
);
2509 style
.SetFont(font
);
2511 style
.SetTextColour(wxColour(cf
.crTextColor
));
2514 if ( m_verRichEdit
!= 1 )
2516 // cf.dwMask |= CFM_BACKCOLOR;
2517 style
.SetBackgroundColour(wxColour(cf
.crBackColor
));
2519 #endif // wxUSE_RICHEDIT2
2521 // now get the paragraph formatting
2524 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2525 // PARAFORMAT in that case
2527 if ( m_verRichEdit
== 1 )
2529 // this is the only thing the control is going to grok
2530 pf
.cbSize
= sizeof(PARAFORMAT
);
2535 // PARAFORMAT or PARAFORMAT2
2536 pf
.cbSize
= sizeof(pf
);
2539 // do format the selection
2540 (void) ::SendMessage(GetHwnd(), EM_GETPARAFORMAT
, 0, (LPARAM
) &pf
) ;
2542 style
.SetLeftIndent( (int) ((double) pf
.dxStartIndent
* twips2mm
* 10.0), (int) ((double) pf
.dxOffset
* twips2mm
* 10.0) );
2543 style
.SetRightIndent( (int) ((double) pf
.dxRightIndent
* twips2mm
* 10.0) );
2545 if (pf
.wAlignment
== PFA_CENTER
)
2546 style
.SetAlignment(wxTEXT_ALIGNMENT_CENTRE
);
2547 else if (pf
.wAlignment
== PFA_RIGHT
)
2548 style
.SetAlignment(wxTEXT_ALIGNMENT_RIGHT
);
2549 else if (pf
.wAlignment
== PFA_JUSTIFY
)
2550 style
.SetAlignment(wxTEXT_ALIGNMENT_JUSTIFIED
);
2552 style
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
2554 wxArrayInt tabStops
;
2556 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2558 tabStops
.Add( (int) ((double) (pf
.rgxTabs
[i
] & 0xFFFF) * twips2mm
* 10.0) );
2563 // restore the original selection
2564 DoSetSelection(startOld
, endOld
, FALSE
);
2572 // ----------------------------------------------------------------------------
2574 // ----------------------------------------------------------------------------
2576 bool wxRichEditModule::OnInit()
2578 // don't do anything - we will load it when needed
2582 void wxRichEditModule::OnExit()
2584 for ( size_t i
= 0; i
< WXSIZEOF(ms_hRichEdit
); i
++ )
2586 if ( ms_hRichEdit
[i
] )
2588 ::FreeLibrary(ms_hRichEdit
[i
]);
2589 ms_hRichEdit
[i
] = NULL
;
2595 bool wxRichEditModule::Load(int version
)
2597 // we don't support loading richedit 3.0 as I don't know how to distinguish
2598 // it from 2.0 anyhow
2599 wxCHECK_MSG( version
== 1 || version
== 2, FALSE
,
2600 _T("incorrect richedit control version requested") );
2602 // make it the index in the array
2605 if ( ms_hRichEdit
[version
] == (HINSTANCE
)-1 )
2607 // we had already tried to load it and failed
2611 if ( ms_hRichEdit
[version
] )
2613 // we've already got this one
2617 wxString dllname
= version
? _T("riched20") : _T("riched32");
2618 dllname
+= _T(".dll");
2620 ms_hRichEdit
[version
] = ::LoadLibrary(dllname
);
2622 if ( !ms_hRichEdit
[version
] )
2624 wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname
.c_str());
2626 ms_hRichEdit
[version
] = (HINSTANCE
)-1;
2634 #endif // wxUSE_RICHEDIT
2636 #endif // wxUSE_TEXTCTRL