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 DWORD CALLBACK
wxRichEditStreamIn(DWORD dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
);
102 #endif // wxUSE_RICHEDIT
104 // ----------------------------------------------------------------------------
106 // ----------------------------------------------------------------------------
110 // this module initializes RichEdit DLL if needed
111 class wxRichEditModule
: public wxModule
114 virtual bool OnInit();
115 virtual void OnExit();
117 // get the version currently loaded, -1 if none
118 static int GetLoadedVersion() { return ms_verRichEdit
; }
120 // load the richedit DLL of at least of required version
121 static bool Load(int version
= 1);
124 // the handle to richedit DLL and the version of the DLL loaded
125 static HINSTANCE ms_hRichEdit
;
127 // the DLL version loaded or -1 if none
128 static int ms_verRichEdit
;
130 DECLARE_DYNAMIC_CLASS(wxRichEditModule
)
133 HINSTANCE
wxRichEditModule::ms_hRichEdit
= (HINSTANCE
)NULL
;
134 int wxRichEditModule::ms_verRichEdit
= -1;
136 IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule
, wxModule
)
138 #endif // wxUSE_RICHEDIT
140 // ----------------------------------------------------------------------------
141 // event tables and other macros
142 // ----------------------------------------------------------------------------
144 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxControl
)
146 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
147 EVT_CHAR(wxTextCtrl::OnChar
)
148 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
150 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
151 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
152 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
153 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
154 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
156 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
157 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
158 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
159 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
160 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
162 EVT_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground
)
166 // ============================================================================
168 // ============================================================================
170 // ----------------------------------------------------------------------------
172 // ----------------------------------------------------------------------------
174 void wxTextCtrl::Init()
181 bool wxTextCtrl::Create(wxWindow
*parent
, wxWindowID id
,
182 const wxString
& value
,
186 const wxValidator
& validator
,
187 const wxString
& name
)
189 // base initialization
190 if ( !CreateBase(parent
, id
, pos
, size
, style
, validator
, name
) )
194 parent
->AddChild(this);
196 // translate wxWin style flags to MSW ones, checking for consistency while
198 long msStyle
= ES_LEFT
| WS_TABSTOP
;
200 if ( m_windowStyle
& wxCLIP_SIBLINGS
)
201 msStyle
|= WS_CLIPSIBLINGS
;
203 if ( m_windowStyle
& wxTE_MULTILINE
)
205 wxASSERT_MSG( !(m_windowStyle
& wxTE_PROCESS_ENTER
),
206 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
208 msStyle
|= ES_MULTILINE
| ES_WANTRETURN
;
209 if ((m_windowStyle
& wxTE_NO_VSCROLL
) == 0)
210 msStyle
|= WS_VSCROLL
;
211 m_windowStyle
|= wxTE_PROCESS_ENTER
;
215 // there is really no reason to not have this style for single line
217 msStyle
|= ES_AUTOHSCROLL
;
220 if ( m_windowStyle
& wxHSCROLL
)
221 msStyle
|= WS_HSCROLL
| ES_AUTOHSCROLL
;
223 if ( m_windowStyle
& wxTE_READONLY
)
224 msStyle
|= ES_READONLY
;
226 if ( m_windowStyle
& wxTE_PASSWORD
)
227 msStyle
|= ES_PASSWORD
;
229 if ( m_windowStyle
& wxTE_AUTO_SCROLL
)
230 msStyle
|= ES_AUTOHSCROLL
;
232 if ( m_windowStyle
& wxTE_NOHIDESEL
)
233 msStyle
|= ES_NOHIDESEL
;
235 // we always want the characters and the arrows
236 m_lDlgCode
= DLGC_WANTCHARS
| DLGC_WANTARROWS
;
238 // we may have several different cases:
239 // 1. normal case: both TAB and ENTER are used for dialog navigation
240 // 2. ctrl which wants TAB for itself: ENTER is used to pass to the next
241 // control in the dialog
242 // 3. ctrl which wants ENTER for itself: TAB is used for dialog navigation
243 // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to pass to
245 if ( m_windowStyle
& wxTE_PROCESS_ENTER
)
246 m_lDlgCode
|= DLGC_WANTMESSAGE
;
247 if ( m_windowStyle
& wxTE_PROCESS_TAB
)
248 m_lDlgCode
|= DLGC_WANTTAB
;
250 // do create the control - either an EDIT or RICHEDIT
251 wxString windowClass
= wxT("EDIT");
254 if ( m_windowStyle
& wxTE_RICH
)
256 static bool s_errorGiven
= FALSE
; // MT-FIXME
258 // only give the error msg once if the DLL can't be loaded
261 // first try to load the RichEdit DLL (will do nothing if already
263 if ( !wxRichEditModule::Load() )
265 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
273 msStyle
|= ES_AUTOVSCROLL
;
275 m_verRichEdit
= wxRichEditModule::GetLoadedVersion();
276 if ( m_verRichEdit
== 1 )
278 windowClass
= wxT("RICHEDIT");
282 #ifndef RICHEDIT_CLASS
283 wxString RICHEDIT_CLASS
;
284 RICHEDIT_CLASS
.Printf(_T("RichEdit%d0"), m_verRichEdit
);
286 RICHEDIT_CLASS
+= _T('W');
288 RICHEDIT_CLASS
+= _T('A');
289 #endif // Unicode/ANSI
290 #endif // !RICHEDIT_CLASS
292 windowClass
= RICHEDIT_CLASS
;
296 #endif // wxUSE_RICHEDIT
298 // we need to turn '\n's into "\r\n"s for the multiline controls
300 if ( m_windowStyle
& wxTE_MULTILINE
)
302 valueWin
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
309 if ( !MSWCreateControl(windowClass
, msStyle
, pos
, size
, valueWin
) )
312 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
));
317 // have to enable events manually
318 LPARAM mask
= ENM_CHANGE
| ENM_DROPFILES
| ENM_SELCHANGE
| ENM_UPDATE
;
320 if ( m_windowStyle
& wxTE_AUTO_URL
)
324 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT
, TRUE
, 0);
327 ::SendMessage(GetHwnd(), EM_SETEVENTMASK
, 0, mask
);
329 #endif // wxUSE_RICHEDIT
334 // Make sure the window style (etc.) reflects the HWND style (roughly)
335 void wxTextCtrl::AdoptAttributesFromHWND()
337 wxWindow::AdoptAttributesFromHWND();
339 HWND hWnd
= GetHwnd();
340 long style
= ::GetWindowLong(hWnd
, GWL_STYLE
);
342 // retrieve the style to see whether this is an edit or richedit ctrl
344 wxString classname
= wxGetWindowClass(GetHWND());
346 if ( classname
.IsSameAs(_T("EDIT"), FALSE
/* no case */) )
353 if ( wxSscanf(classname
, _T("RichEdit%d0%c"), &m_verRichEdit
, &c
) != 2 )
355 wxLogDebug(_T("Unknown edit control '%s'."), classname
.c_str());
360 #endif // wxUSE_RICHEDIT
362 if (style
& ES_MULTILINE
)
363 m_windowStyle
|= wxTE_MULTILINE
;
364 if (style
& ES_PASSWORD
)
365 m_windowStyle
|= wxTE_PASSWORD
;
366 if (style
& ES_READONLY
)
367 m_windowStyle
|= wxTE_READONLY
;
368 if (style
& ES_WANTRETURN
)
369 m_windowStyle
|= wxTE_PROCESS_ENTER
;
372 // ----------------------------------------------------------------------------
373 // set/get the controls text
374 // ----------------------------------------------------------------------------
376 wxString
wxTextCtrl::GetValue() const
378 // we can't use wxGetWindowText() (i.e. WM_GETTEXT internally) for
379 // retrieving more than 64Kb under Win9x
385 int len
= GetWindowTextLength(GetHwnd());
388 // alloc one extra WORD as needed by the control
389 wxChar
*p
= str
.GetWriteBuf(++len
);
392 textRange
.chrg
.cpMin
= 0;
393 textRange
.chrg
.cpMax
= -1;
394 textRange
.lpstrText
= p
;
396 (void)SendMessage(GetHwnd(), EM_GETTEXTRANGE
, 0, (LPARAM
)&textRange
);
398 // believe it or not, but EM_GETTEXTRANGE uses just CR ('\r') for
399 // the newlines which is neither Unix nor Windows style (Win95 with
400 // riched20.dll shows this behaviour) - convert it to something
404 if ( *p
== _T('\r') )
410 //else: no text at all, leave the string empty
414 #endif // wxUSE_RICHEDIT
416 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
417 // same one as above for consitency
418 wxString str
= wxGetWindowText(GetHWND());
420 return wxTextFile::Translate(str
, wxTextFileType_Unix
);
423 void wxTextCtrl::SetValue(const wxString
& value
)
425 // if the text is long enough, it's faster to just set it instead of first
426 // comparing it with the old one (chances are that it will be different
427 // anyhow, this comparison is there to avoid flicker for small single-line
428 // edit controls mostly)
429 if ( (value
.length() > 0x400) || (value
!= GetValue()) )
431 // it is simpler to do this but it could be more efficient to reproduce
432 // WriteText() logic here
437 // for compatibility, don't move the cursor when doing SetValue()
438 SetInsertionPoint(0);
444 DWORD CALLBACK
wxRichEditStreamIn(DWORD dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
448 wchar_t *wbuf
= (wchar_t *)buf
;
449 const wchar_t *wpc
= *(const wchar_t **)dwCookie
;
454 cb
-= sizeof(wchar_t);
455 (*pcb
) += sizeof(wchar_t);
458 *(const wchar_t **)dwCookie
= wpc
;
463 extern long wxEncodingToCodepage(wxFontEncoding encoding
); // from strconv.cpp
465 bool wxTextCtrl::StreamIn(const wxString
& value
, wxFontEncoding encoding
)
467 // we have to use EM_STREAMIN to force richedit control 2.0+ to show any
468 // text in the non default charset - otherwise it thinks it knows better
469 // than we do and always shows it in the default one
471 // first get the Windows code page for this encoding
472 long codepage
= wxEncodingToCodepage(encoding
);
473 if ( codepage
== -1 )
479 // next translate to Unicode using this code page
480 int len
= ::MultiByteToWideChar(codepage
, 0, value
, -1, NULL
, 0);
481 wxWCharBuffer
wchBuf(len
);
482 if ( !::MultiByteToWideChar(codepage
, 0, value
, -1,
483 (wchar_t *)wchBuf
.data(), len
) )
485 wxLogLastError(_T("MultiByteToWideChar"));
488 // finally, stream it in the control
489 const wchar_t *wpc
= wchBuf
;
493 eds
.dwCookie
= (DWORD
)&wpc
;
494 eds
.pfnCallback
= wxRichEditStreamIn
;
496 if ( !::SendMessage(GetHwnd(), EM_STREAMIN
,
497 SF_TEXT
| SF_UNICODE
| SFF_SELECTION
,
498 (LPARAM
)&eds
) || eds
.dwError
)
500 wxLogLastError(_T("EM_STREAMIN"));
508 #endif // wxUSE_RICHEDIT
510 void wxTextCtrl::WriteText(const wxString
& value
)
512 wxString valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
515 // there are several complications with the rich edit controls here
519 // first, ensure that the new text will be in the default style
520 if ( !m_defaultStyle
.IsDefault() )
523 GetSelection(&start
, &end
);
524 SetStyle(start
, end
, m_defaultStyle
);
527 // next check if the text we're inserting must be shown in a non
528 // default charset -- this only works for RichEdit > 1.0
529 if ( GetRichVersion() > 1 )
531 wxFont font
= m_defaultStyle
.GetFont();
537 wxFontEncoding encoding
= font
.GetEncoding();
538 if ( encoding
!= wxFONTENCODING_SYSTEM
)
540 done
= StreamIn(valueDos
, encoding
);
547 #endif // wxUSE_RICHEDIT
549 ::SendMessage(GetHwnd(), EM_REPLACESEL
, 0, (LPARAM
)valueDos
.c_str());
555 void wxTextCtrl::AppendText(const wxString
& text
)
557 SetInsertionPointEnd();
562 void wxTextCtrl::Clear()
564 ::SetWindowText(GetHwnd(), wxT(""));
567 // ----------------------------------------------------------------------------
568 // Clipboard operations
569 // ----------------------------------------------------------------------------
571 void wxTextCtrl::Copy()
575 HWND hWnd
= GetHwnd();
576 SendMessage(hWnd
, WM_COPY
, 0, 0L);
580 void wxTextCtrl::Cut()
584 HWND hWnd
= GetHwnd();
585 SendMessage(hWnd
, WM_CUT
, 0, 0L);
589 void wxTextCtrl::Paste()
593 HWND hWnd
= GetHwnd();
594 SendMessage(hWnd
, WM_PASTE
, 0, 0L);
598 bool wxTextCtrl::CanCopy() const
600 // Can copy if there's a selection
602 GetSelection(& from
, & to
);
603 return (from
!= to
) ;
606 bool wxTextCtrl::CanCut() const
608 // Can cut if there's a selection
610 GetSelection(& from
, & to
);
611 return (from
!= to
) && (IsEditable());
614 bool wxTextCtrl::CanPaste() const
622 UINT cf
= 0; // 0 == any format
624 return ::SendMessage(GetHwnd(), EM_CANPASTE
, cf
, 0) != 0;
626 #endif // wxUSE_RICHEDIT
628 // Standard edit control: check for straight text on clipboard
629 if ( !::OpenClipboard(GetHwndOf(wxTheApp
->GetTopWindow())) )
632 bool isTextAvailable
= ::IsClipboardFormatAvailable(CF_TEXT
) != 0;
635 return isTextAvailable
;
638 // ----------------------------------------------------------------------------
640 // ----------------------------------------------------------------------------
642 void wxTextCtrl::SetEditable(bool editable
)
644 HWND hWnd
= GetHwnd();
645 SendMessage(hWnd
, EM_SETREADONLY
, (WPARAM
)!editable
, (LPARAM
)0L);
648 void wxTextCtrl::SetInsertionPoint(long pos
)
650 SetSelection(pos
, pos
);
656 static const wxChar
*nothing
= _T("");
657 SendMessage(GetHwnd(), EM_REPLACESEL
, 0, (LPARAM
)nothing
);
661 void wxTextCtrl::SetInsertionPointEnd()
663 long pos
= GetLastPosition();
664 SetInsertionPoint(pos
);
667 long wxTextCtrl::GetInsertionPoint() const
675 SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &range
);
678 #endif // wxUSE_RICHEDIT
680 DWORD Pos
= (DWORD
)SendMessage(GetHwnd(), EM_GETSEL
, 0, 0L);
684 long wxTextCtrl::GetLastPosition() const
686 HWND hWnd
= GetHwnd();
688 // Will always return a number > 0 (according to docs)
689 int noLines
= (int)SendMessage(hWnd
, EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0L);
691 // This gets the char index for the _beginning_ of the last line
692 int charIndex
= (int)SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)(noLines
-1), (LPARAM
)0L);
694 // Get number of characters in the last line. We'll add this to the character
695 // index for the last line, 1st position.
696 int lineLength
= (int)SendMessage(hWnd
, EM_LINELENGTH
, (WPARAM
)charIndex
, (LPARAM
)0L);
698 return (long)(charIndex
+ lineLength
);
701 // If the return values from and to are the same, there is no
703 void wxTextCtrl::GetSelection(long* from
, long* to
) const
709 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &charRange
);
711 *from
= charRange
.cpMin
;
712 *to
= charRange
.cpMax
;
715 #endif // !wxUSE_RICHEDIT
717 DWORD dwStart
, dwEnd
;
718 ::SendMessage(GetHwnd(), EM_GETSEL
, (WPARAM
)&dwStart
, (LPARAM
)&dwEnd
);
725 wxString
wxTextCtrl::GetStringSelection() const
727 // the base class version works correctly for the rich text controls
728 // because there the lines are terminated with just '\r' which means that
729 // the string length is not changed in the result of the translations doen
730 // in GetValue() but for the normal ones when we replace "\r\n" with '\n'
731 // we break the indices
734 return wxTextCtrlBase::GetStringSelection();
735 #endif // wxUSE_RICHEDIT
738 GetSelection(&from
, &to
);
743 str
= wxGetWindowText(GetHWND()).Mid(from
, to
- from
);
745 // and now that we have the correct selection, convert it to the
747 str
= wxTextFile::Translate(str
, wxTextFileType_Unix
);
753 bool wxTextCtrl::IsEditable() const
755 long style
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
757 return ((style
& ES_READONLY
) == 0);
760 // ----------------------------------------------------------------------------
762 // ----------------------------------------------------------------------------
764 void wxTextCtrl::SetSelection(long from
, long to
)
766 DoSetSelection(from
, to
);
769 void wxTextCtrl::DoSetSelection(long from
, long to
, bool scrollCaret
)
771 // if from and to are both -1, it means (in wxWindows) that all text should
772 // be selected - translate into Windows convention
773 if ( (from
== -1) && (to
== -1) )
779 HWND hWnd
= GetHwnd();
788 SendMessage(hWnd
, EM_EXSETSEL
, 0, (LPARAM
) &range
);
791 #endif // wxUSE_RICHEDIT
793 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)from
, (LPARAM
)to
);
798 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
801 // WPARAM is 0: selection is scrolled into view
802 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)0, (LPARAM
)MAKELONG(from
, to
));
806 // ----------------------------------------------------------------------------
808 // ----------------------------------------------------------------------------
810 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
812 // Set selection and remove it
813 DoSetSelection(from
, to
, FALSE
);
815 SendMessage(GetHwnd(), EM_REPLACESEL
,
821 (LPARAM
)value
.c_str());
824 void wxTextCtrl::Remove(long from
, long to
)
826 Replace(from
, to
, _T(""));
829 bool wxTextCtrl::LoadFile(const wxString
& file
)
831 if ( wxTextCtrlBase::LoadFile(file
) )
833 // update the size limit if needed
842 bool wxTextCtrl::IsModified() const
844 return (SendMessage(GetHwnd(), EM_GETMODIFY
, 0, 0) != 0);
847 // Makes 'unmodified'
848 void wxTextCtrl::DiscardEdits()
850 SendMessage(GetHwnd(), EM_SETMODIFY
, FALSE
, 0L);
853 int wxTextCtrl::GetNumberOfLines() const
855 return (int)SendMessage(GetHwnd(), EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0);
858 long wxTextCtrl::XYToPosition(long x
, long y
) const
860 HWND hWnd
= GetHwnd();
862 // This gets the char index for the _beginning_ of this line
863 int charIndex
= (int)SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)y
, (LPARAM
)0);
864 return (long)(x
+ charIndex
);
867 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
869 HWND hWnd
= GetHwnd();
871 // This gets the line number containing the character
876 lineNo
= (int)SendMessage(hWnd
, EM_EXLINEFROMCHAR
, 0, (LPARAM
)pos
);
879 #endif // wxUSE_RICHEDIT
880 lineNo
= (int)SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, 0);
888 // This gets the char index for the _beginning_ of this line
889 int charIndex
= (int)SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)lineNo
, (LPARAM
)0);
890 if ( charIndex
== -1 )
895 // The X position must therefore be the different between pos and charIndex
897 *x
= (long)(pos
- charIndex
);
904 void wxTextCtrl::ShowPosition(long pos
)
906 HWND hWnd
= GetHwnd();
908 // To scroll to a position, we pass the number of lines and characters
909 // to scroll *by*. This means that we need to:
910 // (1) Find the line position of the current line.
911 // (2) Find the line position of pos.
912 // (3) Scroll by (pos - current).
913 // For now, ignore the horizontal scrolling.
915 // Is this where scrolling is relative to - the line containing the caret?
916 // Or is the first visible line??? Try first visible line.
917 // int currentLineLineNo1 = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L);
919 int currentLineLineNo
= (int)SendMessage(hWnd
, EM_GETFIRSTVISIBLELINE
, (WPARAM
)0, (LPARAM
)0L);
921 int specifiedLineLineNo
= (int)SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, (LPARAM
)0L);
923 int linesToScroll
= specifiedLineLineNo
- currentLineLineNo
;
925 if (linesToScroll
!= 0)
926 (void)SendMessage(hWnd
, EM_LINESCROLL
, (WPARAM
)0, (LPARAM
)linesToScroll
);
929 int wxTextCtrl::GetLineLength(long lineNo
) const
931 long charIndex
= XYToPosition(0, lineNo
);
932 int len
= (int)SendMessage(GetHwnd(), EM_LINELENGTH
, charIndex
, 0);
936 wxString
wxTextCtrl::GetLineText(long lineNo
) const
938 size_t len
= (size_t)GetLineLength(lineNo
) + 1;
940 // there must be at least enough place for the length WORD in the
945 wxChar
*buf
= str
.GetWriteBuf(len
);
947 *(WORD
*)buf
= (WORD
)len
;
948 len
= (size_t)::SendMessage(GetHwnd(), EM_GETLINE
, lineNo
, (LPARAM
)buf
);
951 str
.UngetWriteBuf(len
);
956 void wxTextCtrl::SetMaxLength(unsigned long len
)
958 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, len
, 0);
961 // ----------------------------------------------------------------------------
963 // ----------------------------------------------------------------------------
965 void wxTextCtrl::Undo()
969 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
973 void wxTextCtrl::Redo()
977 // Same as Undo, since Undo undoes the undo, i.e. a redo.
978 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
982 bool wxTextCtrl::CanUndo() const
984 return (::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0);
987 bool wxTextCtrl::CanRedo() const
989 return (::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0);
992 // ----------------------------------------------------------------------------
993 // implemenation details
994 // ----------------------------------------------------------------------------
996 void wxTextCtrl::Command(wxCommandEvent
& event
)
998 SetValue(event
.GetString());
999 ProcessCommand (event
);
1002 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
1004 // By default, load the first file into the text window.
1005 if (event
.GetNumberOfFiles() > 0)
1007 LoadFile(event
.GetFiles()[0]);
1011 // ----------------------------------------------------------------------------
1012 // kbd input processing
1013 // ----------------------------------------------------------------------------
1015 bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG
* pMsg
)
1017 MSG
*msg
= (MSG
*)pMsg
;
1019 // check for our special keys here: if we don't do it and the parent frame
1020 // uses them as accelerators, they wouldn't work at all, so we disable
1021 // usual preprocessing for them
1022 if ( msg
->message
== WM_KEYDOWN
)
1024 WORD vkey
= msg
->wParam
;
1025 if ( (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
1027 if ( vkey
== VK_BACK
)
1032 if ( wxIsCtrlDown() )
1046 else if ( wxIsShiftDown() )
1048 if ( vkey
== VK_INSERT
|| vkey
== VK_DELETE
)
1054 return wxControl::MSWShouldPreProcessMessage(pMsg
);
1057 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
1059 switch ( event
.KeyCode() )
1062 if ( !(m_windowStyle
& wxTE_MULTILINE
) )
1064 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
1065 InitCommandEvent(event
);
1066 event
.SetString(GetValue());
1067 if ( GetEventHandler()->ProcessEvent(event
) )
1070 //else: multiline controls need Enter for themselves
1075 // always produce navigation event - even if we process TAB
1076 // ourselves the fact that we got here means that the user code
1077 // decided to skip processing of this TAB - probably to let it
1078 // do its default job.
1080 wxNavigationKeyEvent eventNav
;
1081 eventNav
.SetDirection(!event
.ShiftDown());
1082 eventNav
.SetWindowChange(event
.ControlDown());
1083 eventNav
.SetEventObject(this);
1085 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav
) )
1091 // no, we didn't process it
1095 bool wxTextCtrl::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
1102 wxFocusEvent
event(param
== EN_KILLFOCUS
? wxEVT_KILL_FOCUS
1105 event
.SetEventObject( this );
1106 GetEventHandler()->ProcessEvent(event
);
1112 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, m_windowId
);
1113 InitCommandEvent(event
);
1114 event
.SetString(GetValue());
1115 ProcessCommand(event
);
1120 // the text size limit has been hit - increase it
1121 if ( !AdjustSpaceLimit() )
1123 wxCommandEvent
event(wxEVT_COMMAND_TEXT_MAXLEN
, m_windowId
);
1124 InitCommandEvent(event
);
1125 event
.SetString(GetValue());
1126 ProcessCommand(event
);
1130 // the other notification messages are not processed
1144 WXHBRUSH
wxTextCtrl::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
1150 WXUINT
WXUNUSED(message
),
1151 WXWPARAM
WXUNUSED(wParam
),
1152 WXLPARAM
WXUNUSED(lParam
)
1159 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
1160 return (WXHBRUSH
) hbrush
;
1162 #endif // wxUSE_CTL3D
1165 if (GetParent()->GetTransparentBackground())
1166 SetBkMode(hdc
, TRANSPARENT
);
1168 SetBkMode(hdc
, OPAQUE
);
1170 wxColour colBack
= GetBackgroundColour();
1172 if (!IsEnabled() && (GetWindowStyle() & wxTE_MULTILINE
) == 0)
1173 colBack
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
);
1175 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
1176 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
1178 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
1180 return (WXHBRUSH
)brush
->GetResourceHandle();
1183 // In WIN16, need to override normal erasing because
1184 // Ctl3D doesn't use the wxWindows background colour.
1186 void wxTextCtrl::OnEraseBackground(wxEraseEvent
& event
)
1188 wxColour
col(m_backgroundColour
);
1192 col
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
);
1196 ::GetClientRect(GetHwnd(), &rect
);
1198 COLORREF ref
= PALETTERGB(col
.Red(),
1201 HBRUSH hBrush
= ::CreateSolidBrush(ref
);
1203 wxLogLastError(wxT("CreateSolidBrush"));
1205 HDC hdc
= (HDC
)event
.GetDC()->GetHDC();
1207 int mode
= ::SetMapMode(hdc
, MM_TEXT
);
1209 ::FillRect(hdc
, &rect
, hBrush
);
1210 ::DeleteObject(hBrush
);
1211 ::SetMapMode(hdc
, mode
);
1216 bool wxTextCtrl::AdjustSpaceLimit()
1219 unsigned int limit
= ::SendMessage(GetHwnd(), EM_GETLIMITTEXT
, 0, 0);
1221 // HACK: we try to automatically extend the limit for the amount of text
1222 // to allow (interactively) entering more than 64Kb of text under
1223 // Win9x but we shouldn't reset the text limit which was previously
1224 // set explicitly with SetMaxLength()
1226 // we could solve this by storing the limit we set in wxTextCtrl but
1227 // to save space we prefer to simply test here the actual limit
1228 // value: we consider that SetMaxLength() can only be called for
1230 if ( limit
< 0x8000 )
1232 // we've got more text than limit set by SetMaxLength()
1236 unsigned int len
= ::GetWindowTextLength(GetHwnd());
1239 limit
= len
+ 0x8000; // 32Kb
1244 // as a nice side effect, this also allows passing limit > 64Kb
1245 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, limit
);
1248 #endif // wxUSE_RICHEDIT
1250 if ( limit
> 0xffff )
1252 // this will set it to a platform-dependent maximum (much more
1253 // than 64Kb under NT)
1257 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, limit
, 0);
1262 // we changed the limit
1266 bool wxTextCtrl::AcceptsFocus() const
1268 // we don't want focus if we can't be edited
1269 return IsEditable() && wxControl::AcceptsFocus();
1272 wxSize
wxTextCtrl::DoGetBestSize() const
1275 wxGetCharSize(GetHWND(), &cx
, &cy
, &GetFont());
1277 int wText
= DEFAULT_ITEM_WIDTH
;
1279 int hText
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
1280 if ( m_windowStyle
& wxTE_MULTILINE
)
1282 hText
*= wxMax(GetNumberOfLines(), 5);
1284 //else: for single line control everything is ok
1286 return wxSize(wText
, hText
);
1289 // ----------------------------------------------------------------------------
1290 // standard handlers for standard edit menu events
1291 // ----------------------------------------------------------------------------
1293 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1298 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1303 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1308 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1313 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1318 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1320 event
.Enable( CanCut() );
1323 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1325 event
.Enable( CanCopy() );
1328 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1330 event
.Enable( CanPaste() );
1333 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1335 event
.Enable( CanUndo() );
1338 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1340 event
.Enable( CanRedo() );
1343 // the rest of the file only deals with the rich edit controls
1346 // ----------------------------------------------------------------------------
1347 // EN_LINK processing
1348 // ----------------------------------------------------------------------------
1350 bool wxTextCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1352 NMHDR
*hdr
= (NMHDR
* )lParam
;
1353 if ( hdr
->code
== EN_LINK
)
1355 ENLINK
*enlink
= (ENLINK
*)hdr
;
1357 switch ( enlink
->msg
)
1360 // ok, so it is hardcoded - do we really nee to customize it?
1361 ::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND
)));
1366 case WM_LBUTTONDOWN
:
1368 case WM_LBUTTONDBLCLK
:
1369 case WM_RBUTTONDOWN
:
1371 case WM_RBUTTONDBLCLK
:
1372 // send a mouse event
1374 static const wxEventType eventsMouse
[] =
1385 // the event ids are consecutive
1387 evtMouse(eventsMouse
[enlink
->msg
- WM_MOUSEMOVE
]);
1389 InitMouseEvent(evtMouse
,
1390 GET_X_LPARAM(enlink
->lParam
),
1391 GET_Y_LPARAM(enlink
->lParam
),
1394 wxTextUrlEvent
event(m_windowId
, evtMouse
,
1396 enlink
->chrg
.cpMax
);
1398 InitCommandEvent(event
);
1400 *result
= ProcessCommand(event
);
1412 // ----------------------------------------------------------------------------
1413 // colour setting for the rich edit controls
1414 // ----------------------------------------------------------------------------
1416 // Watcom C++ doesn't define this
1418 #define SCF_ALL 0x0004
1421 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
1423 if ( !wxTextCtrlBase::SetBackgroundColour(colour
) )
1425 // colour didn't really change
1431 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
1432 // EM_SETBKGNDCOLOR additionally
1433 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR
, 0, wxColourToRGB(colour
));
1439 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1441 if ( !wxTextCtrlBase::SetForegroundColour(colour
) )
1443 // colour didn't really change
1449 // change the colour of everything
1452 cf
.cbSize
= sizeof(cf
);
1453 cf
.dwMask
= CFM_COLOR
;
1454 cf
.crTextColor
= wxColourToRGB(colour
);
1455 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
, SCF_ALL
, (LPARAM
)&cf
);
1461 // ----------------------------------------------------------------------------
1462 // styling support for rich edit controls
1463 // ----------------------------------------------------------------------------
1465 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
1469 // can't do it with normal text control
1473 // the rich text control doesn't handle setting background colour, so don't
1474 // even try if it's the only thing we want to change
1475 if ( wxRichEditModule::GetLoadedVersion() < 2 &&
1476 !style
.HasFont() && !style
.HasTextColour() )
1478 // nothing to do: return TRUE if there was really nothing to do and
1479 // FALSE if we failed to set bg colour
1480 return !style
.HasBackgroundColour();
1483 // order the range if needed
1491 // we can only change the format of the selection, so select the range we
1492 // want and restore the old selection later
1493 long startOld
, endOld
;
1494 GetSelection(&startOld
, &endOld
);
1496 // but do we really have to change the selection?
1497 bool changeSel
= start
!= startOld
|| end
!= endOld
;
1501 DoSetSelection(start
, end
, FALSE
);
1504 // initialize CHARFORMAT struct
1511 cf
.cbSize
= sizeof(cf
);
1513 if ( style
.HasFont() )
1515 // VZ: CFM_CHARSET doesn't seem to do anything at all in RichEdit 2.0
1516 // but using it doesn't seem to hurt neither so leaving it for now
1518 cf
.dwMask
|= CFM_FACE
| CFM_SIZE
| CFM_CHARSET
|
1519 CFM_ITALIC
| CFM_BOLD
| CFM_UNDERLINE
;
1521 // fill in data from LOGFONT but recalculate lfHeight because we need
1522 // the real height in twips and not the negative number which
1523 // wxFillLogFont() returns (this is correct in general and works with
1524 // the Windows font mapper, but not here)
1526 wxFillLogFont(&lf
, &style
.GetFont());
1527 cf
.yHeight
= 20*style
.GetFont().GetPointSize(); // 1 pt = 20 twips
1528 cf
.bCharSet
= lf
.lfCharSet
;
1529 cf
.bPitchAndFamily
= lf
.lfPitchAndFamily
;
1530 wxStrncpy( cf
.szFaceName
, lf
.lfFaceName
, WXSIZEOF(cf
.szFaceName
) );
1532 // also deal with underline/italic/bold attributes: note that we must
1533 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
1534 // style to allow clearing it
1537 cf
.dwEffects
|= CFE_ITALIC
;
1540 if ( lf
.lfWeight
== FW_BOLD
)
1542 cf
.dwEffects
|= CFE_BOLD
;
1545 if ( lf
.lfUnderline
)
1547 cf
.dwEffects
|= CFE_UNDERLINE
;
1550 // strikeout fonts are not supported by wxWindows
1553 if ( style
.HasTextColour() )
1555 cf
.dwMask
|= CFM_COLOR
;
1556 cf
.crTextColor
= wxColourToRGB(style
.GetTextColour());
1560 if ( wxRichEditModule::GetLoadedVersion() > 1 && style
.HasBackgroundColour() )
1562 cf
.dwMask
|= CFM_BACKCOLOR
;
1563 cf
.crBackColor
= wxColourToRGB(style
.GetBackgroundColour());
1565 #endif // wxUSE_RICHEDIT2
1567 // do format the selection
1568 bool ok
= ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
,
1569 SCF_SELECTION
, (LPARAM
)&cf
) != 0;
1572 wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed"));
1577 // restore the original selection
1578 DoSetSelection(startOld
, endOld
, FALSE
);
1584 // ----------------------------------------------------------------------------
1586 // ----------------------------------------------------------------------------
1588 bool wxRichEditModule::OnInit()
1590 // don't do anything - we will load it when needed
1594 void wxRichEditModule::OnExit()
1598 FreeLibrary(ms_hRichEdit
);
1603 bool wxRichEditModule::Load(int version
)
1605 wxCHECK_MSG( version
>= 1 && version
<= 3, FALSE
,
1606 _T("incorrect richedit control version requested") );
1608 if ( version
<= ms_verRichEdit
)
1610 // we've already got this or better
1616 ::FreeLibrary(ms_hRichEdit
);
1619 // always try load riched20.dll first - like this we won't have to reload
1620 // it later if we're first asked for RE 1 and then for RE 2 or 3
1621 wxString dllname
= _T("riched20.dll");
1622 ms_hRichEdit
= ::LoadLibrary(dllname
);
1623 ms_verRichEdit
= 2; // no way to tell if it's 2 or 3, assume 2
1625 if ( !ms_hRichEdit
&& (version
== 1) )
1627 // fall back to RE 1
1628 dllname
= _T("riched32.dll");
1629 ms_hRichEdit
= ::LoadLibrary(dllname
);
1633 if ( !ms_hRichEdit
)
1635 wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname
.c_str());
1637 ms_verRichEdit
= -1;
1645 #endif // wxUSE_RICHEDIT
1647 #endif // wxUSE_TEXTCTRL