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(wxNO_BORDER
)
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(wxNO_FULL_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
,, 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
, , 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_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground
)
206 EVT_SET_FOCUS(wxTextCtrl::OnSetFocus
)
209 // ============================================================================
211 // ============================================================================
213 // ----------------------------------------------------------------------------
215 // ----------------------------------------------------------------------------
217 void wxTextCtrl::Init()
221 #endif // wxUSE_RICHEDIT
223 m_privateContextMenu
= NULL
;
224 m_suppressNextUpdate
= FALSE
;
225 m_isNativeCaretShown
= true;
228 wxTextCtrl::~wxTextCtrl()
230 if (m_privateContextMenu
)
232 delete m_privateContextMenu
;
233 m_privateContextMenu
= NULL
;
237 bool wxTextCtrl::Create(wxWindow
*parent
, wxWindowID id
,
238 const wxString
& value
,
242 const wxValidator
& validator
,
243 const wxString
& name
)
245 // base initialization
246 if ( !CreateBase(parent
, id
, pos
, size
, style
, validator
, name
) )
250 parent
->AddChild(this);
252 // translate wxWin style flags to MSW ones
253 WXDWORD msStyle
= MSWGetCreateWindowFlags();
255 // do create the control - either an EDIT or RICHEDIT
256 wxString windowClass
= wxT("EDIT");
259 if ( m_windowStyle
& wxTE_AUTO_URL
)
261 // automatic URL detection only works in RichEdit 2.0+
262 m_windowStyle
|= wxTE_RICH2
;
265 if ( m_windowStyle
& wxTE_RICH2
)
267 // using richedit 2.0 implies using wxTE_RICH
268 m_windowStyle
|= wxTE_RICH
;
271 // we need to load the richedit DLL before creating the rich edit control
272 if ( m_windowStyle
& wxTE_RICH
)
274 static bool s_errorGiven
= FALSE
;// MT-FIXME
276 // Which version do we need? Use 1.0 by default because it is much more
277 // like the the standard EDIT or 2.0 if explicitly requested, but use
278 // only 2.0 in Unicode mode as 1.0 doesn't support Unicode at all
280 // TODO: RichEdit 3.0 is apparently capable of emulating RichEdit 1.0
281 // (and thus EDIT) much better than RichEdit 2.0 so we probably
282 // should use 3.0 if available as it is the best of both worlds -
283 // but as I can't test it right now I don't do it (VZ)
285 const int verRichEdit
= 2;
286 #else // !wxUSE_UNICODE
287 int verRichEdit
= m_windowStyle
& wxTE_RICH2
? 2 : 1;
288 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
290 // only give the error msg once if the DLL can't be loaded
293 // try to load the RichEdit DLL (will do nothing if already done)
294 if ( !wxRichEditModule::Load(verRichEdit
) )
297 // try another version?
298 verRichEdit
= 3 - verRichEdit
; // 1 <-> 2
300 if ( !wxRichEditModule::Load(verRichEdit
) )
301 #endif // wxUSE_UNICODE
303 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
310 // have we managed to load any richedit version?
313 m_verRichEdit
= verRichEdit
;
314 if ( m_verRichEdit
== 1 )
316 windowClass
= wxT("RICHEDIT");
320 #ifndef RICHEDIT_CLASS
321 wxString RICHEDIT_CLASS
;
322 RICHEDIT_CLASS
.Printf(_T("RichEdit%d0"), m_verRichEdit
);
324 RICHEDIT_CLASS
+= _T('W');
326 RICHEDIT_CLASS
+= _T('A');
327 #endif // Unicode/ANSI
328 #endif // !RICHEDIT_CLASS
330 windowClass
= RICHEDIT_CLASS
;
334 #endif // wxUSE_RICHEDIT
336 // we need to turn '\n's into "\r\n"s for the multiline controls
338 if ( m_windowStyle
& wxTE_MULTILINE
)
340 valueWin
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
347 if ( !MSWCreateControl(windowClass
, msStyle
, pos
, size
, valueWin
) )
350 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
355 // enable the events we're interested in: we want to get EN_CHANGE as
356 // for the normal controls
357 LPARAM mask
= ENM_CHANGE
;
359 if ( GetRichVersion() == 1 )
361 // we also need EN_MSGFILTER for richedit 1.0 for the reasons
362 // explained in its handler
363 mask
|= ENM_MOUSEEVENTS
;
365 else if ( m_windowStyle
& wxTE_AUTO_URL
)
369 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT
, TRUE
, 0);
372 ::SendMessage(GetHwnd(), EM_SETEVENTMASK
, 0, mask
);
374 #endif // wxUSE_RICHEDIT
379 // Make sure the window style (etc.) reflects the HWND style (roughly)
380 void wxTextCtrl::AdoptAttributesFromHWND()
382 wxWindow::AdoptAttributesFromHWND();
384 HWND hWnd
= GetHwnd();
385 long style
= ::GetWindowLong(hWnd
, GWL_STYLE
);
387 // retrieve the style to see whether this is an edit or richedit ctrl
389 wxString classname
= wxGetWindowClass(GetHWND());
391 if ( classname
.IsSameAs(_T("EDIT"), FALSE
/* no case */) )
398 if ( wxSscanf(classname
, _T("RichEdit%d0%c"), &m_verRichEdit
, &c
) != 2 )
400 wxLogDebug(_T("Unknown edit control '%s'."), classname
.c_str());
405 #endif // wxUSE_RICHEDIT
407 if (style
& ES_MULTILINE
)
408 m_windowStyle
|= wxTE_MULTILINE
;
409 if (style
& ES_PASSWORD
)
410 m_windowStyle
|= wxTE_PASSWORD
;
411 if (style
& ES_READONLY
)
412 m_windowStyle
|= wxTE_READONLY
;
413 if (style
& ES_WANTRETURN
)
414 m_windowStyle
|= wxTE_PROCESS_ENTER
;
415 if (style
& ES_CENTER
)
416 m_windowStyle
|= wxTE_CENTRE
;
417 if (style
& ES_RIGHT
)
418 m_windowStyle
|= wxTE_RIGHT
;
421 WXDWORD
wxTextCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
423 long msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
425 // styles which we alaways add by default
426 if ( style
& wxTE_MULTILINE
)
428 wxASSERT_MSG( !(style
& wxTE_PROCESS_ENTER
),
429 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
431 msStyle
|= ES_MULTILINE
| ES_WANTRETURN
;
432 if ( !(style
& wxTE_NO_VSCROLL
) )
434 // always adjust the vertical scrollbar automatically if we have it
435 msStyle
|= WS_VSCROLL
| ES_AUTOVSCROLL
;
438 // we have to use this style for the rich edit controls because
439 // without it the vertical scrollbar never appears at all in
440 // richedit 3.0 because of our ECO_NOHIDESEL hack (search for it)
441 if ( style
& wxTE_RICH2
)
443 msStyle
|= ES_DISABLENOSCROLL
;
445 #endif // wxUSE_RICHEDIT
448 style
|= wxTE_PROCESS_ENTER
;
452 // there is really no reason to not have this style for single line
454 msStyle
|= ES_AUTOHSCROLL
;
457 // note that wxTE_DONTWRAP is the same as wxHSCROLL so if we have a horz
458 // scrollbar, there is no wrapping -- which makes sense
459 if ( style
& wxTE_DONTWRAP
)
461 // automatically scroll the control horizontally as necessary
462 msStyle
|= WS_HSCROLL
;
465 if ( style
& wxTE_READONLY
)
466 msStyle
|= ES_READONLY
;
468 if ( style
& wxTE_PASSWORD
)
469 msStyle
|= ES_PASSWORD
;
471 if ( style
& wxTE_NOHIDESEL
)
472 msStyle
|= ES_NOHIDESEL
;
474 // note that we can't do do "& wxTE_LEFT" as wxTE_LEFT == 0
475 if ( style
& wxTE_CENTRE
)
476 msStyle
|= ES_CENTER
;
477 else if ( style
& wxTE_RIGHT
)
480 msStyle
|= ES_LEFT
; // ES_LEFT is 0 as well but for consistency...
485 void wxTextCtrl::SetWindowStyleFlag(long style
)
488 // we have to deal with some styles separately because they can't be
489 // changed by simply calling SetWindowLong(GWL_STYLE) but can be changed
490 // using richedit-specific EM_SETOPTIONS
492 ((style
& wxTE_NOHIDESEL
) != (GetWindowStyle() & wxTE_NOHIDESEL
)) )
494 bool set
= (style
& wxTE_NOHIDESEL
) != 0;
496 ::SendMessage(GetHwnd(), EM_SETOPTIONS
, set
? ECOOP_OR
: ECOOP_AND
,
497 set
? ECO_NOHIDESEL
: ~ECO_NOHIDESEL
);
499 #endif // wxUSE_RICHEDIT
501 wxControl::SetWindowStyleFlag(style
);
504 // ----------------------------------------------------------------------------
505 // set/get the controls text
506 // ----------------------------------------------------------------------------
508 wxString
wxTextCtrl::GetValue() const
510 // range 0..-1 is special for GetRange() and means to retrieve all text
511 return GetRange(0, -1);
514 wxString
wxTextCtrl::GetRange(long from
, long to
) const
518 if ( from
>= to
&& to
!= -1 )
520 // nothing to retrieve
527 int len
= GetWindowTextLength(GetHwnd());
534 // we must use EM_STREAMOUT if we don't want to lose all characters
535 // not representable in the current character set (EM_GETTEXTRANGE
536 // simply replaces them with question marks...)
538 // as EM_STREAMOUT only works for the entire controls contents (or
539 // just the selection but it's probably a bad idea to play games
540 // with selection here...), we can't use it unless we're called
541 // from GetValue(), i.e. we want to retrieve all text
542 if ( GetRichVersion() > 1 && (from
== 0 && to
>= len
) )
544 wxFont font
= m_defaultStyle
.GetFont();
550 wxFontEncoding encoding
= font
.GetEncoding();
551 if ( encoding
!= wxFONTENCODING_SYSTEM
)
553 str
= StreamOut(encoding
);
558 // StreamOut() wasn't used or failed, try to do it in normal way
560 #endif // !wxUSE_UNICODE
562 // alloc one extra WORD as needed by the control
563 wxStringBuffer
tmp(str
, ++len
);
567 textRange
.chrg
.cpMin
= from
;
568 textRange
.chrg
.cpMax
= to
;
569 textRange
.lpstrText
= p
;
571 (void)SendMessage(GetHwnd(), EM_GETTEXTRANGE
,
572 0, (LPARAM
)&textRange
);
574 if ( m_verRichEdit
> 1 )
576 // RichEdit 2.0 uses just CR ('\r') for the
577 // newlines which is neither Unix nor Windows
578 // style - convert it to something reasonable
581 if ( *p
== _T('\r') )
587 if ( m_verRichEdit
== 1 )
589 // convert to the canonical form - see comment below
590 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
593 //else: no text at all, leave the string empty
596 #endif // wxUSE_RICHEDIT
599 str
= wxGetWindowText(GetHWND());
601 // need only a range?
604 str
= str
.Mid(from
, to
- from
);
607 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
608 // canonical one (same one as above) for consistency with the other kinds
609 // of controls and, more importantly, with the other ports
610 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
616 void wxTextCtrl::SetValue(const wxString
& value
)
618 // if the text is long enough, it's faster to just set it instead of first
619 // comparing it with the old one (chances are that it will be different
620 // anyhow, this comparison is there to avoid flicker for small single-line
621 // edit controls mostly)
622 if ( (value
.length() > 0x400) || (value
!= GetValue()) )
624 DoWriteText(value
, FALSE
/* not selection only */);
628 // still send an event for consistency
632 // we should reset the modified flag even if the value didn't really change
634 // mark the control as being not dirty - we changed its text, not the
638 // for compatibility, don't move the cursor when doing SetValue()
639 SetInsertionPoint(0);
642 #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)
644 // TODO: using memcpy() would improve performance a lot for big amounts of text
647 wxRichEditStreamIn(DWORD dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
651 const wchar_t ** const ppws
= (const wchar_t **)dwCookie
;
653 wchar_t *wbuf
= (wchar_t *)buf
;
654 const wchar_t *wpc
= *ppws
;
659 cb
-= sizeof(wchar_t);
660 (*pcb
) += sizeof(wchar_t);
669 wxRichEditStreamOut(DWORD dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
673 wchar_t ** const ppws
= (wchar_t **)dwCookie
;
675 const wchar_t *wbuf
= (const wchar_t *)buf
;
676 wchar_t *wpc
= *ppws
;
681 cb
-= sizeof(wchar_t);
682 (*pcb
) += sizeof(wchar_t);
691 #if wxUSE_UNICODE_MSLU
692 #define UNUSED_IF_MSLU(param)
694 #define UNUSED_IF_MSLU(param) param
698 wxTextCtrl::StreamIn(const wxString
& value
,
699 wxFontEncoding
UNUSED_IF_MSLU(encoding
),
702 #if wxUSE_UNICODE_MSLU
703 const wchar_t *wpc
= value
.c_str();
704 #else // !wxUSE_UNICODE_MSLU
705 wxCSConv
conv(encoding
);
707 const size_t len
= conv
.MB2WC(NULL
, value
, value
.length());
710 wxWCharBuffer
wchBuf(len
);
711 wchar_t *wpc
= wchBuf
.data();
713 wchar_t *wchBuf
= (wchar_t *)malloc((len
+ 1)*sizeof(wchar_t));
714 wchar_t *wpc
= wchBuf
;
717 conv
.MB2WC(wpc
, value
, value
.length());
718 #endif // wxUSE_UNICODE_MSLU
720 // finally, stream it in the control
723 eds
.dwCookie
= (DWORD
)&wpc
;
724 // the cast below is needed for broken (very) old mingw32 headers
725 eds
.pfnCallback
= (EDITSTREAMCALLBACK
)wxRichEditStreamIn
;
727 // we're going to receive 2 EN_CHANGE notifications if we got any selection
728 // (same problem as in DoWriteText())
729 if ( selectionOnly
&& HasSelection() )
731 // so suppress one of them
732 m_suppressNextUpdate
= TRUE
;
735 ::SendMessage(GetHwnd(), EM_STREAMIN
,
738 (selectionOnly
? SFF_SELECTION
: 0),
743 wxLogLastError(_T("EM_STREAMIN"));
748 #endif // !wxUSE_WCHAR_T
753 #if !wxUSE_UNICODE_MSLU
756 wxTextCtrl::StreamOut(wxFontEncoding encoding
, bool selectionOnly
) const
760 const int len
= GetWindowTextLength(GetHwnd());
763 wxWCharBuffer
wchBuf(len
);
764 wchar_t *wpc
= wchBuf
.data();
766 wchar_t *wchBuf
= (wchar_t *)malloc((len
+ 1)*sizeof(wchar_t));
767 wchar_t *wpc
= wchBuf
;
772 eds
.dwCookie
= (DWORD
)&wpc
;
773 eds
.pfnCallback
= wxRichEditStreamOut
;
779 SF_TEXT
| SF_UNICODE
| (selectionOnly
? SFF_SELECTION
: 0),
785 wxLogLastError(_T("EM_STREAMOUT"));
787 else // streamed out ok
789 // now convert to the given encoding (this is a lossful conversion but
790 // what else can we do)
791 wxCSConv
conv(encoding
);
792 size_t lenNeeded
= conv
.WC2MB(NULL
, wchBuf
, len
);
795 conv
.WC2MB(wxStringBuffer(out
, lenNeeded
), wchBuf
, len
);
801 #endif // !wxUSE_WCHAR_T
806 #endif // !wxUSE_UNICODE_MSLU
808 #endif // wxUSE_RICHEDIT
810 void wxTextCtrl::WriteText(const wxString
& value
)
815 void wxTextCtrl::DoWriteText(const wxString
& value
, bool selectionOnly
)
818 if ( m_windowStyle
& wxTE_MULTILINE
)
819 valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
824 // there are several complications with the rich edit controls here
828 // first, ensure that the new text will be in the default style
829 if ( !m_defaultStyle
.IsDefault() )
832 GetSelection(&start
, &end
);
833 SetStyle(start
, end
, m_defaultStyle
);
836 #if wxUSE_UNICODE_MSLU
837 // RichEdit doesn't have Unicode version of EM_REPLACESEL on Win9x,
838 // but EM_STREAMIN works
839 if ( wxUsingUnicowsDll() && GetRichVersion() > 1 )
841 done
= StreamIn(valueDos
, wxFONTENCODING_SYSTEM
, selectionOnly
);
843 #endif // wxUSE_UNICODE_MSLU
846 // next check if the text we're inserting must be shown in a non
847 // default charset -- this only works for RichEdit > 1.0
848 if ( GetRichVersion() > 1 )
850 wxFont font
= m_defaultStyle
.GetFont();
856 wxFontEncoding encoding
= font
.GetEncoding();
857 if ( encoding
!= wxFONTENCODING_SYSTEM
)
859 // we have to use EM_STREAMIN to force richedit control 2.0+
860 // to show any text in the non default charset -- otherwise
861 // it thinks it knows better than we do and always shows it
862 // in the default one
863 done
= StreamIn(valueDos
, encoding
, selectionOnly
);
867 #endif // !wxUSE_UNICODE
871 #endif // wxUSE_RICHEDIT
873 // in some cases we get 2 EN_CHANGE notifications after the SendMessage
874 // call below which is confusing for the client code and so should be
877 // these cases are: (a) plain EDIT controls if EM_REPLACESEL is used
878 // and there is a non empty selection currently and (b) rich text
879 // controls in any case
883 #endif // wxUSE_RICHEDIT
884 (selectionOnly
&& HasSelection()) )
886 m_suppressNextUpdate
= TRUE
;
889 ::SendMessage(GetHwnd(), selectionOnly
? EM_REPLACESEL
: WM_SETTEXT
,
890 0, (LPARAM
)valueDos
.c_str());
892 // OTOH, non rich text controls don't generate any events at all when
893 // we use WM_SETTEXT -- have to emulate them here
897 #endif // wxUSE_RICHEDIT
900 // Windows already sends an update event for single-line
902 if ( m_windowStyle
& wxTE_MULTILINE
)
910 void wxTextCtrl::AppendText(const wxString
& text
)
912 SetInsertionPointEnd();
917 if ( IsMultiLine() && GetRichVersion() > 1 )
919 // setting the caret to the end and showing it simply doesn't work for
920 // RichEdit 2.0 -- force it to still do what we want
921 ::SendMessage(GetHwnd(), EM_LINESCROLL
, 0, GetNumberOfLines());
923 #endif // wxUSE_RICHEDIT
926 void wxTextCtrl::Clear()
928 ::SetWindowText(GetHwnd(), wxEmptyString
);
932 #endif // wxUSE_RICHEDIT
934 // rich edit controls send EN_UPDATE from WM_SETTEXT handler themselves
935 // but the normal ones don't -- make Clear() behaviour consistent by
936 // always sending this event
938 // Windows already sends an update event for single-line
940 if ( m_windowStyle
& wxTE_MULTILINE
)
947 bool wxTextCtrl::EmulateKeyPress(const wxKeyEvent
& event
)
951 size_t lenOld
= GetValue().length();
953 wxUint32 code
= event
.GetRawKeyCode();
954 ::keybd_event(code
, 0, 0 /* key press */, 0);
955 ::keybd_event(code
, 0, KEYEVENTF_KEYUP
, 0);
957 // assume that any alphanumeric key changes the total number of characters
958 // in the control - this should work in 99% of cases
959 return GetValue().length() != lenOld
;
964 // ----------------------------------------------------------------------------
965 // Clipboard operations
966 // ----------------------------------------------------------------------------
968 void wxTextCtrl::Copy()
972 ::SendMessage(GetHwnd(), WM_COPY
, 0, 0L);
976 void wxTextCtrl::Cut()
980 ::SendMessage(GetHwnd(), WM_CUT
, 0, 0L);
984 void wxTextCtrl::Paste()
988 ::SendMessage(GetHwnd(), WM_PASTE
, 0, 0L);
992 bool wxTextCtrl::HasSelection() const
995 GetSelection(&from
, &to
);
999 bool wxTextCtrl::CanCopy() const
1001 // Can copy if there's a selection
1002 return HasSelection();
1005 bool wxTextCtrl::CanCut() const
1007 return CanCopy() && IsEditable();
1010 bool wxTextCtrl::CanPaste() const
1012 if ( !IsEditable() )
1018 UINT cf
= 0; // 0 == any format
1020 return ::SendMessage(GetHwnd(), EM_CANPASTE
, cf
, 0) != 0;
1022 #endif // wxUSE_RICHEDIT
1024 // Standard edit control: check for straight text on clipboard
1025 if ( !::OpenClipboard(GetHwndOf(wxTheApp
->GetTopWindow())) )
1028 bool isTextAvailable
= ::IsClipboardFormatAvailable(CF_TEXT
) != 0;
1031 return isTextAvailable
;
1034 // ----------------------------------------------------------------------------
1036 // ----------------------------------------------------------------------------
1038 void wxTextCtrl::SetEditable(bool editable
)
1040 HWND hWnd
= GetHwnd();
1041 SendMessage(hWnd
, EM_SETREADONLY
, (WPARAM
)!editable
, (LPARAM
)0L);
1044 void wxTextCtrl::SetInsertionPoint(long pos
)
1046 DoSetSelection(pos
, pos
);
1049 void wxTextCtrl::SetInsertionPointEnd()
1051 // we must not do anything if the caret is already there because calling
1052 // SetInsertionPoint() thaws the controls if Freeze() had been called even
1053 // if it doesn't actually move the caret anywhere and so the simple fact of
1054 // doing it results in horrible flicker when appending big amounts of text
1055 // to the control in a few chunks (see DoAddText() test in the text sample)
1056 if ( GetInsertionPoint() == GetLastPosition() )
1062 if ( m_verRichEdit
== 1 )
1064 // we don't have to waste time calling GetLastPosition() in this case
1067 else // !RichEdit 1.0
1068 #endif // wxUSE_RICHEDIT
1070 pos
= GetLastPosition();
1073 SetInsertionPoint(pos
);
1076 long wxTextCtrl::GetInsertionPoint() const
1084 SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &range
);
1087 #endif // wxUSE_RICHEDIT
1089 DWORD Pos
= (DWORD
)SendMessage(GetHwnd(), EM_GETSEL
, 0, 0L);
1090 return Pos
& 0xFFFF;
1093 long wxTextCtrl::GetLastPosition() const
1095 int numLines
= GetNumberOfLines();
1096 long posStartLastLine
= XYToPosition(0, numLines
- 1);
1098 long lenLastLine
= GetLengthOfLineContainingPos(posStartLastLine
);
1100 return posStartLastLine
+ lenLastLine
;
1103 // If the return values from and to are the same, there is no
1105 void wxTextCtrl::GetSelection(long* from
, long* to
) const
1110 CHARRANGE charRange
;
1111 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &charRange
);
1113 *from
= charRange
.cpMin
;
1114 *to
= charRange
.cpMax
;
1117 #endif // !wxUSE_RICHEDIT
1119 DWORD dwStart
, dwEnd
;
1120 ::SendMessage(GetHwnd(), EM_GETSEL
, (WPARAM
)&dwStart
, (LPARAM
)&dwEnd
);
1127 bool wxTextCtrl::IsEditable() const
1129 // strangely enough, we may be called before the control is created: our
1130 // own Create() calls MSWGetStyle() which calls AcceptsFocus() which calls
1135 long style
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1137 return (style
& ES_READONLY
) == 0;
1140 // ----------------------------------------------------------------------------
1142 // ----------------------------------------------------------------------------
1144 void wxTextCtrl::SetSelection(long from
, long to
)
1146 // if from and to are both -1, it means (in wxWindows) that all text should
1147 // be selected - translate into Windows convention
1148 if ( (from
== -1) && (to
== -1) )
1154 DoSetSelection(from
, to
);
1157 void wxTextCtrl::DoSetSelection(long from
, long to
, bool scrollCaret
)
1159 HWND hWnd
= GetHwnd();
1168 SendMessage(hWnd
, EM_EXSETSEL
, 0, (LPARAM
) &range
);
1171 #endif // wxUSE_RICHEDIT
1173 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)from
, (LPARAM
)to
);
1179 // richedit 3.0 (i.e. the version living in riched20.dll distributed
1180 // with Windows 2000 and beyond) doesn't honour EM_SCROLLCARET when
1181 // emulating richedit 2.0 unless the control has focus or ECO_NOHIDESEL
1182 // option is set (but it does work ok in richedit 1.0 mode...)
1184 // so to make it work we either need to give focus to it here which
1185 // will probably create many problems (dummy focus events; window
1186 // containing the text control being brought to foreground
1187 // unexpectedly; ...) or to temporarily set ECO_NOHIDESEL which may
1188 // create other problems too -- and in fact it does because if we turn
1189 // on/off this style while appending the text to the control, the
1190 // vertical scrollbar never appears in it even if we append tons of
1191 // text and to work around this the only solution I found was to use
1192 // ES_DISABLENOSCROLL
1194 // this is very ugly but I don't see any other way to make this work
1195 if ( GetRichVersion() > 1 )
1197 if ( !HasFlag(wxTE_NOHIDESEL
) )
1199 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1200 ECOOP_OR
, ECO_NOHIDESEL
);
1202 //else: everything is already ok
1204 #endif // wxUSE_RICHEDIT
1206 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
1209 // restore ECO_NOHIDESEL if we changed it
1210 if ( GetRichVersion() > 1 && !HasFlag(wxTE_NOHIDESEL
) )
1212 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1213 ECOOP_AND
, ~ECO_NOHIDESEL
);
1215 #endif // wxUSE_RICHEDIT
1218 // WPARAM is 0: selection is scrolled into view
1219 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)0, (LPARAM
)MAKELONG(from
, to
));
1223 // ----------------------------------------------------------------------------
1225 // ----------------------------------------------------------------------------
1227 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
1229 // Set selection and remove it
1230 DoSetSelection(from
, to
, FALSE
/* don't scroll caret into view */);
1232 SendMessage(GetHwnd(), EM_REPLACESEL
,
1238 (LPARAM
)value
.c_str());
1241 void wxTextCtrl::Remove(long from
, long to
)
1243 Replace(from
, to
, wxEmptyString
);
1246 bool wxTextCtrl::LoadFile(const wxString
& file
)
1248 if ( wxTextCtrlBase::LoadFile(file
) )
1250 // update the size limit if needed
1259 bool wxTextCtrl::IsModified() const
1261 return SendMessage(GetHwnd(), EM_GETMODIFY
, 0, 0) != 0;
1264 // Makes 'unmodified'
1265 void wxTextCtrl::DiscardEdits()
1267 SendMessage(GetHwnd(), EM_SETMODIFY
, FALSE
, 0L);
1270 int wxTextCtrl::GetNumberOfLines() const
1272 return (int)SendMessage(GetHwnd(), EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0);
1275 long wxTextCtrl::XYToPosition(long x
, long y
) const
1277 // This gets the char index for the _beginning_ of this line
1278 long charIndex
= SendMessage(GetHwnd(), EM_LINEINDEX
, (WPARAM
)y
, (LPARAM
)0);
1280 return charIndex
+ x
;
1283 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
1285 HWND hWnd
= GetHwnd();
1287 // This gets the line number containing the character
1292 lineNo
= SendMessage(hWnd
, EM_EXLINEFROMCHAR
, 0, (LPARAM
)pos
);
1295 #endif // wxUSE_RICHEDIT
1297 lineNo
= SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, 0);
1306 // This gets the char index for the _beginning_ of this line
1307 long charIndex
= SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)lineNo
, (LPARAM
)0);
1308 if ( charIndex
== -1 )
1313 // The X position must therefore be the different between pos and charIndex
1315 *x
= pos
- charIndex
;
1322 void wxTextCtrl::ShowPosition(long pos
)
1324 HWND hWnd
= GetHwnd();
1326 // To scroll to a position, we pass the number of lines and characters
1327 // to scroll *by*. This means that we need to:
1328 // (1) Find the line position of the current line.
1329 // (2) Find the line position of pos.
1330 // (3) Scroll by (pos - current).
1331 // For now, ignore the horizontal scrolling.
1333 // Is this where scrolling is relative to - the line containing the caret?
1334 // Or is the first visible line??? Try first visible line.
1335 // int currentLineLineNo1 = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L);
1337 int currentLineLineNo
= (int)SendMessage(hWnd
, EM_GETFIRSTVISIBLELINE
, (WPARAM
)0, (LPARAM
)0L);
1339 int specifiedLineLineNo
= (int)SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, (LPARAM
)0L);
1341 int linesToScroll
= specifiedLineLineNo
- currentLineLineNo
;
1343 if (linesToScroll
!= 0)
1344 (void)SendMessage(hWnd
, EM_LINESCROLL
, (WPARAM
)0, (LPARAM
)linesToScroll
);
1347 long wxTextCtrl::GetLengthOfLineContainingPos(long pos
) const
1349 return ::SendMessage(GetHwnd(), EM_LINELENGTH
, (WPARAM
)pos
, 0);
1352 int wxTextCtrl::GetLineLength(long lineNo
) const
1354 long pos
= XYToPosition(0, lineNo
);
1356 return GetLengthOfLineContainingPos(pos
);
1359 wxString
wxTextCtrl::GetLineText(long lineNo
) const
1361 size_t len
= (size_t)GetLineLength(lineNo
) + 1;
1363 // there must be at least enough place for the length WORD in the
1365 len
+= sizeof(WORD
);
1369 wxStringBufferLength
tmp(str
, len
);
1372 *(WORD
*)buf
= (WORD
)len
;
1373 len
= (size_t)::SendMessage(GetHwnd(), EM_GETLINE
, lineNo
, (LPARAM
)buf
);
1378 // remove the '\r' returned by the rich edit control, the user code
1379 // should never see it
1380 if ( buf
[len
- 2] == _T('\r') && buf
[len
- 1] == _T('\n') )
1382 buf
[len
- 2] = _T('\n');
1386 #endif // wxUSE_RICHEDIT
1388 // remove the '\n' at the end, if any (this is how this function is
1389 // supposed to work according to the docs)
1390 if ( buf
[len
- 1] == _T('\n') )
1402 void wxTextCtrl::SetMaxLength(unsigned long len
)
1404 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, len
, 0);
1407 // ----------------------------------------------------------------------------
1409 // ----------------------------------------------------------------------------
1411 void wxTextCtrl::Undo()
1415 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
1419 void wxTextCtrl::Redo()
1423 // Same as Undo, since Undo undoes the undo, i.e. a redo.
1424 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
1428 bool wxTextCtrl::CanUndo() const
1430 return ::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0;
1433 bool wxTextCtrl::CanRedo() const
1435 return ::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0;
1438 // ----------------------------------------------------------------------------
1439 // caret handling (Windows only)
1440 // ----------------------------------------------------------------------------
1442 bool wxTextCtrl::ShowNativeCaret(bool show
)
1444 if ( show
!= m_isNativeCaretShown
)
1446 if ( !(show
? ::ShowCaret(GetHwnd()) : ::HideCaret(GetHwnd())) )
1448 // not an error, may simply indicate that it's not shown/hidden
1449 // yet (i.e. it had been hidden/showh 2 times before)
1453 m_isNativeCaretShown
= show
;
1459 // ----------------------------------------------------------------------------
1460 // implemenation details
1461 // ----------------------------------------------------------------------------
1463 void wxTextCtrl::Command(wxCommandEvent
& event
)
1465 SetValue(event
.GetString());
1466 ProcessCommand (event
);
1469 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
1471 // By default, load the first file into the text window.
1472 if (event
.GetNumberOfFiles() > 0)
1474 LoadFile(event
.GetFiles()[0]);
1478 // ----------------------------------------------------------------------------
1479 // kbd input processing
1480 // ----------------------------------------------------------------------------
1482 bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG
* pMsg
)
1484 MSG
*msg
= (MSG
*)pMsg
;
1486 // check for our special keys here: if we don't do it and the parent frame
1487 // uses them as accelerators, they wouldn't work at all, so we disable
1488 // usual preprocessing for them
1489 if ( msg
->message
== WM_KEYDOWN
)
1491 WORD vkey
= (WORD
) msg
->wParam
;
1492 if ( (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
1494 if ( vkey
== VK_BACK
)
1499 // we want to process some Ctrl-foo and Shift-bar but no key
1500 // combinations without either Ctrl or Shift nor with both of them
1502 const int ctrl
= wxIsCtrlDown(),
1503 shift
= wxIsShiftDown();
1504 switch ( ctrl
+ shift
)
1507 wxFAIL_MSG( _T("how many modifiers have we got?") );
1515 // either Ctrl or Shift pressed
1530 else // Shift is pressed
1532 if ( vkey
== VK_INSERT
|| vkey
== VK_DELETE
)
1539 return wxControl::MSWShouldPreProcessMessage(pMsg
);
1542 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
1544 switch ( event
.GetKeyCode() )
1547 if ( !(m_windowStyle
& wxTE_MULTILINE
) )
1549 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1550 InitCommandEvent(event
);
1551 event
.SetString(GetValue());
1552 if ( GetEventHandler()->ProcessEvent(event
) )
1555 //else: multiline controls need Enter for themselves
1560 // always produce navigation event - even if we process TAB
1561 // ourselves the fact that we got here means that the user code
1562 // decided to skip processing of this TAB - probably to let it
1563 // do its default job.
1565 wxNavigationKeyEvent eventNav
;
1566 eventNav
.SetDirection(!event
.ShiftDown());
1567 eventNav
.SetWindowChange(event
.ControlDown());
1568 eventNav
.SetEventObject(this);
1570 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav
) )
1576 // no, we didn't process it
1580 long wxTextCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1582 long lRc
= wxTextCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
1584 if ( nMsg
== WM_GETDLGCODE
)
1586 // we always want the chars and the arrows: the arrows for navigation
1587 // and the chars because we want Ctrl-C to work even in a read only
1589 long lDlgCode
= DLGC_WANTCHARS
| DLGC_WANTARROWS
;
1593 // we may have several different cases:
1594 // 1. normal case: both TAB and ENTER are used for dlg navigation
1595 // 2. ctrl which wants TAB for itself: ENTER is used to pass to the
1596 // next control in the dialog
1597 // 3. ctrl which wants ENTER for itself: TAB is used for dialog
1599 // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to go
1600 // to the next control
1602 // the multiline edit control should always get <Return> for itself
1603 if ( HasFlag(wxTE_PROCESS_ENTER
) || HasFlag(wxTE_MULTILINE
) )
1604 lDlgCode
|= DLGC_WANTMESSAGE
;
1606 if ( HasFlag(wxTE_PROCESS_TAB
) )
1607 lDlgCode
|= DLGC_WANTTAB
;
1613 // NB: use "=", not "|=" as the base class version returns the
1614 // same flags is this state as usual (i.e. including
1615 // DLGC_WANTMESSAGE). This is strange (how does it work in the
1616 // native Win32 apps?) but for now live with it.
1624 // ----------------------------------------------------------------------------
1625 // text control event processing
1626 // ----------------------------------------------------------------------------
1628 bool wxTextCtrl::SendUpdateEvent()
1630 // is event reporting suspended?
1631 if ( m_suppressNextUpdate
)
1633 // do process the next one
1634 m_suppressNextUpdate
= FALSE
;
1639 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, GetId());
1640 InitCommandEvent(event
);
1641 event
.SetString(GetValue());
1643 return ProcessCommand(event
);
1646 bool wxTextCtrl::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
1653 wxFocusEvent
event(param
== EN_KILLFOCUS
? wxEVT_KILL_FOCUS
1656 event
.SetEventObject(this);
1657 GetEventHandler()->ProcessEvent(event
);
1666 // the text size limit has been hit -- try to increase it
1667 if ( !AdjustSpaceLimit() )
1669 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, m_windowId
);
1670 InitCommandEvent(event
);
1671 event
.SetString(GetValue());
1672 ProcessCommand(event
);
1676 // the other edit notification messages are not processed
1685 WXHBRUSH
wxTextCtrl::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
1691 WXUINT
WXUNUSED(message
),
1692 WXWPARAM
WXUNUSED(wParam
),
1693 WXLPARAM
WXUNUSED(lParam
)
1700 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
1701 return (WXHBRUSH
) hbrush
;
1703 #endif // wxUSE_CTL3D
1706 wxColour colBack
= GetBackgroundColour();
1708 if (!IsEnabled() && (GetWindowStyle() & wxTE_MULTILINE
) == 0)
1709 colBack
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
1711 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
1712 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
1714 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
1716 return (WXHBRUSH
)brush
->GetResourceHandle();
1719 // In WIN16, need to override normal erasing because
1720 // Ctl3D doesn't use the wxWindows background colour.
1722 void wxTextCtrl::OnEraseBackground(wxEraseEvent
& event
)
1724 wxColour
col(m_backgroundColour
);
1728 col
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
1732 ::GetClientRect(GetHwnd(), &rect
);
1734 COLORREF ref
= wxColourToRGB(col
);
1735 HBRUSH hBrush
= ::CreateSolidBrush(ref
);
1737 wxLogLastError(wxT("CreateSolidBrush"));
1739 HDC hdc
= (HDC
)event
.GetDC()->GetHDC();
1741 int mode
= ::SetMapMode(hdc
, MM_TEXT
);
1743 ::FillRect(hdc
, &rect
, hBrush
);
1744 ::DeleteObject(hBrush
);
1745 ::SetMapMode(hdc
, mode
);
1750 bool wxTextCtrl::AdjustSpaceLimit()
1753 unsigned int limit
= ::SendMessage(GetHwnd(), EM_GETLIMITTEXT
, 0, 0);
1755 // HACK: we try to automatically extend the limit for the amount of text
1756 // to allow (interactively) entering more than 64Kb of text under
1757 // Win9x but we shouldn't reset the text limit which was previously
1758 // set explicitly with SetMaxLength()
1760 // we could solve this by storing the limit we set in wxTextCtrl but
1761 // to save space we prefer to simply test here the actual limit
1762 // value: we consider that SetMaxLength() can only be called for
1764 if ( limit
< 0x8000 )
1766 // we've got more text than limit set by SetMaxLength()
1770 unsigned int len
= ::GetWindowTextLength(GetHwnd());
1773 limit
= len
+ 0x8000; // 32Kb
1778 // as a nice side effect, this also allows passing limit > 64Kb
1779 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, limit
);
1782 #endif // wxUSE_RICHEDIT
1784 if ( limit
> 0xffff )
1786 // this will set it to a platform-dependent maximum (much more
1787 // than 64Kb under NT)
1791 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, limit
, 0);
1796 // we changed the limit
1800 bool wxTextCtrl::AcceptsFocus() const
1802 // we don't want focus if we can't be edited unless we're a multiline
1803 // control because then it might be still nice to get focus from keyboard
1804 // to be able to scroll it without mouse
1805 return (IsEditable() || IsMultiLine()) && wxControl::AcceptsFocus();
1808 wxSize
wxTextCtrl::DoGetBestSize() const
1811 wxGetCharSize(GetHWND(), &cx
, &cy
, &GetFont());
1813 int wText
= DEFAULT_ITEM_WIDTH
;
1815 int hText
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
1816 if ( m_windowStyle
& wxTE_MULTILINE
)
1818 hText
*= wxMax(GetNumberOfLines(), 5);
1820 //else: for single line control everything is ok
1822 return wxSize(wText
, hText
);
1825 // ----------------------------------------------------------------------------
1826 // standard handlers for standard edit menu events
1827 // ----------------------------------------------------------------------------
1829 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1834 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1839 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1844 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1849 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1854 void wxTextCtrl::OnDelete(wxCommandEvent
& WXUNUSED(event
))
1857 GetSelection(& from
, & to
);
1858 if (from
!= -1 && to
!= -1)
1862 void wxTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
1864 SetSelection(-1, -1);
1867 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1869 event
.Enable( CanCut() );
1872 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1874 event
.Enable( CanCopy() );
1877 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1879 event
.Enable( CanPaste() );
1882 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1884 event
.Enable( CanUndo() );
1887 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1889 event
.Enable( CanRedo() );
1892 void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent
& event
)
1895 GetSelection(& from
, & to
);
1896 event
.Enable(from
!= -1 && to
!= -1 && from
!= to
&& IsEditable()) ;
1899 void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
1901 event
.Enable(GetLastPosition() > 0);
1904 void wxTextCtrl::OnRightClick(wxMouseEvent
& event
)
1909 if (!m_privateContextMenu
)
1911 m_privateContextMenu
= new wxMenu
;
1912 m_privateContextMenu
->Append(wxID_UNDO
, _("&Undo"));
1913 m_privateContextMenu
->Append(wxID_REDO
, _("&Redo"));
1914 m_privateContextMenu
->AppendSeparator();
1915 m_privateContextMenu
->Append(wxID_CUT
, _("Cu&t"));
1916 m_privateContextMenu
->Append(wxID_COPY
, _("&Copy"));
1917 m_privateContextMenu
->Append(wxID_PASTE
, _("&Paste"));
1918 m_privateContextMenu
->Append(wxID_CLEAR
, _("&Delete"));
1919 m_privateContextMenu
->AppendSeparator();
1920 m_privateContextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
1922 PopupMenu(m_privateContextMenu
, event
.GetPosition());
1930 void wxTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
1932 // be sure the caret remains invisible if the user had hidden it
1933 if ( !m_isNativeCaretShown
)
1935 ::HideCaret(GetHwnd());
1939 // the rest of the file only deals with the rich edit controls
1942 // ----------------------------------------------------------------------------
1943 // EN_LINK processing
1944 // ----------------------------------------------------------------------------
1946 bool wxTextCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1948 NMHDR
*hdr
= (NMHDR
* )lParam
;
1949 switch ( hdr
->code
)
1953 const MSGFILTER
*msgf
= (MSGFILTER
*)lParam
;
1954 UINT msg
= msgf
->msg
;
1956 // this is a bit crazy but richedit 1.0 sends us all mouse
1957 // events _except_ WM_LBUTTONUP (don't ask me why) so we have
1958 // generate the wxWin events for this message manually
1960 // NB: in fact, this is still not totally correct as it does
1961 // send us WM_LBUTTONUP if the selection was cleared by the
1962 // last click -- so currently we get 2 events in this case,
1963 // but as I don't see any obvious way to check for this I
1964 // leave this code in place because it's still better than
1965 // not getting left up events at all
1966 if ( msg
== WM_LBUTTONUP
)
1968 WXUINT flags
= msgf
->wParam
;
1969 int x
= GET_X_LPARAM(msgf
->lParam
),
1970 y
= GET_Y_LPARAM(msgf
->lParam
);
1972 HandleMouseEvent(msg
, x
, y
, flags
);
1976 // return TRUE to process the event (and FALSE to ignore it)
1981 const ENLINK
*enlink
= (ENLINK
*)hdr
;
1983 switch ( enlink
->msg
)
1986 // ok, so it is hardcoded - do we really nee to
1988 ::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND
)));
1993 case WM_LBUTTONDOWN
:
1995 case WM_LBUTTONDBLCLK
:
1996 case WM_RBUTTONDOWN
:
1998 case WM_RBUTTONDBLCLK
:
1999 // send a mouse event
2001 static const wxEventType eventsMouse
[] =
2012 // the event ids are consecutive
2014 evtMouse(eventsMouse
[enlink
->msg
- WM_MOUSEMOVE
]);
2016 InitMouseEvent(evtMouse
,
2017 GET_X_LPARAM(enlink
->lParam
),
2018 GET_Y_LPARAM(enlink
->lParam
),
2021 wxTextUrlEvent
event(m_windowId
, evtMouse
,
2023 enlink
->chrg
.cpMax
);
2025 InitCommandEvent(event
);
2027 *result
= ProcessCommand(event
);
2035 // not processed, leave it to the base class
2036 return wxTextCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
);
2039 // ----------------------------------------------------------------------------
2040 // colour setting for the rich edit controls
2041 // ----------------------------------------------------------------------------
2043 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
2045 if ( !wxTextCtrlBase::SetBackgroundColour(colour
) )
2047 // colour didn't really change
2053 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
2054 // EM_SETBKGNDCOLOR additionally
2055 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR
, 0, wxColourToRGB(colour
));
2061 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
2063 if ( !wxTextCtrlBase::SetForegroundColour(colour
) )
2065 // colour didn't really change
2071 // change the colour of everything
2074 cf
.cbSize
= sizeof(cf
);
2075 cf
.dwMask
= CFM_COLOR
;
2076 cf
.crTextColor
= wxColourToRGB(colour
);
2077 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
, SCF_ALL
, (LPARAM
)&cf
);
2083 // ----------------------------------------------------------------------------
2084 // styling support for rich edit controls
2085 // ----------------------------------------------------------------------------
2089 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
2093 // can't do it with normal text control
2097 // the richedit 1.0 doesn't handle setting background colour, so don't
2098 // even try to do anything if it's the only thing we want to change
2099 if ( m_verRichEdit
== 1 && !style
.HasFont() && !style
.HasTextColour() &&
2100 !style
.HasLeftIndent() && !style
.HasRightIndent() && !style
.HasAlignment() &&
2103 // nothing to do: return TRUE if there was really nothing to do and
2104 // FALSE if we failed to set bg colour
2105 return !style
.HasBackgroundColour();
2108 // order the range if needed
2116 // we can only change the format of the selection, so select the range we
2117 // want and restore the old selection later
2118 long startOld
, endOld
;
2119 GetSelection(&startOld
, &endOld
);
2121 // but do we really have to change the selection?
2122 bool changeSel
= start
!= startOld
|| end
!= endOld
;
2126 DoSetSelection(start
, end
, FALSE
/* don't scroll caret into view */);
2129 // initialize CHARFORMAT struct
2138 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2139 // CHARFORMAT in that case
2141 if ( m_verRichEdit
== 1 )
2143 // this is the only thing the control is going to grok
2144 cf
.cbSize
= sizeof(CHARFORMAT
);
2149 // CHARFORMAT or CHARFORMAT2
2150 cf
.cbSize
= sizeof(cf
);
2153 if ( style
.HasFont() )
2155 // VZ: CFM_CHARSET doesn't seem to do anything at all in RichEdit 2.0
2156 // but using it doesn't seem to hurt neither so leaving it for now
2158 cf
.dwMask
|= CFM_FACE
| CFM_SIZE
| CFM_CHARSET
|
2159 CFM_ITALIC
| CFM_BOLD
| CFM_UNDERLINE
;
2161 // fill in data from LOGFONT but recalculate lfHeight because we need
2162 // the real height in twips and not the negative number which
2163 // wxFillLogFont() returns (this is correct in general and works with
2164 // the Windows font mapper, but not here)
2166 wxFillLogFont(&lf
, &style
.GetFont());
2167 cf
.yHeight
= 20*style
.GetFont().GetPointSize(); // 1 pt = 20 twips
2168 cf
.bCharSet
= lf
.lfCharSet
;
2169 cf
.bPitchAndFamily
= lf
.lfPitchAndFamily
;
2170 wxStrncpy( cf
.szFaceName
, lf
.lfFaceName
, WXSIZEOF(cf
.szFaceName
) );
2172 // also deal with underline/italic/bold attributes: note that we must
2173 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
2174 // style to allow clearing it
2177 cf
.dwEffects
|= CFE_ITALIC
;
2180 if ( lf
.lfWeight
== FW_BOLD
)
2182 cf
.dwEffects
|= CFE_BOLD
;
2185 if ( lf
.lfUnderline
)
2187 cf
.dwEffects
|= CFE_UNDERLINE
;
2190 // strikeout fonts are not supported by wxWindows
2193 if ( style
.HasTextColour() )
2195 cf
.dwMask
|= CFM_COLOR
;
2196 cf
.crTextColor
= wxColourToRGB(style
.GetTextColour());
2200 if ( m_verRichEdit
!= 1 && style
.HasBackgroundColour() )
2202 cf
.dwMask
|= CFM_BACKCOLOR
;
2203 cf
.crBackColor
= wxColourToRGB(style
.GetBackgroundColour());
2205 #endif // wxUSE_RICHEDIT2
2207 // do format the selection
2208 bool ok
= ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
,
2209 SCF_SELECTION
, (LPARAM
)&cf
) != 0;
2212 wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed"));
2215 // now do the paragraph formatting
2218 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2219 // PARAFORMAT in that case
2221 if ( m_verRichEdit
== 1 )
2223 // this is the only thing the control is going to grok
2224 pf
.cbSize
= sizeof(PARAFORMAT
);
2229 // PARAFORMAT or PARAFORMAT2
2230 pf
.cbSize
= sizeof(pf
);
2233 if (style
.HasAlignment())
2235 pf
.dwMask
|= PFM_ALIGNMENT
;
2236 if (style
.GetAlignment() == wxTEXT_ALIGNMENT_RIGHT
)
2237 pf
.wAlignment
= PFA_RIGHT
;
2238 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_CENTRE
)
2239 pf
.wAlignment
= PFA_CENTER
;
2240 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_JUSTIFIED
)
2241 pf
.wAlignment
= PFA_JUSTIFY
;
2243 pf
.wAlignment
= PFA_LEFT
;
2246 if (style
.HasLeftIndent())
2248 pf
.dwMask
|= PFM_STARTINDENT
;
2250 // Convert from 1/10 mm to TWIPS
2251 pf
.dxStartIndent
= (int) (((double) style
.GetLeftIndent()) * mm2twips
/ 10.0) ;
2253 // TODO: do we need to specify dxOffset?
2256 if (style
.HasRightIndent())
2258 pf
.dwMask
|= PFM_RIGHTINDENT
;
2260 // Convert from 1/10 mm to TWIPS
2261 pf
.dxRightIndent
= (int) (((double) style
.GetRightIndent()) * mm2twips
/ 10.0) ;
2264 if (style
.HasTabs())
2266 pf
.dwMask
|= PFM_TABSTOPS
;
2268 const wxArrayInt
& tabs
= style
.GetTabs();
2270 pf
.cTabCount
= wxMin(tabs
.GetCount(), MAX_TAB_STOPS
);
2272 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2274 // Convert from 1/10 mm to TWIPS
2275 pf
.rgxTabs
[i
] = (int) (((double) tabs
[i
]) * mm2twips
/ 10.0) ;
2281 // do format the selection
2282 bool ok
= ::SendMessage(GetHwnd(), EM_SETPARAFORMAT
,
2283 0, (LPARAM
) &pf
) != 0;
2286 wxLogDebug(_T("SendMessage(EM_SETPARAFORMAT, 0) failed"));
2292 // restore the original selection
2293 DoSetSelection(startOld
, endOld
, FALSE
);
2299 bool wxTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
2301 if ( !wxTextCtrlBase::SetDefaultStyle(style
) )
2304 // we have to do this or the style wouldn't apply for the text typed by the
2306 long posLast
= GetLastPosition();
2307 SetStyle(posLast
, posLast
, m_defaultStyle
);
2312 bool wxTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
2316 // can't do it with normal text control
2320 // initialize CHARFORMAT struct
2329 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2330 // CHARFORMAT in that case
2332 if ( m_verRichEdit
== 1 )
2334 // this is the only thing the control is going to grok
2335 cf
.cbSize
= sizeof(CHARFORMAT
);
2340 // CHARFORMAT or CHARFORMAT2
2341 cf
.cbSize
= sizeof(cf
);
2343 // we can only change the format of the selection, so select the range we
2344 // want and restore the old selection later
2345 long startOld
, endOld
;
2346 GetSelection(&startOld
, &endOld
);
2348 // but do we really have to change the selection?
2349 bool changeSel
= position
!= startOld
|| position
!= endOld
;
2353 DoSetSelection(position
, position
, FALSE
/* don't scroll caret into view */);
2356 // get the selection formatting
2357 (void) ::SendMessage(GetHwnd(), EM_GETCHARFORMAT
,
2358 SCF_SELECTION
, (LPARAM
)&cf
) ;
2361 lf
.lfHeight
= cf
.yHeight
;
2363 lf
.lfCharSet
= ANSI_CHARSET
; // FIXME: how to get correct charset?
2364 lf
.lfClipPrecision
= 0;
2365 lf
.lfEscapement
= 0;
2366 wxStrcpy(lf
.lfFaceName
, cf
.szFaceName
);
2367 if (cf
.dwEffects
& CFE_ITALIC
)
2369 lf
.lfOrientation
= 0;
2370 lf
.lfPitchAndFamily
= cf
.bPitchAndFamily
;
2372 if (cf
.dwEffects
& CFE_STRIKEOUT
)
2373 lf
.lfStrikeOut
= TRUE
;
2374 if (cf
.dwEffects
& CFE_UNDERLINE
)
2375 lf
.lfUnderline
= TRUE
;
2376 if (cf
.dwEffects
& CFE_BOLD
)
2377 lf
.lfWeight
= FW_BOLD
;
2379 wxFont font
= wxCreateFontFromLogFont(& lf
);
2382 style
.SetFont(font
);
2384 style
.SetTextColour(wxColour(cf
.crTextColor
));
2387 if ( m_verRichEdit
!= 1 )
2389 // cf.dwMask |= CFM_BACKCOLOR;
2390 style
.SetBackgroundColour(wxColour(cf
.crBackColor
));
2392 #endif // wxUSE_RICHEDIT2
2394 // now get the paragraph formatting
2397 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2398 // PARAFORMAT in that case
2400 if ( m_verRichEdit
== 1 )
2402 // this is the only thing the control is going to grok
2403 pf
.cbSize
= sizeof(PARAFORMAT
);
2408 // PARAFORMAT or PARAFORMAT2
2409 pf
.cbSize
= sizeof(pf
);
2412 // do format the selection
2413 (void) ::SendMessage(GetHwnd(), EM_GETPARAFORMAT
, 0, (LPARAM
) &pf
) ;
2415 style
.SetLeftIndent( (int) ((double) pf
.dxStartIndent
* twips2mm
* 10.0) );
2416 style
.SetRightIndent( (int) ((double) pf
.dxRightIndent
* twips2mm
* 10.0) );
2418 if (pf
.wAlignment
== PFA_CENTER
)
2419 style
.SetAlignment(wxTEXT_ALIGNMENT_CENTRE
);
2420 else if (pf
.wAlignment
== PFA_RIGHT
)
2421 style
.SetAlignment(wxTEXT_ALIGNMENT_RIGHT
);
2422 else if (pf
.wAlignment
== PFA_JUSTIFY
)
2423 style
.SetAlignment(wxTEXT_ALIGNMENT_JUSTIFIED
);
2425 style
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
2427 wxArrayInt tabStops
;
2429 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2431 tabStops
[i
] = (int) ((double) (pf
.rgxTabs
[i
] & 0xFFFF) * twips2mm
* 10.0) ;
2436 // restore the original selection
2437 DoSetSelection(startOld
, endOld
, FALSE
);
2445 // ----------------------------------------------------------------------------
2447 // ----------------------------------------------------------------------------
2449 bool wxRichEditModule::OnInit()
2451 // don't do anything - we will load it when needed
2455 void wxRichEditModule::OnExit()
2457 for ( size_t i
= 0; i
< WXSIZEOF(ms_hRichEdit
); i
++ )
2459 if ( ms_hRichEdit
[i
] )
2461 ::FreeLibrary(ms_hRichEdit
[i
]);
2462 ms_hRichEdit
[i
] = NULL
;
2468 bool wxRichEditModule::Load(int version
)
2470 // we don't support loading richedit 3.0 as I don't know how to distinguish
2471 // it from 2.0 anyhow
2472 wxCHECK_MSG( version
== 1 || version
== 2, FALSE
,
2473 _T("incorrect richedit control version requested") );
2475 // make it the index in the array
2478 if ( ms_hRichEdit
[version
] == (HINSTANCE
)-1 )
2480 // we had already tried to load it and failed
2484 if ( ms_hRichEdit
[version
] )
2486 // we've already got this one
2490 wxString dllname
= version
? _T("riched20") : _T("riched32");
2491 dllname
+= _T(".dll");
2493 ms_hRichEdit
[version
] = ::LoadLibrary(dllname
);
2495 if ( !ms_hRichEdit
[version
] )
2497 wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname
.c_str());
2499 ms_hRichEdit
[version
] = (HINSTANCE
)-1;
2507 #endif // wxUSE_RICHEDIT
2509 #endif // wxUSE_TEXTCTRL