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 // ----------------------------------------------------------------------------
74 // ----------------------------------------------------------------------------
78 // this module initializes RichEdit DLL if needed
79 class wxRichEditModule
: public wxModule
82 virtual bool OnInit();
83 virtual void OnExit();
85 // get the version currently loaded, -1 if none
86 static int GetLoadedVersion() { return ms_verRichEdit
; }
88 // load the richedit DLL of at least of required version
89 static bool Load(int version
= 1);
92 // the handle to richedit DLL and the version of the DLL loaded
93 static HINSTANCE ms_hRichEdit
;
95 // the DLL version loaded or -1 if none
96 static int ms_verRichEdit
;
98 DECLARE_DYNAMIC_CLASS(wxRichEditModule
)
101 HINSTANCE
wxRichEditModule::ms_hRichEdit
= (HINSTANCE
)NULL
;
102 int wxRichEditModule::ms_verRichEdit
= -1;
104 IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule
, wxModule
)
106 #endif // wxUSE_RICHEDIT
108 // ----------------------------------------------------------------------------
109 // event tables and other macros
110 // ----------------------------------------------------------------------------
112 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxControl
)
114 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
115 EVT_CHAR(wxTextCtrl::OnChar
)
116 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
118 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
119 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
120 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
121 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
122 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
124 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
125 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
126 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
127 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
128 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
130 EVT_ERASE_BACKGROUND(wxTextCtrl::OnEraseBackground
)
134 // ============================================================================
136 // ============================================================================
138 // ----------------------------------------------------------------------------
140 // ----------------------------------------------------------------------------
142 wxTextCtrl::wxTextCtrl()
149 bool wxTextCtrl::Create(wxWindow
*parent
, wxWindowID id
,
150 const wxString
& value
,
154 const wxValidator
& validator
,
155 const wxString
& name
)
157 // base initialization
158 if ( !CreateBase(parent
, id
, pos
, size
, style
, validator
, name
) )
162 parent
->AddChild(this);
164 // translate wxWin style flags to MSW ones, checking for consistency while
166 long msStyle
= ES_LEFT
| WS_VISIBLE
| WS_CHILD
| WS_TABSTOP
;
168 if ( m_windowStyle
& wxCLIP_SIBLINGS
)
169 msStyle
|= WS_CLIPSIBLINGS
;
171 if ( m_windowStyle
& wxTE_MULTILINE
)
173 wxASSERT_MSG( !(m_windowStyle
& wxTE_PROCESS_ENTER
),
174 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
176 msStyle
|= ES_MULTILINE
| ES_WANTRETURN
;
177 if ((m_windowStyle
& wxTE_NO_VSCROLL
) == 0)
178 msStyle
|= WS_VSCROLL
;
179 m_windowStyle
|= wxTE_PROCESS_ENTER
;
182 msStyle
|= ES_AUTOHSCROLL
;
184 if (m_windowStyle
& wxHSCROLL
)
185 msStyle
|= (WS_HSCROLL
| ES_AUTOHSCROLL
);
187 if (m_windowStyle
& wxTE_READONLY
)
188 msStyle
|= ES_READONLY
;
190 if (m_windowStyle
& wxTE_PASSWORD
) // hidden input
191 msStyle
|= ES_PASSWORD
;
193 if (m_windowStyle
& wxTE_AUTO_SCROLL
)
194 msStyle
|= ES_AUTOHSCROLL
;
197 // we always want the characters and the arrows
198 m_lDlgCode
= DLGC_WANTCHARS
| DLGC_WANTARROWS
;
200 // we may have several different cases:
201 // 1. normal case: both TAB and ENTER are used for dialog navigation
202 // 2. ctrl which wants TAB for itself: ENTER is used to pass to the next
203 // control in the dialog
204 // 3. ctrl which wants ENTER for itself: TAB is used for dialog navigation
205 // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to pass to
207 if ( m_windowStyle
& wxTE_PROCESS_ENTER
)
208 m_lDlgCode
|= DLGC_WANTMESSAGE
;
209 if ( m_windowStyle
& wxTE_PROCESS_TAB
)
210 m_lDlgCode
|= DLGC_WANTTAB
;
212 // do create the control - either an EDIT or RICHEDIT
213 wxString windowClass
= wxT("EDIT");
216 if ( m_windowStyle
& wxTE_RICH
)
218 static bool s_errorGiven
= FALSE
; // MT-FIXME
220 // only give the error msg once if the DLL can't be loaded
223 // first try to load the RichEdit DLL (will do nothing if already
225 if ( !wxRichEditModule::Load() )
227 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
239 msStyle
|= ES_AUTOVSCROLL
;
242 int ver
= wxRichEditModule::GetLoadedVersion();
245 windowClass
= wxT("RICHEDIT");
249 #ifndef RICHEDIT_CLASS
250 wxString RICHEDIT_CLASS
;
251 RICHEDIT_CLASS
.Printf(_T("RichEdit%d0"), ver
);
253 RICHEDIT_CLASS
+= _T('W');
255 RICHEDIT_CLASS
+= _T('A');
256 #endif // Unicode/ANSI
257 #endif // !RICHEDIT_CLASS
259 windowClass
= RICHEDIT_CLASS
;
265 #endif // wxUSE_RICHEDIT
268 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
);
270 // Even with extended styles, need to combine with WS_BORDER for them to
272 if ( want3D
|| wxStyleHasBorder(m_windowStyle
) )
273 msStyle
|= WS_BORDER
;
275 // NB: don't use pos and size as CreateWindowEx arguments because they
276 // might be -1 in which case we should use the default values (and
277 // SetSize called below takes care of it)
278 m_hWnd
= (WXHWND
)::CreateWindowEx(exStyle
,
288 wxCHECK_MSG( m_hWnd
, FALSE
, wxT("Failed to create text ctrl") );
293 Ctl3dSubclassCtl(GetHwnd());
301 // have to enable events manually
302 LPARAM mask
= ENM_CHANGE
| ENM_DROPFILES
| ENM_SELCHANGE
| ENM_UPDATE
;
304 if ( m_windowStyle
& wxTE_AUTO_URL
)
308 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT
, TRUE
, 0);
311 ::SendMessage(GetHwnd(), EM_SETEVENTMASK
, 0, mask
);
313 #endif // wxUSE_RICHEDIT
315 SubclassWin(GetHWND());
317 // set font, position, size and initial value
318 wxFont
& fontParent
= parent
->GetFont();
319 if ( fontParent
.Ok() )
325 SetFont(wxSystemSettings::GetSystemFont(wxSYS_SYSTEM_FONT
));
328 // Causes a crash for Symantec C++ and WIN32 for some reason
329 #if !(defined(__SC__) && defined(__WIN32__))
330 if ( !value
.IsEmpty() )
339 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
344 // Make sure the window style (etc.) reflects the HWND style (roughly)
345 void wxTextCtrl::AdoptAttributesFromHWND()
347 wxWindow::AdoptAttributesFromHWND();
349 HWND hWnd
= GetHwnd();
350 long style
= GetWindowLong(hWnd
, GWL_STYLE
);
352 // retrieve the style to see whether this is an edit or richedit ctrl
356 GetClassName(hWnd
, buf
, WXSIZEOF(buf
));
358 if ( wxStricmp(buf
, wxT("EDIT")) == 0 )
362 #endif // wxUSE_RICHEDIT
364 if (style
& ES_MULTILINE
)
365 m_windowStyle
|= wxTE_MULTILINE
;
366 if (style
& ES_PASSWORD
)
367 m_windowStyle
|= wxTE_PASSWORD
;
368 if (style
& ES_READONLY
)
369 m_windowStyle
|= wxTE_READONLY
;
370 if (style
& ES_WANTRETURN
)
371 m_windowStyle
|= wxTE_PROCESS_ENTER
;
374 void wxTextCtrl::SetupColours()
376 wxColour bkgndColour
;
377 // if (IsEditable() || (m_windowStyle & wxTE_MULTILINE))
378 bkgndColour
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
);
380 // bkgndColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE);
382 SetBackgroundColour(bkgndColour
);
383 SetForegroundColour(GetParent()->GetForegroundColour());
386 // ----------------------------------------------------------------------------
387 // set/get the controls text
388 // ----------------------------------------------------------------------------
390 wxString
wxTextCtrl::GetValue() const
392 // we can't use wxGetWindowText() (i.e. WM_GETTEXT internally) for
393 // retrieving more than 64Kb under Win9x
399 int len
= GetWindowTextLength(GetHwnd());
402 // alloc one extra WORD as needed by the control
403 wxChar
*p
= str
.GetWriteBuf(++len
);
406 textRange
.chrg
.cpMin
= 0;
407 textRange
.chrg
.cpMax
= -1;
408 textRange
.lpstrText
= p
;
410 (void)SendMessage(GetHwnd(), EM_GETTEXTRANGE
, 0, (LPARAM
)&textRange
);
412 // believe it or not, but EM_GETTEXTRANGE uses just CR ('\r') for
413 // the newlines which is neither Unix nor Windows style (Win95 with
414 // riched20.dll shows this behaviour) - convert it to something
418 if ( *p
== _T('\r') )
424 //else: no text at all, leave the string empty
428 #endif // wxUSE_RICHEDIT
430 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
431 // same one as above for consitency
432 wxString str
= wxGetWindowText(GetHWND());
434 return wxTextFile::Translate(str
, wxTextFileType_Unix
);
437 void wxTextCtrl::SetValue(const wxString
& value
)
439 // if the text is long enough, it's faster to just set it instead of first
440 // comparing it with the old one (chances are that it will be different
441 // anyhow, this comparison is there to avoid flicker for small single-line
442 // edit controls mostly)
443 if ( (value
.length() > 0x400) || (value
!= GetValue()) )
445 wxString valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
447 SetWindowText(GetHwnd(), valueDos
.c_str());
449 // for compatibility with the GTK and because it is more logical, we
450 // move the cursor to the end of the text after SetValue()
452 // GRG, Jun/2000: Changed this back after a lot of discussion
453 // in the lists. wxWindows 2.2 will have a set of flags to
454 // customize this behaviour.
455 //SetInsertionPointEnd();
461 void wxTextCtrl::WriteText(const wxString
& value
)
463 wxString valueDos
= wxTextFile::Translate(value
, wxTextFileType_Dos
);
466 // ensure that the new text will be in the default style
468 (m_defaultStyle
.HasFont() || m_defaultStyle
.HasTextColour()) )
471 GetSelection(&start
, &end
);
472 SetStyle(start
, end
, m_defaultStyle
);
474 #endif // wxUSE_RICHEDIT
476 SendMessage(GetHwnd(), EM_REPLACESEL
, 0, (LPARAM
)valueDos
.c_str());
481 void wxTextCtrl::AppendText(const wxString
& text
)
483 SetInsertionPointEnd();
487 void wxTextCtrl::Clear()
489 SetWindowText(GetHwnd(), wxT(""));
492 // ----------------------------------------------------------------------------
493 // Clipboard operations
494 // ----------------------------------------------------------------------------
496 void wxTextCtrl::Copy()
500 HWND hWnd
= GetHwnd();
501 SendMessage(hWnd
, WM_COPY
, 0, 0L);
505 void wxTextCtrl::Cut()
509 HWND hWnd
= GetHwnd();
510 SendMessage(hWnd
, WM_CUT
, 0, 0L);
514 void wxTextCtrl::Paste()
518 HWND hWnd
= GetHwnd();
519 SendMessage(hWnd
, WM_PASTE
, 0, 0L);
523 bool wxTextCtrl::CanCopy() const
525 // Can copy if there's a selection
527 GetSelection(& from
, & to
);
528 return (from
!= to
) ;
531 bool wxTextCtrl::CanCut() const
533 // Can cut if there's a selection
535 GetSelection(& from
, & to
);
536 return (from
!= to
) && (IsEditable());
539 bool wxTextCtrl::CanPaste() const
544 int dataFormat
= 0; // 0 == any format
545 return (::SendMessage( GetHwnd(), EM_CANPASTE
, (WPARAM
) (UINT
) dataFormat
, 0) != 0);
551 // Standard edit control: check for straight text on clipboard
552 bool isTextAvailable
= FALSE
;
553 if ( ::OpenClipboard(GetHwndOf(wxTheApp
->GetTopWindow())) )
555 isTextAvailable
= (::IsClipboardFormatAvailable(CF_TEXT
) != 0);
559 return isTextAvailable
;
562 // ----------------------------------------------------------------------------
564 // ----------------------------------------------------------------------------
566 void wxTextCtrl::SetEditable(bool editable
)
568 HWND hWnd
= GetHwnd();
569 SendMessage(hWnd
, EM_SETREADONLY
, (WPARAM
)!editable
, (LPARAM
)0L);
572 void wxTextCtrl::SetInsertionPoint(long pos
)
574 HWND hWnd
= GetHwnd();
582 SendMessage(hWnd
, EM_EXSETSEL
, 0, (LPARAM
) &range
);
583 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
586 #endif // wxUSE_RICHEDIT
588 SendMessage(hWnd
, EM_SETSEL
, pos
, pos
);
589 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
592 SendMessage(hWnd
, EM_SETSEL
, 0, MAKELPARAM(pos
, pos
));
595 static const wxChar
*nothing
= _T("");
596 SendMessage(hWnd
, EM_REPLACESEL
, 0, (LPARAM
)nothing
);
599 void wxTextCtrl::SetInsertionPointEnd()
601 long pos
= GetLastPosition();
602 SetInsertionPoint(pos
);
605 long wxTextCtrl::GetInsertionPoint() const
613 SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) &range
);
618 DWORD Pos
= (DWORD
)SendMessage(GetHwnd(), EM_GETSEL
, 0, 0L);
622 long wxTextCtrl::GetLastPosition() const
624 HWND hWnd
= GetHwnd();
626 // Will always return a number > 0 (according to docs)
627 int noLines
= (int)SendMessage(hWnd
, EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0L);
629 // This gets the char index for the _beginning_ of the last line
630 int charIndex
= (int)SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)(noLines
-1), (LPARAM
)0L);
632 // Get number of characters in the last line. We'll add this to the character
633 // index for the last line, 1st position.
634 int lineLength
= (int)SendMessage(hWnd
, EM_LINELENGTH
, (WPARAM
)charIndex
, (LPARAM
)0L);
636 return (long)(charIndex
+ lineLength
);
639 // If the return values from and to are the same, there is no
641 void wxTextCtrl::GetSelection(long* from
, long* to
) const
647 ::SendMessage(GetHwnd(), EM_EXGETSEL
, 0, (LPARAM
) (CHARRANGE
*) & charRange
);
649 *from
= charRange
.cpMin
;
650 *to
= charRange
.cpMax
;
655 DWORD dwStart
, dwEnd
;
656 WPARAM wParam
= (WPARAM
) &dwStart
; // receives starting position
657 LPARAM lParam
= (LPARAM
) &dwEnd
; // receives ending position
659 ::SendMessage(GetHwnd(), EM_GETSEL
, wParam
, lParam
);
666 bool wxTextCtrl::IsEditable() const
668 long style
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
670 return ((style
& ES_READONLY
) == 0);
673 // ----------------------------------------------------------------------------
675 // ----------------------------------------------------------------------------
677 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
680 HWND hWnd
= GetHwnd();
681 long fromChar
= from
;
684 // Set selection and remove it
686 SendMessage(hWnd
, EM_SETSEL
, fromChar
, toChar
);
688 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)0, (LPARAM
)MAKELONG(fromChar
, toChar
));
690 SendMessage(hWnd
, WM_CUT
, (WPARAM
)0, (LPARAM
)0);
692 // Now replace with 'value', by pasting.
693 wxSetClipboardData(wxDF_TEXT
, (wxObject
*) (const wxChar
*)value
, 0, 0);
695 // Paste into edit control
696 SendMessage(hWnd
, WM_PASTE
, (WPARAM
)0, (LPARAM
)0L);
698 wxFAIL_MSG("wxTextCtrl::Replace not implemented if wxUSE_CLIPBOARD is 0.");
702 void wxTextCtrl::Remove(long from
, long to
)
704 HWND hWnd
= GetHwnd();
705 long fromChar
= from
;
708 // Cut all selected text
710 SendMessage(hWnd
, EM_SETSEL
, fromChar
, toChar
);
712 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)0, (LPARAM
)MAKELONG(fromChar
, toChar
));
714 SendMessage(hWnd
, WM_CUT
, (WPARAM
)0, (LPARAM
)0);
717 void wxTextCtrl::SetSelection(long from
, long to
)
719 HWND hWnd
= GetHwnd();
720 long fromChar
= from
;
723 // if from and to are both -1, it means (in wxWindows) that all text should
724 // be selected. Translate into Windows convention
725 if ((from
== -1) && (to
== -1))
732 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)fromChar
, (LPARAM
)toChar
);
733 SendMessage(hWnd
, EM_SCROLLCARET
, (WPARAM
)0, (LPARAM
)0);
735 // WPARAM is 0: selection is scrolled into view
736 SendMessage(hWnd
, EM_SETSEL
, (WPARAM
)0, (LPARAM
)MAKELONG(fromChar
, toChar
));
740 bool wxTextCtrl::LoadFile(const wxString
& file
)
742 if ( wxTextCtrlBase::LoadFile(file
) )
744 // update the size limit if needed
753 bool wxTextCtrl::IsModified() const
755 return (SendMessage(GetHwnd(), EM_GETMODIFY
, 0, 0) != 0);
758 // Makes 'unmodified'
759 void wxTextCtrl::DiscardEdits()
761 SendMessage(GetHwnd(), EM_SETMODIFY
, FALSE
, 0L);
764 int wxTextCtrl::GetNumberOfLines() const
766 return (int)SendMessage(GetHwnd(), EM_GETLINECOUNT
, (WPARAM
)0, (LPARAM
)0);
769 long wxTextCtrl::XYToPosition(long x
, long y
) const
771 HWND hWnd
= GetHwnd();
773 // This gets the char index for the _beginning_ of this line
774 int charIndex
= (int)SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)y
, (LPARAM
)0);
775 return (long)(x
+ charIndex
);
778 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
780 HWND hWnd
= GetHwnd();
782 // This gets the line number containing the character
787 lineNo
= (int)SendMessage(hWnd
, EM_EXLINEFROMCHAR
, 0, (LPARAM
)pos
);
790 #endif // wxUSE_RICHEDIT
791 lineNo
= (int)SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, 0);
799 // This gets the char index for the _beginning_ of this line
800 int charIndex
= (int)SendMessage(hWnd
, EM_LINEINDEX
, (WPARAM
)lineNo
, (LPARAM
)0);
801 if ( charIndex
== -1 )
806 // The X position must therefore be the different between pos and charIndex
808 *x
= (long)(pos
- charIndex
);
815 void wxTextCtrl::ShowPosition(long pos
)
817 HWND hWnd
= GetHwnd();
819 // To scroll to a position, we pass the number of lines and characters
820 // to scroll *by*. This means that we need to:
821 // (1) Find the line position of the current line.
822 // (2) Find the line position of pos.
823 // (3) Scroll by (pos - current).
824 // For now, ignore the horizontal scrolling.
826 // Is this where scrolling is relative to - the line containing the caret?
827 // Or is the first visible line??? Try first visible line.
828 // int currentLineLineNo1 = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L);
830 int currentLineLineNo
= (int)SendMessage(hWnd
, EM_GETFIRSTVISIBLELINE
, (WPARAM
)0, (LPARAM
)0L);
832 int specifiedLineLineNo
= (int)SendMessage(hWnd
, EM_LINEFROMCHAR
, (WPARAM
)pos
, (LPARAM
)0L);
834 int linesToScroll
= specifiedLineLineNo
- currentLineLineNo
;
836 if (linesToScroll
!= 0)
837 (void)SendMessage(hWnd
, EM_LINESCROLL
, (WPARAM
)0, (LPARAM
)linesToScroll
);
840 int wxTextCtrl::GetLineLength(long lineNo
) const
842 long charIndex
= XYToPosition(0, lineNo
);
843 int len
= (int)SendMessage(GetHwnd(), EM_LINELENGTH
, charIndex
, 0);
847 wxString
wxTextCtrl::GetLineText(long lineNo
) const
849 size_t len
= (size_t)GetLineLength(lineNo
) + 1;
851 // there must be at least enough place for the length WORD in the
856 wxChar
*buf
= str
.GetWriteBuf(len
);
858 *(WORD
*)buf
= (WORD
)len
;
859 len
= (size_t)::SendMessage(GetHwnd(), EM_GETLINE
, lineNo
, (LPARAM
)buf
);
862 str
.UngetWriteBuf(len
);
867 // ----------------------------------------------------------------------------
869 // ----------------------------------------------------------------------------
871 void wxTextCtrl::Undo()
875 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
879 void wxTextCtrl::Redo()
883 // Same as Undo, since Undo undoes the undo, i.e. a redo.
884 ::SendMessage(GetHwnd(), EM_UNDO
, 0, 0);
888 bool wxTextCtrl::CanUndo() const
890 return (::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0);
893 bool wxTextCtrl::CanRedo() const
895 return (::SendMessage(GetHwnd(), EM_CANUNDO
, 0, 0) != 0);
898 // ----------------------------------------------------------------------------
899 // implemenation details
900 // ----------------------------------------------------------------------------
902 void wxTextCtrl::Command(wxCommandEvent
& event
)
904 SetValue(event
.GetString());
905 ProcessCommand (event
);
908 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
910 // By default, load the first file into the text window.
911 if (event
.GetNumberOfFiles() > 0)
913 LoadFile(event
.GetFiles()[0]);
917 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
919 switch ( event
.KeyCode() )
922 if ( !(m_windowStyle
& wxTE_MULTILINE
) )
924 wxCommandEvent
event(wxEVT_COMMAND_TEXT_ENTER
, m_windowId
);
925 InitCommandEvent(event
);
926 event
.SetString(GetValue());
927 if ( GetEventHandler()->ProcessEvent(event
) )
930 //else: multiline controls need Enter for themselves
935 // always produce navigation event - even if we process TAB
936 // ourselves the fact that we got here means that the user code
937 // decided to skip processing of this TAB - probably to let it
938 // do its default job.
940 wxNavigationKeyEvent eventNav
;
941 eventNav
.SetDirection(!event
.ShiftDown());
942 eventNav
.SetWindowChange(event
.ControlDown());
943 eventNav
.SetEventObject(this);
945 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav
) )
951 // no, we didn't process it
955 bool wxTextCtrl::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
962 wxFocusEvent
event(param
== EN_KILLFOCUS
? wxEVT_KILL_FOCUS
965 event
.SetEventObject( this );
966 GetEventHandler()->ProcessEvent(event
);
972 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, m_windowId
);
973 InitCommandEvent(event
);
974 event
.SetString(GetValue());
975 ProcessCommand(event
);
980 // the text size limit has been hit - increase it
984 // the other notification messages are not processed
998 WXHBRUSH
wxTextCtrl::OnCtlColor(WXHDC pDC
, WXHWND
WXUNUSED(pWnd
), WXUINT
WXUNUSED(nCtlColor
),
1004 WXUINT
WXUNUSED(message
),
1005 WXWPARAM
WXUNUSED(wParam
),
1006 WXLPARAM
WXUNUSED(lParam
)
1013 HBRUSH hbrush
= Ctl3dCtlColorEx(message
, wParam
, lParam
);
1014 return (WXHBRUSH
) hbrush
;
1016 #endif // wxUSE_CTL3D
1019 if (GetParent()->GetTransparentBackground())
1020 SetBkMode(hdc
, TRANSPARENT
);
1022 SetBkMode(hdc
, OPAQUE
);
1024 wxColour colBack
= GetBackgroundColour();
1026 if (!IsEnabled() && (GetWindowStyle() & wxTE_MULTILINE
) == 0)
1027 colBack
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
);
1029 ::SetBkColor(hdc
, wxColourToRGB(colBack
));
1030 ::SetTextColor(hdc
, wxColourToRGB(GetForegroundColour()));
1032 wxBrush
*brush
= wxTheBrushList
->FindOrCreateBrush(colBack
, wxSOLID
);
1034 return (WXHBRUSH
)brush
->GetResourceHandle();
1037 // In WIN16, need to override normal erasing because
1038 // Ctl3D doesn't use the wxWindows background colour.
1040 void wxTextCtrl::OnEraseBackground(wxEraseEvent
& event
)
1042 wxColour
col(m_backgroundColour
);
1046 col
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
);
1050 ::GetClientRect(GetHwnd(), &rect
);
1052 COLORREF ref
= PALETTERGB(col
.Red(),
1055 HBRUSH hBrush
= ::CreateSolidBrush(ref
);
1057 wxLogLastError(wxT("CreateSolidBrush"));
1059 HDC hdc
= (HDC
)event
.GetDC()->GetHDC();
1061 int mode
= ::SetMapMode(hdc
, MM_TEXT
);
1063 ::FillRect(hdc
, &rect
, hBrush
);
1064 ::DeleteObject(hBrush
);
1065 ::SetMapMode(hdc
, mode
);
1070 void wxTextCtrl::AdjustSpaceLimit()
1073 unsigned int len
= ::GetWindowTextLength(GetHwnd()),
1074 limit
= ::SendMessage(GetHwnd(), EM_GETLIMITTEXT
, 0, 0);
1077 limit
= len
+ 0x8000; // 32Kb
1082 // as a nice side effect, this also allows passing limit > 64Kb
1083 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT
, 0, limit
);
1086 #endif // wxUSE_RICHEDIT
1088 if ( limit
> 0xffff )
1090 // this will set it to a platform-dependent maximum (much more
1091 // than 64Kb under NT)
1095 ::SendMessage(GetHwnd(), EM_LIMITTEXT
, limit
, 0);
1101 bool wxTextCtrl::AcceptsFocus() const
1103 // we don't want focus if we can't be edited
1104 return IsEditable() && wxControl::AcceptsFocus();
1107 wxSize
wxTextCtrl::DoGetBestSize() const
1110 wxGetCharSize(GetHWND(), &cx
, &cy
, &GetFont());
1112 int wText
= DEFAULT_ITEM_WIDTH
;
1114 int hText
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy
);
1115 if ( m_windowStyle
& wxTE_MULTILINE
)
1117 hText
*= wxMax(GetNumberOfLines(), 5);
1119 //else: for single line control everything is ok
1121 return wxSize(wText
, hText
);
1124 // ----------------------------------------------------------------------------
1125 // standard handlers for standard edit menu events
1126 // ----------------------------------------------------------------------------
1128 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
1133 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
1138 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
1143 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
1148 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
1153 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
1155 event
.Enable( CanCut() );
1158 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
1160 event
.Enable( CanCopy() );
1163 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
1165 event
.Enable( CanPaste() );
1168 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
1170 event
.Enable( CanUndo() );
1173 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
1175 event
.Enable( CanRedo() );
1178 // the rest of the file only deals with the rich edit controls
1181 // ----------------------------------------------------------------------------
1182 // EN_LINK processing
1183 // ----------------------------------------------------------------------------
1185 bool wxTextCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1187 NMHDR
*hdr
= (NMHDR
* )lParam
;
1188 if ( hdr
->code
== EN_LINK
)
1190 ENLINK
*enlink
= (ENLINK
*)hdr
;
1192 switch ( enlink
->msg
)
1195 // ok, so it is hardcoded - do we really nee to customize it?
1196 ::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND
)));
1201 case WM_LBUTTONDOWN
:
1203 case WM_LBUTTONDBLCLK
:
1204 case WM_RBUTTONDOWN
:
1206 case WM_RBUTTONDBLCLK
:
1207 // send a mouse event
1209 static const wxEventType eventsMouse
[] =
1220 // the event ids are consecutive
1222 evtMouse(eventsMouse
[enlink
->msg
- WM_MOUSEMOVE
]);
1224 InitMouseEvent(evtMouse
,
1225 GET_X_LPARAM(enlink
->lParam
),
1226 GET_Y_LPARAM(enlink
->lParam
),
1229 wxTextUrlEvent
event(m_windowId
, evtMouse
,
1231 enlink
->chrg
.cpMax
);
1233 InitCommandEvent(event
);
1235 *result
= ProcessCommand(event
);
1247 // ----------------------------------------------------------------------------
1248 // colour setting for the rich edit controls
1249 // ----------------------------------------------------------------------------
1251 // Watcom C++ doesn't define this
1253 #define SCF_ALL 0x0004
1256 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
1258 if ( !wxTextCtrlBase::SetBackgroundColour(colour
) )
1260 // colour didn't really change
1266 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
1267 // EM_SETBKGNDCOLOR additionally
1268 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR
, 0, wxColourToRGB(colour
));
1274 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
1276 if ( !wxTextCtrlBase::SetForegroundColour(colour
) )
1278 // colour didn't really change
1284 // change the colour of everything
1287 cf
.cbSize
= sizeof(cf
);
1288 cf
.dwMask
= CFM_COLOR
;
1289 cf
.crTextColor
= wxColourToRGB(colour
);
1290 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
, SCF_ALL
, (LPARAM
)&cf
);
1296 // ----------------------------------------------------------------------------
1297 // styling support for rich edit controls
1298 // ----------------------------------------------------------------------------
1300 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
1304 // can't do it with normal text control
1308 // the rich text control doesn't handle setting background colour, so don't
1309 // even try if it's the only thing we want to change
1310 if ( wxRichEditModule::GetLoadedVersion() < 2 &&
1311 !style
.HasFont() && !style
.HasTextColour() )
1313 // nothing to do: return TRUE if there was really nothing to do and
1314 // FALSE if we failed to set bg colour
1315 return !style
.HasBackgroundColour();
1318 // order the range if needed
1326 // we can only change the format of the selection, so select the range we
1327 // want and restore the old selection later
1328 long startOld
, endOld
;
1329 GetSelection(&startOld
, &endOld
);
1331 // but do we really have to change the selection?
1332 bool changeSel
= start
!= startOld
|| end
!= endOld
;
1335 SendMessage(GetHwnd(), EM_SETSEL
, (WPARAM
) start
, (LPARAM
) end
);
1337 // initialize CHARFORMAT struct
1344 cf
.cbSize
= sizeof(cf
);
1346 if ( style
.HasFont() )
1348 cf
.dwMask
|= CFM_FACE
| CFM_SIZE
| CFM_CHARSET
|
1349 CFM_ITALIC
| CFM_BOLD
| CFM_UNDERLINE
;
1351 // fill in data from LOGFONT but recalculate lfHeight because we need
1352 // the real height in twips and not the negative number which
1353 // wxFillLogFont() returns (this is correct in general and works with
1354 // the Windows font mapper, but not here)
1356 wxFillLogFont(&lf
, &style
.GetFont());
1357 cf
.yHeight
= 20*style
.GetFont().GetPointSize(); // 1 pt = 20 twips
1358 cf
.bCharSet
= lf
.lfCharSet
;
1359 cf
.bPitchAndFamily
= lf
.lfPitchAndFamily
;
1360 wxStrncpy( cf
.szFaceName
, lf
.lfFaceName
, WXSIZEOF(cf
.szFaceName
) );
1362 // also deal with underline/italic/bold attributes: note that we must
1363 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
1364 // style to allow clearing it
1367 cf
.dwEffects
|= CFE_ITALIC
;
1370 if ( lf
.lfWeight
== FW_BOLD
)
1372 cf
.dwEffects
|= CFE_BOLD
;
1375 if ( lf
.lfUnderline
)
1377 cf
.dwEffects
|= CFE_UNDERLINE
;
1380 // strikeout fonts are not supported by wxWindows
1383 if ( style
.HasTextColour() )
1385 cf
.dwMask
|= CFM_COLOR
;
1386 cf
.crTextColor
= wxColourToRGB(style
.GetTextColour());
1390 if ( wxRichEditModule::GetLoadedVersion() > 1 && style
.HasBackgroundColour() )
1392 cf
.dwMask
|= CFM_BACKCOLOR
;
1393 cf
.crBackColor
= wxColourToRGB(style
.GetBackgroundColour());
1395 #endif // wxUSE_RICHEDIT2
1397 // do format the selection
1398 bool ok
= ::SendMessage(GetHwnd(), EM_SETCHARFORMAT
,
1399 SCF_SELECTION
, (LPARAM
)&cf
) != 0;
1402 wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed"));
1407 // restore the original selection
1408 SendMessage(GetHwnd(), EM_SETSEL
, (WPARAM
)startOld
, (LPARAM
)endOld
);
1414 // ----------------------------------------------------------------------------
1416 // ----------------------------------------------------------------------------
1418 bool wxRichEditModule::OnInit()
1420 // don't do anything - we will load it when needed
1424 void wxRichEditModule::OnExit()
1428 FreeLibrary(ms_hRichEdit
);
1433 bool wxRichEditModule::Load(int version
)
1435 wxCHECK_MSG( version
>= 1 && version
<= 3, FALSE
,
1436 _T("incorrect richedit control version requested") );
1438 if ( version
<= ms_verRichEdit
)
1440 // we've already got this or better
1446 ::FreeLibrary(ms_hRichEdit
);
1449 // always try load riched20.dll first - like this we won't have to reload
1450 // it later if we're first asked for RE 1 and then for RE 2 or 3
1451 wxString dllname
= _T("riched20.dll");
1452 ms_hRichEdit
= ::LoadLibrary(dllname
);
1453 ms_verRichEdit
= 2; // no way to tell if it's 2 or 3, assume 2
1455 if ( !ms_hRichEdit
&& (version
== 1) )
1457 // fall back to RE 1
1458 dllname
= _T("riched32.dll");
1459 ms_hRichEdit
= ::LoadLibrary(dllname
);
1463 if ( !ms_hRichEdit
)
1465 wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname
.c_str());
1467 ms_verRichEdit
= -1;
1475 #endif // wxUSE_RICHEDIT
1477 #endif // wxUSE_TEXTCTRL