1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/textctrl.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
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"
43 #include "wx/module.h"
46 #include "wx/clipbrd.h"
49 #include "wx/textfile.h"
53 #include "wx/msw/private.h"
57 #include <sys/types.h>
59 #if wxUSE_RICHEDIT && (!defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__))
63 // old mingw32 doesn't define this
65 #define CFM_CHARSET 0x08000000
69 #define CFM_BACKCOLOR 0x04000000
72 // cygwin does not have these defined for richedit
74 #define ENM_LINK 0x04000000
77 #ifndef EM_AUTOURLDETECT
78 #define EM_AUTOURLDETECT (WM_USER + 91)
82 #define EN_LINK 0x070b
84 typedef struct _enlink
94 // ----------------------------------------------------------------------------
96 // ----------------------------------------------------------------------------
100 // this module initializes RichEdit DLL if needed
101 class wxRichEditModule
: public wxModule
104 virtual bool OnInit();
105 virtual void OnExit();
107 // get the version currently loaded, -1 if none
108 static int GetLoadedVersion() { return ms_verRichEdit
; }
110 // load the richedit DLL of at least of required version
111 static bool Load(int version
= 1);
114 // the handle to richedit DLL and the version of the DLL loaded
115 static HINSTANCE ms_hRichEdit
;
117 // the DLL version loaded or -1 if none
118 static int ms_verRichEdit
;
120 DECLARE_DYNAMIC_CLASS(wxRichEditModule
)
123 HINSTANCE
wxRichEditModule::ms_hRichEdit
= (HINSTANCE
)NULL
;
124 int wxRichEditModule::ms_verRichEdit
= -1;
126 IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule
, wxModule
)
128 #endif // wxUSE_RICHEDIT
130 // ----------------------------------------------------------------------------
131 // event tables and other macros
132 // ----------------------------------------------------------------------------
134 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxControl
)
136 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
137 EVT_CHAR(wxTextCtrl::OnChar
)
138 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
140 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
141 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
142 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
143 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
144 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
146 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
147 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
148 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
149 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
150 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
152 EVT_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground
)
156 // ============================================================================
158 // ============================================================================
160 // ----------------------------------------------------------------------------
162 // ----------------------------------------------------------------------------
164 wxTextCtrl::wxTextCtrl()
171 bool wxTextCtrl::Create(wxWindow
*parent
, wxWindowID id
,
172 const wxString
& value
,
176 const wxValidator
& validator
,
177 const wxString
& name
)
179 // base initialization
180 if ( !CreateBase(parent
, id
, pos
, size
, style
, validator
, name
) )
184 parent
->AddChild(this);
186 // translate wxWin style flags to MSW ones, checking for consistency while
188 long msStyle
= ES_LEFT
| WS_VISIBLE
| WS_CHILD
| WS_TABSTOP
;
190 if ( m_windowStyle
& wxCLIP_SIBLINGS
)
191 msStyle
|= WS_CLIPSIBLINGS
;
193 if ( m_windowStyle
& wxTE_MULTILINE
)
195 wxASSERT_MSG( !(m_windowStyle
& wxTE_PROCESS_ENTER
),
196 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
198 msStyle
|= ES_MULTILINE
| ES_WANTRETURN
;
199 if ((m_windowStyle
& wxTE_NO_VSCROLL
) == 0)
200 msStyle
|= WS_VSCROLL
;
201 m_windowStyle
|= wxTE_PROCESS_ENTER
;
204 msStyle
|= ES_AUTOHSCROLL
;
206 if (m_windowStyle
& wxHSCROLL
)
207 msStyle
|= (WS_HSCROLL
| ES_AUTOHSCROLL
);
209 if (m_windowStyle
& wxTE_READONLY
)
210 msStyle
|= ES_READONLY
;
212 if (m_windowStyle
& wxTE_PASSWORD
) // hidden input
213 msStyle
|= ES_PASSWORD
;
215 if (m_windowStyle
& wxTE_AUTO_SCROLL
)
216 msStyle
|= ES_AUTOHSCROLL
;
219 // we always want the characters and the arrows
220 m_lDlgCode
= DLGC_WANTCHARS
| DLGC_WANTARROWS
;
222 // we may have several different cases:
223 // 1. normal case: both TAB and ENTER are used for dialog navigation
224 // 2. ctrl which wants TAB for itself: ENTER is used to pass to the next
225 // control in the dialog
226 // 3. ctrl which wants ENTER for itself: TAB is used for dialog navigation
227 // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to pass to
229 if ( m_windowStyle
& wxTE_PROCESS_ENTER
)
230 m_lDlgCode
|= DLGC_WANTMESSAGE
;
231 if ( m_windowStyle
& wxTE_PROCESS_TAB
)
232 m_lDlgCode
|= DLGC_WANTTAB
;
234 // do create the control - either an EDIT or RICHEDIT
235 wxString windowClass
= wxT("EDIT");
238 if ( m_windowStyle
& wxTE_RICH
)
240 static bool s_errorGiven
= FALSE
; // MT-FIXME
242 // only give the error msg once if the DLL can't be loaded
245 // first try to load the RichEdit DLL (will do nothing if already
247 if ( !wxRichEditModule::Load() )
249 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
261 msStyle
|= ES_AUTOVSCROLL
;
264 int ver
= wxRichEditModule::GetLoadedVersion();
267 windowClass
= wxT("RICHEDIT");
271 #ifndef RICHEDIT_CLASS
272 wxString RICHEDIT_CLASS
;
273 RICHEDIT_CLASS
.Printf(_T("RichEdit%d0"), ver
);
275 RICHEDIT_CLASS
+= _T('W');
277 RICHEDIT_CLASS
+= _T('A');
278 #endif // Unicode/ANSI
279 #endif // !RICHEDIT_CLASS
281 windowClass
= RICHEDIT_CLASS
;
287 #endif // wxUSE_RICHEDIT
290 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
);
292 // Even with extended styles, need to combine with WS_BORDER for them to
294 if ( want3D
|| wxStyleHasBorder(m_windowStyle
) )
295 msStyle
|= WS_BORDER
;
297 // NB: don't use pos and size as CreateWindowEx arguments because they
298 // might be -1 in which case we should use the default values (and
299 // SetSize called below takes care of it)
300 m_hWnd
= (WXHWND
)::CreateWindowEx(exStyle
,
310 wxCHECK_MSG( m_hWnd
, FALSE
, wxT("Failed to create text ctrl") );
315 Ctl3dSubclassCtl(GetHwnd());
323 // have to enable events manually
324 LPARAM mask
= ENM_CHANGE
| ENM_DROPFILES
| ENM_SELCHANGE
| ENM_UPDATE
;
326 if ( m_windowStyle
& wxTE_AUTO_URL
)
330 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT
, TRUE
, 0);
333 ::SendMessage(GetHwnd(), EM_SETEVENTMASK
, 0, mask
);
335 #endif // wxUSE_RICHEDIT
337 SubclassWin(GetHWND());
339 // set font, position, size and initial value
340 wxFont
& fontParent
= parent
->GetFont();
341 if ( fontParent
.Ok() )
347 SetFont(wxSystemSettings::GetSystemFont(wxSYS_SYSTEM_FONT
));
350 // Causes a crash for Symantec C++ and WIN32 for some reason
351 #if !(defined(__SC__) && defined(__WIN32__))
352 if ( !value
.IsEmpty() )
361 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
366 // Make sure the window style (etc.) reflects the HWND style (roughly)
367 void wxTextCtrl::AdoptAttributesFromHWND()
369 wxWindow::AdoptAttributesFromHWND();
371 HWND hWnd
= GetHwnd();
372 long style
= GetWindowLong(hWnd
, GWL_STYLE
);
374 // retrieve the style to see whether this is an edit or richedit ctrl
378 GetClassName(hWnd
, buf
, WXSIZEOF(buf
));
380 if ( wxStricmp(buf
, wxT("EDIT")) == 0 )
384 #endif // wxUSE_RICHEDIT
386 if (style
& ES_MULTILINE
)
387 m_windowStyle
|= wxTE_MULTILINE
;
388 if (style
& ES_PASSWORD
)
389 m_windowStyle
|= wxTE_PASSWORD
;
390 if (style
& ES_READONLY
)
391 m_windowStyle
|= wxTE_READONLY
;
392 if (style
& ES_WANTRETURN
)
393 m_windowStyle
|= wxTE_PROCESS_ENTER
;
396 void wxTextCtrl::SetupColours()
398 wxColour bkgndColour
;
399 // if (IsEditable() || (m_windowStyle & wxTE_MULTILINE))
400 bkgndColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
);
402 // bkgndColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE);
404 SetBackgroundColour(bkgndColour
);
405 SetForegroundColour(GetParent()->GetForegroundColour());
408 // ----------------------------------------------------------------------------
409 // set/get the controls text
410 // ----------------------------------------------------------------------------
412 wxString
wxTextCtrl::GetValue() const
414 // we can't use wxGetWindowText() (i.e. WM_GETTEXT internally) for
415 // retrieving more than 64Kb under Win9x
421 int len
= GetWindowTextLength(GetHwnd());
424 // alloc one extra WORD as needed by the control
425 wxChar
*p
= str
.GetWriteBuf(++len
);
428 textRange
.chrg
.cpMin
= 0;
429 textRange
.chrg
.cpMax
= -1;
430 textRange
.lpstrText
= p
;
432 (void)SendMessage(GetHwnd(), EM_GETTEXTRANGE
, 0, (LPARAM
)&textRange
);
434 // believe it or not, but EM_GETTEXTRANGE uses just CR ('\r') for
435 // the newlines which is neither Unix nor Windows style (Win95 with
436 // riched20.dll shows this behaviour) - convert it to something
440 if ( *p
== _T('\r') )
446 //else: no text at all, leave the string empty
450 #endif // wxUSE_RICHEDIT
452 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
453 // same one as above for consitency
454 wxString str
= wxGetWindowText(GetHWND());
456 return wxTextFile::Translate(str
, wxTextFileType_Unix
);
459 void wxTextCtrl::SetValue(const wxString
& value
)
461 // if the text is long enough, it's faster to just set it instead of first
462 // comparing it with the old one (chances are that it will be different
463 // anyhow, this comparison is there to avoid flicker for small single-line
464 // edit controls mostly)
465 if ( (value
.length() > 0x400) || (value
!= GetValue()) )
467 wxString valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
469 SetWindowText(GetHwnd(), valueDos
.c_str());
471 // for compatibility with the GTK and because it is more logical, we
472 // move the cursor to the end of the text after SetValue()
474 // GRG, Jun/2000: Changed this back after a lot of discussion
475 // in the lists. wxWindows 2.2 will have a set of flags to
476 // customize this behaviour.
477 //SetInsertionPointEnd();
483 void wxTextCtrl::WriteText(const wxString
& value
)
485 wxString valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
488 // ensure that the new text will be in the default style
490 (m_defaultStyle
.HasFont() || m_defaultStyle
.HasTextColour()) )
493 GetSelection(&start
, &end
);
494 SetStyle(start
, end
, m_defaultStyle
);
496 #endif // wxUSE_RICHEDIT
498 SendMessage(GetHwnd(), EM_REPLACESEL
, 0, (LPARAM
)valueDos
.c_str());
503 void wxTextCtrl::AppendText(const wxString
& text
)
505 SetInsertionPointEnd();
509 void wxTextCtrl::Clear()
511 SetWindowText(GetHwnd(), wxT(""));
514 // ----------------------------------------------------------------------------
515 // Clipboard operations
516 // ----------------------------------------------------------------------------
518 void wxTextCtrl::Copy()
522 HWND hWnd
= GetHwnd();
523 SendMessage(hWnd
, WM_COPY
, 0, 0L);
527 void wxTextCtrl::Cut()
531 HWND hWnd
= GetHwnd();
532 SendMessage(hWnd
, WM_CUT
, 0, 0L);
536 void wxTextCtrl::Paste()
540 HWND hWnd
= GetHwnd();
541 SendMessage(hWnd
, WM_PASTE
, 0, 0L);
545 bool wxTextCtrl::CanCopy() const
547 // Can copy if there's a selection
549 GetSelection(& from
, & to
);
550 return (from
!= to
) ;
553 bool wxTextCtrl::CanCut() const
555 // Can cut if there's a selection
557 GetSelection(& from
, & to
);
558 return (from
!= to
) && (IsEditable());
561 bool wxTextCtrl::CanPaste() const
566 int dataFormat
= 0; // 0 == any format
567 return (::SendMessage( GetHwnd(), EM_CANPASTE
, (WPARAM
) (UINT
) dataFormat
, 0) != 0);
573 // Standard edit control: check for straight text on clipboard
574 bool isTextAvailable
= FALSE
;
575 if ( ::OpenClipboard(GetHwndOf(wxTheApp
->GetTopWindow())) )
577 isTextAvailable
= (::IsClipboardFormatAvailable(CF_TEXT
) != 0);
581 return isTextAvailable
;
584 // ----------------------------------------------------------------------------
586 // ----------------------------------------------------------------------------
588 void wxTextCtrl::SetEditable(bool editable
)
590 HWND hWnd
= GetHwnd();
591 SendMessage(hWnd
, EM_SETREADONLY
, (WPARAM
)!editable
, (LPARAM
)0L);
594 void wxTextCtrl::SetInsertionPoint(long pos
)
596 HWND hWnd
= GetHwnd();
604 SendMessage(hWnd
, EM_EXSETSEL
, 0, (LPARAM
) &range
);
605 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
608 #endif // wxUSE_RICHEDIT
610 SendMessage(hWnd
, EM_SETSEL
, pos
, pos
);
611 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
614 SendMessage(hWnd
, EM_SETSEL
, 0, MAKELPARAM(pos
, pos
));
617 static const wxChar
*nothing
= _T("");
618 SendMessage(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)nothing
);
621 void wxTextCtrl::SetInsertionPointEnd()
623 long pos
= GetLastPosition();
624 SetInsertionPoint(pos
);
627 long wxTextCtrl::GetInsertionPoint() const
635 SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &range
);
640 DWORD Pos
= (DWORD
)SendMessage(GetHwnd(), EM_GETSEL
, 0, 0L);
644 long wxTextCtrl::GetLastPosition() const
646 HWND hWnd
= GetHwnd();
648 // Will always return a number > 0 (according to docs)
649 int noLines
= (int)SendMessage(hWnd
, EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0L);
651 // This gets the char index for the _beginning_ of the last line
652 int charIndex
= (int)SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)(noLines
-1), (LPARAM
)0L);
654 // Get number of characters in the last line. We'll add this to the character
655 // index for the last line, 1st position.
656 int lineLength
= (int)SendMessage(hWnd
, EM_LINELENGTH
, (WPARAM
)charIndex
, (LPARAM
)0L);
658 return (long)(charIndex
+ lineLength
);
661 // If the return values from and to are the same, there is no
663 void wxTextCtrl::GetSelection(long* from
, long* to
) const
669 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) (CHARRANGE
*) & charRange
);
671 *from
= charRange
.cpMin
;
672 *to
= charRange
.cpMax
;
677 DWORD dwStart
, dwEnd
;
678 WPARAM wParam
= (WPARAM
) &dwStart
; // receives starting position
679 LPARAM lParam
= (LPARAM
) &dwEnd
; // receives ending position
681 ::SendMessage(GetHwnd(), EM_GETSEL
, wParam
, lParam
);
688 bool wxTextCtrl::IsEditable() const
690 long style
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
692 return ((style
& ES_READONLY
) == 0);
695 // ----------------------------------------------------------------------------
697 // ----------------------------------------------------------------------------
699 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
701 HWND hWnd
= GetHwnd();
702 long fromChar
= from
;
705 // Set selection and remove it
707 SendMessage(hWnd
, EM_SETSEL
, fromChar
, toChar
);
708 SendMessage(hWnd
, EM_REPLACESEL
, (WPARAM
)TRUE
, (LPARAM
)value
.c_str());
710 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)0, (LPARAM
)MAKELONG(fromChar
, toChar
));
711 SendMessage(hWnd
, EM_REPLACESEL
, (WPARAM
)0, (LPARAM
)value
.c_str());
715 void wxTextCtrl::Remove(long from
, long to
)
717 HWND hWnd
= GetHwnd();
718 long fromChar
= from
;
721 // Cut all selected text
723 SendMessage(hWnd
, EM_SETSEL
, fromChar
, toChar
);
724 SendMessage(hWnd
, EM_REPLACESEL
, (WPARAM
)TRUE
, (LPARAM
)"");
726 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)0, (LPARAM
)MAKELONG(fromChar
, toChar
));
727 SendMessage(hWnd
, EM_REPLACESEL
, (WPARAM
)0, (LPARAM
)"");
731 void wxTextCtrl::SetSelection(long from
, long to
)
733 HWND hWnd
= GetHwnd();
734 long fromChar
= from
;
737 // if from and to are both -1, it means (in wxWindows) that all text should
738 // be selected. Translate into Windows convention
739 if ((from
== -1) && (to
== -1))
746 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)fromChar
, (LPARAM
)toChar
);
747 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
749 // WPARAM is 0: selection is scrolled into view
750 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)0, (LPARAM
)MAKELONG(fromChar
, toChar
));
754 bool wxTextCtrl::LoadFile(const wxString
& file
)
756 if ( wxTextCtrlBase::LoadFile(file
) )
758 // update the size limit if needed
767 bool wxTextCtrl::IsModified() const
769 return (SendMessage(GetHwnd(), EM_GETMODIFY
, 0, 0) != 0);
772 // Makes 'unmodified'
773 void wxTextCtrl::DiscardEdits()
775 SendMessage(GetHwnd(), EM_SETMODIFY
, FALSE
, 0L);
778 int wxTextCtrl::GetNumberOfLines() const
780 return (int)SendMessage(GetHwnd(), EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0);
783 long wxTextCtrl::XYToPosition(long x
, long y
) const
785 HWND hWnd
= GetHwnd();
787 // This gets the char index for the _beginning_ of this line
788 int charIndex
= (int)SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)y
, (LPARAM
)0);
789 return (long)(x
+ charIndex
);
792 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
794 HWND hWnd
= GetHwnd();
796 // This gets the line number containing the character
801 lineNo
= (int)SendMessage(hWnd
, EM_EXLINEFROMCHAR
, 0, (LPARAM
)pos
);
804 #endif // wxUSE_RICHEDIT
805 lineNo
= (int)SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, 0);
813 // This gets the char index for the _beginning_ of this line
814 int charIndex
= (int)SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)lineNo
, (LPARAM
)0);
815 if ( charIndex
== -1 )
820 // The X position must therefore be the different between pos and charIndex
822 *x
= (long)(pos
- charIndex
);
829 void wxTextCtrl::ShowPosition(long pos
)
831 HWND hWnd
= GetHwnd();
833 // To scroll to a position, we pass the number of lines and characters
834 // to scroll *by*. This means that we need to:
835 // (1) Find the line position of the current line.
836 // (2) Find the line position of pos.
837 // (3) Scroll by (pos - current).
838 // For now, ignore the horizontal scrolling.
840 // Is this where scrolling is relative to - the line containing the caret?
841 // Or is the first visible line??? Try first visible line.
842 // int currentLineLineNo1 = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L);
844 int currentLineLineNo
= (int)SendMessage(hWnd
, EM_GETFIRSTVISIBLELINE
, (WPARAM
)0, (LPARAM
)0L);
846 int specifiedLineLineNo
= (int)SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, (LPARAM
)0L);
848 int linesToScroll
= specifiedLineLineNo
- currentLineLineNo
;
850 if (linesToScroll
!= 0)
851 (void)SendMessage(hWnd
, EM_LINESCROLL
, (WPARAM
)0, (LPARAM
)linesToScroll
);
854 int wxTextCtrl::GetLineLength(long lineNo
) const
856 long charIndex
= XYToPosition(0, lineNo
);
857 int len
= (int)SendMessage(GetHwnd(), EM_LINELENGTH
, charIndex
, 0);
861 wxString
wxTextCtrl::GetLineText(long lineNo
) const
863 size_t len
= (size_t)GetLineLength(lineNo
) + 1;
865 // there must be at least enough place for the length WORD in the
870 wxChar
*buf
= str
.GetWriteBuf(len
);
872 *(WORD
*)buf
= (WORD
)len
;
873 len
= (size_t)::SendMessage(GetHwnd(), EM_GETLINE
, lineNo
, (LPARAM
)buf
);
876 str
.UngetWriteBuf(len
);
881 void wxTextCtrl::SetMaxLength(unsigned long len
)
883 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, len
, 0);
886 // ----------------------------------------------------------------------------
888 // ----------------------------------------------------------------------------
890 void wxTextCtrl::Undo()
894 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
898 void wxTextCtrl::Redo()
902 // Same as Undo, since Undo undoes the undo, i.e. a redo.
903 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
907 bool wxTextCtrl::CanUndo() const
909 return (::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0);
912 bool wxTextCtrl::CanRedo() const
914 return (::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0);
917 // ----------------------------------------------------------------------------
918 // implemenation details
919 // ----------------------------------------------------------------------------
921 void wxTextCtrl::Command(wxCommandEvent
& event
)
923 SetValue(event
.GetString());
924 ProcessCommand (event
);
927 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
929 // By default, load the first file into the text window.
930 if (event
.GetNumberOfFiles() > 0)
932 LoadFile(event
.GetFiles()[0]);
936 // ----------------------------------------------------------------------------
937 // kbd input processing
938 // ----------------------------------------------------------------------------
940 bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG
* pMsg
)
942 MSG
*msg
= (MSG
*)pMsg
;
944 // check for our special keys here: if we don't do it and the parent frame
945 // uses them as accelerators, they wouldn't work at all, so we disable
946 // usual preprocessing for them
947 if ( msg
->message
== WM_KEYDOWN
)
949 WORD vkey
= msg
->wParam
;
950 if ( (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
952 if ( vkey
== VK_BACK
)
957 if ( wxIsCtrlDown() )
971 else if ( wxIsShiftDown() )
973 if ( vkey
== VK_INSERT
|| vkey
== VK_DELETE
)
979 return wxControl::MSWShouldPreProcessMessage(pMsg
);
982 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
984 switch ( event
.KeyCode() )
987 if ( !(m_windowStyle
& wxTE_MULTILINE
) )
989 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
990 InitCommandEvent(event
);
991 event
.SetString(GetValue());
992 if ( GetEventHandler()->ProcessEvent(event
) )
995 //else: multiline controls need Enter for themselves
1000 // always produce navigation event - even if we process TAB
1001 // ourselves the fact that we got here means that the user code
1002 // decided to skip processing of this TAB - probably to let it
1003 // do its default job.
1005 wxNavigationKeyEvent eventNav
;
1006 eventNav
.SetDirection(!event
.ShiftDown());
1007 eventNav
.SetWindowChange(event
.ControlDown());
1008 eventNav
.SetEventObject(this);
1010 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav
) )
1016 // no, we didn't process it
1020 bool wxTextCtrl::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
1027 wxFocusEvent
event(param
== EN_KILLFOCUS
? wxEVT_KILL_FOCUS
1030 event
.SetEventObject( this );
1031 GetEventHandler()->ProcessEvent(event
);
1037 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, m_windowId
);
1038 InitCommandEvent(event
);
1039 event
.SetString(GetValue());
1040 ProcessCommand(event
);
1045 // the text size limit has been hit - increase it
1046 if ( !AdjustSpaceLimit() )
1048 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, m_windowId
);
1049 InitCommandEvent(event
);
1050 event
.SetString(GetValue());
1051 ProcessCommand(event
);
1055 // the other notification messages are not processed
1069 WXHBRUSH
wxTextCtrl::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
1075 WXUINT
WXUNUSED(message
),
1076 WXWPARAM
WXUNUSED(wParam
),
1077 WXLPARAM
WXUNUSED(lParam
)
1084 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
1085 return (WXHBRUSH
) hbrush
;
1087 #endif // wxUSE_CTL3D
1090 if (GetParent()->GetTransparentBackground())
1091 SetBkMode(hdc
, TRANSPARENT
);
1093 SetBkMode(hdc
, OPAQUE
);
1095 wxColour colBack
= GetBackgroundColour();
1097 if (!IsEnabled() && (GetWindowStyle() & wxTE_MULTILINE
) == 0)
1098 colBack
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
);
1100 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
1101 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
1103 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
1105 return (WXHBRUSH
)brush
->GetResourceHandle();
1108 // In WIN16, need to override normal erasing because
1109 // Ctl3D doesn't use the wxWindows background colour.
1111 void wxTextCtrl::OnEraseBackground(wxEraseEvent
& event
)
1113 wxColour
col(m_backgroundColour
);
1117 col
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
);
1121 ::GetClientRect(GetHwnd(), &rect
);
1123 COLORREF ref
= PALETTERGB(col
.Red(),
1126 HBRUSH hBrush
= ::CreateSolidBrush(ref
);
1128 wxLogLastError(wxT("CreateSolidBrush"));
1130 HDC hdc
= (HDC
)event
.GetDC()->GetHDC();
1132 int mode
= ::SetMapMode(hdc
, MM_TEXT
);
1134 ::FillRect(hdc
, &rect
, hBrush
);
1135 ::DeleteObject(hBrush
);
1136 ::SetMapMode(hdc
, mode
);
1141 bool wxTextCtrl::AdjustSpaceLimit()
1144 unsigned int limit
= ::SendMessage(GetHwnd(), EM_GETLIMITTEXT
, 0, 0);
1146 // HACK: we try to automatically extend the limit for the amount of text
1147 // to allow (interactively) entering more than 64Kb of text under
1148 // Win9x but we shouldn't reset the text limit which was previously
1149 // set explicitly with SetMaxLength()
1151 // we could solve this by storing the limit we set in wxTextCtrl but
1152 // to save space we prefer to simply test here the actual limit
1153 // value: we consider that SetMaxLength() can only be called for
1155 if ( limit
< 0x8000 )
1157 // we've got more text than limit set by SetMaxLength()
1161 unsigned int len
= ::GetWindowTextLength(GetHwnd());
1164 limit
= len
+ 0x8000; // 32Kb
1169 // as a nice side effect, this also allows passing limit > 64Kb
1170 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, limit
);
1173 #endif // wxUSE_RICHEDIT
1175 if ( limit
> 0xffff )
1177 // this will set it to a platform-dependent maximum (much more
1178 // than 64Kb under NT)
1182 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, limit
, 0);
1187 // we changed the limit
1191 bool wxTextCtrl::AcceptsFocus() const
1193 // we don't want focus if we can't be edited
1194 return IsEditable() && wxControl::AcceptsFocus();
1197 wxSize
wxTextCtrl::DoGetBestSize() const
1200 wxGetCharSize(GetHWND(), &cx
, &cy
, &GetFont());
1202 int wText
= DEFAULT_ITEM_WIDTH
;
1204 int hText
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
1205 if ( m_windowStyle
& wxTE_MULTILINE
)
1207 hText
*= wxMax(GetNumberOfLines(), 5);
1209 //else: for single line control everything is ok
1211 return wxSize(wText
, hText
);
1214 // ----------------------------------------------------------------------------
1215 // standard handlers for standard edit menu events
1216 // ----------------------------------------------------------------------------
1218 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1223 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1228 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1233 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1238 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1243 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1245 event
.Enable( CanCut() );
1248 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1250 event
.Enable( CanCopy() );
1253 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1255 event
.Enable( CanPaste() );
1258 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1260 event
.Enable( CanUndo() );
1263 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1265 event
.Enable( CanRedo() );
1268 // the rest of the file only deals with the rich edit controls
1271 // ----------------------------------------------------------------------------
1272 // EN_LINK processing
1273 // ----------------------------------------------------------------------------
1275 bool wxTextCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1277 NMHDR
*hdr
= (NMHDR
* )lParam
;
1278 if ( hdr
->code
== EN_LINK
)
1280 ENLINK
*enlink
= (ENLINK
*)hdr
;
1282 switch ( enlink
->msg
)
1285 // ok, so it is hardcoded - do we really nee to customize it?
1286 ::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND
)));
1291 case WM_LBUTTONDOWN
:
1293 case WM_LBUTTONDBLCLK
:
1294 case WM_RBUTTONDOWN
:
1296 case WM_RBUTTONDBLCLK
:
1297 // send a mouse event
1299 static const wxEventType eventsMouse
[] =
1310 // the event ids are consecutive
1312 evtMouse(eventsMouse
[enlink
->msg
- WM_MOUSEMOVE
]);
1314 InitMouseEvent(evtMouse
,
1315 GET_X_LPARAM(enlink
->lParam
),
1316 GET_Y_LPARAM(enlink
->lParam
),
1319 wxTextUrlEvent
event(m_windowId
, evtMouse
,
1321 enlink
->chrg
.cpMax
);
1323 InitCommandEvent(event
);
1325 *result
= ProcessCommand(event
);
1337 // ----------------------------------------------------------------------------
1338 // colour setting for the rich edit controls
1339 // ----------------------------------------------------------------------------
1341 // Watcom C++ doesn't define this
1343 #define SCF_ALL 0x0004
1346 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
1348 if ( !wxTextCtrlBase::SetBackgroundColour(colour
) )
1350 // colour didn't really change
1356 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
1357 // EM_SETBKGNDCOLOR additionally
1358 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR
, 0, wxColourToRGB(colour
));
1364 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1366 if ( !wxTextCtrlBase::SetForegroundColour(colour
) )
1368 // colour didn't really change
1374 // change the colour of everything
1377 cf
.cbSize
= sizeof(cf
);
1378 cf
.dwMask
= CFM_COLOR
;
1379 cf
.crTextColor
= wxColourToRGB(colour
);
1380 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
, SCF_ALL
, (LPARAM
)&cf
);
1386 // ----------------------------------------------------------------------------
1387 // styling support for rich edit controls
1388 // ----------------------------------------------------------------------------
1390 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
1394 // can't do it with normal text control
1398 // the rich text control doesn't handle setting background colour, so don't
1399 // even try if it's the only thing we want to change
1400 if ( wxRichEditModule::GetLoadedVersion() < 2 &&
1401 !style
.HasFont() && !style
.HasTextColour() )
1403 // nothing to do: return TRUE if there was really nothing to do and
1404 // FALSE if we failed to set bg colour
1405 return !style
.HasBackgroundColour();
1408 // order the range if needed
1416 // we can only change the format of the selection, so select the range we
1417 // want and restore the old selection later
1418 long startOld
, endOld
;
1419 GetSelection(&startOld
, &endOld
);
1421 // but do we really have to change the selection?
1422 bool changeSel
= start
!= startOld
|| end
!= endOld
;
1425 SendMessage(GetHwnd(), EM_SETSEL
, (WPARAM
) start
, (LPARAM
) end
);
1427 // initialize CHARFORMAT struct
1434 cf
.cbSize
= sizeof(cf
);
1436 if ( style
.HasFont() )
1438 cf
.dwMask
|= CFM_FACE
| CFM_SIZE
| CFM_CHARSET
|
1439 CFM_ITALIC
| CFM_BOLD
| CFM_UNDERLINE
;
1441 // fill in data from LOGFONT but recalculate lfHeight because we need
1442 // the real height in twips and not the negative number which
1443 // wxFillLogFont() returns (this is correct in general and works with
1444 // the Windows font mapper, but not here)
1446 wxFillLogFont(&lf
, &style
.GetFont());
1447 cf
.yHeight
= 20*style
.GetFont().GetPointSize(); // 1 pt = 20 twips
1448 cf
.bCharSet
= lf
.lfCharSet
;
1449 cf
.bPitchAndFamily
= lf
.lfPitchAndFamily
;
1450 wxStrncpy( cf
.szFaceName
, lf
.lfFaceName
, WXSIZEOF(cf
.szFaceName
) );
1452 // also deal with underline/italic/bold attributes: note that we must
1453 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
1454 // style to allow clearing it
1457 cf
.dwEffects
|= CFE_ITALIC
;
1460 if ( lf
.lfWeight
== FW_BOLD
)
1462 cf
.dwEffects
|= CFE_BOLD
;
1465 if ( lf
.lfUnderline
)
1467 cf
.dwEffects
|= CFE_UNDERLINE
;
1470 // strikeout fonts are not supported by wxWindows
1473 if ( style
.HasTextColour() )
1475 cf
.dwMask
|= CFM_COLOR
;
1476 cf
.crTextColor
= wxColourToRGB(style
.GetTextColour());
1480 if ( wxRichEditModule::GetLoadedVersion() > 1 && style
.HasBackgroundColour() )
1482 cf
.dwMask
|= CFM_BACKCOLOR
;
1483 cf
.crBackColor
= wxColourToRGB(style
.GetBackgroundColour());
1485 #endif // wxUSE_RICHEDIT2
1487 // do format the selection
1488 bool ok
= ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
,
1489 SCF_SELECTION
, (LPARAM
)&cf
) != 0;
1492 wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed"));
1497 // restore the original selection
1498 SendMessage(GetHwnd(), EM_SETSEL
, (WPARAM
)startOld
, (LPARAM
)endOld
);
1504 // ----------------------------------------------------------------------------
1506 // ----------------------------------------------------------------------------
1508 bool wxRichEditModule::OnInit()
1510 // don't do anything - we will load it when needed
1514 void wxRichEditModule::OnExit()
1518 FreeLibrary(ms_hRichEdit
);
1523 bool wxRichEditModule::Load(int version
)
1525 wxCHECK_MSG( version
>= 1 && version
<= 3, FALSE
,
1526 _T("incorrect richedit control version requested") );
1528 if ( version
<= ms_verRichEdit
)
1530 // we've already got this or better
1536 ::FreeLibrary(ms_hRichEdit
);
1539 // always try load riched20.dll first - like this we won't have to reload
1540 // it later if we're first asked for RE 1 and then for RE 2 or 3
1541 wxString dllname
= _T("riched20.dll");
1542 ms_hRichEdit
= ::LoadLibrary(dllname
);
1543 ms_verRichEdit
= 2; // no way to tell if it's 2 or 3, assume 2
1545 if ( !ms_hRichEdit
&& (version
== 1) )
1547 // fall back to RE 1
1548 dllname
= _T("riched32.dll");
1549 ms_hRichEdit
= ::LoadLibrary(dllname
);
1553 if ( !ms_hRichEdit
)
1555 wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname
.c_str());
1557 ms_verRichEdit
= -1;
1565 #endif // wxUSE_RICHEDIT
1567 #endif // wxUSE_TEXTCTRL