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"
31 #if wxUSE_TEXTCTRL && !(defined(__SMARTPHONE__) && defined(__WXWINCE__))
34 #include "wx/textctrl.h"
35 #include "wx/settings.h"
45 #include "wx/module.h"
48 #include "wx/clipbrd.h"
51 #include "wx/textfile.h"
55 #include "wx/msw/private.h"
56 #include "wx/msw/winundef.h"
62 #include <sys/types.h>
67 // old mingw32 has richedit stuff directly in windows.h and doesn't have
69 #if !defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__)
73 #include "wx/msw/missing.h"
75 #endif // wxUSE_RICHEDIT
77 // ----------------------------------------------------------------------------
79 // ----------------------------------------------------------------------------
83 // this module initializes RichEdit DLL(s) if needed
84 class wxRichEditModule
: public wxModule
87 virtual bool OnInit();
88 virtual void OnExit();
90 // load the richedit DLL of at least of required version
91 static bool Load(int version
= 1);
94 // the handles to richedit 1.0 and 2.0 (or 3.0) DLLs
95 static HINSTANCE ms_hRichEdit
[2];
97 DECLARE_DYNAMIC_CLASS(wxRichEditModule
)
100 HINSTANCE
wxRichEditModule::ms_hRichEdit
[2] = { NULL
, NULL
};
102 IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule
, wxModule
)
104 #endif // wxUSE_RICHEDIT
106 // a small class used to set m_updatesCount to 0 (to filter duplicate events if
107 // necessary) and to reset it back to -1 afterwards
108 class UpdatesCountFilter
111 UpdatesCountFilter(int& count
)
114 wxASSERT_MSG( m_count
== -1, _T("wrong initial m_updatesCount value") );
119 ~UpdatesCountFilter()
124 // return true if an event has been received
125 bool GotUpdate() const
133 DECLARE_NO_COPY_CLASS(UpdatesCountFilter
)
136 // ----------------------------------------------------------------------------
137 // event tables and other macros
138 // ----------------------------------------------------------------------------
140 #if wxUSE_EXTENDED_RTTI
141 WX_DEFINE_FLAGS( wxTextCtrlStyle
)
143 wxBEGIN_FLAGS( wxTextCtrlStyle
)
144 // new style border flags, we put them first to
145 // use them for streaming out
146 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
147 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
148 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
149 wxFLAGS_MEMBER(wxBORDER_RAISED
)
150 wxFLAGS_MEMBER(wxBORDER_STATIC
)
151 wxFLAGS_MEMBER(wxBORDER_NONE
)
153 // old style border flags
154 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
155 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
156 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
157 wxFLAGS_MEMBER(wxRAISED_BORDER
)
158 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
159 wxFLAGS_MEMBER(wxBORDER
)
161 // standard window styles
162 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
163 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
164 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
165 wxFLAGS_MEMBER(wxWANTS_CHARS
)
166 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
167 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
168 wxFLAGS_MEMBER(wxVSCROLL
)
169 wxFLAGS_MEMBER(wxHSCROLL
)
171 wxFLAGS_MEMBER(wxTE_PROCESS_ENTER
)
172 wxFLAGS_MEMBER(wxTE_PROCESS_TAB
)
173 wxFLAGS_MEMBER(wxTE_MULTILINE
)
174 wxFLAGS_MEMBER(wxTE_PASSWORD
)
175 wxFLAGS_MEMBER(wxTE_READONLY
)
176 wxFLAGS_MEMBER(wxHSCROLL
)
177 wxFLAGS_MEMBER(wxTE_RICH
)
178 wxFLAGS_MEMBER(wxTE_RICH2
)
179 wxFLAGS_MEMBER(wxTE_AUTO_URL
)
180 wxFLAGS_MEMBER(wxTE_NOHIDESEL
)
181 wxFLAGS_MEMBER(wxTE_LEFT
)
182 wxFLAGS_MEMBER(wxTE_CENTRE
)
183 wxFLAGS_MEMBER(wxTE_RIGHT
)
184 wxFLAGS_MEMBER(wxTE_DONTWRAP
)
185 wxFLAGS_MEMBER(wxTE_LINEWRAP
)
186 wxFLAGS_MEMBER(wxTE_WORDWRAP
)
188 wxEND_FLAGS( wxTextCtrlStyle
)
190 IMPLEMENT_DYNAMIC_CLASS_XTI(wxTextCtrl
, wxControl
,"wx/textctrl.h")
192 wxBEGIN_PROPERTIES_TABLE(wxTextCtrl
)
193 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
194 wxEVENT_PROPERTY( TextEnter
, wxEVT_COMMAND_TEXT_ENTER
, wxCommandEvent
)
196 wxPROPERTY( Font
, wxFont
, SetFont
, GetFont
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
197 wxPROPERTY( Value
, wxString
, SetValue
, GetValue
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
198 wxPROPERTY_FLAGS( WindowStyle
, wxTextCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
199 wxEND_PROPERTIES_TABLE()
201 wxBEGIN_HANDLERS_TABLE(wxTextCtrl
)
202 wxEND_HANDLERS_TABLE()
204 wxCONSTRUCTOR_6( wxTextCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Value
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
206 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxControl
)
210 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
211 EVT_CHAR(wxTextCtrl::OnChar
)
212 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
215 EVT_RIGHT_UP(wxTextCtrl::OnRightClick
)
218 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
219 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
220 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
221 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
222 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
223 EVT_MENU(wxID_CLEAR
, wxTextCtrl::OnDelete
)
224 EVT_MENU(wxID_SELECTALL
, wxTextCtrl::OnSelectAll
)
226 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
227 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
228 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
229 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
230 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
231 EVT_UPDATE_UI(wxID_CLEAR
, wxTextCtrl::OnUpdateDelete
)
232 EVT_UPDATE_UI(wxID_SELECTALL
, wxTextCtrl::OnUpdateSelectAll
)
234 EVT_SET_FOCUS(wxTextCtrl::OnSetFocus
)
237 // ============================================================================
239 // ============================================================================
241 // ----------------------------------------------------------------------------
243 // ----------------------------------------------------------------------------
245 void wxTextCtrl::Init()
249 #endif // wxUSE_RICHEDIT
251 m_privateContextMenu
= NULL
;
253 m_isNativeCaretShown
= true;
256 wxTextCtrl::~wxTextCtrl()
258 delete m_privateContextMenu
;
261 bool wxTextCtrl::Create(wxWindow
*parent
, wxWindowID id
,
262 const wxString
& value
,
266 const wxValidator
& validator
,
267 const wxString
& name
)
270 if ((style
& wxBORDER_MASK
) == 0)
271 style
|= wxBORDER_SIMPLE
;
274 // base initialization
275 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
278 // translate wxWin style flags to MSW ones
279 WXDWORD msStyle
= MSWGetCreateWindowFlags();
281 // do create the control - either an EDIT or RICHEDIT
282 wxString windowClass
= wxT("EDIT");
285 if ( m_windowStyle
& wxTE_AUTO_URL
)
287 // automatic URL detection only works in RichEdit 2.0+
288 m_windowStyle
|= wxTE_RICH2
;
291 if ( m_windowStyle
& wxTE_RICH2
)
293 // using richedit 2.0 implies using wxTE_RICH
294 m_windowStyle
|= wxTE_RICH
;
297 // we need to load the richedit DLL before creating the rich edit control
298 if ( m_windowStyle
& wxTE_RICH
)
300 static bool s_errorGiven
= false;// MT-FIXME
302 // Which version do we need? Use 1.0 by default because it is much more
303 // like the the standard EDIT or 2.0 if explicitly requested, but use
304 // only 2.0 in Unicode mode as 1.0 doesn't support Unicode at all
306 // TODO: RichEdit 3.0 is apparently capable of emulating RichEdit 1.0
307 // (and thus EDIT) much better than RichEdit 2.0 so we probably
308 // should use 3.0 if available as it is the best of both worlds -
309 // but as I can't test it right now I don't do it (VZ)
311 const int verRichEdit
= 2;
312 #else // !wxUSE_UNICODE
313 int verRichEdit
= m_windowStyle
& wxTE_RICH2
? 2 : 1;
314 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
316 // only give the error msg once if the DLL can't be loaded
319 // try to load the RichEdit DLL (will do nothing if already done)
320 if ( !wxRichEditModule::Load(verRichEdit
) )
323 // try another version?
324 verRichEdit
= 3 - verRichEdit
; // 1 <-> 2
326 if ( !wxRichEditModule::Load(verRichEdit
) )
327 #endif // wxUSE_UNICODE
329 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
336 // have we managed to load any richedit version?
339 m_verRichEdit
= verRichEdit
;
340 if ( m_verRichEdit
== 1 )
342 windowClass
= wxT("RICHEDIT");
346 #ifndef RICHEDIT_CLASS
347 wxString RICHEDIT_CLASS
;
348 RICHEDIT_CLASS
.Printf(_T("RichEdit%d0"), m_verRichEdit
);
350 RICHEDIT_CLASS
+= _T('W');
352 RICHEDIT_CLASS
+= _T('A');
353 #endif // Unicode/ANSI
354 #endif // !RICHEDIT_CLASS
356 windowClass
= RICHEDIT_CLASS
;
360 #endif // wxUSE_RICHEDIT
362 // we need to turn '\n's into "\r\n"s for the multiline controls
364 if ( m_windowStyle
& wxTE_MULTILINE
)
366 valueWin
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
373 if ( !MSWCreateControl(windowClass
, msStyle
, pos
, size
, valueWin
) )
379 // enable the events we're interested in: we want to get EN_CHANGE as
380 // for the normal controls
381 LPARAM mask
= ENM_CHANGE
;
383 if ( GetRichVersion() == 1 )
385 // we also need EN_MSGFILTER for richedit 1.0 for the reasons
386 // explained in its handler
387 mask
|= ENM_MOUSEEVENTS
;
389 else if ( m_windowStyle
& wxTE_AUTO_URL
)
393 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT
, TRUE
, 0);
396 ::SendMessage(GetHwnd(), EM_SETEVENTMASK
, 0, mask
);
398 #endif // wxUSE_RICHEDIT
403 // Make sure the window style (etc.) reflects the HWND style (roughly)
404 void wxTextCtrl::AdoptAttributesFromHWND()
406 wxWindow::AdoptAttributesFromHWND();
408 HWND hWnd
= GetHwnd();
409 long style
= ::GetWindowLong(hWnd
, GWL_STYLE
);
411 // retrieve the style to see whether this is an edit or richedit ctrl
413 wxString classname
= wxGetWindowClass(GetHWND());
415 if ( classname
.IsSameAs(_T("EDIT"), false /* no case */) )
422 if ( wxSscanf(classname
, _T("RichEdit%d0%c"), &m_verRichEdit
, &c
) != 2 )
424 wxLogDebug(_T("Unknown edit control '%s'."), classname
.c_str());
429 #endif // wxUSE_RICHEDIT
431 if (style
& ES_MULTILINE
)
432 m_windowStyle
|= wxTE_MULTILINE
;
433 if (style
& ES_PASSWORD
)
434 m_windowStyle
|= wxTE_PASSWORD
;
435 if (style
& ES_READONLY
)
436 m_windowStyle
|= wxTE_READONLY
;
437 if (style
& ES_WANTRETURN
)
438 m_windowStyle
|= wxTE_PROCESS_ENTER
;
439 if (style
& ES_CENTER
)
440 m_windowStyle
|= wxTE_CENTRE
;
441 if (style
& ES_RIGHT
)
442 m_windowStyle
|= wxTE_RIGHT
;
445 WXDWORD
wxTextCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
447 long msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
449 // styles which we alaways add by default
450 if ( style
& wxTE_MULTILINE
)
452 wxASSERT_MSG( !(style
& wxTE_PROCESS_ENTER
),
453 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
455 msStyle
|= ES_MULTILINE
| ES_WANTRETURN
;
456 if ( !(style
& wxTE_NO_VSCROLL
) )
458 // always adjust the vertical scrollbar automatically if we have it
459 msStyle
|= WS_VSCROLL
| ES_AUTOVSCROLL
;
462 // we have to use this style for the rich edit controls because
463 // without it the vertical scrollbar never appears at all in
464 // richedit 3.0 because of our ECO_NOHIDESEL hack (search for it)
465 if ( style
& wxTE_RICH2
)
467 msStyle
|= ES_DISABLENOSCROLL
;
469 #endif // wxUSE_RICHEDIT
472 style
|= wxTE_PROCESS_ENTER
;
476 // there is really no reason to not have this style for single line
478 msStyle
|= ES_AUTOHSCROLL
;
481 // note that wxTE_DONTWRAP is the same as wxHSCROLL so if we have a horz
482 // scrollbar, there is no wrapping -- which makes sense
483 if ( style
& wxTE_DONTWRAP
)
485 // automatically scroll the control horizontally as necessary
487 // NB: ES_AUTOHSCROLL is needed for richedit controls or they don't
488 // show horz scrollbar at all, even in spite of WS_HSCROLL, and as
489 // it doesn't seem to do any harm for plain edit controls, add it
491 msStyle
|= WS_HSCROLL
| ES_AUTOHSCROLL
;
494 if ( style
& wxTE_READONLY
)
495 msStyle
|= ES_READONLY
;
497 if ( style
& wxTE_PASSWORD
)
498 msStyle
|= ES_PASSWORD
;
500 if ( style
& wxTE_NOHIDESEL
)
501 msStyle
|= ES_NOHIDESEL
;
503 // note that we can't do do "& wxTE_LEFT" as wxTE_LEFT == 0
504 if ( style
& wxTE_CENTRE
)
505 msStyle
|= ES_CENTER
;
506 else if ( style
& wxTE_RIGHT
)
509 msStyle
|= ES_LEFT
; // ES_LEFT is 0 as well but for consistency...
514 void wxTextCtrl::SetWindowStyleFlag(long style
)
517 // we have to deal with some styles separately because they can't be
518 // changed by simply calling SetWindowLong(GWL_STYLE) but can be changed
519 // using richedit-specific EM_SETOPTIONS
521 ((style
& wxTE_NOHIDESEL
) != (GetWindowStyle() & wxTE_NOHIDESEL
)) )
523 bool set
= (style
& wxTE_NOHIDESEL
) != 0;
525 ::SendMessage(GetHwnd(), EM_SETOPTIONS
, set
? ECOOP_OR
: ECOOP_AND
,
526 set
? ECO_NOHIDESEL
: ~ECO_NOHIDESEL
);
528 #endif // wxUSE_RICHEDIT
530 wxControl::SetWindowStyleFlag(style
);
533 // ----------------------------------------------------------------------------
534 // set/get the controls text
535 // ----------------------------------------------------------------------------
537 wxString
wxTextCtrl::GetValue() const
539 // range 0..-1 is special for GetRange() and means to retrieve all text
540 return GetRange(0, -1);
543 wxString
wxTextCtrl::GetRange(long from
, long to
) const
547 if ( from
>= to
&& to
!= -1 )
549 // nothing to retrieve
556 int len
= GetWindowTextLength(GetHwnd());
563 // we must use EM_STREAMOUT if we don't want to lose all characters
564 // not representable in the current character set (EM_GETTEXTRANGE
565 // simply replaces them with question marks...)
566 if ( GetRichVersion() > 1 )
568 // we must have some encoding, otherwise any 8bit chars in the
569 // control are simply *lost* (replaced by '?')
570 wxFontEncoding encoding
= wxFONTENCODING_SYSTEM
;
572 wxFont font
= m_defaultStyle
.GetFont();
578 encoding
= font
.GetEncoding();
581 if ( encoding
== wxFONTENCODING_SYSTEM
)
583 encoding
= wxLocale::GetSystemEncoding();
586 if ( encoding
== wxFONTENCODING_SYSTEM
)
588 encoding
= wxFONTENCODING_ISO8859_1
;
591 str
= StreamOut(encoding
);
595 // we have to manually extract the required part, luckily
596 // this is easy in this case as EOL characters in str are
597 // just LFs because we remove CRs in wxRichEditStreamOut
598 str
= str
.Mid(from
, to
- from
);
602 // StreamOut() wasn't used or failed, try to do it in normal way
604 #endif // !wxUSE_UNICODE
606 // alloc one extra WORD as needed by the control
607 wxStringBuffer
tmp(str
, ++len
);
611 textRange
.chrg
.cpMin
= from
;
612 textRange
.chrg
.cpMax
= to
;
613 textRange
.lpstrText
= p
;
615 (void)::SendMessage(GetHwnd(), EM_GETTEXTRANGE
,
616 0, (LPARAM
)&textRange
);
618 if ( m_verRichEdit
> 1 )
620 // RichEdit 2.0 uses just CR ('\r') for the
621 // newlines which is neither Unix nor Windows
622 // style - convert it to something reasonable
625 if ( *p
== _T('\r') )
631 if ( m_verRichEdit
== 1 )
633 // convert to the canonical form - see comment below
634 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
637 //else: no text at all, leave the string empty
640 #endif // wxUSE_RICHEDIT
643 str
= wxGetWindowText(GetHWND());
645 // need only a range?
648 str
= str
.Mid(from
, to
- from
);
651 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
652 // canonical one (same one as above) for consistency with the other kinds
653 // of controls and, more importantly, with the other ports
654 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
660 void wxTextCtrl::SetValue(const wxString
& value
)
662 // if the text is long enough, it's faster to just set it instead of first
663 // comparing it with the old one (chances are that it will be different
664 // anyhow, this comparison is there to avoid flicker for small single-line
665 // edit controls mostly)
666 if ( (value
.length() > 0x400) || (value
!= GetValue()) )
668 DoWriteText(value
, false /* not selection only */);
670 // for compatibility, don't move the cursor when doing SetValue()
671 SetInsertionPoint(0);
675 // still send an event for consistency
679 // we should reset the modified flag even if the value didn't really change
681 // mark the control as being not dirty - we changed its text, not the
686 #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)
688 // TODO: using memcpy() would improve performance a lot for big amounts of text
691 wxRichEditStreamIn(DWORD dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
695 const wchar_t ** const ppws
= (const wchar_t **)dwCookie
;
697 wchar_t *wbuf
= (wchar_t *)buf
;
698 const wchar_t *wpc
= *ppws
;
703 cb
-= sizeof(wchar_t);
704 (*pcb
) += sizeof(wchar_t);
712 // helper struct used to pass parameters from wxTextCtrl to wxRichEditStreamOut
713 struct wxStreamOutData
720 wxRichEditStreamOut(DWORD_PTR dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
724 wxStreamOutData
*data
= (wxStreamOutData
*)dwCookie
;
726 const wchar_t *wbuf
= (const wchar_t *)buf
;
727 wchar_t *wpc
= data
->wpc
;
730 wchar_t wch
= *wbuf
++;
732 // turn "\r\n" into "\n" on the fly
738 cb
-= sizeof(wchar_t);
739 (*pcb
) += sizeof(wchar_t);
748 #if wxUSE_UNICODE_MSLU
749 #define UNUSED_IF_MSLU(param)
751 #define UNUSED_IF_MSLU(param) param
755 wxTextCtrl::StreamIn(const wxString
& value
,
756 wxFontEncoding
UNUSED_IF_MSLU(encoding
),
759 #if wxUSE_UNICODE_MSLU
760 const wchar_t *wpc
= value
.c_str();
761 #else // !wxUSE_UNICODE_MSLU
762 wxCSConv
conv(encoding
);
764 const size_t len
= conv
.MB2WC(NULL
, value
, value
.length());
767 wxWCharBuffer
wchBuf(len
);
768 wchar_t *wpc
= wchBuf
.data();
770 wchar_t *wchBuf
= (wchar_t *)malloc((len
+ 1)*sizeof(wchar_t));
771 wchar_t *wpc
= wchBuf
;
774 conv
.MB2WC(wpc
, value
, value
.length());
775 #endif // wxUSE_UNICODE_MSLU
777 // finally, stream it in the control
780 eds
.dwCookie
= (DWORD
)&wpc
;
781 // the cast below is needed for broken (very) old mingw32 headers
782 eds
.pfnCallback
= (EDITSTREAMCALLBACK
)wxRichEditStreamIn
;
784 // same problem as in DoWriteText(): we can get multiple events here
785 UpdatesCountFilter
ucf(m_updatesCount
);
787 ::SendMessage(GetHwnd(), EM_STREAMIN
,
790 (selectionOnly
? SFF_SELECTION
: 0),
793 wxASSERT_MSG( ucf
.GotUpdate(), _T("EM_STREAMIN didn't send EN_UPDATE?") );
797 wxLogLastError(_T("EM_STREAMIN"));
802 #endif // !wxUSE_WCHAR_T
807 #if !wxUSE_UNICODE_MSLU
810 wxTextCtrl::StreamOut(wxFontEncoding encoding
, bool selectionOnly
) const
814 const int len
= GetWindowTextLength(GetHwnd());
817 wxWCharBuffer
wchBuf(len
);
818 wchar_t *wpc
= wchBuf
.data();
820 wchar_t *wchBuf
= (wchar_t *)malloc((len
+ 1)*sizeof(wchar_t));
821 wchar_t *wpc
= wchBuf
;
824 wxStreamOutData data
;
830 eds
.dwCookie
= (DWORD
)&data
;
831 eds
.pfnCallback
= wxRichEditStreamOut
;
837 SF_TEXT
| SF_UNICODE
| (selectionOnly
? SFF_SELECTION
: 0),
843 wxLogLastError(_T("EM_STREAMOUT"));
845 else // streamed out ok
847 // NUL-terminate the string because its length could have been
848 // decreased by wxRichEditStreamOut
849 *(wchBuf
.data() + data
.len
) = L
'\0';
851 // now convert to the given encoding (this is a possibly lossful
852 // conversion but what else can we do)
853 wxCSConv
conv(encoding
);
854 size_t lenNeeded
= conv
.WC2MB(NULL
, wchBuf
, 0);
857 conv
.WC2MB(wxStringBuffer(out
, lenNeeded
), wchBuf
, lenNeeded
);
863 #endif // !wxUSE_WCHAR_T
868 #endif // !wxUSE_UNICODE_MSLU
870 #endif // wxUSE_RICHEDIT
872 void wxTextCtrl::WriteText(const wxString
& value
)
877 void wxTextCtrl::DoWriteText(const wxString
& value
, bool selectionOnly
)
880 if ( m_windowStyle
& wxTE_MULTILINE
)
881 valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
886 // there are several complications with the rich edit controls here
890 // first, ensure that the new text will be in the default style
891 if ( !m_defaultStyle
.IsDefault() )
894 GetSelection(&start
, &end
);
895 SetStyle(start
, end
, m_defaultStyle
);
898 #if wxUSE_UNICODE_MSLU
899 // RichEdit doesn't have Unicode version of EM_REPLACESEL on Win9x,
900 // but EM_STREAMIN works
901 if ( wxUsingUnicowsDll() && GetRichVersion() > 1 )
903 done
= StreamIn(valueDos
, wxFONTENCODING_SYSTEM
, selectionOnly
);
905 #endif // wxUSE_UNICODE_MSLU
908 // next check if the text we're inserting must be shown in a non
909 // default charset -- this only works for RichEdit > 1.0
910 if ( GetRichVersion() > 1 )
912 wxFont font
= m_defaultStyle
.GetFont();
918 wxFontEncoding encoding
= font
.GetEncoding();
919 if ( encoding
!= wxFONTENCODING_SYSTEM
)
921 // we have to use EM_STREAMIN to force richedit control 2.0+
922 // to show any text in the non default charset -- otherwise
923 // it thinks it knows better than we do and always shows it
924 // in the default one
925 done
= StreamIn(valueDos
, encoding
, selectionOnly
);
929 #endif // !wxUSE_UNICODE
933 #endif // wxUSE_RICHEDIT
935 // in some cases we get 2 EN_CHANGE notifications after the SendMessage
936 // call (this happens for plain EDITs with EM_REPLACESEL and under some
937 // -- undetermined -- conditions with rich edit) and sometimes we don't
938 // get any events at all (plain EDIT with WM_SETTEXT), so ensure that
939 // we generate exactly one of them by ignoring all but the first one in
940 // SendUpdateEvent() and generating one ourselves if we hadn't got any
941 // notifications from Windows
942 UpdatesCountFilter
ucf(m_updatesCount
);
944 ::SendMessage(GetHwnd(), selectionOnly
? EM_REPLACESEL
: WM_SETTEXT
,
945 0, (LPARAM
)valueDos
.c_str());
947 if ( !ucf
.GotUpdate() )
954 void wxTextCtrl::AppendText(const wxString
& text
)
956 SetInsertionPointEnd();
961 // don't do this if we're frozen, saves some time
962 if ( !IsFrozen() && IsMultiLine() && GetRichVersion() > 1 )
964 // setting the caret to the end and showing it simply doesn't work for
965 // RichEdit 2.0 -- force it to still do what we want
966 ::SendMessage(GetHwnd(), EM_LINESCROLL
, 0, GetNumberOfLines());
968 #endif // wxUSE_RICHEDIT
971 void wxTextCtrl::Clear()
973 ::SetWindowText(GetHwnd(), wxEmptyString
);
977 #endif // wxUSE_RICHEDIT
979 // rich edit controls send EN_UPDATE from WM_SETTEXT handler themselves
980 // but the normal ones don't -- make Clear() behaviour consistent by
981 // always sending this event
983 // Windows already sends an update event for single-line
985 if ( m_windowStyle
& wxTE_MULTILINE
)
992 bool wxTextCtrl::EmulateKeyPress(const wxKeyEvent
& event
)
996 size_t lenOld
= GetValue().length();
998 wxUint32 code
= event
.GetRawKeyCode();
999 ::keybd_event((BYTE
)code
, 0, 0 /* key press */, 0);
1000 ::keybd_event((BYTE
)code
, 0, KEYEVENTF_KEYUP
, 0);
1002 // assume that any alphanumeric key changes the total number of characters
1003 // in the control - this should work in 99% of cases
1004 return GetValue().length() != lenOld
;
1009 // ----------------------------------------------------------------------------
1010 // Clipboard operations
1011 // ----------------------------------------------------------------------------
1013 void wxTextCtrl::Copy()
1017 ::SendMessage(GetHwnd(), WM_COPY
, 0, 0L);
1021 void wxTextCtrl::Cut()
1025 ::SendMessage(GetHwnd(), WM_CUT
, 0, 0L);
1029 void wxTextCtrl::Paste()
1033 ::SendMessage(GetHwnd(), WM_PASTE
, 0, 0L);
1037 bool wxTextCtrl::HasSelection() const
1040 GetSelection(&from
, &to
);
1044 bool wxTextCtrl::CanCopy() const
1046 // Can copy if there's a selection
1047 return HasSelection();
1050 bool wxTextCtrl::CanCut() const
1052 return CanCopy() && IsEditable();
1055 bool wxTextCtrl::CanPaste() const
1057 if ( !IsEditable() )
1063 UINT cf
= 0; // 0 == any format
1065 return ::SendMessage(GetHwnd(), EM_CANPASTE
, cf
, 0) != 0;
1067 #endif // wxUSE_RICHEDIT
1069 // Standard edit control: check for straight text on clipboard
1070 if ( !::OpenClipboard(GetHwndOf(wxTheApp
->GetTopWindow())) )
1073 bool isTextAvailable
= ::IsClipboardFormatAvailable(CF_TEXT
) != 0;
1076 return isTextAvailable
;
1079 // ----------------------------------------------------------------------------
1081 // ----------------------------------------------------------------------------
1083 void wxTextCtrl::SetEditable(bool editable
)
1085 HWND hWnd
= GetHwnd();
1086 ::SendMessage(hWnd
, EM_SETREADONLY
, (WPARAM
)!editable
, (LPARAM
)0L);
1089 void wxTextCtrl::SetInsertionPoint(long pos
)
1091 DoSetSelection(pos
, pos
);
1094 void wxTextCtrl::SetInsertionPointEnd()
1096 // we must not do anything if the caret is already there because calling
1097 // SetInsertionPoint() thaws the controls if Freeze() had been called even
1098 // if it doesn't actually move the caret anywhere and so the simple fact of
1099 // doing it results in horrible flicker when appending big amounts of text
1100 // to the control in a few chunks (see DoAddText() test in the text sample)
1101 if ( GetInsertionPoint() == GetLastPosition() )
1109 if ( m_verRichEdit
== 1 )
1111 // we don't have to waste time calling GetLastPosition() in this case
1114 else // !RichEdit 1.0
1115 #endif // wxUSE_RICHEDIT
1117 pos
= GetLastPosition();
1120 SetInsertionPoint(pos
);
1123 long wxTextCtrl::GetInsertionPoint() const
1131 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &range
);
1134 #endif // wxUSE_RICHEDIT
1136 DWORD Pos
= (DWORD
)::SendMessage(GetHwnd(), EM_GETSEL
, 0, 0L);
1137 return Pos
& 0xFFFF;
1140 wxTextPos
wxTextCtrl::GetLastPosition() const
1142 int numLines
= GetNumberOfLines();
1143 long posStartLastLine
= XYToPosition(0, numLines
- 1);
1145 long lenLastLine
= GetLengthOfLineContainingPos(posStartLastLine
);
1147 return posStartLastLine
+ lenLastLine
;
1150 // If the return values from and to are the same, there is no
1152 void wxTextCtrl::GetSelection(long* from
, long* to
) const
1157 CHARRANGE charRange
;
1158 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &charRange
);
1160 *from
= charRange
.cpMin
;
1161 *to
= charRange
.cpMax
;
1164 #endif // !wxUSE_RICHEDIT
1166 DWORD dwStart
, dwEnd
;
1167 ::SendMessage(GetHwnd(), EM_GETSEL
, (WPARAM
)&dwStart
, (LPARAM
)&dwEnd
);
1174 bool wxTextCtrl::IsEditable() const
1176 // strangely enough, we may be called before the control is created: our
1177 // own Create() calls MSWGetStyle() which calls AcceptsFocus() which calls
1182 long style
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1184 return (style
& ES_READONLY
) == 0;
1187 // ----------------------------------------------------------------------------
1189 // ----------------------------------------------------------------------------
1191 void wxTextCtrl::SetSelection(long from
, long to
)
1193 // if from and to are both -1, it means (in wxWidgets) that all text should
1194 // be selected - translate into Windows convention
1195 if ( (from
== -1) && (to
== -1) )
1201 DoSetSelection(from
, to
);
1204 void wxTextCtrl::DoSetSelection(long from
, long to
, bool scrollCaret
)
1206 HWND hWnd
= GetHwnd();
1214 ::SendMessage(hWnd
, EM_EXSETSEL
, 0, (LPARAM
) &range
);
1217 #endif // wxUSE_RICHEDIT
1219 ::SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)from
, (LPARAM
)to
);
1222 if ( scrollCaret
&& !IsFrozen() )
1225 // richedit 3.0 (i.e. the version living in riched20.dll distributed
1226 // with Windows 2000 and beyond) doesn't honour EM_SCROLLCARET when
1227 // emulating richedit 2.0 unless the control has focus or ECO_NOHIDESEL
1228 // option is set (but it does work ok in richedit 1.0 mode...)
1230 // so to make it work we either need to give focus to it here which
1231 // will probably create many problems (dummy focus events; window
1232 // containing the text control being brought to foreground
1233 // unexpectedly; ...) or to temporarily set ECO_NOHIDESEL which may
1234 // create other problems too -- and in fact it does because if we turn
1235 // on/off this style while appending the text to the control, the
1236 // vertical scrollbar never appears in it even if we append tons of
1237 // text and to work around this the only solution I found was to use
1238 // ES_DISABLENOSCROLL
1240 // this is very ugly but I don't see any other way to make this work
1241 if ( GetRichVersion() > 1 )
1243 if ( !HasFlag(wxTE_NOHIDESEL
) )
1245 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1246 ECOOP_OR
, ECO_NOHIDESEL
);
1248 //else: everything is already ok
1250 #endif // wxUSE_RICHEDIT
1252 ::SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
1255 // restore ECO_NOHIDESEL if we changed it
1256 if ( GetRichVersion() > 1 && !HasFlag(wxTE_NOHIDESEL
) )
1258 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1259 ECOOP_AND
, ~ECO_NOHIDESEL
);
1261 #endif // wxUSE_RICHEDIT
1265 // ----------------------------------------------------------------------------
1266 // Working with files
1267 // ----------------------------------------------------------------------------
1269 bool wxTextCtrl::LoadFile(const wxString
& file
)
1271 if ( wxTextCtrlBase::LoadFile(file
) )
1273 // update the size limit if needed
1282 // ----------------------------------------------------------------------------
1284 // ----------------------------------------------------------------------------
1286 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
1288 // Set selection and remove it
1289 DoSetSelection(from
, to
, false /* don't scroll caret into view */);
1291 DoWriteText(value
, true /* selection only */);
1294 void wxTextCtrl::Remove(long from
, long to
)
1296 Replace(from
, to
, wxEmptyString
);
1299 bool wxTextCtrl::IsModified() const
1301 return ::SendMessage(GetHwnd(), EM_GETMODIFY
, 0, 0) != 0;
1304 void wxTextCtrl::MarkDirty()
1306 ::SendMessage(GetHwnd(), EM_SETMODIFY
, TRUE
, 0L);
1309 void wxTextCtrl::DiscardEdits()
1311 ::SendMessage(GetHwnd(), EM_SETMODIFY
, FALSE
, 0L);
1314 int wxTextCtrl::GetNumberOfLines() const
1316 return (int)::SendMessage(GetHwnd(), EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0);
1319 // ----------------------------------------------------------------------------
1320 // Positions <-> coords
1321 // ----------------------------------------------------------------------------
1323 long wxTextCtrl::XYToPosition(long x
, long y
) const
1325 // This gets the char index for the _beginning_ of this line
1326 long charIndex
= ::SendMessage(GetHwnd(), EM_LINEINDEX
, (WPARAM
)y
, (LPARAM
)0);
1328 return charIndex
+ x
;
1331 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
1333 HWND hWnd
= GetHwnd();
1335 // This gets the line number containing the character
1340 lineNo
= ::SendMessage(hWnd
, EM_EXLINEFROMCHAR
, 0, (LPARAM
)pos
);
1343 #endif // wxUSE_RICHEDIT
1345 lineNo
= ::SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, 0);
1354 // This gets the char index for the _beginning_ of this line
1355 long charIndex
= ::SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)lineNo
, (LPARAM
)0);
1356 if ( charIndex
== -1 )
1361 // The X position must therefore be the different between pos and charIndex
1363 *x
= pos
- charIndex
;
1370 wxTextCtrlHitTestResult
1371 wxTextCtrl::HitTest(const wxPoint
& pt
, long *posOut
) const
1373 // first get the position from Windows
1380 // for rich edit controls the position is passed iva the struct fields
1383 lParam
= (LPARAM
)&ptl
;
1386 #endif // wxUSE_RICHEDIT
1388 // for the plain ones, we are limited to 16 bit positions which are
1389 // combined in a single 32 bit value
1390 lParam
= MAKELPARAM(pt
.x
, pt
.y
);
1393 LRESULT pos
= ::SendMessage(GetHwnd(), EM_CHARFROMPOS
, 0, lParam
);
1397 // this seems to indicate an error...
1398 return wxTE_HT_UNKNOWN
;
1403 #endif // wxUSE_RICHEDIT
1405 // for plain EDIT controls the higher word contains something else
1410 // next determine where it is relatively to our point: EM_CHARFROMPOS
1411 // always returns the closest character but we need to be more precise, so
1412 // double check that we really are where it pretends
1416 // FIXME: we need to distinguish between richedit 2 and 3 here somehow but
1417 // we don't know how to do it
1420 ::SendMessage(GetHwnd(), EM_POSFROMCHAR
, (WPARAM
)&ptReal
, pos
);
1423 #endif // wxUSE_RICHEDIT
1425 LRESULT lRc
= ::SendMessage(GetHwnd(), EM_POSFROMCHAR
, pos
, 0);
1429 // this is apparently returned when pos corresponds to the last
1436 ptReal
.x
= LOWORD(lRc
);
1437 ptReal
.y
= HIWORD(lRc
);
1441 wxTextCtrlHitTestResult rc
;
1443 if ( pt
.y
> ptReal
.y
+ GetCharHeight() )
1445 else if ( pt
.x
> ptReal
.x
+ GetCharWidth() )
1446 rc
= wxTE_HT_BEYOND
;
1448 rc
= wxTE_HT_ON_TEXT
;
1456 // ----------------------------------------------------------------------------
1458 // ----------------------------------------------------------------------------
1460 void wxTextCtrl::ShowPosition(long pos
)
1462 HWND hWnd
= GetHwnd();
1464 // To scroll to a position, we pass the number of lines and characters
1465 // to scroll *by*. This means that we need to:
1466 // (1) Find the line position of the current line.
1467 // (2) Find the line position of pos.
1468 // (3) Scroll by (pos - current).
1469 // For now, ignore the horizontal scrolling.
1471 // Is this where scrolling is relative to - the line containing the caret?
1472 // Or is the first visible line??? Try first visible line.
1473 // int currentLineLineNo1 = (int)::SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L);
1475 int currentLineLineNo
= (int)::SendMessage(hWnd
, EM_GETFIRSTVISIBLELINE
, (WPARAM
)0, (LPARAM
)0L);
1477 int specifiedLineLineNo
= (int)::SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, (LPARAM
)0L);
1479 int linesToScroll
= specifiedLineLineNo
- currentLineLineNo
;
1481 if (linesToScroll
!= 0)
1482 (void)::SendMessage(hWnd
, EM_LINESCROLL
, (WPARAM
)0, (LPARAM
)linesToScroll
);
1485 long wxTextCtrl::GetLengthOfLineContainingPos(long pos
) const
1487 return ::SendMessage(GetHwnd(), EM_LINELENGTH
, (WPARAM
)pos
, 0);
1490 int wxTextCtrl::GetLineLength(long lineNo
) const
1492 long pos
= XYToPosition(0, lineNo
);
1494 return GetLengthOfLineContainingPos(pos
);
1497 wxString
wxTextCtrl::GetLineText(long lineNo
) const
1499 size_t len
= (size_t)GetLineLength(lineNo
) + 1;
1501 // there must be at least enough place for the length WORD in the
1503 len
+= sizeof(WORD
);
1507 wxStringBufferLength
tmp(str
, len
);
1510 *(WORD
*)buf
= (WORD
)len
;
1511 len
= (size_t)::SendMessage(GetHwnd(), EM_GETLINE
, lineNo
, (LPARAM
)buf
);
1516 // remove the '\r' returned by the rich edit control, the user code
1517 // should never see it
1518 if ( buf
[len
- 2] == _T('\r') && buf
[len
- 1] == _T('\n') )
1520 buf
[len
- 2] = _T('\n');
1524 #endif // wxUSE_RICHEDIT
1526 // remove the '\n' at the end, if any (this is how this function is
1527 // supposed to work according to the docs)
1528 if ( buf
[len
- 1] == _T('\n') )
1540 void wxTextCtrl::SetMaxLength(unsigned long len
)
1544 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, (LPARAM
) (DWORD
) len
);
1547 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, len
, 0);
1550 // ----------------------------------------------------------------------------
1552 // ----------------------------------------------------------------------------
1554 void wxTextCtrl::Undo()
1558 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
1562 void wxTextCtrl::Redo()
1567 if (GetRichVersion() > 1)
1568 ::SendMessage(GetHwnd(), EM_REDO
, 0, 0);
1571 // Same as Undo, since Undo undoes the undo, i.e. a redo.
1572 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
1576 bool wxTextCtrl::CanUndo() const
1578 return ::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0;
1581 bool wxTextCtrl::CanRedo() const
1584 if (GetRichVersion() > 1)
1585 return ::SendMessage(GetHwnd(), EM_CANREDO
, 0, 0) != 0;
1588 return ::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0;
1591 // ----------------------------------------------------------------------------
1592 // caret handling (Windows only)
1593 // ----------------------------------------------------------------------------
1595 bool wxTextCtrl::ShowNativeCaret(bool show
)
1597 if ( show
!= m_isNativeCaretShown
)
1599 if ( !(show
? ::ShowCaret(GetHwnd()) : ::HideCaret(GetHwnd())) )
1601 // not an error, may simply indicate that it's not shown/hidden
1602 // yet (i.e. it had been hidden/showh 2 times before)
1606 m_isNativeCaretShown
= show
;
1612 // ----------------------------------------------------------------------------
1613 // implemenation details
1614 // ----------------------------------------------------------------------------
1616 void wxTextCtrl::Command(wxCommandEvent
& event
)
1618 SetValue(event
.GetString());
1619 ProcessCommand (event
);
1622 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
1624 // By default, load the first file into the text window.
1625 if (event
.GetNumberOfFiles() > 0)
1627 LoadFile(event
.GetFiles()[0]);
1631 // ----------------------------------------------------------------------------
1632 // kbd input processing
1633 // ----------------------------------------------------------------------------
1635 bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG
* pMsg
)
1637 MSG
*msg
= (MSG
*)pMsg
;
1639 // check for our special keys here: if we don't do it and the parent frame
1640 // uses them as accelerators, they wouldn't work at all, so we disable
1641 // usual preprocessing for them
1642 if ( msg
->message
== WM_KEYDOWN
)
1644 WORD vkey
= (WORD
) msg
->wParam
;
1645 if ( (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
1647 if ( vkey
== VK_BACK
)
1652 // we want to process some Ctrl-foo and Shift-bar but no key
1653 // combinations without either Ctrl or Shift nor with both of them
1655 const int ctrl
= wxIsCtrlDown(),
1656 shift
= wxIsShiftDown();
1657 switch ( ctrl
+ shift
)
1660 wxFAIL_MSG( _T("how many modifiers have we got?") );
1668 // either Ctrl or Shift pressed
1683 else // Shift is pressed
1685 if ( vkey
== VK_INSERT
|| vkey
== VK_DELETE
)
1692 return wxControl::MSWShouldPreProcessMessage(pMsg
);
1695 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
1697 switch ( event
.GetKeyCode() )
1700 if ( !HasFlag(wxTE_MULTILINE
) )
1702 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1703 InitCommandEvent(event
);
1704 event
.SetString(GetValue());
1705 if ( GetEventHandler()->ProcessEvent(event
) )
1708 //else: multiline controls need Enter for themselves
1713 // ok, so this is getting absolutely ridiculous but I don't see
1714 // any other way to fix this bug: when a multiline text control is
1715 // inside a wxFrame, we need to generate the navigation event as
1716 // otherwise nothing happens at all, but when the same control is
1717 // created inside a dialog, IsDialogMessage() *does* switch focus
1718 // all by itself and so if we do it here as well, it is advanced
1719 // twice and goes to the next control... to prevent this from
1720 // happening we're doing this ugly check, the logic being that if
1721 // we don't have focus then it had been already changed to the next
1724 // the right thing to do would, of course, be to understand what
1725 // the hell is IsDialogMessage() doing but this is beyond my feeble
1726 // forces at the moment unfortunately
1727 if ( !(m_windowStyle
& wxTE_PROCESS_TAB
))
1729 if ( FindFocus() == this )
1732 if (!event
.ShiftDown())
1733 flags
|= wxNavigationKeyEvent::IsForward
;
1734 if (event
.ControlDown())
1735 flags
|= wxNavigationKeyEvent::WinChange
;
1736 if (Navigate(flags
))
1742 // Insert tab since calling the default Windows handler
1743 // doesn't seem to do it
1744 WriteText(wxT("\t"));
1749 // no, we didn't process it
1753 WXLRESULT
wxTextCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1755 WXLRESULT lRc
= wxTextCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
1757 if ( nMsg
== WM_GETDLGCODE
)
1759 // we always want the chars and the arrows: the arrows for navigation
1760 // and the chars because we want Ctrl-C to work even in a read only
1762 long lDlgCode
= DLGC_WANTCHARS
| DLGC_WANTARROWS
;
1766 // we may have several different cases:
1767 // 1. normal case: both TAB and ENTER are used for dlg navigation
1768 // 2. ctrl which wants TAB for itself: ENTER is used to pass to the
1769 // next control in the dialog
1770 // 3. ctrl which wants ENTER for itself: TAB is used for dialog
1772 // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to go
1773 // to the next control
1775 // the multiline edit control should always get <Return> for itself
1776 if ( HasFlag(wxTE_PROCESS_ENTER
) || HasFlag(wxTE_MULTILINE
) )
1777 lDlgCode
|= DLGC_WANTMESSAGE
;
1779 if ( HasFlag(wxTE_PROCESS_TAB
) )
1780 lDlgCode
|= DLGC_WANTTAB
;
1786 // NB: use "=", not "|=" as the base class version returns the
1787 // same flags is this state as usual (i.e. including
1788 // DLGC_WANTMESSAGE). This is strange (how does it work in the
1789 // native Win32 apps?) but for now live with it.
1797 // ----------------------------------------------------------------------------
1798 // text control event processing
1799 // ----------------------------------------------------------------------------
1801 bool wxTextCtrl::SendUpdateEvent()
1803 switch ( m_updatesCount
)
1806 // remember that we've got an update
1811 // we had already sent one event since the last control modification
1815 wxFAIL_MSG( _T("unexpected wxTextCtrl::m_updatesCount value") );
1819 // we hadn't updated the control ourselves, this event comes from
1820 // the user, don't need to ignore it nor update the count
1824 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, GetId());
1825 InitCommandEvent(event
);
1827 return ProcessCommand(event
);
1830 bool wxTextCtrl::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
1837 wxFocusEvent
event(param
== EN_KILLFOCUS
? wxEVT_KILL_FOCUS
1840 event
.SetEventObject(this);
1841 GetEventHandler()->ProcessEvent(event
);
1850 // the text size limit has been hit -- try to increase it
1851 if ( !AdjustSpaceLimit() )
1853 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, m_windowId
);
1854 InitCommandEvent(event
);
1855 event
.SetString(GetValue());
1856 ProcessCommand(event
);
1860 // the other edit notification messages are not processed
1869 WXHBRUSH
wxTextCtrl::MSWControlColor(WXHDC hDC
)
1871 if ( !IsEnabled() && !HasFlag(wxTE_MULTILINE
) )
1872 return MSWControlColorDisabled(hDC
);
1874 return wxTextCtrlBase::MSWControlColorSolid(hDC
);
1877 bool wxTextCtrl::AdjustSpaceLimit()
1879 unsigned int limit
= ::SendMessage(GetHwnd(), EM_GETLIMITTEXT
, 0, 0);
1881 // HACK: we try to automatically extend the limit for the amount of text
1882 // to allow (interactively) entering more than 64Kb of text under
1883 // Win9x but we shouldn't reset the text limit which was previously
1884 // set explicitly with SetMaxLength()
1886 // we could solve this by storing the limit we set in wxTextCtrl but
1887 // to save space we prefer to simply test here the actual limit
1888 // value: we consider that SetMaxLength() can only be called for
1890 if ( limit
< 0x8000 )
1892 // we've got more text than limit set by SetMaxLength()
1896 unsigned int len
= ::GetWindowTextLength(GetHwnd());
1899 limit
= len
+ 0x8000; // 32Kb
1904 // as a nice side effect, this also allows passing limit > 64Kb
1905 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, limit
);
1908 #endif // wxUSE_RICHEDIT
1910 if ( limit
> 0xffff )
1912 // this will set it to a platform-dependent maximum (much more
1913 // than 64Kb under NT)
1917 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, limit
, 0);
1921 // we changed the limit
1925 bool wxTextCtrl::AcceptsFocus() const
1927 // we don't want focus if we can't be edited unless we're a multiline
1928 // control because then it might be still nice to get focus from keyboard
1929 // to be able to scroll it without mouse
1930 return (IsEditable() || IsMultiLine()) && wxControl::AcceptsFocus();
1933 wxSize
wxTextCtrl::DoGetBestSize() const
1936 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
1938 int wText
= DEFAULT_ITEM_WIDTH
;
1941 if ( m_windowStyle
& wxTE_MULTILINE
)
1943 hText
*= wxMax(GetNumberOfLines(), 5);
1945 //else: for single line control everything is ok
1947 // we have to add the adjustments for the control height only once, not
1948 // once per line, so do it after multiplication above
1949 hText
+= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
) - cy
;
1951 return wxSize(wText
, hText
);
1954 // ----------------------------------------------------------------------------
1955 // standard handlers for standard edit menu events
1956 // ----------------------------------------------------------------------------
1958 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1963 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1968 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1973 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1978 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1983 void wxTextCtrl::OnDelete(wxCommandEvent
& WXUNUSED(event
))
1986 GetSelection(& from
, & to
);
1987 if (from
!= -1 && to
!= -1)
1991 void wxTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
1993 SetSelection(-1, -1);
1996 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1998 event
.Enable( CanCut() );
2001 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
2003 event
.Enable( CanCopy() );
2006 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
2008 event
.Enable( CanPaste() );
2011 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
2013 event
.Enable( CanUndo() );
2016 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
2018 event
.Enable( CanRedo() );
2021 void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent
& event
)
2024 GetSelection(& from
, & to
);
2025 event
.Enable(from
!= -1 && to
!= -1 && from
!= to
&& IsEditable()) ;
2028 void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
2030 event
.Enable(GetLastPosition() > 0);
2033 void wxTextCtrl::OnRightClick(wxMouseEvent
& event
)
2038 if (!m_privateContextMenu
)
2040 m_privateContextMenu
= new wxMenu
;
2041 m_privateContextMenu
->Append(wxID_UNDO
, _("&Undo"));
2042 m_privateContextMenu
->Append(wxID_REDO
, _("&Redo"));
2043 m_privateContextMenu
->AppendSeparator();
2044 m_privateContextMenu
->Append(wxID_CUT
, _("Cu&t"));
2045 m_privateContextMenu
->Append(wxID_COPY
, _("&Copy"));
2046 m_privateContextMenu
->Append(wxID_PASTE
, _("&Paste"));
2047 m_privateContextMenu
->Append(wxID_CLEAR
, _("&Delete"));
2048 m_privateContextMenu
->AppendSeparator();
2049 m_privateContextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
2051 PopupMenu(m_privateContextMenu
, event
.GetPosition());
2059 void wxTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
2061 // be sure the caret remains invisible if the user had hidden it
2062 if ( !m_isNativeCaretShown
)
2064 ::HideCaret(GetHwnd());
2068 // ----------------------------------------------------------------------------
2069 // Default colors for MSW text control
2071 // Set default background color to the native white instead of
2072 // the default wxSYS_COLOUR_BTNFACE (is triggered with wxNullColour).
2073 // ----------------------------------------------------------------------------
2075 wxVisualAttributes
wxTextCtrl::GetDefaultAttributes() const
2077 wxVisualAttributes attrs
;
2078 attrs
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
2079 attrs
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
2080 attrs
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
); //white
2085 // the rest of the file only deals with the rich edit controls
2088 // ----------------------------------------------------------------------------
2089 // EN_LINK processing
2090 // ----------------------------------------------------------------------------
2092 bool wxTextCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
2094 NMHDR
*hdr
= (NMHDR
* )lParam
;
2095 switch ( hdr
->code
)
2099 const MSGFILTER
*msgf
= (MSGFILTER
*)lParam
;
2100 UINT msg
= msgf
->msg
;
2102 // this is a bit crazy but richedit 1.0 sends us all mouse
2103 // events _except_ WM_LBUTTONUP (don't ask me why) so we have
2104 // generate the wxWin events for this message manually
2106 // NB: in fact, this is still not totally correct as it does
2107 // send us WM_LBUTTONUP if the selection was cleared by the
2108 // last click -- so currently we get 2 events in this case,
2109 // but as I don't see any obvious way to check for this I
2110 // leave this code in place because it's still better than
2111 // not getting left up events at all
2112 if ( msg
== WM_LBUTTONUP
)
2114 WXUINT flags
= msgf
->wParam
;
2115 int x
= GET_X_LPARAM(msgf
->lParam
),
2116 y
= GET_Y_LPARAM(msgf
->lParam
);
2118 HandleMouseEvent(msg
, x
, y
, flags
);
2122 // return true to process the event (and false to ignore it)
2127 const ENLINK
*enlink
= (ENLINK
*)hdr
;
2129 switch ( enlink
->msg
)
2132 // ok, so it is hardcoded - do we really nee to
2135 wxCursor
cur(wxCURSOR_HAND
);
2136 ::SetCursor(GetHcursorOf(cur
));
2142 case WM_LBUTTONDOWN
:
2144 case WM_LBUTTONDBLCLK
:
2145 case WM_RBUTTONDOWN
:
2147 case WM_RBUTTONDBLCLK
:
2148 // send a mouse event
2150 static const wxEventType eventsMouse
[] =
2161 // the event ids are consecutive
2163 evtMouse(eventsMouse
[enlink
->msg
- WM_MOUSEMOVE
]);
2165 InitMouseEvent(evtMouse
,
2166 GET_X_LPARAM(enlink
->lParam
),
2167 GET_Y_LPARAM(enlink
->lParam
),
2170 wxTextUrlEvent
event(m_windowId
, evtMouse
,
2172 enlink
->chrg
.cpMax
);
2174 InitCommandEvent(event
);
2176 *result
= ProcessCommand(event
);
2184 // not processed, leave it to the base class
2185 return wxTextCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
);
2188 // ----------------------------------------------------------------------------
2189 // colour setting for the rich edit controls
2190 // ----------------------------------------------------------------------------
2192 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
2194 if ( !wxTextCtrlBase::SetBackgroundColour(colour
) )
2196 // colour didn't really change
2202 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
2203 // EM_SETBKGNDCOLOR additionally
2204 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR
, 0, wxColourToRGB(colour
));
2210 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
2212 if ( !wxTextCtrlBase::SetForegroundColour(colour
) )
2214 // colour didn't really change
2220 // change the colour of everything
2223 cf
.cbSize
= sizeof(cf
);
2224 cf
.dwMask
= CFM_COLOR
;
2225 cf
.crTextColor
= wxColourToRGB(colour
);
2226 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
, SCF_ALL
, (LPARAM
)&cf
);
2232 // ----------------------------------------------------------------------------
2233 // styling support for rich edit controls
2234 // ----------------------------------------------------------------------------
2238 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
2242 // can't do it with normal text control
2246 // the richedit 1.0 doesn't handle setting background colour, so don't
2247 // even try to do anything if it's the only thing we want to change
2248 if ( m_verRichEdit
== 1 && !style
.HasFont() && !style
.HasTextColour() &&
2249 !style
.HasLeftIndent() && !style
.HasRightIndent() && !style
.HasAlignment() &&
2252 // nothing to do: return true if there was really nothing to do and
2253 // false if we failed to set bg colour
2254 return !style
.HasBackgroundColour();
2257 // order the range if needed
2265 // we can only change the format of the selection, so select the range we
2266 // want and restore the old selection later
2267 long startOld
, endOld
;
2268 GetSelection(&startOld
, &endOld
);
2270 // but do we really have to change the selection?
2271 bool changeSel
= start
!= startOld
|| end
!= endOld
;
2275 DoSetSelection(start
, end
, false /* don't scroll caret into view */);
2278 // initialize CHARFORMAT struct
2287 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2288 // CHARFORMAT in that case
2290 if ( m_verRichEdit
== 1 )
2292 // this is the only thing the control is going to grok
2293 cf
.cbSize
= sizeof(CHARFORMAT
);
2298 // CHARFORMAT or CHARFORMAT2
2299 cf
.cbSize
= sizeof(cf
);
2302 if ( style
.HasFont() )
2304 // VZ: CFM_CHARSET doesn't seem to do anything at all in RichEdit 2.0
2305 // but using it doesn't seem to hurt neither so leaving it for now
2307 cf
.dwMask
|= CFM_FACE
| CFM_SIZE
| CFM_CHARSET
|
2308 CFM_ITALIC
| CFM_BOLD
| CFM_UNDERLINE
;
2310 // fill in data from LOGFONT but recalculate lfHeight because we need
2311 // the real height in twips and not the negative number which
2312 // wxFillLogFont() returns (this is correct in general and works with
2313 // the Windows font mapper, but not here)
2315 wxFillLogFont(&lf
, &style
.GetFont());
2316 cf
.yHeight
= 20*style
.GetFont().GetPointSize(); // 1 pt = 20 twips
2317 cf
.bCharSet
= lf
.lfCharSet
;
2318 cf
.bPitchAndFamily
= lf
.lfPitchAndFamily
;
2319 wxStrncpy( cf
.szFaceName
, lf
.lfFaceName
, WXSIZEOF(cf
.szFaceName
) );
2321 // also deal with underline/italic/bold attributes: note that we must
2322 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
2323 // style to allow clearing it
2326 cf
.dwEffects
|= CFE_ITALIC
;
2329 if ( lf
.lfWeight
== FW_BOLD
)
2331 cf
.dwEffects
|= CFE_BOLD
;
2334 if ( lf
.lfUnderline
)
2336 cf
.dwEffects
|= CFE_UNDERLINE
;
2339 // strikeout fonts are not supported by wxWidgets
2342 if ( style
.HasTextColour() )
2344 cf
.dwMask
|= CFM_COLOR
;
2345 cf
.crTextColor
= wxColourToRGB(style
.GetTextColour());
2349 if ( m_verRichEdit
!= 1 && style
.HasBackgroundColour() )
2351 cf
.dwMask
|= CFM_BACKCOLOR
;
2352 cf
.crBackColor
= wxColourToRGB(style
.GetBackgroundColour());
2354 #endif // wxUSE_RICHEDIT2
2356 // do format the selection
2357 bool ok
= ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
,
2358 SCF_SELECTION
, (LPARAM
)&cf
) != 0;
2361 wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed"));
2364 // now do the paragraph formatting
2367 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2368 // PARAFORMAT in that case
2370 if ( m_verRichEdit
== 1 )
2372 // this is the only thing the control is going to grok
2373 pf
.cbSize
= sizeof(PARAFORMAT
);
2378 // PARAFORMAT or PARAFORMAT2
2379 pf
.cbSize
= sizeof(pf
);
2382 if (style
.HasAlignment())
2384 pf
.dwMask
|= PFM_ALIGNMENT
;
2385 if (style
.GetAlignment() == wxTEXT_ALIGNMENT_RIGHT
)
2386 pf
.wAlignment
= PFA_RIGHT
;
2387 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_CENTRE
)
2388 pf
.wAlignment
= PFA_CENTER
;
2389 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_JUSTIFIED
)
2390 pf
.wAlignment
= PFA_JUSTIFY
;
2392 pf
.wAlignment
= PFA_LEFT
;
2395 if (style
.HasLeftIndent())
2397 pf
.dwMask
|= PFM_STARTINDENT
| PFM_OFFSET
;
2399 // Convert from 1/10 mm to TWIPS
2400 pf
.dxStartIndent
= (int) (((double) style
.GetLeftIndent()) * mm2twips
/ 10.0) ;
2401 pf
.dxOffset
= (int) (((double) style
.GetLeftSubIndent()) * mm2twips
/ 10.0) ;
2404 if (style
.HasRightIndent())
2406 pf
.dwMask
|= PFM_RIGHTINDENT
;
2408 // Convert from 1/10 mm to TWIPS
2409 pf
.dxRightIndent
= (int) (((double) style
.GetRightIndent()) * mm2twips
/ 10.0) ;
2412 if (style
.HasTabs())
2414 pf
.dwMask
|= PFM_TABSTOPS
;
2416 const wxArrayInt
& tabs
= style
.GetTabs();
2418 pf
.cTabCount
= (SHORT
)wxMin(tabs
.GetCount(), MAX_TAB_STOPS
);
2420 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2422 // Convert from 1/10 mm to TWIPS
2423 pf
.rgxTabs
[i
] = (int) (((double) tabs
[i
]) * mm2twips
/ 10.0) ;
2429 // do format the selection
2430 bool ok
= ::SendMessage(GetHwnd(), EM_SETPARAFORMAT
,
2431 0, (LPARAM
) &pf
) != 0;
2434 wxLogDebug(_T("SendMessage(EM_SETPARAFORMAT, 0) failed"));
2440 // restore the original selection
2441 DoSetSelection(startOld
, endOld
, false);
2447 bool wxTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
2449 if ( !wxTextCtrlBase::SetDefaultStyle(style
) )
2454 // we have to do this or the style wouldn't apply for the text typed by
2456 wxTextPos posLast
= GetLastPosition();
2457 SetStyle(posLast
, posLast
, m_defaultStyle
);
2463 bool wxTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
2467 // can't do it with normal text control
2471 // initialize CHARFORMAT struct
2480 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2481 // CHARFORMAT in that case
2483 if ( m_verRichEdit
== 1 )
2485 // this is the only thing the control is going to grok
2486 cf
.cbSize
= sizeof(CHARFORMAT
);
2491 // CHARFORMAT or CHARFORMAT2
2492 cf
.cbSize
= sizeof(cf
);
2494 // we can only change the format of the selection, so select the range we
2495 // want and restore the old selection later
2496 long startOld
, endOld
;
2497 GetSelection(&startOld
, &endOld
);
2499 // but do we really have to change the selection?
2500 bool changeSel
= position
!= startOld
|| position
!= endOld
;
2504 DoSetSelection(position
, position
, false /* don't scroll caret into view */);
2507 // get the selection formatting
2508 (void) ::SendMessage(GetHwnd(), EM_GETCHARFORMAT
,
2509 SCF_SELECTION
, (LPARAM
)&cf
) ;
2513 lf
.lfHeight
= cf
.yHeight
;
2515 lf
.lfCharSet
= ANSI_CHARSET
; // FIXME: how to get correct charset?
2516 lf
.lfClipPrecision
= 0;
2517 lf
.lfEscapement
= 0;
2518 wxStrcpy(lf
.lfFaceName
, cf
.szFaceName
);
2520 //NOTE: we _MUST_ set each of these values to _something_ since we
2521 //do not call wxZeroMemory on the LOGFONT lf
2522 if (cf
.dwEffects
& CFE_ITALIC
)
2525 lf
.lfItalic
= FALSE
;
2527 lf
.lfOrientation
= 0;
2528 lf
.lfPitchAndFamily
= cf
.bPitchAndFamily
;
2531 if (cf
.dwEffects
& CFE_STRIKEOUT
)
2532 lf
.lfStrikeOut
= TRUE
;
2534 lf
.lfStrikeOut
= FALSE
;
2536 if (cf
.dwEffects
& CFE_UNDERLINE
)
2537 lf
.lfUnderline
= TRUE
;
2539 lf
.lfUnderline
= FALSE
;
2541 if (cf
.dwEffects
& CFE_BOLD
)
2542 lf
.lfWeight
= FW_BOLD
;
2544 lf
.lfWeight
= FW_NORMAL
;
2546 wxFont font
= wxCreateFontFromLogFont(& lf
);
2549 style
.SetFont(font
);
2551 style
.SetTextColour(wxColour(cf
.crTextColor
));
2554 if ( m_verRichEdit
!= 1 )
2556 // cf.dwMask |= CFM_BACKCOLOR;
2557 style
.SetBackgroundColour(wxColour(cf
.crBackColor
));
2559 #endif // wxUSE_RICHEDIT2
2561 // now get the paragraph formatting
2564 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2565 // PARAFORMAT in that case
2567 if ( m_verRichEdit
== 1 )
2569 // this is the only thing the control is going to grok
2570 pf
.cbSize
= sizeof(PARAFORMAT
);
2575 // PARAFORMAT or PARAFORMAT2
2576 pf
.cbSize
= sizeof(pf
);
2579 // do format the selection
2580 (void) ::SendMessage(GetHwnd(), EM_GETPARAFORMAT
, 0, (LPARAM
) &pf
) ;
2582 style
.SetLeftIndent( (int) ((double) pf
.dxStartIndent
* twips2mm
* 10.0), (int) ((double) pf
.dxOffset
* twips2mm
* 10.0) );
2583 style
.SetRightIndent( (int) ((double) pf
.dxRightIndent
* twips2mm
* 10.0) );
2585 if (pf
.wAlignment
== PFA_CENTER
)
2586 style
.SetAlignment(wxTEXT_ALIGNMENT_CENTRE
);
2587 else if (pf
.wAlignment
== PFA_RIGHT
)
2588 style
.SetAlignment(wxTEXT_ALIGNMENT_RIGHT
);
2589 else if (pf
.wAlignment
== PFA_JUSTIFY
)
2590 style
.SetAlignment(wxTEXT_ALIGNMENT_JUSTIFIED
);
2592 style
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
2594 wxArrayInt tabStops
;
2596 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2598 tabStops
.Add( (int) ((double) (pf
.rgxTabs
[i
] & 0xFFFF) * twips2mm
* 10.0) );
2603 // restore the original selection
2604 DoSetSelection(startOld
, endOld
, false);
2612 // ----------------------------------------------------------------------------
2614 // ----------------------------------------------------------------------------
2616 bool wxRichEditModule::OnInit()
2618 // don't do anything - we will load it when needed
2622 void wxRichEditModule::OnExit()
2624 for ( size_t i
= 0; i
< WXSIZEOF(ms_hRichEdit
); i
++ )
2626 if ( ms_hRichEdit
[i
] )
2628 ::FreeLibrary(ms_hRichEdit
[i
]);
2629 ms_hRichEdit
[i
] = NULL
;
2635 bool wxRichEditModule::Load(int version
)
2637 // we don't support loading richedit 3.0 as I don't know how to distinguish
2638 // it from 2.0 anyhow
2639 wxCHECK_MSG( version
== 1 || version
== 2, false,
2640 _T("incorrect richedit control version requested") );
2642 // make it the index in the array
2645 if ( ms_hRichEdit
[version
] == (HINSTANCE
)-1 )
2647 // we had already tried to load it and failed
2651 if ( ms_hRichEdit
[version
] )
2653 // we've already got this one
2657 wxString dllname
= version
? _T("riched20") : _T("riched32");
2658 dllname
+= _T(".dll");
2660 ms_hRichEdit
[version
] = ::LoadLibrary(dllname
);
2662 if ( !ms_hRichEdit
[version
] )
2664 wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname
.c_str());
2666 ms_hRichEdit
[version
] = (HINSTANCE
)-1;
2674 #endif // wxUSE_RICHEDIT
2676 #endif // wxUSE_TEXTCTRL && !(__SMARTPHONE__ && __WXWINCE__)