1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/textctrl.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #if wxUSE_TEXTCTRL && !(defined(__SMARTPHONE__) && defined(__WXWINCE__))
30 #include "wx/textctrl.h"
31 #include "wx/settings.h"
33 #include "wx/dcclient.h"
40 #include "wx/module.h"
41 #include "wx/wxcrtvararg.h"
44 #include "wx/sysopt.h"
47 #include "wx/clipbrd.h"
50 #include "wx/textfile.h"
54 #include "wx/msw/private.h"
55 #include "wx/msw/winundef.h"
56 #include "wx/msw/mslu.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 #endif // wxUSE_RICHEDIT
75 #include "wx/msw/missing.h"
77 // FIXME-VC6: This seems to be only missing from VC6 headers.
78 #ifndef SPI_GETCARETWIDTH
79 #define SPI_GETCARETWIDTH 0x2006
82 #if wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT
84 // dummy value used for m_dropTarget, different from any valid pointer value
85 // (which are all even under Windows) and NULL
87 wxRICHTEXT_DEFAULT_DROPTARGET
= reinterpret_cast<wxDropTarget
*>(1);
89 #endif // wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT
91 // ----------------------------------------------------------------------------
93 // ----------------------------------------------------------------------------
97 // this module initializes RichEdit DLL(s) if needed
98 class wxRichEditModule
: public wxModule
103 Version_1
, // riched32.dll
104 Version_2or3
, // both use riched20.dll
105 Version_41
, // msftedit.dll (XP SP1 and Windows 2003)
109 virtual bool OnInit();
110 virtual void OnExit();
112 // load the richedit DLL for the specified version of rich edit
113 static bool Load(Version version
);
116 // load the InkEdit library
117 static bool LoadInkEdit();
121 // the handles to richedit 1.0 and 2.0 (or 3.0) DLLs
122 static HINSTANCE ms_hRichEdit
[Version_Max
];
125 static wxDynamicLibrary ms_inkEditLib
;
126 static bool ms_inkEditLibLoadAttemped
;
129 DECLARE_DYNAMIC_CLASS(wxRichEditModule
)
132 HINSTANCE
wxRichEditModule::ms_hRichEdit
[Version_Max
] = { NULL
, NULL
, NULL
};
135 wxDynamicLibrary
wxRichEditModule::ms_inkEditLib
;
136 bool wxRichEditModule::ms_inkEditLibLoadAttemped
= false;
139 IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule
, wxModule
)
141 #endif // wxUSE_RICHEDIT
143 // a small class used to set m_updatesCount to 0 (to filter duplicate events if
144 // necessary) and to reset it back to -1 afterwards
145 class UpdatesCountFilter
148 UpdatesCountFilter(int& count
)
151 wxASSERT_MSG( m_count
== -1 || m_count
== -2,
152 wxT("wrong initial m_updatesCount value") );
156 //else: we don't want to count how many update events we get as we're going
157 // to ignore all of them
160 ~UpdatesCountFilter()
165 // return true if an event has been received
166 bool GotUpdate() const
174 wxDECLARE_NO_COPY_CLASS(UpdatesCountFilter
);
177 // ----------------------------------------------------------------------------
178 // event tables and other macros
179 // ----------------------------------------------------------------------------
181 BEGIN_EVENT_TABLE(wxTextCtrl
, wxTextCtrlBase
)
182 EVT_CHAR(wxTextCtrl::OnChar
)
183 EVT_KEY_DOWN(wxTextCtrl::OnKeyDown
)
184 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
187 EVT_CONTEXT_MENU(wxTextCtrl::OnContextMenu
)
190 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
191 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
192 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
193 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
194 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
195 EVT_MENU(wxID_CLEAR
, wxTextCtrl::OnDelete
)
196 EVT_MENU(wxID_SELECTALL
, wxTextCtrl::OnSelectAll
)
198 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
199 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
200 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
201 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
202 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
203 EVT_UPDATE_UI(wxID_CLEAR
, wxTextCtrl::OnUpdateDelete
)
204 EVT_UPDATE_UI(wxID_SELECTALL
, wxTextCtrl::OnUpdateSelectAll
)
206 EVT_SET_FOCUS(wxTextCtrl::OnSetFocus
)
209 // ============================================================================
211 // ============================================================================
213 // ----------------------------------------------------------------------------
215 // ----------------------------------------------------------------------------
217 void wxTextCtrl::Init()
221 #endif // wxUSE_RICHEDIT
223 #if wxUSE_INKEDIT && wxUSE_RICHEDIT
227 m_privateContextMenu
= NULL
;
229 m_isNativeCaretShown
= true;
232 wxTextCtrl::~wxTextCtrl()
234 #if wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT
235 if ( m_dropTarget
== wxRICHTEXT_DEFAULT_DROPTARGET
)
237 // don't try to destroy this dummy pointer in the base class dtor
240 #endif // wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT
242 delete m_privateContextMenu
;
245 bool wxTextCtrl::Create(wxWindow
*parent
,
247 const wxString
& value
,
251 const wxValidator
& validator
,
252 const wxString
& name
)
254 // base initialization
255 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
258 if ( !MSWCreateText(value
, pos
, size
) )
261 #if wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT
264 // rich text controls have a default associated drop target which
265 // allows them to receive (rich) text dropped on them, which is nice,
266 // but prevents us from associating a user-defined drop target with
267 // them as we need to unregister the old one first
269 // to make it work, we set m_dropTarget to this special value initially
270 // and check for it in our SetDropTarget()
271 m_dropTarget
= wxRICHTEXT_DEFAULT_DROPTARGET
;
273 #endif // wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT
278 // returns true if the platform should explicitly apply a theme border
279 bool wxTextCtrl::CanApplyThemeBorder() const
284 // Standard text control already handles theming
285 return ((GetWindowStyle() & (wxTE_RICH
|wxTE_RICH2
)) != 0);
289 bool wxTextCtrl::MSWCreateText(const wxString
& value
,
293 // translate wxWin style flags to MSW ones
294 WXDWORD msStyle
= MSWGetCreateWindowFlags();
296 // do create the control - either an EDIT or RICHEDIT
297 wxString windowClass
= wxT("EDIT");
299 #if defined(__POCKETPC__) || defined(__SMARTPHONE__)
300 // A control that capitalizes the first letter
301 if ( HasFlag(wxTE_CAPITALIZE
) )
302 windowClass
= wxT("CAPEDIT");
306 if ( m_windowStyle
& wxTE_AUTO_URL
)
308 // automatic URL detection only works in RichEdit 2.0+
309 m_windowStyle
|= wxTE_RICH2
;
312 if ( m_windowStyle
& wxTE_RICH2
)
314 // using richedit 2.0 implies using wxTE_RICH
315 m_windowStyle
|= wxTE_RICH
;
318 // we need to load the richedit DLL before creating the rich edit control
319 if ( m_windowStyle
& wxTE_RICH
)
321 // versions 2.0, 3.0 and 4.1 of rich edit are mostly compatible with
322 // each other but not with version 1.0, so we have separate flags for
323 // the version 1.0 and the others (and so m_verRichEdit may be 0 (plain
324 // EDIT control), 1 for version 1.0 or 2 for any higher version)
326 // notice that 1.0 has no Unicode support at all so in Unicode build we
327 // must use another version
331 #else // !wxUSE_UNICODE
332 m_verRichEdit
= m_windowStyle
& wxTE_RICH2
? 2 : 1;
333 #endif // wxUSE_UNICODE/!wxUSE_UNICODE
336 // First test if we can load an ink edit control. Normally, all edit
337 // controls will be made ink edit controls if a tablet environment is
338 // found (or if msw.inkedit != 0 and the InkEd.dll is present).
339 // However, an application can veto ink edit controls by either specifying
340 // msw.inkedit = 0 or by removing wxTE_RICH[2] from the style.
342 if ((wxSystemSettings::HasFeature(wxSYS_TABLET_PRESENT
) || wxSystemOptions::GetOptionInt(wxT("msw.inkedit")) != 0) &&
343 !(wxSystemOptions::HasOption(wxT("msw.inkedit")) && wxSystemOptions::GetOptionInt(wxT("msw.inkedit")) == 0))
345 if (wxRichEditModule::LoadInkEdit())
347 windowClass
= INKEDIT_CLASS
;
349 #if wxUSE_INKEDIT && wxUSE_RICHEDIT
353 // Fake rich text version for other calls
361 #endif // wxUSE_INKEDIT
363 if ( m_verRichEdit
== 2 )
365 if ( wxRichEditModule::Load(wxRichEditModule::Version_41
) )
367 // yes, class name for version 4.1 really is 5.0
368 windowClass
= wxT("RICHEDIT50W");
372 else if ( wxRichEditModule::Load(wxRichEditModule::Version_2or3
) )
374 windowClass
= wxT("RichEdit20")
379 #endif // Unicode/ANSI
381 else // failed to load msftedit.dll and riched20.dll
387 if ( m_verRichEdit
== 1 )
389 if ( wxRichEditModule::Load(wxRichEditModule::Version_1
) )
391 windowClass
= wxT("RICHEDIT");
393 else // failed to load any richedit control DLL
395 // only give the error msg once if the DLL can't be loaded
396 static bool s_errorGiven
= false; // MT ok as only used by GUI
400 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
410 #endif // wxUSE_RICHEDIT
412 // we need to turn '\n's into "\r\n"s for the multiline controls
414 if ( m_windowStyle
& wxTE_MULTILINE
)
416 valueWin
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
423 // suppress events sent during control creation: we're called either from
424 // the ctor and then we shouldn't generate any events for compatibility
425 // with the other ports, or from SetWindowStyleFlag() and then we shouldn't
426 // generate the events because our text doesn't really change, the fact
427 // that we (sometimes) need to recreate the control is just an
428 // implementation detail
431 if ( !MSWCreateControl(windowClass
.t_str(), msStyle
, pos
, size
, valueWin
) )
442 // Pass IEM_InsertText (0) as wParam, in order to have the ink always
443 // converted to text.
444 ::SendMessage(GetHwnd(), EM_SETINKINSERTMODE
, 0, 0);
446 // Make sure the mouse can be used for input
447 ::SendMessage(GetHwnd(), EM_SETUSEMOUSEFORINPUT
, 1, 0);
451 // enable the events we're interested in: we want to get EN_CHANGE as
452 // for the normal controls
453 LPARAM mask
= ENM_CHANGE
;
455 if (GetRichVersion() == 1 && !IsInkEdit())
457 // we also need EN_MSGFILTER for richedit 1.0 for the reasons
458 // explained in its handler
459 mask
|= ENM_MOUSEEVENTS
;
461 // we also need to force the appearance of the vertical scrollbar
462 // initially as otherwise the control doesn't refresh correctly
463 // after resize: but once the vertical scrollbar had been shown
464 // (even if it's subsequently hidden) it does
466 // this is clearly a bug and for now it has been only noticed under
467 // Windows XP, so if we're sure it works correctly under other
468 // systems we could do this only for XP
469 SetSize(-1, 1); // 1 is small enough to force vert scrollbar
470 SetInitialSize(size
);
472 else if ( m_windowStyle
& wxTE_AUTO_URL
)
476 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT
, TRUE
, 0);
479 ::SendMessage(GetHwnd(), EM_SETEVENTMASK
, 0, mask
);
482 #endif // wxUSE_RICHEDIT
483 if ( HasFlag(wxTE_MULTILINE
) && HasFlag(wxTE_READONLY
) )
485 // non-rich read-only multiline controls have grey background by
486 // default under MSW but this is not always appropriate, so forcefully
487 // reset the background colour to normal default
489 // this is not ideal but, after a long discussion on wx-dev (see
490 // http://thread.gmane.org/gmane.comp.lib.wxwidgets.devel/116360/) it
491 // was finally deemed to be the best behaviour by default (and ideally
492 // we'd have a way to change this, see #11521)
493 SetBackgroundColour(GetClassDefaultAttributes().colBg
);
497 // Without this, if we pass the size in the constructor and then don't change it,
498 // the themed borders will be drawn incorrectly.
499 SetWindowPos(GetHwnd(), NULL
, 0, 0, 0, 0,
500 SWP_NOZORDER
|SWP_NOMOVE
|SWP_NOSIZE
|SWP_NOACTIVATE
|
503 if ( IsSingleLine() )
505 // If we don't set the margins explicitly, their size depends on the
506 // control initial size, see #2438. So explicitly set them to something
507 // consistent. And for this we have 2 candidates: EC_USEFONTINFO (which
508 // sets the left margin to 3 pixels, at least under Windows 7) or 0. We
509 // use the former because it looks like it was meant to be used as the
510 // default (what else would it be there for?) and 0 looks bad in
511 // classic mode, i.e. without themes. Also, the margin can be reset to
512 // 0 easily by calling SetMargins() explicitly but setting it to the
513 // default value is not currently supported.
514 ::SendMessage(GetHwnd(), EM_SETMARGINS
,
515 EC_LEFTMARGIN
| EC_RIGHTMARGIN
,
516 MAKELPARAM(EC_USEFONTINFO
, EC_USEFONTINFO
));
518 #endif // !__WXWINCE__
523 // Make sure the window style (etc.) reflects the HWND style (roughly)
524 void wxTextCtrl::AdoptAttributesFromHWND()
526 wxWindow::AdoptAttributesFromHWND();
528 HWND hWnd
= GetHwnd();
529 long style
= ::GetWindowLong(hWnd
, GWL_STYLE
);
531 // retrieve the style to see whether this is an edit or richedit ctrl
533 wxString classname
= wxGetWindowClass(GetHWND());
535 if ( classname
.IsSameAs(wxT("EDIT"), false /* no case */) )
542 if ( wxSscanf(classname
, wxT("RichEdit%d0%c"), &m_verRichEdit
, &c
) != 2 )
544 wxLogDebug(wxT("Unknown edit control '%s'."), classname
.c_str());
549 #endif // wxUSE_RICHEDIT
551 if (style
& ES_MULTILINE
)
552 m_windowStyle
|= wxTE_MULTILINE
;
553 if (style
& ES_PASSWORD
)
554 m_windowStyle
|= wxTE_PASSWORD
;
555 if (style
& ES_READONLY
)
556 m_windowStyle
|= wxTE_READONLY
;
557 if (style
& ES_WANTRETURN
)
558 m_windowStyle
|= wxTE_PROCESS_ENTER
;
559 if (style
& ES_CENTER
)
560 m_windowStyle
|= wxTE_CENTRE
;
561 if (style
& ES_RIGHT
)
562 m_windowStyle
|= wxTE_RIGHT
;
565 WXDWORD
wxTextCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
567 long msStyle
= wxControl::MSWGetStyle(style
, exstyle
);
569 // styles which we always add by default
570 if ( style
& wxTE_MULTILINE
)
572 msStyle
|= ES_MULTILINE
| ES_WANTRETURN
;
573 if ( !(style
& wxTE_NO_VSCROLL
) )
575 // always adjust the vertical scrollbar automatically if we have it
576 msStyle
|= WS_VSCROLL
| ES_AUTOVSCROLL
;
579 // we have to use this style for the rich edit controls because
580 // without it the vertical scrollbar never appears at all in
581 // richedit 3.0 because of our ECO_NOHIDESEL hack (search for it)
582 if ( style
& wxTE_RICH2
)
584 msStyle
|= ES_DISABLENOSCROLL
;
586 #endif // wxUSE_RICHEDIT
589 style
|= wxTE_PROCESS_ENTER
;
593 // there is really no reason to not have this style for single line
595 msStyle
|= ES_AUTOHSCROLL
;
598 // note that wxTE_DONTWRAP is the same as wxHSCROLL so if we have a horz
599 // scrollbar, there is no wrapping -- which makes sense
600 if ( style
& wxTE_DONTWRAP
)
602 // automatically scroll the control horizontally as necessary
604 // NB: ES_AUTOHSCROLL is needed for richedit controls or they don't
605 // show horz scrollbar at all, even in spite of WS_HSCROLL, and as
606 // it doesn't seem to do any harm for plain edit controls, add it
608 msStyle
|= WS_HSCROLL
| ES_AUTOHSCROLL
;
611 if ( style
& wxTE_READONLY
)
612 msStyle
|= ES_READONLY
;
614 if ( style
& wxTE_PASSWORD
)
615 msStyle
|= ES_PASSWORD
;
617 if ( style
& wxTE_NOHIDESEL
)
618 msStyle
|= ES_NOHIDESEL
;
620 // note that we can't do do "& wxTE_LEFT" as wxTE_LEFT == 0
621 if ( style
& wxTE_CENTRE
)
622 msStyle
|= ES_CENTER
;
623 else if ( style
& wxTE_RIGHT
)
626 msStyle
|= ES_LEFT
; // ES_LEFT is 0 as well but for consistency...
631 void wxTextCtrl::SetWindowStyleFlag(long style
)
633 // changing the alignment of the control dynamically works under Win2003
634 // (but not older Windows version: it seems to work under some versions of
635 // XP but not other ones, and we have no way to determine it so be
636 // conservative here) and only for plain EDIT controls (not RICH ones) and
637 // we have to recreate the control to make it always work
638 if ( IsRich() || wxGetWinVersion() < wxWinVersion_2003
)
640 const long alignMask
= wxTE_LEFT
| wxTE_CENTRE
| wxTE_RIGHT
;
641 if ( (style
& alignMask
) != (GetWindowStyle() & alignMask
) )
643 const wxString value
= GetValue();
644 const wxPoint pos
= GetPosition();
645 const wxSize size
= GetSize();
647 // delete the old window
648 HWND hwnd
= GetHwnd();
650 ::DestroyWindow(hwnd
);
652 // create the new one with the updated flags
653 m_windowStyle
= style
;
654 MSWCreateText(value
, pos
, size
);
656 // and make sure it has the same attributes as before
659 // calling SetFont(m_font) would do nothing as the code would
660 // notice that the font didn't change, so force it to believe
662 wxFont font
= m_font
;
669 wxColour colFg
= m_foregroundColour
;
670 m_foregroundColour
= wxNullColour
;
671 SetForegroundColour(colFg
);
676 wxColour colBg
= m_backgroundColour
;
677 m_backgroundColour
= wxNullColour
;
678 SetBackgroundColour(colBg
);
681 // note that text styles are lost but this is probably not a big
682 // problem: if you use styles, you probably don't use nor change
683 // alignment flags anyhow
690 // we have to deal with some styles separately because they can't be
691 // changed by simply calling SetWindowLong(GWL_STYLE) but can be changed
692 // using richedit-specific EM_SETOPTIONS
694 ((style
& wxTE_NOHIDESEL
) != (GetWindowStyle() & wxTE_NOHIDESEL
)) )
696 bool set
= (style
& wxTE_NOHIDESEL
) != 0;
698 ::SendMessage(GetHwnd(), EM_SETOPTIONS
, set
? ECOOP_OR
: ECOOP_AND
,
699 set
? ECO_NOHIDESEL
: ~ECO_NOHIDESEL
);
701 #endif // wxUSE_RICHEDIT
703 wxControl::SetWindowStyleFlag(style
);
706 // ----------------------------------------------------------------------------
707 // set/get the controls text
708 // ----------------------------------------------------------------------------
710 bool wxTextCtrl::IsEmpty() const
712 // this is an optimization for multiline controls containing a lot of text
713 if ( IsMultiLine() && GetNumberOfLines() != 1 )
716 return wxTextCtrlBase::IsEmpty();
719 wxString
wxTextCtrl::GetValue() const
721 // range 0..-1 is special for GetRange() and means to retrieve all text
722 return GetRange(0, -1);
725 wxString
wxTextCtrl::GetRange(long from
, long to
) const
729 if ( from
>= to
&& to
!= -1 )
731 // nothing to retrieve
738 int len
= GetWindowTextLength(GetHwnd());
745 // we must use EM_STREAMOUT if we don't want to lose all characters
746 // not representable in the current character set (EM_GETTEXTRANGE
747 // simply replaces them with question marks...)
748 if ( GetRichVersion() > 1 )
750 // we must have some encoding, otherwise any 8bit chars in the
751 // control are simply *lost* (replaced by '?')
752 wxFontEncoding encoding
= wxFONTENCODING_SYSTEM
;
754 wxFont font
= m_defaultStyle
.GetFont();
760 encoding
= font
.GetEncoding();
764 if ( encoding
== wxFONTENCODING_SYSTEM
)
766 encoding
= wxLocale::GetSystemEncoding();
770 if ( encoding
== wxFONTENCODING_SYSTEM
)
772 encoding
= wxFONTENCODING_ISO8859_1
;
775 str
= StreamOut(encoding
);
779 // we have to manually extract the required part, luckily
780 // this is easy in this case as EOL characters in str are
781 // just LFs because we remove CRs in wxRichEditStreamOut
782 str
= str
.Mid(from
, to
- from
);
786 // StreamOut() wasn't used or failed, try to do it in normal way
788 #endif // !wxUSE_UNICODE
790 // alloc one extra WORD as needed by the control
791 wxStringBuffer
tmp(str
, ++len
);
795 textRange
.chrg
.cpMin
= from
;
796 textRange
.chrg
.cpMax
= to
;
797 textRange
.lpstrText
= p
;
799 (void)::SendMessage(GetHwnd(), EM_GETTEXTRANGE
,
800 0, (LPARAM
)&textRange
);
802 if ( m_verRichEdit
> 1 )
804 // RichEdit 2.0 uses just CR ('\r') for the
805 // newlines which is neither Unix nor Windows
806 // style - convert it to something reasonable
809 if ( *p
== wxT('\r') )
815 if ( m_verRichEdit
== 1 )
817 // convert to the canonical form - see comment below
818 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
821 //else: no text at all, leave the string empty
824 #endif // wxUSE_RICHEDIT
826 // retrieve all text: wxTextEntry method works even for multiline
827 // controls and must be used for single line ones to account for hints
828 str
= wxTextEntry::GetValue();
830 // need only a range?
833 str
= str
.Mid(from
, to
- from
);
836 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
837 // canonical one (same one as above) for consistency with the other kinds
838 // of controls and, more importantly, with the other ports
839 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
845 void wxTextCtrl::DoSetValue(const wxString
& value
, int flags
)
847 // if the text is long enough, it's faster to just set it instead of first
848 // comparing it with the old one (chances are that it will be different
849 // anyhow, this comparison is there to avoid flicker for small single-line
850 // edit controls mostly)
851 if ( (value
.length() > 0x400) || (value
!= DoGetValue()) )
853 DoWriteText(value
, flags
/* doesn't include SelectionOnly here */);
855 // mark the control as being not dirty - we changed its text, not the
859 // for compatibility, don't move the cursor when doing SetValue()
860 SetInsertionPoint(0);
864 // still reset the modified flag even if the value didn't really change
865 // because now it comes from the program and not the user (and do it
866 // before generating the event so that the event handler could get the
867 // expected value from IsModified())
870 // still send an event for consistency
871 if (flags
& SetValue_SendEvent
)
876 #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)
878 // TODO: using memcpy() would improve performance a lot for big amounts of text
881 wxRichEditStreamIn(DWORD_PTR dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
885 const wchar_t ** const ppws
= (const wchar_t **)dwCookie
;
887 wchar_t *wbuf
= (wchar_t *)buf
;
888 const wchar_t *wpc
= *ppws
;
893 cb
-= sizeof(wchar_t);
894 (*pcb
) += sizeof(wchar_t);
902 // helper struct used to pass parameters from wxTextCtrl to wxRichEditStreamOut
903 struct wxStreamOutData
910 wxRichEditStreamOut(DWORD_PTR dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
914 wxStreamOutData
*data
= (wxStreamOutData
*)dwCookie
;
916 const wchar_t *wbuf
= (const wchar_t *)buf
;
917 wchar_t *wpc
= data
->wpc
;
920 wchar_t wch
= *wbuf
++;
922 // turn "\r\n" into "\n" on the fly
928 cb
-= sizeof(wchar_t);
929 (*pcb
) += sizeof(wchar_t);
938 #if wxUSE_UNICODE_MSLU
939 #define UNUSED_IF_MSLU(param)
941 #define UNUSED_IF_MSLU(param) param
945 wxTextCtrl::StreamIn(const wxString
& value
,
946 wxFontEncoding
UNUSED_IF_MSLU(encoding
),
949 #if wxUSE_UNICODE_MSLU
950 const wchar_t *wpc
= value
.c_str();
951 #else // !wxUSE_UNICODE_MSLU
952 wxCSConv
conv(encoding
);
954 const size_t len
= conv
.MB2WC(NULL
, value
.mb_str(), value
.length());
956 if (len
== wxCONV_FAILED
)
959 wxWCharBuffer
wchBuf(len
); // allocates one extra character
960 wchar_t *wpc
= wchBuf
.data();
962 conv
.MB2WC(wpc
, value
.mb_str(), len
+ 1);
963 #endif // wxUSE_UNICODE_MSLU
965 // finally, stream it in the control
968 eds
.dwCookie
= (DWORD_PTR
)&wpc
;
969 // the cast below is needed for broken (very) old mingw32 headers
970 eds
.pfnCallback
= (EDITSTREAMCALLBACK
)wxRichEditStreamIn
;
972 // same problem as in DoWriteText(): we can get multiple events here
973 UpdatesCountFilter
ucf(m_updatesCount
);
975 ::SendMessage(GetHwnd(), EM_STREAMIN
,
978 (selectionOnly
? SFF_SELECTION
: 0),
981 // It's okay for EN_UPDATE to not be sent if the selection is empty and
982 // the text is empty, otherwise warn the programmer about it.
983 wxASSERT_MSG( ucf
.GotUpdate() || ( !HasSelection() && value
.empty() ),
984 wxT("EM_STREAMIN didn't send EN_UPDATE?") );
988 wxLogLastError(wxT("EM_STREAMIN"));
994 #if !wxUSE_UNICODE_MSLU
997 wxTextCtrl::StreamOut(wxFontEncoding encoding
, bool selectionOnly
) const
1001 const int len
= GetWindowTextLength(GetHwnd());
1003 wxWCharBuffer
wchBuf(len
);
1004 wchar_t *wpc
= wchBuf
.data();
1006 wxStreamOutData data
;
1012 eds
.dwCookie
= (DWORD
)&data
;
1013 eds
.pfnCallback
= wxRichEditStreamOut
;
1019 SF_TEXT
| SF_UNICODE
| (selectionOnly
? SFF_SELECTION
: 0),
1025 wxLogLastError(wxT("EM_STREAMOUT"));
1027 else // streamed out ok
1029 // NUL-terminate the string because its length could have been
1030 // decreased by wxRichEditStreamOut
1031 *(wchBuf
.data() + data
.len
) = L
'\0';
1033 // now convert to the given encoding (this is a possibly lossful
1034 // conversion but what else can we do)
1035 wxCSConv
conv(encoding
);
1036 size_t lenNeeded
= conv
.WC2MB(NULL
, wchBuf
, 0);
1038 if ( lenNeeded
!= wxCONV_FAILED
&& lenNeeded
++ )
1040 conv
.WC2MB(wxStringBuffer(out
, lenNeeded
), wchBuf
, lenNeeded
);
1047 #endif // !wxUSE_UNICODE_MSLU
1049 #endif // wxUSE_RICHEDIT
1051 void wxTextCtrl::WriteText(const wxString
& value
)
1056 void wxTextCtrl::DoWriteText(const wxString
& value
, int flags
)
1058 bool selectionOnly
= (flags
& SetValue_SelectionOnly
) != 0;
1060 if ( m_windowStyle
& wxTE_MULTILINE
)
1061 valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
1066 // there are several complications with the rich edit controls here
1070 // first, ensure that the new text will be in the default style
1071 if ( !m_defaultStyle
.IsDefault() )
1074 GetSelection(&start
, &end
);
1075 SetStyle(start
, end
, m_defaultStyle
);
1078 #if wxUSE_UNICODE_MSLU
1079 // RichEdit doesn't have Unicode version of EM_REPLACESEL on Win9x,
1080 // but EM_STREAMIN works
1081 if ( wxUsingUnicowsDll() && GetRichVersion() > 1 )
1083 done
= StreamIn(valueDos
, wxFONTENCODING_SYSTEM
, selectionOnly
);
1085 #endif // wxUSE_UNICODE_MSLU
1088 // next check if the text we're inserting must be shown in a non
1089 // default charset -- this only works for RichEdit > 1.0
1090 if ( GetRichVersion() > 1 )
1092 wxFont font
= m_defaultStyle
.GetFont();
1098 wxFontEncoding encoding
= font
.GetEncoding();
1099 if ( encoding
!= wxFONTENCODING_SYSTEM
)
1101 // we have to use EM_STREAMIN to force richedit control 2.0+
1102 // to show any text in the non default charset -- otherwise
1103 // it thinks it knows better than we do and always shows it
1104 // in the default one
1105 done
= StreamIn(valueDos
, encoding
, selectionOnly
);
1109 #endif // !wxUSE_UNICODE
1113 #endif // wxUSE_RICHEDIT
1115 // in some cases we get 2 EN_CHANGE notifications after the SendMessage
1116 // call (this happens for plain EDITs with EM_REPLACESEL and under some
1117 // -- undetermined -- conditions with rich edit) and sometimes we don't
1118 // get any events at all (plain EDIT with WM_SETTEXT), so ensure that
1119 // we generate exactly one of them by ignoring all but the first one in
1120 // SendUpdateEvent() and generating one ourselves if we hadn't got any
1121 // notifications from Windows
1122 if ( !(flags
& SetValue_SendEvent
) )
1123 m_updatesCount
= -2; // suppress any update event
1125 UpdatesCountFilter
ucf(m_updatesCount
);
1127 ::SendMessage(GetHwnd(), selectionOnly
? EM_REPLACESEL
: WM_SETTEXT
,
1128 // EM_REPLACESEL takes 1 to indicate the operation should be redoable
1129 selectionOnly
? 1 : 0, wxMSW_CONV_LPARAM(valueDos
));
1131 if ( !ucf
.GotUpdate() && (flags
& SetValue_SendEvent
) )
1138 void wxTextCtrl::AppendText(const wxString
& text
)
1140 wxTextEntry::AppendText(text
);
1143 // don't do this if we're frozen, saves some time
1144 if ( !IsFrozen() && IsMultiLine() && GetRichVersion() > 1 )
1146 ::SendMessage(GetHwnd(), WM_VSCROLL
, SB_BOTTOM
, (LPARAM
)NULL
);
1148 #endif // wxUSE_RICHEDIT
1151 void wxTextCtrl::Clear()
1153 ::SetWindowText(GetHwnd(), wxEmptyString
);
1155 if ( IsMultiLine() && !IsRich() )
1157 // rich edit controls send EN_UPDATE from WM_SETTEXT handler themselves
1158 // but the normal ones don't -- make Clear() behaviour consistent by
1159 // always sending this event
1166 bool wxTextCtrl::EmulateKeyPress(const wxKeyEvent
& event
)
1170 size_t lenOld
= GetValue().length();
1172 wxUint32 code
= event
.GetRawKeyCode();
1173 ::keybd_event((BYTE
)code
, 0, 0 /* key press */, 0);
1174 ::keybd_event((BYTE
)code
, 0, KEYEVENTF_KEYUP
, 0);
1176 // assume that any alphanumeric key changes the total number of characters
1177 // in the control - this should work in 99% of cases
1178 return GetValue().length() != lenOld
;
1183 // ----------------------------------------------------------------------------
1185 // ----------------------------------------------------------------------------
1187 void wxTextCtrl::SetInsertionPointEnd()
1189 // we must not do anything if the caret is already there because calling
1190 // SetInsertionPoint() thaws the controls if Freeze() had been called even
1191 // if it doesn't actually move the caret anywhere and so the simple fact of
1192 // doing it results in horrible flicker when appending big amounts of text
1193 // to the control in a few chunks (see DoAddText() test in the text sample)
1194 const wxTextPos lastPosition
= GetLastPosition();
1195 if ( GetInsertionPoint() == lastPosition
)
1200 SetInsertionPoint(lastPosition
);
1203 long wxTextCtrl::GetInsertionPoint() const
1211 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &range
);
1214 #endif // wxUSE_RICHEDIT
1216 return wxTextEntry::GetInsertionPoint();
1219 wxTextPos
wxTextCtrl::GetLastPosition() const
1221 if ( IsMultiLine() )
1223 int numLines
= GetNumberOfLines();
1224 long posStartLastLine
= XYToPosition(0, numLines
- 1);
1226 long lenLastLine
= GetLengthOfLineContainingPos(posStartLastLine
);
1228 return posStartLastLine
+ lenLastLine
;
1231 return wxTextEntry::GetLastPosition();
1234 // If the return values from and to are the same, there is no
1236 void wxTextCtrl::GetSelection(long *from
, long *to
) const
1241 CHARRANGE charRange
;
1242 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &charRange
);
1244 *from
= charRange
.cpMin
;
1245 *to
= charRange
.cpMax
;
1248 #endif // !wxUSE_RICHEDIT
1250 wxTextEntry::GetSelection(from
, to
);
1254 // ----------------------------------------------------------------------------
1256 // ----------------------------------------------------------------------------
1258 void wxTextCtrl::DoSetSelection(long from
, long to
, int flags
)
1260 HWND hWnd
= GetHwnd();
1265 // if from and to are both -1, it means (in wxWidgets) that all text
1266 // should be selected, translate this into Windows convention
1267 if ( (from
== -1) && (to
== -1) )
1275 ::SendMessage(hWnd
, EM_EXSETSEL
, 0, (LPARAM
)&range
);
1278 #endif // wxUSE_RICHEDIT
1280 wxTextEntry::DoSetSelection(from
, to
, flags
);
1283 if ( (flags
& SetSel_Scroll
) && !IsFrozen() )
1286 // richedit 3.0 (i.e. the version living in riched20.dll distributed
1287 // with Windows 2000 and beyond) doesn't honour EM_SCROLLCARET when
1288 // emulating richedit 2.0 unless the control has focus or ECO_NOHIDESEL
1289 // option is set (but it does work ok in richedit 1.0 mode...)
1291 // so to make it work we either need to give focus to it here which
1292 // will probably create many problems (dummy focus events; window
1293 // containing the text control being brought to foreground
1294 // unexpectedly; ...) or to temporarily set ECO_NOHIDESEL which may
1295 // create other problems too -- and in fact it does because if we turn
1296 // on/off this style while appending the text to the control, the
1297 // vertical scrollbar never appears in it even if we append tons of
1298 // text and to work around this the only solution I found was to use
1299 // ES_DISABLENOSCROLL
1301 // this is very ugly but I don't see any other way to make this work
1303 if ( GetRichVersion() > 1 )
1305 if ( !HasFlag(wxTE_NOHIDESEL
) )
1307 // setting ECO_NOHIDESEL also sets WS_VISIBLE and possibly
1308 // others, remember the style so we can reset it later if needed
1309 style
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1310 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1311 ECOOP_OR
, ECO_NOHIDESEL
);
1313 //else: everything is already ok
1315 #endif // wxUSE_RICHEDIT
1317 ::SendMessage(hWnd
, EM_SCROLLCARET
, 0, (LPARAM
)0);
1320 // restore ECO_NOHIDESEL if we changed it
1321 if ( GetRichVersion() > 1 && !HasFlag(wxTE_NOHIDESEL
) )
1323 ::SendMessage(GetHwnd(), EM_SETOPTIONS
,
1324 ECOOP_AND
, ~ECO_NOHIDESEL
);
1325 if ( style
!= ::GetWindowLong(GetHwnd(), GWL_STYLE
) )
1326 ::SetWindowLong(GetHwnd(), GWL_STYLE
, style
);
1328 #endif // wxUSE_RICHEDIT
1332 // ----------------------------------------------------------------------------
1333 // Working with files
1334 // ----------------------------------------------------------------------------
1336 bool wxTextCtrl::DoLoadFile(const wxString
& file
, int fileType
)
1338 if ( wxTextCtrlBase::DoLoadFile(file
, fileType
) )
1340 // update the size limit if needed
1349 // ----------------------------------------------------------------------------
1351 // ----------------------------------------------------------------------------
1353 bool wxTextCtrl::IsModified() const
1355 return ::SendMessage(GetHwnd(), EM_GETMODIFY
, 0, 0) != 0;
1358 void wxTextCtrl::MarkDirty()
1360 ::SendMessage(GetHwnd(), EM_SETMODIFY
, TRUE
, 0);
1363 void wxTextCtrl::DiscardEdits()
1365 ::SendMessage(GetHwnd(), EM_SETMODIFY
, FALSE
, 0);
1368 // ----------------------------------------------------------------------------
1369 // Positions <-> coords
1370 // ----------------------------------------------------------------------------
1372 int wxTextCtrl::GetNumberOfLines() const
1374 return (int)::SendMessage(GetHwnd(), EM_GETLINECOUNT
, 0, 0);
1377 long wxTextCtrl::XYToPosition(long x
, long y
) const
1379 // This gets the char index for the _beginning_ of this line
1380 long charIndex
= ::SendMessage(GetHwnd(), EM_LINEINDEX
, y
, 0);
1382 return charIndex
+ x
;
1385 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
1387 HWND hWnd
= GetHwnd();
1389 // This gets the line number containing the character
1394 lineNo
= ::SendMessage(hWnd
, EM_EXLINEFROMCHAR
, 0, pos
);
1397 #endif // wxUSE_RICHEDIT
1399 lineNo
= ::SendMessage(hWnd
, EM_LINEFROMCHAR
, pos
, 0);
1408 // This gets the char index for the _beginning_ of this line
1409 long charIndex
= ::SendMessage(hWnd
, EM_LINEINDEX
, lineNo
, 0);
1410 if ( charIndex
== -1 )
1415 // The X position must therefore be the different between pos and charIndex
1417 *x
= pos
- charIndex
;
1424 wxTextCtrlHitTestResult
1425 wxTextCtrl::HitTest(const wxPoint
& pt
, long *posOut
) const
1427 // first get the position from Windows
1434 // for rich edit controls the position is passed iva the struct fields
1437 lParam
= (LPARAM
)&ptl
;
1440 #endif // wxUSE_RICHEDIT
1442 // for the plain ones, we are limited to 16 bit positions which are
1443 // combined in a single 32 bit value
1444 lParam
= MAKELPARAM(pt
.x
, pt
.y
);
1447 LRESULT pos
= ::SendMessage(GetHwnd(), EM_CHARFROMPOS
, 0, lParam
);
1451 // this seems to indicate an error...
1452 return wxTE_HT_UNKNOWN
;
1457 #endif // wxUSE_RICHEDIT
1459 // for plain EDIT controls the higher word contains something else
1464 // next determine where it is relatively to our point: EM_CHARFROMPOS
1465 // always returns the closest character but we need to be more precise, so
1466 // double check that we really are where it pretends
1470 // FIXME: we need to distinguish between richedit 2 and 3 here somehow but
1471 // we don't know how to do it
1474 ::SendMessage(GetHwnd(), EM_POSFROMCHAR
, (WPARAM
)&ptReal
, pos
);
1477 #endif // wxUSE_RICHEDIT
1479 LRESULT lRc
= ::SendMessage(GetHwnd(), EM_POSFROMCHAR
, pos
, 0);
1483 // this is apparently returned when pos corresponds to the last
1490 ptReal
.x
= LOWORD(lRc
);
1491 ptReal
.y
= HIWORD(lRc
);
1495 wxTextCtrlHitTestResult rc
;
1497 if ( pt
.y
> ptReal
.y
+ GetCharHeight() )
1499 else if ( pt
.x
> ptReal
.x
+ GetCharWidth() )
1500 rc
= wxTE_HT_BEYOND
;
1502 rc
= wxTE_HT_ON_TEXT
;
1510 wxPoint
wxTextCtrl::DoPositionToCoords(long pos
) const
1512 // FIXME: This code is broken for rich edit version 2.0 as it uses the same
1513 // API as plain edit i.e. the coordinates are returned directly instead of
1514 // filling the POINT passed as WPARAM with them but we can't distinguish
1515 // between 2.0 and 3.0 unfortunately (see also the use of EM_POSFROMCHAR
1521 LRESULT rc
= ::SendMessage(GetHwnd(), EM_POSFROMCHAR
, (WPARAM
)&pt
, pos
);
1523 return wxPoint(pt
.x
, pt
.y
);
1526 #endif // wxUSE_RICHEDIT
1528 LRESULT rc
= ::SendMessage(GetHwnd(), EM_POSFROMCHAR
, pos
, 0);
1531 // Finding coordinates for the last position of the control fails
1532 // in plain EDIT control, try to compensate for it by finding it
1533 // ourselves from the position of the previous character.
1534 if ( pos
< GetLastPosition() )
1536 // It's not the expected correctable failure case so just fail.
1537 return wxDefaultPosition
;
1542 // We're being asked the coordinates of the first (and last and
1543 // only) position in an empty control. There is no way to get
1544 // it directly with EM_POSFROMCHAR but EM_GETMARGINS returns
1545 // the correct value for at least the horizontal offset.
1546 rc
= ::SendMessage(GetHwnd(), EM_GETMARGINS
, 0, 0);
1548 // Text control seems to effectively add 1 to margin.
1549 return wxPoint(LOWORD(rc
) + 1, 1);
1552 // We do have a previous character, try to get its coordinates.
1553 rc
= ::SendMessage(GetHwnd(), EM_POSFROMCHAR
, pos
- 1, 0);
1556 // If getting coordinates of the previous character failed as
1557 // well, just give up.
1558 return wxDefaultPosition
;
1561 wxString prevChar
= GetRange(pos
- 1, pos
);
1562 wxSize prevCharSize
= GetTextExtent(prevChar
);
1564 if ( prevChar
== wxT("\n" ))
1566 // 'pos' is at the beginning of a new line so its X coordinate
1567 // should be the same as X coordinate of the first character of
1568 // any other line while its Y coordinate will be approximately
1569 // (but we can't compute it exactly...) one character height
1570 // more than that of the previous character.
1571 LRESULT coords0
= ::SendMessage(GetHwnd(), EM_POSFROMCHAR
, 0, 0);
1572 if ( coords0
== -1 )
1573 return wxDefaultPosition
;
1575 rc
= MAKELPARAM(LOWORD(coords0
), HIWORD(rc
) + prevCharSize
.y
);
1579 // Simple case: previous character is in the same line so this
1580 // one is just after it.
1581 rc
+= MAKELPARAM(prevCharSize
.x
, 0);
1585 // Notice that {LO,HI}WORD macros return WORDs, i.e. unsigned shorts,
1586 // while we want to have signed values here (the y coordinate of any
1587 // position above the first currently visible line is negative, for
1588 // example), hence the need for casts.
1589 return wxPoint(static_cast<short>(LOWORD(rc
)),
1590 static_cast<short>(HIWORD(rc
)));
1593 return wxDefaultPosition
;
1597 // ----------------------------------------------------------------------------
1599 // ----------------------------------------------------------------------------
1601 void wxTextCtrl::ShowPosition(long pos
)
1603 HWND hWnd
= GetHwnd();
1605 // To scroll to a position, we pass the number of lines and characters
1606 // to scroll *by*. This means that we need to:
1607 // (1) Find the line position of the current line.
1608 // (2) Find the line position of pos.
1609 // (3) Scroll by (pos - current).
1610 // For now, ignore the horizontal scrolling.
1612 // Is this where scrolling is relative to - the line containing the caret?
1613 // Or is the first visible line??? Try first visible line.
1614 // int currentLineLineNo1 = (int)::SendMessage(hWnd, EM_LINEFROMCHAR, -1, 0L);
1616 int currentLineLineNo
= (int)::SendMessage(hWnd
, EM_GETFIRSTVISIBLELINE
, 0, 0);
1618 int specifiedLineLineNo
= (int)::SendMessage(hWnd
, EM_LINEFROMCHAR
, pos
, 0);
1620 int linesToScroll
= specifiedLineLineNo
- currentLineLineNo
;
1622 if (linesToScroll
!= 0)
1623 ::SendMessage(hWnd
, EM_LINESCROLL
, 0, linesToScroll
);
1626 long wxTextCtrl::GetLengthOfLineContainingPos(long pos
) const
1628 return ::SendMessage(GetHwnd(), EM_LINELENGTH
, pos
, 0);
1631 int wxTextCtrl::GetLineLength(long lineNo
) const
1633 long pos
= XYToPosition(0, lineNo
);
1635 return GetLengthOfLineContainingPos(pos
);
1638 wxString
wxTextCtrl::GetLineText(long lineNo
) const
1640 size_t len
= (size_t)GetLineLength(lineNo
) + 1;
1642 // there must be at least enough place for the length WORD in the
1644 len
+= sizeof(WORD
);
1648 wxStringBufferLength
tmp(str
, len
);
1651 *(WORD
*)buf
= (WORD
)len
;
1652 len
= (size_t)::SendMessage(GetHwnd(), EM_GETLINE
, lineNo
, (LPARAM
)buf
);
1657 // remove the '\r' returned by the rich edit control, the user code
1658 // should never see it
1659 if ( buf
[len
- 2] == wxT('\r') && buf
[len
- 1] == wxT('\n') )
1661 // richedit 1.0 uses "\r\n" as line terminator, so remove "\r"
1662 // here and "\n" below
1663 buf
[len
- 2] = wxT('\n');
1666 else if ( buf
[len
- 1] == wxT('\r') )
1668 // richedit 2.0+ uses only "\r", replace it with "\n"
1669 buf
[len
- 1] = wxT('\n');
1672 #endif // wxUSE_RICHEDIT
1674 // remove the '\n' at the end, if any (this is how this function is
1675 // supposed to work according to the docs)
1676 if ( buf
[len
- 1] == wxT('\n') )
1688 void wxTextCtrl::SetMaxLength(unsigned long len
)
1693 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, len
? len
: 0x7fffffff);
1696 #endif // wxUSE_RICHEDIT
1698 wxTextEntry::SetMaxLength(len
);
1702 // ----------------------------------------------------------------------------
1704 // ----------------------------------------------------------------------------
1706 void wxTextCtrl::Redo()
1709 if ( GetRichVersion() > 1 )
1711 ::SendMessage(GetHwnd(), EM_REDO
, 0, 0);
1714 #endif // wxUSE_RICHEDIT
1716 wxTextEntry::Redo();
1719 bool wxTextCtrl::CanRedo() const
1722 if ( GetRichVersion() > 1 )
1723 return ::SendMessage(GetHwnd(), EM_CANREDO
, 0, 0) != 0;
1724 #endif // wxUSE_RICHEDIT
1726 return wxTextEntry::CanRedo();
1729 // ----------------------------------------------------------------------------
1730 // caret handling (Windows only)
1731 // ----------------------------------------------------------------------------
1733 bool wxTextCtrl::ShowNativeCaret(bool show
)
1735 if ( show
!= m_isNativeCaretShown
)
1737 if ( !(show
? ::ShowCaret(GetHwnd()) : ::HideCaret(GetHwnd())) )
1739 // not an error, may simply indicate that it's not shown/hidden
1740 // yet (i.e. it had been hidden/shown 2 times before)
1744 m_isNativeCaretShown
= show
;
1750 // ----------------------------------------------------------------------------
1751 // implementation details
1752 // ----------------------------------------------------------------------------
1754 void wxTextCtrl::Command(wxCommandEvent
& event
)
1756 SetValue(event
.GetString());
1757 ProcessCommand (event
);
1760 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
1762 // By default, load the first file into the text window.
1763 if (event
.GetNumberOfFiles() > 0)
1765 LoadFile(event
.GetFiles()[0]);
1769 // ----------------------------------------------------------------------------
1770 // kbd input processing
1771 // ----------------------------------------------------------------------------
1773 bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG
* msg
)
1775 // check for our special keys here: if we don't do it and the parent frame
1776 // uses them as accelerators, they wouldn't work at all, so we disable
1777 // usual preprocessing for them
1778 if ( msg
->message
== WM_KEYDOWN
)
1780 const WPARAM vkey
= msg
->wParam
;
1781 if ( HIWORD(msg
->lParam
) & KF_ALTDOWN
)
1783 // Alt-Backspace is accelerator for "Undo"
1784 if ( vkey
== VK_BACK
)
1789 // we want to process some Ctrl-foo and Shift-bar but no key
1790 // combinations without either Ctrl or Shift nor with both of them
1792 const int ctrl
= wxIsCtrlDown(),
1793 shift
= wxIsShiftDown();
1794 switch ( ctrl
+ shift
)
1797 wxFAIL_MSG( wxT("how many modifiers have we got?") );
1804 // This one is only special for multi line controls.
1805 if ( !IsMultiLine() )
1819 // either Ctrl or Shift pressed
1834 else // Shift is pressed
1836 if ( vkey
== VK_INSERT
|| vkey
== VK_DELETE
)
1843 return wxControl::MSWShouldPreProcessMessage(msg
);
1846 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
1848 switch ( event
.GetKeyCode() )
1852 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1853 InitCommandEvent(event
);
1854 event
.SetString(GetValue());
1855 if ( HandleWindowEvent(event
) )
1856 if ( !HasFlag(wxTE_MULTILINE
) )
1858 //else: multiline controls need Enter for themselves
1863 // ok, so this is getting absolutely ridiculous but I don't see
1864 // any other way to fix this bug: when a multiline text control is
1865 // inside a wxFrame, we need to generate the navigation event as
1866 // otherwise nothing happens at all, but when the same control is
1867 // created inside a dialog, IsDialogMessage() *does* switch focus
1868 // all by itself and so if we do it here as well, it is advanced
1869 // twice and goes to the next control... to prevent this from
1870 // happening we're doing this ugly check, the logic being that if
1871 // we don't have focus then it had been already changed to the next
1874 // the right thing to do would, of course, be to understand what
1875 // the hell is IsDialogMessage() doing but this is beyond my feeble
1876 // forces at the moment unfortunately
1877 if ( !(m_windowStyle
& wxTE_PROCESS_TAB
))
1879 if ( FindFocus() == this )
1882 if (!event
.ShiftDown())
1883 flags
|= wxNavigationKeyEvent::IsForward
;
1884 if (event
.ControlDown())
1885 flags
|= wxNavigationKeyEvent::WinChange
;
1886 if (Navigate(flags
))
1892 // Insert tab since calling the default Windows handler
1893 // doesn't seem to do it
1894 WriteText(wxT("\t"));
1900 // no, we didn't process it
1904 void wxTextCtrl::OnKeyDown(wxKeyEvent
& event
)
1906 // richedit control doesn't send WM_PASTE, WM_CUT and WM_COPY messages
1907 // when Ctrl-V, X or C is pressed and this prevents wxClipboardTextEvent
1908 // from working. So we work around it by intercepting these shortcuts
1909 // ourselves and emitting clipboard events (which richedit will handle,
1910 // so everything works as before, including pasting of rich text):
1911 if ( event
.GetModifiers() == wxMOD_CONTROL
&& IsRich() )
1913 switch ( event
.GetKeyCode() )
1929 // Default window procedure of multiline edit controls posts WM_CLOSE to
1930 // the parent window when it gets Escape key press for some reason, prevent
1931 // it from doing this as this resulted in dialog boxes being closed on
1932 // Escape even when they shouldn't be (we do handle Escape ourselves
1933 // correctly in the situations when it should close them).
1934 if ( event
.GetKeyCode() == WXK_ESCAPE
&& IsMultiLine() )
1937 // no, we didn't process it
1941 WXLRESULT
wxTextCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1943 WXLRESULT lRc
= wxTextCtrlBase::MSWWindowProc(nMsg
, wParam
, lParam
);
1949 // we always want the chars and the arrows: the arrows for
1950 // navigation and the chars because we want Ctrl-C to work even
1951 // in a read only control
1952 long lDlgCode
= DLGC_WANTCHARS
| DLGC_WANTARROWS
;
1956 // we may have several different cases:
1957 // 1. normal: both TAB and ENTER are used for navigation
1958 // 2. ctrl wants TAB for itself: ENTER is used to pass to
1959 // the next control in the dialog
1960 // 3. ctrl wants ENTER for itself: TAB is used for dialog
1962 // 4. ctrl wants both TAB and ENTER: Ctrl-ENTER is used to
1963 // go to the next control (we need some way to do it)
1965 // multiline controls should always get ENTER for themselves
1966 if ( HasFlag(wxTE_PROCESS_ENTER
) || HasFlag(wxTE_MULTILINE
) )
1967 lDlgCode
|= DLGC_WANTMESSAGE
;
1969 if ( HasFlag(wxTE_PROCESS_TAB
) )
1970 lDlgCode
|= DLGC_WANTTAB
;
1976 // NB: use "=", not "|=" as the base class version returns
1977 // the same flags in the disabled state as usual (i.e.
1978 // including DLGC_WANTMESSAGE). This is strange (how
1979 // does it work in the native Win32 apps?) but for now
1984 // Clear the DLGC_HASSETSEL bit from the return value
1985 lRc
&= ~DLGC_HASSETSEL
;
1991 // rich text controls seem to have a bug and don't change the
1992 // cursor to the standard arrow one from the I-beam cursor usually
1993 // used by them even when a popup menu is shown (this works fine
1994 // for plain EDIT controls though), so explicitly work around this
1997 extern wxMenu
*wxCurrentPopupMenu
;
1998 if ( wxCurrentPopupMenu
&&
1999 wxCurrentPopupMenu
->GetInvokingWindow() == this )
2000 ::SetCursor(GetHcursorOf(*wxSTANDARD_CURSOR
));
2002 #endif // wxUSE_MENUS
2008 // ----------------------------------------------------------------------------
2009 // text control event processing
2010 // ----------------------------------------------------------------------------
2012 bool wxTextCtrl::SendUpdateEvent()
2014 switch ( m_updatesCount
)
2017 // remember that we've got an update
2022 // we had already sent one event since the last control modification
2026 wxFAIL_MSG( wxT("unexpected wxTextCtrl::m_updatesCount value") );
2030 // we hadn't updated the control ourselves, this event comes from
2031 // the user, don't need to ignore it nor update the count
2035 // the control was updated programmatically and we do NOT want to
2040 return SendTextUpdatedEvent();
2043 bool wxTextCtrl::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
2052 // the text size limit has been hit -- try to increase it
2053 if ( !AdjustSpaceLimit() )
2055 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, m_windowId
);
2056 InitCommandEvent(event
);
2057 event
.SetString(GetValue());
2058 ProcessCommand(event
);
2062 // the other edit notification messages are not processed (or, in
2063 // the case of EN_{SET/KILL}FOCUS were already handled at WM_SET/
2073 WXHBRUSH
wxTextCtrl::MSWControlColor(WXHDC hDC
, WXHWND hWnd
)
2075 if ( !IsThisEnabled() && !HasFlag(wxTE_MULTILINE
) )
2076 return MSWControlColorDisabled(hDC
);
2078 return wxTextCtrlBase::MSWControlColor(hDC
, hWnd
);
2081 bool wxTextCtrl::HasSpaceLimit(unsigned int *len
) const
2083 // HACK: we try to automatically extend the limit for the amount of text
2084 // to allow (interactively) entering more than 64Kb of text under
2085 // Win9x but we shouldn't reset the text limit which was previously
2086 // set explicitly with SetMaxLength()
2088 // Unfortunately there is no EM_GETLIMITTEXTSETBYUSER and so we don't
2089 // know the limit we set (if any). We could solve this by storing the
2090 // limit we set in wxTextCtrl but to save space we prefer to simply
2091 // test here the actual limit value: we consider that SetMaxLength()
2092 // can only be called for small values while EN_MAXTEXT is only sent
2093 // for large values (in practice the default limit seems to be 30000
2094 // but make it smaller just to be on the safe side)
2095 *len
= ::SendMessage(GetHwnd(), EM_GETLIMITTEXT
, 0, 0);
2096 return *len
< 10001;
2100 bool wxTextCtrl::AdjustSpaceLimit()
2103 if ( HasSpaceLimit(&limit
) )
2106 unsigned int len
= ::GetWindowTextLength(GetHwnd());
2109 // increment in 32Kb chunks
2110 SetMaxLength(len
+ 0x8000);
2113 // we changed the limit
2117 bool wxTextCtrl::AcceptsFocusFromKeyboard() const
2119 // we don't want focus if we can't be edited unless we're a multiline
2120 // control because then it might be still nice to get focus from keyboard
2121 // to be able to scroll it without mouse
2122 return (IsEditable() || IsMultiLine()) && wxControl::AcceptsFocus();
2125 wxSize
wxTextCtrl::DoGetBestSize() const
2127 return DoGetSizeFromTextSize( DEFAULT_ITEM_WIDTH
);
2130 wxSize
wxTextCtrl::DoGetSizeFromTextSize(int xlen
, int ylen
) const
2133 wxGetCharSize(GetHWND(), &cx
, &cy
, GetFont());
2136 ::SystemParametersInfo(SPI_GETCARETWIDTH
, 0, &wText
, 0);
2140 if ( m_windowStyle
& wxTE_MULTILINE
)
2142 // add space for vertical scrollbar
2143 if ( !(m_windowStyle
& wxTE_NO_VSCROLL
) )
2144 wText
+= ::GetSystemMetrics(SM_CXVSCROLL
);
2148 hText
*= wxMax(wxMin(GetNumberOfLines(), 10), 2);
2149 // add space for horizontal scrollbar
2150 if ( m_windowStyle
& wxHSCROLL
)
2151 hText
+= ::GetSystemMetrics(SM_CYHSCROLL
);
2154 // for single line control cy (height + external leading) is ok
2157 // Add the margins we have previously set
2158 wxPoint
marg( GetMargins() );
2159 wText
+= wxMax(0, marg
.x
);
2160 hText
+= wxMax(0, marg
.y
);
2163 // Text controls without border are special and have the same height as
2164 // static labels (they also have the same appearance when they're disable
2165 // and are often used as a sort of copyable to the clipboard label so it's
2166 // important that they have the same height as the normal labels to not
2168 if ( !HasFlag(wxBORDER_NONE
) )
2170 wText
+= 9; // borders and inner margins
2172 // we have to add the adjustments for the control height only once, not
2173 // once per line, so do it after multiplication above
2174 hText
+= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
) - cy
;
2177 // Perhaps the user wants something different from CharHeight, or ylen
2178 // is used as the height of a multiline text.
2180 hText
+= ylen
- GetCharHeight();
2182 return wxSize(wText
, hText
);
2185 // ----------------------------------------------------------------------------
2186 // standard handlers for standard edit menu events
2187 // ----------------------------------------------------------------------------
2189 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
2194 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
2199 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
2204 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
2209 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
2214 void wxTextCtrl::OnDelete(wxCommandEvent
& WXUNUSED(event
))
2219 void wxTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
2224 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
2226 event
.Enable( CanCut() );
2229 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
2231 event
.Enable( CanCopy() );
2234 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
2236 event
.Enable( CanPaste() );
2239 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
2241 event
.Enable( CanUndo() );
2244 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
2246 event
.Enable( CanRedo() );
2249 void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent
& event
)
2251 event
.Enable( HasSelection() && IsEditable() );
2254 void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
2256 event
.Enable( !IsEmpty() );
2259 void wxTextCtrl::OnContextMenu(wxContextMenuEvent
& event
)
2264 if (!m_privateContextMenu
)
2266 m_privateContextMenu
= new wxMenu
;
2267 m_privateContextMenu
->Append(wxID_UNDO
, _("&Undo"));
2268 m_privateContextMenu
->Append(wxID_REDO
, _("&Redo"));
2269 m_privateContextMenu
->AppendSeparator();
2270 m_privateContextMenu
->Append(wxID_CUT
, _("Cu&t"));
2271 m_privateContextMenu
->Append(wxID_COPY
, _("&Copy"));
2272 m_privateContextMenu
->Append(wxID_PASTE
, _("&Paste"));
2273 m_privateContextMenu
->Append(wxID_CLEAR
, _("&Delete"));
2274 m_privateContextMenu
->AppendSeparator();
2275 m_privateContextMenu
->Append(wxID_SELECTALL
, _("Select &All"));
2277 PopupMenu(m_privateContextMenu
);
2285 void wxTextCtrl::OnSetFocus(wxFocusEvent
& event
)
2287 // be sure the caret remains invisible if the user had hidden it
2288 if ( !m_isNativeCaretShown
)
2290 ::HideCaret(GetHwnd());
2296 // the rest of the file only deals with the rich edit controls
2299 // ----------------------------------------------------------------------------
2300 // EN_LINK processing
2301 // ----------------------------------------------------------------------------
2303 bool wxTextCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
2305 NMHDR
*hdr
= (NMHDR
* )lParam
;
2306 switch ( hdr
->code
)
2310 const MSGFILTER
*msgf
= (MSGFILTER
*)lParam
;
2311 UINT msg
= msgf
->msg
;
2313 // this is a bit crazy but richedit 1.0 sends us all mouse
2314 // events _except_ WM_LBUTTONUP (don't ask me why) so we have
2315 // generate the wxWin events for this message manually
2317 // NB: in fact, this is still not totally correct as it does
2318 // send us WM_LBUTTONUP if the selection was cleared by the
2319 // last click -- so currently we get 2 events in this case,
2320 // but as I don't see any obvious way to check for this I
2321 // leave this code in place because it's still better than
2322 // not getting left up events at all
2323 if ( msg
== WM_LBUTTONUP
)
2325 WXUINT flags
= msgf
->wParam
;
2326 int x
= GET_X_LPARAM(msgf
->lParam
),
2327 y
= GET_Y_LPARAM(msgf
->lParam
);
2329 HandleMouseEvent(msg
, x
, y
, flags
);
2333 // return true to process the event (and false to ignore it)
2338 const ENLINK
*enlink
= (ENLINK
*)hdr
;
2340 switch ( enlink
->msg
)
2343 // ok, so it is hardcoded - do we really nee to
2346 wxCursor
cur(wxCURSOR_HAND
);
2347 ::SetCursor(GetHcursorOf(cur
));
2353 case WM_LBUTTONDOWN
:
2355 case WM_LBUTTONDBLCLK
:
2356 case WM_RBUTTONDOWN
:
2358 case WM_RBUTTONDBLCLK
:
2359 // send a mouse event
2361 static const wxEventType eventsMouse
[] =
2372 // the event ids are consecutive
2374 evtMouse(eventsMouse
[enlink
->msg
- WM_MOUSEMOVE
]);
2376 InitMouseEvent(evtMouse
,
2377 GET_X_LPARAM(enlink
->lParam
),
2378 GET_Y_LPARAM(enlink
->lParam
),
2381 wxTextUrlEvent
event(m_windowId
, evtMouse
,
2383 enlink
->chrg
.cpMax
);
2385 InitCommandEvent(event
);
2387 *result
= ProcessCommand(event
);
2395 // not processed, leave it to the base class
2396 return wxTextCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
);
2399 #if wxUSE_DRAG_AND_DROP
2401 void wxTextCtrl::SetDropTarget(wxDropTarget
*dropTarget
)
2403 if ( m_dropTarget
== wxRICHTEXT_DEFAULT_DROPTARGET
)
2405 // get rid of the built-in drop target
2406 ::RevokeDragDrop(GetHwnd());
2407 m_dropTarget
= NULL
;
2410 wxTextCtrlBase::SetDropTarget(dropTarget
);
2413 #endif // wxUSE_DRAG_AND_DROP
2415 // ----------------------------------------------------------------------------
2416 // colour setting for the rich edit controls
2417 // ----------------------------------------------------------------------------
2419 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
2421 if ( !wxTextCtrlBase::SetBackgroundColour(colour
) )
2423 // colour didn't really change
2429 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
2430 // EM_SETBKGNDCOLOR additionally
2431 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR
, 0, wxColourToRGB(colour
));
2437 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
2439 if ( !wxTextCtrlBase::SetForegroundColour(colour
) )
2441 // colour didn't really change
2447 // change the colour of everything
2448 WinStruct
<CHARFORMAT
> cf
;
2449 cf
.dwMask
= CFM_COLOR
;
2450 cf
.crTextColor
= wxColourToRGB(colour
);
2451 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
, SCF_ALL
, (LPARAM
)&cf
);
2457 bool wxTextCtrl::SetFont(const wxFont
& font
)
2459 if ( !wxTextCtrlBase::SetFont(font
) )
2462 if ( GetRichVersion() >= 4 )
2464 // Using WM_SETFONT is not enough with RichEdit 4.1: it does work but
2465 // for ASCII characters only and inserting a non-ASCII one into it
2466 // later reverts to the default font so use EM_SETCHARFORMAT to change
2467 // the default font for it.
2470 SetStyle(-1, -1, attr
);
2476 // ----------------------------------------------------------------------------
2477 // styling support for rich edit controls
2478 // ----------------------------------------------------------------------------
2480 bool wxTextCtrl::MSWSetCharFormat(const wxTextAttr
& style
, long start
, long end
)
2482 // initialize CHARFORMAT struct
2491 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2492 // CHARFORMAT in that case
2494 if ( m_verRichEdit
== 1 )
2496 // this is the only thing the control is going to grok
2497 cf
.cbSize
= sizeof(CHARFORMAT
);
2502 // CHARFORMAT or CHARFORMAT2
2503 cf
.cbSize
= sizeof(cf
);
2506 if ( style
.HasFont() )
2508 // VZ: CFM_CHARSET doesn't seem to do anything at all in RichEdit 2.0
2509 // but using it doesn't seem to hurt neither so leaving it for now
2511 cf
.dwMask
|= CFM_FACE
| CFM_SIZE
| CFM_CHARSET
|
2512 CFM_ITALIC
| CFM_BOLD
| CFM_UNDERLINE
;
2514 // fill in data from LOGFONT but recalculate lfHeight because we need
2515 // the real height in twips and not the negative number which
2516 // wxFillLogFont() returns (this is correct in general and works with
2517 // the Windows font mapper, but not here)
2519 wxFont
font(style
.GetFont());
2522 wxFillLogFont(&lf
, &font
);
2523 cf
.yHeight
= 20*font
.GetPointSize(); // 1 pt = 20 twips
2524 cf
.bCharSet
= lf
.lfCharSet
;
2525 cf
.bPitchAndFamily
= lf
.lfPitchAndFamily
;
2526 wxStrlcpy(cf
.szFaceName
, lf
.lfFaceName
, WXSIZEOF(cf
.szFaceName
));
2528 // also deal with underline/italic/bold attributes: note that we must
2529 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
2530 // style to allow clearing it
2533 cf
.dwEffects
|= CFE_ITALIC
;
2536 if ( lf
.lfWeight
== FW_BOLD
)
2538 cf
.dwEffects
|= CFE_BOLD
;
2541 if ( lf
.lfUnderline
)
2543 cf
.dwEffects
|= CFE_UNDERLINE
;
2546 // strikeout fonts are not supported by wxWidgets
2549 if ( style
.HasTextColour() )
2551 cf
.dwMask
|= CFM_COLOR
;
2552 cf
.crTextColor
= wxColourToRGB(style
.GetTextColour());
2556 if ( m_verRichEdit
!= 1 && style
.HasBackgroundColour() )
2558 cf
.dwMask
|= CFM_BACKCOLOR
;
2559 cf
.crBackColor
= wxColourToRGB(style
.GetBackgroundColour());
2561 #endif // wxUSE_RICHEDIT2
2563 // Apply the style either to the selection or to the entire control.
2565 if ( start
!= -1 || end
!= -1 )
2567 DoSetSelection(start
, end
, SetSel_NoScroll
);
2568 selMode
= SCF_SELECTION
;
2575 if ( !::SendMessage(GetHwnd(), EM_SETCHARFORMAT
, selMode
, (LPARAM
)&cf
) )
2577 wxLogLastError(wxT("SendMessage(EM_SETCHARFORMAT)"));
2584 bool wxTextCtrl::MSWSetParaFormat(const wxTextAttr
& style
, long start
, long end
)
2594 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2595 // PARAFORMAT in that case
2597 if ( m_verRichEdit
== 1 )
2599 // this is the only thing the control is going to grok
2600 pf
.cbSize
= sizeof(PARAFORMAT
);
2605 // PARAFORMAT or PARAFORMAT2
2606 pf
.cbSize
= sizeof(pf
);
2609 if (style
.HasAlignment())
2611 pf
.dwMask
|= PFM_ALIGNMENT
;
2612 if (style
.GetAlignment() == wxTEXT_ALIGNMENT_RIGHT
)
2613 pf
.wAlignment
= PFA_RIGHT
;
2614 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_CENTRE
)
2615 pf
.wAlignment
= PFA_CENTER
;
2616 else if (style
.GetAlignment() == wxTEXT_ALIGNMENT_JUSTIFIED
)
2617 pf
.wAlignment
= PFA_JUSTIFY
;
2619 pf
.wAlignment
= PFA_LEFT
;
2622 if (style
.HasLeftIndent())
2624 pf
.dwMask
|= PFM_STARTINDENT
| PFM_OFFSET
;
2626 // Convert from 1/10 mm to TWIPS
2627 pf
.dxStartIndent
= (int) (((double) style
.GetLeftIndent()) * mm2twips
/ 10.0) ;
2628 pf
.dxOffset
= (int) (((double) style
.GetLeftSubIndent()) * mm2twips
/ 10.0) ;
2631 if (style
.HasRightIndent())
2633 pf
.dwMask
|= PFM_RIGHTINDENT
;
2635 // Convert from 1/10 mm to TWIPS
2636 pf
.dxRightIndent
= (int) (((double) style
.GetRightIndent()) * mm2twips
/ 10.0) ;
2639 if (style
.HasTabs())
2641 pf
.dwMask
|= PFM_TABSTOPS
;
2643 const wxArrayInt
& tabs
= style
.GetTabs();
2645 pf
.cTabCount
= (SHORT
)wxMin(tabs
.GetCount(), MAX_TAB_STOPS
);
2647 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2649 // Convert from 1/10 mm to TWIPS
2650 pf
.rgxTabs
[i
] = (int) (((double) tabs
[i
]) * mm2twips
/ 10.0) ;
2655 if ( m_verRichEdit
> 1 )
2657 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
2659 // Use RTL paragraphs in RTL mode to get proper layout
2660 pf
.dwMask
|= PFM_RTLPARA
;
2661 pf
.wEffects
|= PFE_RTLPARA
;
2664 #endif // wxUSE_RICHEDIT2
2668 // Do format the selection.
2669 DoSetSelection(start
, end
, SetSel_NoScroll
);
2671 if ( !::SendMessage(GetHwnd(), EM_SETPARAFORMAT
, 0, (LPARAM
) &pf
) )
2673 wxLogLastError(wxT("SendMessage(EM_SETPARAFORMAT)"));
2682 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
2686 // can't do it with normal text control
2690 // the richedit 1.0 doesn't handle setting background colour, so don't
2691 // even try to do anything if it's the only thing we want to change
2692 if ( m_verRichEdit
== 1 && !style
.HasFont() && !style
.HasTextColour() &&
2693 !style
.HasLeftIndent() && !style
.HasRightIndent() && !style
.HasAlignment() &&
2696 // nothing to do: return true if there was really nothing to do and
2697 // false if we failed to set bg colour
2698 return !style
.HasBackgroundColour();
2701 // order the range if needed
2705 // we can only change the format of the selection, so select the range we
2706 // want and restore the old selection later, after MSWSetXXXFormat()
2707 // functions (possibly) change it.
2708 long startOld
, endOld
;
2709 GetSelection(&startOld
, &endOld
);
2711 bool ok
= MSWSetCharFormat(style
, start
, end
);
2712 if ( !MSWSetParaFormat(style
, start
, end
) )
2715 if ( start
!= startOld
|| end
!= endOld
)
2717 // restore the original selection
2718 DoSetSelection(startOld
, endOld
, SetSel_NoScroll
);
2724 bool wxTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
2726 if ( !wxTextCtrlBase::SetDefaultStyle(style
) )
2731 // we have to do this or the style wouldn't apply for the text typed by
2733 wxTextPos posLast
= GetLastPosition();
2734 SetStyle(posLast
, posLast
, m_defaultStyle
);
2740 bool wxTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
2744 // can't do it with normal text control
2748 // initialize CHARFORMAT struct
2757 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2758 // CHARFORMAT in that case
2760 if ( m_verRichEdit
== 1 )
2762 // this is the only thing the control is going to grok
2763 cf
.cbSize
= sizeof(CHARFORMAT
);
2768 // CHARFORMAT or CHARFORMAT2
2769 cf
.cbSize
= sizeof(cf
);
2771 // we can only change the format of the selection, so select the range we
2772 // want and restore the old selection later
2773 long startOld
, endOld
;
2774 GetSelection(&startOld
, &endOld
);
2776 // but do we really have to change the selection?
2777 bool changeSel
= position
!= startOld
|| position
!= endOld
;
2781 DoSetSelection(position
, position
+ 1, SetSel_NoScroll
);
2784 // get the selection formatting
2785 (void) ::SendMessage(GetHwnd(), EM_GETCHARFORMAT
,
2786 SCF_SELECTION
, (LPARAM
)&cf
) ;
2790 // Convert the height from the units of 1/20th of the point in which
2791 // CHARFORMAT stores it to pixel-based units used by LOGFONT.
2792 const wxCoord ppi
= wxClientDC(this).GetPPI().y
;
2793 lf
.lfHeight
= -MulDiv(cf
.yHeight
/20, ppi
, 72);
2795 lf
.lfCharSet
= ANSI_CHARSET
; // FIXME: how to get correct charset?
2796 lf
.lfClipPrecision
= 0;
2797 lf
.lfEscapement
= 0;
2798 wxStrcpy(lf
.lfFaceName
, cf
.szFaceName
);
2800 //NOTE: we _MUST_ set each of these values to _something_ since we
2801 //do not call wxZeroMemory on the LOGFONT lf
2802 if (cf
.dwEffects
& CFE_ITALIC
)
2805 lf
.lfItalic
= FALSE
;
2807 lf
.lfOrientation
= 0;
2808 lf
.lfPitchAndFamily
= cf
.bPitchAndFamily
;
2811 if (cf
.dwEffects
& CFE_STRIKEOUT
)
2812 lf
.lfStrikeOut
= TRUE
;
2814 lf
.lfStrikeOut
= FALSE
;
2816 if (cf
.dwEffects
& CFE_UNDERLINE
)
2817 lf
.lfUnderline
= TRUE
;
2819 lf
.lfUnderline
= FALSE
;
2821 if (cf
.dwEffects
& CFE_BOLD
)
2822 lf
.lfWeight
= FW_BOLD
;
2824 lf
.lfWeight
= FW_NORMAL
;
2826 wxFont font
= wxCreateFontFromLogFont(& lf
);
2829 style
.SetFont(font
);
2831 style
.SetTextColour(wxColour(cf
.crTextColor
));
2834 if ( m_verRichEdit
!= 1 )
2836 // cf.dwMask |= CFM_BACKCOLOR;
2837 style
.SetBackgroundColour(wxColour(cf
.crBackColor
));
2839 #endif // wxUSE_RICHEDIT2
2841 // now get the paragraph formatting
2844 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2845 // PARAFORMAT in that case
2847 if ( m_verRichEdit
== 1 )
2849 // this is the only thing the control is going to grok
2850 pf
.cbSize
= sizeof(PARAFORMAT
);
2855 // PARAFORMAT or PARAFORMAT2
2856 pf
.cbSize
= sizeof(pf
);
2859 // do format the selection
2860 (void) ::SendMessage(GetHwnd(), EM_GETPARAFORMAT
, 0, (LPARAM
) &pf
) ;
2862 style
.SetLeftIndent( (int) ((double) pf
.dxStartIndent
* twips2mm
* 10.0), (int) ((double) pf
.dxOffset
* twips2mm
* 10.0) );
2863 style
.SetRightIndent( (int) ((double) pf
.dxRightIndent
* twips2mm
* 10.0) );
2865 if (pf
.wAlignment
== PFA_CENTER
)
2866 style
.SetAlignment(wxTEXT_ALIGNMENT_CENTRE
);
2867 else if (pf
.wAlignment
== PFA_RIGHT
)
2868 style
.SetAlignment(wxTEXT_ALIGNMENT_RIGHT
);
2869 else if (pf
.wAlignment
== PFA_JUSTIFY
)
2870 style
.SetAlignment(wxTEXT_ALIGNMENT_JUSTIFIED
);
2872 style
.SetAlignment(wxTEXT_ALIGNMENT_LEFT
);
2874 wxArrayInt tabStops
;
2876 for (i
= 0; i
< (size_t) pf
.cTabCount
; i
++)
2878 tabStops
.Add( (int) ((double) (pf
.rgxTabs
[i
] & 0xFFFF) * twips2mm
* 10.0) );
2883 // restore the original selection
2884 DoSetSelection(startOld
, endOld
, SetSel_NoScroll
);
2890 // ----------------------------------------------------------------------------
2892 // ----------------------------------------------------------------------------
2894 static const HINSTANCE INVALID_HINSTANCE
= (HINSTANCE
)-1;
2896 bool wxRichEditModule::OnInit()
2898 // don't do anything - we will load it when needed
2902 void wxRichEditModule::OnExit()
2904 for ( size_t i
= 0; i
< WXSIZEOF(ms_hRichEdit
); i
++ )
2906 if ( ms_hRichEdit
[i
] && ms_hRichEdit
[i
] != INVALID_HINSTANCE
)
2908 ::FreeLibrary(ms_hRichEdit
[i
]);
2909 ms_hRichEdit
[i
] = NULL
;
2913 if (ms_inkEditLib
.IsLoaded())
2914 ms_inkEditLib
.Unload();
2919 bool wxRichEditModule::Load(Version version
)
2921 if ( ms_hRichEdit
[version
] == INVALID_HINSTANCE
)
2923 // we had already tried to load it and failed
2927 if ( ms_hRichEdit
[version
] )
2929 // we've already got this one
2933 static const wxChar
*const dllnames
[] =
2940 wxCOMPILE_TIME_ASSERT( WXSIZEOF(dllnames
) == Version_Max
,
2941 RichEditDllNamesVersionsMismatch
);
2943 ms_hRichEdit
[version
] = ::LoadLibrary(dllnames
[version
]);
2945 if ( !ms_hRichEdit
[version
] )
2947 ms_hRichEdit
[version
] = INVALID_HINSTANCE
;
2956 // load the InkEdit library
2957 bool wxRichEditModule::LoadInkEdit()
2959 if (ms_inkEditLibLoadAttemped
)
2960 return ms_inkEditLib
.IsLoaded();
2962 ms_inkEditLibLoadAttemped
= true;
2965 return ms_inkEditLib
.Load(wxT("inked"));
2967 #endif // wxUSE_INKEDIT
2970 #endif // wxUSE_RICHEDIT
2972 #endif // wxUSE_TEXTCTRL && !(__SMARTPHONE__ && __WXWINCE__)