]> git.saurik.com Git - wxWidgets.git/blame - src/msw/textctrl.cpp
supporting events also for root control (needed for event handling of mouse and paint...
[wxWidgets.git] / src / msw / textctrl.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
bfbd6dc1 2// Name: msw/textctrl.cpp
2bda0e17
KB
3// Purpose: wxTextCtrl
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
a1b82138
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
14f355c2 16#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
a1b82138 17 #pragma implementation "textctrl.h"
2bda0e17
KB
18#endif
19
a1b82138
VZ
20// ----------------------------------------------------------------------------
21// headers
22// ----------------------------------------------------------------------------
23
2bda0e17
KB
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
a1b82138 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
1e6feb95
VZ
31#if wxUSE_TEXTCTRL
32
2bda0e17 33#ifndef WX_PRECOMP
a1b82138
VZ
34 #include "wx/textctrl.h"
35 #include "wx/settings.h"
36 #include "wx/brush.h"
37 #include "wx/utils.h"
381dd4bf 38 #include "wx/intl.h"
a1b82138 39 #include "wx/log.h"
381dd4bf 40 #include "wx/app.h"
2b5f62a0 41 #include "wx/menu.h"
2bda0e17
KB
42#endif
43
f6bcfd97
BP
44#include "wx/module.h"
45
47d67540 46#if wxUSE_CLIPBOARD
a1b82138 47 #include "wx/clipbrd.h"
2bda0e17
KB
48#endif
49
a1b82138
VZ
50#include "wx/textfile.h"
51
52#include <windowsx.h>
53
2bda0e17 54#include "wx/msw/private.h"
2077b148 55#include "wx/msw/winundef.h"
2bda0e17 56
a1b82138 57#include <string.h>
2bda0e17 58#include <stdlib.h>
4676948b
JS
59
60#ifndef __WXWINCE__
a1b82138 61#include <sys/types.h>
4676948b 62#endif
fbc535ff 63
a40c9444
VZ
64#if wxUSE_RICHEDIT
65
66// old mingw32 has richedit stuff directly in windows.h and doesn't have
67// richedit.h at all
68#if !defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__)
cd471848 69 #include <richedit.h>
2bda0e17
KB
70#endif
71
3ec4107d 72#include "wx/msw/missing.h"
a5aa8086 73
a40c9444
VZ
74#endif // wxUSE_RICHEDIT
75
b12915c1
VZ
76// ----------------------------------------------------------------------------
77// private classes
78// ----------------------------------------------------------------------------
79
80#if wxUSE_RICHEDIT
81
a5aa8086 82// this module initializes RichEdit DLL(s) if needed
b12915c1
VZ
83class wxRichEditModule : public wxModule
84{
85public:
86 virtual bool OnInit();
87 virtual void OnExit();
88
b12915c1
VZ
89 // load the richedit DLL of at least of required version
90 static bool Load(int version = 1);
91
92private:
a5aa8086
VZ
93 // the handles to richedit 1.0 and 2.0 (or 3.0) DLLs
94 static HINSTANCE ms_hRichEdit[2];
b12915c1
VZ
95
96 DECLARE_DYNAMIC_CLASS(wxRichEditModule)
97};
98
a5aa8086 99HINSTANCE wxRichEditModule::ms_hRichEdit[2] = { NULL, NULL };
b12915c1
VZ
100
101IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule, wxModule)
102
103#endif // wxUSE_RICHEDIT
e702ff0f 104
a1b82138
VZ
105// ----------------------------------------------------------------------------
106// event tables and other macros
107// ----------------------------------------------------------------------------
108
51741307 109#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
110WX_DEFINE_FLAGS( wxTextCtrlStyle )
111
321239b6 112wxBEGIN_FLAGS( wxTextCtrlStyle )
bc9fb572
JS
113 // new style border flags, we put them first to
114 // use them for streaming out
321239b6
SC
115 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
116 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
117 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
118 wxFLAGS_MEMBER(wxBORDER_RAISED)
119 wxFLAGS_MEMBER(wxBORDER_STATIC)
120 wxFLAGS_MEMBER(wxBORDER_NONE)
bc9fb572
JS
121
122 // old style border flags
321239b6
SC
123 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
124 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
125 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
126 wxFLAGS_MEMBER(wxRAISED_BORDER)
127 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 128 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
129
130 // standard window styles
321239b6
SC
131 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
132 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
133 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
134 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 135 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
321239b6
SC
136 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
137 wxFLAGS_MEMBER(wxVSCROLL)
138 wxFLAGS_MEMBER(wxHSCROLL)
139
140 wxFLAGS_MEMBER(wxTE_PROCESS_ENTER)
141 wxFLAGS_MEMBER(wxTE_PROCESS_TAB)
142 wxFLAGS_MEMBER(wxTE_MULTILINE)
143 wxFLAGS_MEMBER(wxTE_PASSWORD)
144 wxFLAGS_MEMBER(wxTE_READONLY)
145 wxFLAGS_MEMBER(wxHSCROLL)
146 wxFLAGS_MEMBER(wxTE_RICH)
147 wxFLAGS_MEMBER(wxTE_RICH2)
148 wxFLAGS_MEMBER(wxTE_AUTO_URL)
149 wxFLAGS_MEMBER(wxTE_NOHIDESEL)
150 wxFLAGS_MEMBER(wxTE_LEFT)
151 wxFLAGS_MEMBER(wxTE_CENTRE)
152 wxFLAGS_MEMBER(wxTE_RIGHT)
153 wxFLAGS_MEMBER(wxTE_DONTWRAP)
154 wxFLAGS_MEMBER(wxTE_LINEWRAP)
155 wxFLAGS_MEMBER(wxTE_WORDWRAP)
156
157wxEND_FLAGS( wxTextCtrlStyle )
bc9fb572 158
51741307
SC
159IMPLEMENT_DYNAMIC_CLASS_XTI(wxTextCtrl, wxControl,"wx/textctrl.h")
160
321239b6
SC
161wxBEGIN_PROPERTIES_TABLE(wxTextCtrl)
162 wxEVENT_PROPERTY( TextUpdated , wxEVT_COMMAND_TEXT_UPDATED , wxCommandEvent )
163 wxEVENT_PROPERTY( TextEnter , wxEVT_COMMAND_TEXT_ENTER , wxCommandEvent )
c5ca409b 164
321239b6
SC
165 wxPROPERTY( Font , wxFont , SetFont , GetFont ,, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
166 wxPROPERTY( Value , wxString , SetValue, GetValue, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
167 wxPROPERTY_FLAGS( WindowStyle , wxTextCtrlStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
168wxEND_PROPERTIES_TABLE()
51741307 169
321239b6
SC
170wxBEGIN_HANDLERS_TABLE(wxTextCtrl)
171wxEND_HANDLERS_TABLE()
51741307 172
321239b6 173wxCONSTRUCTOR_6( wxTextCtrl , wxWindow* , Parent , wxWindowID , Id , wxString , Value , wxPoint , Position , wxSize , Size , long , WindowStyle)
51741307 174#else
2bda0e17 175IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl, wxControl)
51741307
SC
176#endif
177
2bda0e17
KB
178
179BEGIN_EVENT_TABLE(wxTextCtrl, wxControl)
a1b82138
VZ
180 EVT_CHAR(wxTextCtrl::OnChar)
181 EVT_DROP_FILES(wxTextCtrl::OnDropFiles)
182
2b5f62a0
VZ
183#if wxUSE_RICHEDIT
184 EVT_RIGHT_UP(wxTextCtrl::OnRightClick)
185#endif
186
a1b82138
VZ
187 EVT_MENU(wxID_CUT, wxTextCtrl::OnCut)
188 EVT_MENU(wxID_COPY, wxTextCtrl::OnCopy)
189 EVT_MENU(wxID_PASTE, wxTextCtrl::OnPaste)
190 EVT_MENU(wxID_UNDO, wxTextCtrl::OnUndo)
191 EVT_MENU(wxID_REDO, wxTextCtrl::OnRedo)
2b5f62a0
VZ
192 EVT_MENU(wxID_CLEAR, wxTextCtrl::OnDelete)
193 EVT_MENU(wxID_SELECTALL, wxTextCtrl::OnSelectAll)
a1b82138
VZ
194
195 EVT_UPDATE_UI(wxID_CUT, wxTextCtrl::OnUpdateCut)
196 EVT_UPDATE_UI(wxID_COPY, wxTextCtrl::OnUpdateCopy)
197 EVT_UPDATE_UI(wxID_PASTE, wxTextCtrl::OnUpdatePaste)
198 EVT_UPDATE_UI(wxID_UNDO, wxTextCtrl::OnUpdateUndo)
199 EVT_UPDATE_UI(wxID_REDO, wxTextCtrl::OnUpdateRedo)
2b5f62a0
VZ
200 EVT_UPDATE_UI(wxID_CLEAR, wxTextCtrl::OnUpdateDelete)
201 EVT_UPDATE_UI(wxID_SELECTALL, wxTextCtrl::OnUpdateSelectAll)
e3a6a6b2
VZ
202
203 EVT_SET_FOCUS(wxTextCtrl::OnSetFocus)
2bda0e17 204END_EVENT_TABLE()
e702ff0f 205
a1b82138
VZ
206// ============================================================================
207// implementation
208// ============================================================================
209
210// ----------------------------------------------------------------------------
211// creation
212// ----------------------------------------------------------------------------
213
aac7e7fe 214void wxTextCtrl::Init()
2bda0e17 215{
cd471848 216#if wxUSE_RICHEDIT
aac7e7fe 217 m_verRichEdit = 0;
2b5f62a0 218#endif // wxUSE_RICHEDIT
5036ea90 219
2b5f62a0 220 m_privateContextMenu = NULL;
5036ea90 221 m_suppressNextUpdate = FALSE;
e3a6a6b2 222 m_isNativeCaretShown = true;
2b5f62a0
VZ
223}
224
225wxTextCtrl::~wxTextCtrl()
226{
227 if (m_privateContextMenu)
228 {
229 delete m_privateContextMenu;
230 m_privateContextMenu = NULL;
231 }
2bda0e17
KB
232}
233
debe6624 234bool wxTextCtrl::Create(wxWindow *parent, wxWindowID id,
c085e333
VZ
235 const wxString& value,
236 const wxPoint& pos,
a1b82138
VZ
237 const wxSize& size,
238 long style,
c085e333
VZ
239 const wxValidator& validator,
240 const wxString& name)
2bda0e17 241{
a1b82138 242 // base initialization
8d99be5f 243 if ( !CreateBase(parent, id, pos, size, style, validator, name) )
a1b82138 244 return FALSE;
2bda0e17 245
a1b82138
VZ
246 if ( parent )
247 parent->AddChild(this);
2bda0e17 248
b2d5a7ee
VZ
249 // translate wxWin style flags to MSW ones
250 WXDWORD msStyle = MSWGetCreateWindowFlags();
cfdd3a98 251
a1b82138 252 // do create the control - either an EDIT or RICHEDIT
b12915c1 253 wxString windowClass = wxT("EDIT");
cd471848 254
57c208c5 255#if wxUSE_RICHEDIT
a5aa8086
VZ
256 if ( m_windowStyle & wxTE_AUTO_URL )
257 {
258 // automatic URL detection only works in RichEdit 2.0+
259 m_windowStyle |= wxTE_RICH2;
260 }
261
262 if ( m_windowStyle & wxTE_RICH2 )
263 {
264 // using richedit 2.0 implies using wxTE_RICH
265 m_windowStyle |= wxTE_RICH;
266 }
267
268 // we need to load the richedit DLL before creating the rich edit control
c49245f8 269 if ( m_windowStyle & wxTE_RICH )
a1b82138 270 {
a5aa8086
VZ
271 static bool s_errorGiven = FALSE;// MT-FIXME
272
273 // Which version do we need? Use 1.0 by default because it is much more
274 // like the the standard EDIT or 2.0 if explicitly requested, but use
275 // only 2.0 in Unicode mode as 1.0 doesn't support Unicode at all
276 //
277 // TODO: RichEdit 3.0 is apparently capable of emulating RichEdit 1.0
278 // (and thus EDIT) much better than RichEdit 2.0 so we probably
279 // should use 3.0 if available as it is the best of both worlds -
280 // but as I can't test it right now I don't do it (VZ)
281#if wxUSE_UNICODE
282 const int verRichEdit = 2;
283#else // !wxUSE_UNICODE
284 int verRichEdit = m_windowStyle & wxTE_RICH2 ? 2 : 1;
285#endif // wxUSE_UNICODE/!wxUSE_UNICODE
0d0512bd
VZ
286
287 // only give the error msg once if the DLL can't be loaded
288 if ( !s_errorGiven )
289 {
a5aa8086
VZ
290 // try to load the RichEdit DLL (will do nothing if already done)
291 if ( !wxRichEditModule::Load(verRichEdit) )
0d0512bd 292 {
a5aa8086
VZ
293#if !wxUSE_UNICODE
294 // try another version?
295 verRichEdit = 3 - verRichEdit; // 1 <-> 2
296
297 if ( !wxRichEditModule::Load(verRichEdit) )
298#endif // wxUSE_UNICODE
299 {
300 wxLogError(_("Impossible to create a rich edit control, using simple text control instead. Please reinstall riched32.dll"));
0d0512bd 301
a5aa8086
VZ
302 s_errorGiven = TRUE;
303 }
0d0512bd
VZ
304 }
305 }
306
a5aa8086 307 // have we managed to load any richedit version?
aac7e7fe 308 if ( !s_errorGiven )
0d0512bd 309 {
a5aa8086 310 m_verRichEdit = verRichEdit;
aac7e7fe 311 if ( m_verRichEdit == 1 )
b12915c1
VZ
312 {
313 windowClass = wxT("RICHEDIT");
314 }
315 else
316 {
317#ifndef RICHEDIT_CLASS
318 wxString RICHEDIT_CLASS;
aac7e7fe 319 RICHEDIT_CLASS.Printf(_T("RichEdit%d0"), m_verRichEdit);
5fb2f4ba 320#if wxUSE_UNICODE
b12915c1
VZ
321 RICHEDIT_CLASS += _T('W');
322#else // ANSI
323 RICHEDIT_CLASS += _T('A');
324#endif // Unicode/ANSI
325#endif // !RICHEDIT_CLASS
326
327 windowClass = RICHEDIT_CLASS;
328 }
0d0512bd 329 }
a1b82138 330 }
b12915c1 331#endif // wxUSE_RICHEDIT
2bda0e17 332
c8b204e6
VZ
333 // we need to turn '\n's into "\r\n"s for the multiline controls
334 wxString valueWin;
335 if ( m_windowStyle & wxTE_MULTILINE )
336 {
337 valueWin = wxTextFile::Translate(value, wxTextFileType_Dos);
338 }
339 else // single line
340 {
341 valueWin = value;
342 }
343
344 if ( !MSWCreateControl(windowClass, msStyle, pos, size, valueWin) )
7da982c4 345 return FALSE;
2bda0e17 346
a756f210 347 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
86f14582 348
57c208c5 349#if wxUSE_RICHEDIT
aac7e7fe 350 if ( IsRich() )
a1b82138 351 {
5036ea90
VZ
352 // enable the events we're interested in: we want to get EN_CHANGE as
353 // for the normal controls
354 LPARAM mask = ENM_CHANGE;
c57e3339 355
1dae1d00
VZ
356 if ( GetRichVersion() == 1 )
357 {
358 // we also need EN_MSGFILTER for richedit 1.0 for the reasons
359 // explained in its handler
360 mask |= ENM_MOUSEEVENTS;
361 }
362 else if ( m_windowStyle & wxTE_AUTO_URL )
c57e3339
VZ
363 {
364 mask |= ENM_LINK;
365
366 ::SendMessage(GetHwnd(), EM_AUTOURLDETECT, TRUE, 0);
367 }
368
369 ::SendMessage(GetHwnd(), EM_SETEVENTMASK, 0, mask);
a1b82138 370 }
c57e3339 371#endif // wxUSE_RICHEDIT
2bda0e17 372
a1b82138 373 return TRUE;
2bda0e17
KB
374}
375
376// Make sure the window style (etc.) reflects the HWND style (roughly)
cd471848 377void wxTextCtrl::AdoptAttributesFromHWND()
2bda0e17 378{
aac7e7fe 379 wxWindow::AdoptAttributesFromHWND();
2bda0e17 380
aac7e7fe
VZ
381 HWND hWnd = GetHwnd();
382 long style = ::GetWindowLong(hWnd, GWL_STYLE);
2bda0e17 383
aac7e7fe 384 // retrieve the style to see whether this is an edit or richedit ctrl
cd471848 385#if wxUSE_RICHEDIT
aac7e7fe 386 wxString classname = wxGetWindowClass(GetHWND());
2bda0e17 387
aac7e7fe
VZ
388 if ( classname.IsSameAs(_T("EDIT"), FALSE /* no case */) )
389 {
390 m_verRichEdit = 0;
391 }
392 else // rich edit?
393 {
394 wxChar c;
395 if ( wxSscanf(classname, _T("RichEdit%d0%c"), &m_verRichEdit, &c) != 2 )
396 {
397 wxLogDebug(_T("Unknown edit control '%s'."), classname.c_str());
2bda0e17 398
aac7e7fe
VZ
399 m_verRichEdit = 0;
400 }
401 }
a1b82138 402#endif // wxUSE_RICHEDIT
c085e333 403
aac7e7fe
VZ
404 if (style & ES_MULTILINE)
405 m_windowStyle |= wxTE_MULTILINE;
406 if (style & ES_PASSWORD)
407 m_windowStyle |= wxTE_PASSWORD;
408 if (style & ES_READONLY)
409 m_windowStyle |= wxTE_READONLY;
410 if (style & ES_WANTRETURN)
411 m_windowStyle |= wxTE_PROCESS_ENTER;
e015d1f7
JS
412 if (style & ES_CENTER)
413 m_windowStyle |= wxTE_CENTRE;
414 if (style & ES_RIGHT)
415 m_windowStyle |= wxTE_RIGHT;
2bda0e17
KB
416}
417
b2d5a7ee
VZ
418WXDWORD wxTextCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const
419{
420 long msStyle = wxControl::MSWGetStyle(style, exstyle);
421
db50ec5a 422 // styles which we alaways add by default
b2d5a7ee
VZ
423 if ( style & wxTE_MULTILINE )
424 {
425 wxASSERT_MSG( !(style & wxTE_PROCESS_ENTER),
426 wxT("wxTE_PROCESS_ENTER style is ignored for multiline text controls (they always process it)") );
427
428 msStyle |= ES_MULTILINE | ES_WANTRETURN;
429 if ( !(style & wxTE_NO_VSCROLL) )
db50ec5a
VZ
430 {
431 // always adjust the vertical scrollbar automatically if we have it
432 msStyle |= WS_VSCROLL | ES_AUTOVSCROLL;
433
34433938 434#if wxUSE_RICHEDIT
db50ec5a
VZ
435 // we have to use this style for the rich edit controls because
436 // without it the vertical scrollbar never appears at all in
437 // richedit 3.0 because of our ECO_NOHIDESEL hack (search for it)
438 if ( style & wxTE_RICH2 )
439 {
440 msStyle |= ES_DISABLENOSCROLL;
441 }
34433938 442#endif // wxUSE_RICHEDIT
db50ec5a 443 }
b2d5a7ee
VZ
444
445 style |= wxTE_PROCESS_ENTER;
446 }
447 else // !multiline
448 {
449 // there is really no reason to not have this style for single line
450 // text controls
451 msStyle |= ES_AUTOHSCROLL;
452 }
453
0376ed54
VZ
454 // note that wxTE_DONTWRAP is the same as wxHSCROLL so if we have a horz
455 // scrollbar, there is no wrapping -- which makes sense
456 if ( style & wxTE_DONTWRAP )
db50ec5a
VZ
457 {
458 // automatically scroll the control horizontally as necessary
0376ed54 459 msStyle |= WS_HSCROLL;
db50ec5a 460 }
b2d5a7ee
VZ
461
462 if ( style & wxTE_READONLY )
463 msStyle |= ES_READONLY;
464
465 if ( style & wxTE_PASSWORD )
466 msStyle |= ES_PASSWORD;
467
b2d5a7ee
VZ
468 if ( style & wxTE_NOHIDESEL )
469 msStyle |= ES_NOHIDESEL;
470
db50ec5a 471 // note that we can't do do "& wxTE_LEFT" as wxTE_LEFT == 0
e015d1f7
JS
472 if ( style & wxTE_CENTRE )
473 msStyle |= ES_CENTER;
db50ec5a 474 else if ( style & wxTE_RIGHT )
e015d1f7 475 msStyle |= ES_RIGHT;
db50ec5a 476 else
0376ed54 477 msStyle |= ES_LEFT; // ES_LEFT is 0 as well but for consistency...
e015d1f7 478
b2d5a7ee
VZ
479 return msStyle;
480}
481
482void wxTextCtrl::SetWindowStyleFlag(long style)
483{
484#if wxUSE_RICHEDIT
485 // we have to deal with some styles separately because they can't be
486 // changed by simply calling SetWindowLong(GWL_STYLE) but can be changed
487 // using richedit-specific EM_SETOPTIONS
488 if ( IsRich() &&
489 ((style & wxTE_NOHIDESEL) != (GetWindowStyle() & wxTE_NOHIDESEL)) )
490 {
491 bool set = (style & wxTE_NOHIDESEL) != 0;
492
493 ::SendMessage(GetHwnd(), EM_SETOPTIONS, set ? ECOOP_OR : ECOOP_AND,
494 set ? ECO_NOHIDESEL : ~ECO_NOHIDESEL);
495 }
496#endif // wxUSE_RICHEDIT
497
498 wxControl::SetWindowStyleFlag(style);
499}
500
a1b82138
VZ
501// ----------------------------------------------------------------------------
502// set/get the controls text
503// ----------------------------------------------------------------------------
504
cd471848 505wxString wxTextCtrl::GetValue() const
2bda0e17 506{
a5aa8086
VZ
507 // range 0..-1 is special for GetRange() and means to retrieve all text
508 return GetRange(0, -1);
509}
510
511wxString wxTextCtrl::GetRange(long from, long to) const
512{
513 wxString str;
514
515 if ( from >= to && to != -1 )
516 {
517 // nothing to retrieve
518 return str;
519 }
520
b12915c1 521#if wxUSE_RICHEDIT
aac7e7fe 522 if ( IsRich() )
b12915c1 523 {
3988b155 524 int len = GetWindowTextLength(GetHwnd());
a5aa8086 525 if ( len > from )
3988b155 526 {
7411f983
VZ
527 if ( to == -1 )
528 to = len;
529
11db7d81 530#if !wxUSE_UNICODE
7411f983
VZ
531 // we must use EM_STREAMOUT if we don't want to lose all characters
532 // not representable in the current character set (EM_GETTEXTRANGE
533 // simply replaces them with question marks...)
e669d184 534 if ( GetRichVersion() > 1 )
7411f983 535 {
e669d184
VZ
536 // we must have some encoding, otherwise any 8bit chars in the
537 // control are simply *lost* (replaced by '?')
538 wxFontEncoding encoding = wxFONTENCODING_SYSTEM;
539
7411f983
VZ
540 wxFont font = m_defaultStyle.GetFont();
541 if ( !font.Ok() )
542 font = GetFont();
543
544 if ( font.Ok() )
545 {
e669d184
VZ
546 encoding = font.GetEncoding();
547 }
548
549 if ( encoding == wxFONTENCODING_SYSTEM )
550 {
551 encoding = wxLocale::GetSystemEncoding();
552 }
553
554 if ( encoding == wxFONTENCODING_SYSTEM )
555 {
556 encoding = wxFONTENCODING_ISO8859_1;
557 }
558
559 str = StreamOut(encoding);
560
561 if ( !str.empty() )
562 {
563 // we have to manually extract the required part, luckily
52a9e329
VZ
564 // this is easy in this case as EOL characters in str are
565 // just LFs because we remove CRs in wxRichEditStreamOut
9ffa7227 566 str = str.Mid(from, to - from);
7411f983
VZ
567 }
568 }
569
570 // StreamOut() wasn't used or failed, try to do it in normal way
571 if ( str.empty() )
11db7d81 572#endif // !wxUSE_UNICODE
de564874
MB
573 {
574 // alloc one extra WORD as needed by the control
575 wxStringBuffer tmp(str, ++len);
576 wxChar *p = tmp;
b12915c1 577
de564874
MB
578 TEXTRANGE textRange;
579 textRange.chrg.cpMin = from;
11db7d81 580 textRange.chrg.cpMax = to;
de564874 581 textRange.lpstrText = p;
b12915c1 582
de564874
MB
583 (void)SendMessage(GetHwnd(), EM_GETTEXTRANGE,
584 0, (LPARAM)&textRange);
b12915c1 585
de564874 586 if ( m_verRichEdit > 1 )
a5aa8086 587 {
de564874
MB
588 // RichEdit 2.0 uses just CR ('\r') for the
589 // newlines which is neither Unix nor Windows
590 // style - convert it to something reasonable
591 for ( ; *p; p++ )
592 {
593 if ( *p == _T('\r') )
594 *p = _T('\n');
595 }
a5aa8086 596 }
3988b155
VZ
597 }
598
a5aa8086
VZ
599 if ( m_verRichEdit == 1 )
600 {
601 // convert to the canonical form - see comment below
602 str = wxTextFile::Translate(str, wxTextFileType_Unix);
603 }
3988b155
VZ
604 }
605 //else: no text at all, leave the string empty
b12915c1 606 }
a5aa8086 607 else
b12915c1 608#endif // wxUSE_RICHEDIT
a5aa8086
VZ
609 {
610 // retrieve all text
611 str = wxGetWindowText(GetHWND());
b12915c1 612
a5aa8086
VZ
613 // need only a range?
614 if ( from < to )
615 {
616 str = str.Mid(from, to - from);
617 }
618
619 // WM_GETTEXT uses standard DOS CR+LF (\r\n) convention - convert to the
620 // canonical one (same one as above) for consistency with the other kinds
621 // of controls and, more importantly, with the other ports
622 str = wxTextFile::Translate(str, wxTextFileType_Unix);
623 }
b12915c1 624
a5aa8086 625 return str;
2bda0e17
KB
626}
627
628void wxTextCtrl::SetValue(const wxString& value)
629{
b12915c1
VZ
630 // if the text is long enough, it's faster to just set it instead of first
631 // comparing it with the old one (chances are that it will be different
632 // anyhow, this comparison is there to avoid flicker for small single-line
633 // edit controls mostly)
634 if ( (value.length() > 0x400) || (value != GetValue()) )
07cf98cb 635 {
79d26b32 636 DoWriteText(value, FALSE /* not selection only */);
120249f6
JS
637
638 // for compatibility, don't move the cursor when doing SetValue()
639 SetInsertionPoint(0);
da32743f 640 }
199fbd70
VZ
641 else // same text
642 {
643 // still send an event for consistency
644 SendUpdateEvent();
645 }
af01f1ba 646
da32743f 647 // we should reset the modified flag even if the value didn't really change
104d7404 648
da32743f
VZ
649 // mark the control as being not dirty - we changed its text, not the
650 // user
651 DiscardEdits();
aac7e7fe 652}
a1b82138 653
0b8e5844 654#if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)
f6bcfd97 655
7411f983
VZ
656// TODO: using memcpy() would improve performance a lot for big amounts of text
657
658DWORD CALLBACK
659wxRichEditStreamIn(DWORD dwCookie, BYTE *buf, LONG cb, LONG *pcb)
aac7e7fe
VZ
660{
661 *pcb = 0;
f6bcfd97 662
7411f983
VZ
663 const wchar_t ** const ppws = (const wchar_t **)dwCookie;
664
aac7e7fe 665 wchar_t *wbuf = (wchar_t *)buf;
7411f983 666 const wchar_t *wpc = *ppws;
aac7e7fe
VZ
667 while ( cb && *wpc )
668 {
669 *wbuf++ = *wpc++;
670
671 cb -= sizeof(wchar_t);
672 (*pcb) += sizeof(wchar_t);
07cf98cb 673 }
aac7e7fe 674
7411f983
VZ
675 *ppws = wpc;
676
677 return 0;
678}
679
52a9e329
VZ
680// helper struct used to pass parameters from wxTextCtrl to wxRichEditStreamOut
681struct wxStreamOutData
682{
683 wchar_t *wpc;
684 size_t len;
685};
686
7411f983 687DWORD CALLBACK
975b6bcf 688wxRichEditStreamOut(DWORD_PTR dwCookie, BYTE *buf, LONG cb, LONG *pcb)
7411f983
VZ
689{
690 *pcb = 0;
691
52a9e329 692 wxStreamOutData *data = (wxStreamOutData *)dwCookie;
7411f983
VZ
693
694 const wchar_t *wbuf = (const wchar_t *)buf;
52a9e329
VZ
695 wchar_t *wpc = data->wpc;
696 while ( cb )
7411f983 697 {
52a9e329
VZ
698 wchar_t wch = *wbuf++;
699
700 // turn "\r\n" into "\n" on the fly
701 if ( wch != L'\r' )
702 *wpc++ = wch;
703 else
704 data->len--;
7411f983
VZ
705
706 cb -= sizeof(wchar_t);
707 (*pcb) += sizeof(wchar_t);
708 }
709
52a9e329 710 data->wpc = wpc;
aac7e7fe
VZ
711
712 return 0;
2bda0e17
KB
713}
714
7411f983 715
0b8e5844 716#if wxUSE_UNICODE_MSLU
7411f983
VZ
717 #define UNUSED_IF_MSLU(param)
718#else
719 #define UNUSED_IF_MSLU(param) param
720#endif
721
722bool
723wxTextCtrl::StreamIn(const wxString& value,
724 wxFontEncoding UNUSED_IF_MSLU(encoding),
725 bool selectionOnly)
0b8e5844 726{
7411f983 727#if wxUSE_UNICODE_MSLU
0b8e5844 728 const wchar_t *wpc = value.c_str();
79d26b32 729#else // !wxUSE_UNICODE_MSLU
6a983211 730 wxCSConv conv(encoding);
aac7e7fe 731
6a983211 732 const size_t len = conv.MB2WC(NULL, value, value.length());
855d6be7
VZ
733
734#if wxUSE_WCHAR_T
aac7e7fe 735 wxWCharBuffer wchBuf(len);
6a983211 736 wchar_t *wpc = wchBuf.data();
855d6be7
VZ
737#else
738 wchar_t *wchBuf = (wchar_t *)malloc((len + 1)*sizeof(wchar_t));
6a983211 739 wchar_t *wpc = wchBuf;
855d6be7
VZ
740#endif
741
6a983211 742 conv.MB2WC(wpc, value, value.length());
0b8e5844 743#endif // wxUSE_UNICODE_MSLU
aac7e7fe 744
6a983211 745 // finally, stream it in the control
aac7e7fe
VZ
746 EDITSTREAM eds;
747 wxZeroMemory(eds);
748 eds.dwCookie = (DWORD)&wpc;
7a25a27c
VZ
749 // the cast below is needed for broken (very) old mingw32 headers
750 eds.pfnCallback = (EDITSTREAMCALLBACK)wxRichEditStreamIn;
92209a39 751
2b5f62a0
VZ
752 // we're going to receive 2 EN_CHANGE notifications if we got any selection
753 // (same problem as in DoWriteText())
754 if ( selectionOnly && HasSelection() )
755 {
756 // so suppress one of them
757 m_suppressNextUpdate = TRUE;
758 }
759
07601f59
VZ
760 ::SendMessage(GetHwnd(), EM_STREAMIN,
761 SF_TEXT |
762 SF_UNICODE |
763 (selectionOnly ? SFF_SELECTION : 0),
764 (LPARAM)&eds);
765
766 if ( eds.dwError )
aac7e7fe
VZ
767 {
768 wxLogLastError(_T("EM_STREAMIN"));
aac7e7fe
VZ
769 }
770
855d6be7
VZ
771#if !wxUSE_WCHAR_T
772 free(wchBuf);
773#endif // !wxUSE_WCHAR_T
774
aac7e7fe
VZ
775 return TRUE;
776}
777
7411f983
VZ
778#if !wxUSE_UNICODE_MSLU
779
780wxString
781wxTextCtrl::StreamOut(wxFontEncoding encoding, bool selectionOnly) const
782{
783 wxString out;
784
785 const int len = GetWindowTextLength(GetHwnd());
786
787#if wxUSE_WCHAR_T
788 wxWCharBuffer wchBuf(len);
789 wchar_t *wpc = wchBuf.data();
790#else
791 wchar_t *wchBuf = (wchar_t *)malloc((len + 1)*sizeof(wchar_t));
792 wchar_t *wpc = wchBuf;
793#endif
794
52a9e329
VZ
795 wxStreamOutData data;
796 data.wpc = wpc;
797 data.len = len;
798
7411f983
VZ
799 EDITSTREAM eds;
800 wxZeroMemory(eds);
52a9e329 801 eds.dwCookie = (DWORD)&data;
7411f983
VZ
802 eds.pfnCallback = wxRichEditStreamOut;
803
804 ::SendMessage
805 (
806 GetHwnd(),
807 EM_STREAMOUT,
808 SF_TEXT | SF_UNICODE | (selectionOnly ? SFF_SELECTION : 0),
809 (LPARAM)&eds
810 );
811
812 if ( eds.dwError )
813 {
814 wxLogLastError(_T("EM_STREAMOUT"));
815 }
816 else // streamed out ok
817 {
52a9e329
VZ
818 // NUL-terminate the string because its length could have been
819 // decreased by wxRichEditStreamOut
820 *(wchBuf.data() + data.len) = L'\0';
821
b26613c2
VZ
822 // now convert to the given encoding (this is a possibly lossful
823 // conversion but what else can we do)
7411f983 824 wxCSConv conv(encoding);
b26613c2
VZ
825 size_t lenNeeded = conv.WC2MB(NULL, wchBuf, 0);
826 if ( lenNeeded++ )
7411f983 827 {
b26613c2 828 conv.WC2MB(wxStringBuffer(out, lenNeeded), wchBuf, lenNeeded);
7411f983
VZ
829 }
830 }
831
832#if !wxUSE_WCHAR_T
833 free(wchBuf);
834#endif // !wxUSE_WCHAR_T
835
836 return out;
837}
838
839#endif // !wxUSE_UNICODE_MSLU
840
aac7e7fe
VZ
841#endif // wxUSE_RICHEDIT
842
a1b82138 843void wxTextCtrl::WriteText(const wxString& value)
79d26b32
VZ
844{
845 DoWriteText(value);
846}
847
848void wxTextCtrl::DoWriteText(const wxString& value, bool selectionOnly)
2bda0e17 849{
a5aa8086
VZ
850 wxString valueDos;
851 if ( m_windowStyle & wxTE_MULTILINE )
852 valueDos = wxTextFile::Translate(value, wxTextFileType_Dos);
853 else
854 valueDos = value;
2bda0e17 855
4bc1afd5 856#if wxUSE_RICHEDIT
aac7e7fe
VZ
857 // there are several complications with the rich edit controls here
858 bool done = FALSE;
859 if ( IsRich() )
4bc1afd5 860 {
aac7e7fe
VZ
861 // first, ensure that the new text will be in the default style
862 if ( !m_defaultStyle.IsDefault() )
863 {
864 long start, end;
865 GetSelection(&start, &end);
0b8e5844
VS
866 SetStyle(start, end, m_defaultStyle);
867 }
868
869#if wxUSE_UNICODE_MSLU
870 // RichEdit doesn't have Unicode version of EM_REPLACESEL on Win9x,
871 // but EM_STREAMIN works
136cb3c7 872 if ( wxUsingUnicowsDll() && GetRichVersion() > 1 )
0b8e5844 873 {
79d26b32 874 done = StreamIn(valueDos, wxFONTENCODING_SYSTEM, selectionOnly);
aac7e7fe 875 }
0b8e5844 876#endif // wxUSE_UNICODE_MSLU
aac7e7fe 877
b4da152e 878#if !wxUSE_UNICODE
aac7e7fe
VZ
879 // next check if the text we're inserting must be shown in a non
880 // default charset -- this only works for RichEdit > 1.0
881 if ( GetRichVersion() > 1 )
882 {
883 wxFont font = m_defaultStyle.GetFont();
884 if ( !font.Ok() )
885 font = GetFont();
886
887 if ( font.Ok() )
888 {
889 wxFontEncoding encoding = font.GetEncoding();
890 if ( encoding != wxFONTENCODING_SYSTEM )
891 {
6a983211
VZ
892 // we have to use EM_STREAMIN to force richedit control 2.0+
893 // to show any text in the non default charset -- otherwise
894 // it thinks it knows better than we do and always shows it
895 // in the default one
79d26b32 896 done = StreamIn(valueDos, encoding, selectionOnly);
aac7e7fe
VZ
897 }
898 }
899 }
9d7de3c2 900#endif // !wxUSE_UNICODE
4bc1afd5 901 }
4bc1afd5 902
aac7e7fe
VZ
903 if ( !done )
904#endif // wxUSE_RICHEDIT
905 {
2b5f62a0
VZ
906 // in some cases we get 2 EN_CHANGE notifications after the SendMessage
907 // call below which is confusing for the client code and so should be
908 // avoided
909 //
910 // these cases are: (a) plain EDIT controls if EM_REPLACESEL is used
911 // and there is a non empty selection currently and (b) rich text
912 // controls in any case
913 if (
5036ea90 914#if wxUSE_RICHEDIT
2b5f62a0
VZ
915 IsRich() ||
916#endif // wxUSE_RICHEDIT
917 (selectionOnly && HasSelection()) )
79d26b32 918 {
5036ea90 919 m_suppressNextUpdate = TRUE;
79d26b32
VZ
920 }
921
5036ea90
VZ
922 ::SendMessage(GetHwnd(), selectionOnly ? EM_REPLACESEL : WM_SETTEXT,
923 0, (LPARAM)valueDos.c_str());
2b5f62a0
VZ
924
925 // OTOH, non rich text controls don't generate any events at all when
926 // we use WM_SETTEXT -- have to emulate them here
927 if ( !selectionOnly
928#if wxUSE_RICHEDIT
929 && !IsRich()
930#endif // wxUSE_RICHEDIT
931 )
932 {
8d1e36f7
JS
933 // Windows already sends an update event for single-line
934 // controls.
935 if ( m_windowStyle & wxTE_MULTILINE )
936 SendUpdateEvent();
2b5f62a0 937 }
aac7e7fe 938 }
2bda0e17 939
a1b82138 940 AdjustSpaceLimit();
2bda0e17
KB
941}
942
a1b82138
VZ
943void wxTextCtrl::AppendText(const wxString& text)
944{
945 SetInsertionPointEnd();
aac7e7fe 946
a1b82138 947 WriteText(text);
2b5f62a0
VZ
948
949#if wxUSE_RICHEDIT
950 if ( IsMultiLine() && GetRichVersion() > 1 )
951 {
952 // setting the caret to the end and showing it simply doesn't work for
953 // RichEdit 2.0 -- force it to still do what we want
954 ::SendMessage(GetHwnd(), EM_LINESCROLL, 0, GetNumberOfLines());
955 }
956#endif // wxUSE_RICHEDIT
a1b82138
VZ
957}
958
959void wxTextCtrl::Clear()
960{
fda7962d 961 ::SetWindowText(GetHwnd(), wxEmptyString);
5036ea90
VZ
962
963#if wxUSE_RICHEDIT
964 if ( !IsRich() )
965#endif // wxUSE_RICHEDIT
966 {
967 // rich edit controls send EN_UPDATE from WM_SETTEXT handler themselves
968 // but the normal ones don't -- make Clear() behaviour consistent by
969 // always sending this event
8d1e36f7
JS
970
971 // Windows already sends an update event for single-line
972 // controls.
973 if ( m_windowStyle & wxTE_MULTILINE )
974 SendUpdateEvent();
5036ea90 975 }
a1b82138
VZ
976}
977
94af7d45
VZ
978#ifdef __WIN32__
979
980bool wxTextCtrl::EmulateKeyPress(const wxKeyEvent& event)
981{
982 SetFocus();
983
984 size_t lenOld = GetValue().length();
985
986 wxUint32 code = event.GetRawKeyCode();
566d84a7
RL
987 ::keybd_event(code, 0, 0 /* key press */, 0);
988 ::keybd_event(code, 0, KEYEVENTF_KEYUP, 0);
94af7d45
VZ
989
990 // assume that any alphanumeric key changes the total number of characters
991 // in the control - this should work in 99% of cases
992 return GetValue().length() != lenOld;
993}
994
995#endif // __WIN32__
996
a1b82138 997// ----------------------------------------------------------------------------
2bda0e17 998// Clipboard operations
a1b82138
VZ
999// ----------------------------------------------------------------------------
1000
cd471848 1001void wxTextCtrl::Copy()
2bda0e17 1002{
e702ff0f
JS
1003 if (CanCopy())
1004 {
a5aa8086 1005 ::SendMessage(GetHwnd(), WM_COPY, 0, 0L);
e702ff0f 1006 }
2bda0e17
KB
1007}
1008
cd471848 1009void wxTextCtrl::Cut()
2bda0e17 1010{
e702ff0f
JS
1011 if (CanCut())
1012 {
a5aa8086 1013 ::SendMessage(GetHwnd(), WM_CUT, 0, 0L);
e702ff0f 1014 }
2bda0e17
KB
1015}
1016
cd471848 1017void wxTextCtrl::Paste()
2bda0e17 1018{
e702ff0f
JS
1019 if (CanPaste())
1020 {
a5aa8086 1021 ::SendMessage(GetHwnd(), WM_PASTE, 0, 0L);
e702ff0f 1022 }
2bda0e17
KB
1023}
1024
2b5f62a0 1025bool wxTextCtrl::HasSelection() const
a1b82138 1026{
a1b82138 1027 long from, to;
a5aa8086
VZ
1028 GetSelection(&from, &to);
1029 return from != to;
a1b82138
VZ
1030}
1031
2b5f62a0
VZ
1032bool wxTextCtrl::CanCopy() const
1033{
1034 // Can copy if there's a selection
1035 return HasSelection();
1036}
1037
a1b82138
VZ
1038bool wxTextCtrl::CanCut() const
1039{
a5aa8086 1040 return CanCopy() && IsEditable();
a1b82138
VZ
1041}
1042
1043bool wxTextCtrl::CanPaste() const
1044{
aac7e7fe
VZ
1045 if ( !IsEditable() )
1046 return FALSE;
1047
a1b82138 1048#if wxUSE_RICHEDIT
aac7e7fe 1049 if ( IsRich() )
a1b82138 1050 {
aac7e7fe
VZ
1051 UINT cf = 0; // 0 == any format
1052
1053 return ::SendMessage(GetHwnd(), EM_CANPASTE, cf, 0) != 0;
a1b82138 1054 }
aac7e7fe 1055#endif // wxUSE_RICHEDIT
a1b82138
VZ
1056
1057 // Standard edit control: check for straight text on clipboard
aac7e7fe
VZ
1058 if ( !::OpenClipboard(GetHwndOf(wxTheApp->GetTopWindow())) )
1059 return FALSE;
1060
1061 bool isTextAvailable = ::IsClipboardFormatAvailable(CF_TEXT) != 0;
1062 ::CloseClipboard();
a1b82138
VZ
1063
1064 return isTextAvailable;
1065}
1066
1067// ----------------------------------------------------------------------------
1068// Accessors
1069// ----------------------------------------------------------------------------
1070
debe6624 1071void wxTextCtrl::SetEditable(bool editable)
2bda0e17 1072{
a1b82138
VZ
1073 HWND hWnd = GetHwnd();
1074 SendMessage(hWnd, EM_SETREADONLY, (WPARAM)!editable, (LPARAM)0L);
2bda0e17
KB
1075}
1076
debe6624 1077void wxTextCtrl::SetInsertionPoint(long pos)
2bda0e17 1078{
a5aa8086 1079 DoSetSelection(pos, pos);
2bda0e17
KB
1080}
1081
cd471848 1082void wxTextCtrl::SetInsertionPointEnd()
2bda0e17 1083{
a9d3434a
VZ
1084 // we must not do anything if the caret is already there because calling
1085 // SetInsertionPoint() thaws the controls if Freeze() had been called even
1086 // if it doesn't actually move the caret anywhere and so the simple fact of
1087 // doing it results in horrible flicker when appending big amounts of text
1088 // to the control in a few chunks (see DoAddText() test in the text sample)
1089 if ( GetInsertionPoint() == GetLastPosition() )
1090 return;
1091
a5aa8086
VZ
1092 long pos;
1093
1094#if wxUSE_RICHEDIT
1095 if ( m_verRichEdit == 1 )
1096 {
1097 // we don't have to waste time calling GetLastPosition() in this case
1098 pos = -1;
1099 }
1100 else // !RichEdit 1.0
1101#endif // wxUSE_RICHEDIT
1102 {
1103 pos = GetLastPosition();
1104 }
1105
a1b82138 1106 SetInsertionPoint(pos);
2bda0e17
KB
1107}
1108
cd471848 1109long wxTextCtrl::GetInsertionPoint() const
2bda0e17 1110{
57c208c5 1111#if wxUSE_RICHEDIT
aac7e7fe 1112 if ( IsRich() )
a1b82138
VZ
1113 {
1114 CHARRANGE range;
1115 range.cpMin = 0;
1116 range.cpMax = 0;
1117 SendMessage(GetHwnd(), EM_EXGETSEL, 0, (LPARAM) &range);
1118 return range.cpMin;
1119 }
aac7e7fe 1120#endif // wxUSE_RICHEDIT
2bda0e17 1121
a1b82138
VZ
1122 DWORD Pos = (DWORD)SendMessage(GetHwnd(), EM_GETSEL, 0, 0L);
1123 return Pos & 0xFFFF;
2bda0e17
KB
1124}
1125
cd471848 1126long wxTextCtrl::GetLastPosition() const
2bda0e17 1127{
a5aa8086
VZ
1128 int numLines = GetNumberOfLines();
1129 long posStartLastLine = XYToPosition(0, numLines - 1);
39136494 1130
a5aa8086 1131 long lenLastLine = GetLengthOfLineContainingPos(posStartLastLine);
2bda0e17 1132
a5aa8086 1133 return posStartLastLine + lenLastLine;
2bda0e17
KB
1134}
1135
a1b82138
VZ
1136// If the return values from and to are the same, there is no
1137// selection.
1138void wxTextCtrl::GetSelection(long* from, long* to) const
1139{
1140#if wxUSE_RICHEDIT
aac7e7fe 1141 if ( IsRich() )
a1b82138
VZ
1142 {
1143 CHARRANGE charRange;
aac7e7fe 1144 ::SendMessage(GetHwnd(), EM_EXGETSEL, 0, (LPARAM) &charRange);
a1b82138
VZ
1145
1146 *from = charRange.cpMin;
1147 *to = charRange.cpMax;
a1b82138 1148 }
4bc1afd5 1149 else
aac7e7fe 1150#endif // !wxUSE_RICHEDIT
4bc1afd5
VZ
1151 {
1152 DWORD dwStart, dwEnd;
aac7e7fe 1153 ::SendMessage(GetHwnd(), EM_GETSEL, (WPARAM)&dwStart, (LPARAM)&dwEnd);
a1b82138 1154
4bc1afd5
VZ
1155 *from = dwStart;
1156 *to = dwEnd;
1157 }
a1b82138
VZ
1158}
1159
1160bool wxTextCtrl::IsEditable() const
1161{
51c14c62
VZ
1162 // strangely enough, we may be called before the control is created: our
1163 // own Create() calls MSWGetStyle() which calls AcceptsFocus() which calls
1164 // us
1165 if ( !m_hWnd )
1166 return TRUE;
1167
a1b82138
VZ
1168 long style = ::GetWindowLong(GetHwnd(), GWL_STYLE);
1169
a5aa8086 1170 return (style & ES_READONLY) == 0;
a1b82138
VZ
1171}
1172
1173// ----------------------------------------------------------------------------
aac7e7fe 1174// selection
a1b82138
VZ
1175// ----------------------------------------------------------------------------
1176
aac7e7fe 1177void wxTextCtrl::SetSelection(long from, long to)
2bda0e17 1178{
aac7e7fe
VZ
1179 // if from and to are both -1, it means (in wxWindows) that all text should
1180 // be selected - translate into Windows convention
1181 if ( (from == -1) && (to == -1) )
1182 {
1183 from = 0;
1184 to = -1;
1185 }
1186
a5aa8086
VZ
1187 DoSetSelection(from, to);
1188}
1189
1190void wxTextCtrl::DoSetSelection(long from, long to, bool scrollCaret)
1191{
789295bf 1192 HWND hWnd = GetHwnd();
39136494 1193
aac7e7fe
VZ
1194#if wxUSE_RICHEDIT
1195 if ( IsRich() )
1196 {
db50ec5a
VZ
1197 CHARRANGE range;
1198 range.cpMin = from;
1199 range.cpMax = to;
1200 SendMessage(hWnd, EM_EXSETSEL, 0, (LPARAM) &range);
1201 }
1202 else
1203#endif // wxUSE_RICHEDIT
1204 {
1205 SendMessage(hWnd, EM_SETSEL, (WPARAM)from, (LPARAM)to);
1206 }
1207
1208 if ( scrollCaret )
1209 {
1210#if wxUSE_RICHEDIT
98e19a58
VZ
1211 // richedit 3.0 (i.e. the version living in riched20.dll distributed
1212 // with Windows 2000 and beyond) doesn't honour EM_SCROLLCARET when
1213 // emulating richedit 2.0 unless the control has focus or ECO_NOHIDESEL
1214 // option is set (but it does work ok in richedit 1.0 mode...)
1215 //
1216 // so to make it work we either need to give focus to it here which
1217 // will probably create many problems (dummy focus events; window
1218 // containing the text control being brought to foreground
1219 // unexpectedly; ...) or to temporarily set ECO_NOHIDESEL which may
db50ec5a
VZ
1220 // create other problems too -- and in fact it does because if we turn
1221 // on/off this style while appending the text to the control, the
1222 // vertical scrollbar never appears in it even if we append tons of
1223 // text and to work around this the only solution I found was to use
1224 // ES_DISABLENOSCROLL
1225 //
1226 // this is very ugly but I don't see any other way to make this work
98e19a58
VZ
1227 if ( GetRichVersion() > 1 )
1228 {
1229 if ( !HasFlag(wxTE_NOHIDESEL) )
1230 {
1231 ::SendMessage(GetHwnd(), EM_SETOPTIONS,
1232 ECOOP_OR, ECO_NOHIDESEL);
1233 }
1234 //else: everything is already ok
1235 }
aac7e7fe 1236#endif // wxUSE_RICHEDIT
a1b82138 1237
aac7e7fe 1238 SendMessage(hWnd, EM_SCROLLCARET, (WPARAM)0, (LPARAM)0);
98e19a58
VZ
1239
1240#if wxUSE_RICHEDIT
db50ec5a
VZ
1241 // restore ECO_NOHIDESEL if we changed it
1242 if ( GetRichVersion() > 1 && !HasFlag(wxTE_NOHIDESEL) )
1243 {
1244 ::SendMessage(GetHwnd(), EM_SETOPTIONS,
1245 ECOOP_AND, ~ECO_NOHIDESEL);
1246 }
98e19a58 1247#endif // wxUSE_RICHEDIT
db50ec5a 1248 }
aac7e7fe
VZ
1249}
1250
efe66bbc
VZ
1251// ----------------------------------------------------------------------------
1252// Working with files
1253// ----------------------------------------------------------------------------
1254
1255bool wxTextCtrl::LoadFile(const wxString& file)
1256{
1257 if ( wxTextCtrlBase::LoadFile(file) )
1258 {
1259 // update the size limit if needed
1260 AdjustSpaceLimit();
1261
1262 return TRUE;
1263 }
1264
1265 return FALSE;
1266}
1267
aac7e7fe
VZ
1268// ----------------------------------------------------------------------------
1269// Editing
1270// ----------------------------------------------------------------------------
39136494 1271
aac7e7fe
VZ
1272void wxTextCtrl::Replace(long from, long to, const wxString& value)
1273{
1274 // Set selection and remove it
f882d57e 1275 DoSetSelection(from, to, FALSE /* don't scroll caret into view */);
aac7e7fe 1276
e669d184 1277 DoWriteText(value, TRUE /* selection only */);
aac7e7fe
VZ
1278}
1279
1280void wxTextCtrl::Remove(long from, long to)
1281{
fda7962d 1282 Replace(from, to, wxEmptyString);
2bda0e17
KB
1283}
1284
cd471848 1285bool wxTextCtrl::IsModified() const
2bda0e17 1286{
a5aa8086 1287 return SendMessage(GetHwnd(), EM_GETMODIFY, 0, 0) != 0;
2bda0e17
KB
1288}
1289
3a9fa0d6
VZ
1290void wxTextCtrl::MarkDirty()
1291{
1292 SendMessage(GetHwnd(), EM_SETMODIFY, TRUE, 0L);
1293}
1294
cd471848 1295void wxTextCtrl::DiscardEdits()
2bda0e17 1296{
a1b82138 1297 SendMessage(GetHwnd(), EM_SETMODIFY, FALSE, 0L);
2bda0e17
KB
1298}
1299
cd471848 1300int wxTextCtrl::GetNumberOfLines() const
2bda0e17 1301{
789295bf 1302 return (int)SendMessage(GetHwnd(), EM_GETLINECOUNT, (WPARAM)0, (LPARAM)0);
2bda0e17
KB
1303}
1304
efe66bbc
VZ
1305// ----------------------------------------------------------------------------
1306// Positions <-> coords
1307// ----------------------------------------------------------------------------
1308
debe6624 1309long wxTextCtrl::XYToPosition(long x, long y) const
2bda0e17 1310{
2bda0e17 1311 // This gets the char index for the _beginning_ of this line
a5aa8086
VZ
1312 long charIndex = SendMessage(GetHwnd(), EM_LINEINDEX, (WPARAM)y, (LPARAM)0);
1313
1314 return charIndex + x;
2bda0e17
KB
1315}
1316
0efe5ba7 1317bool wxTextCtrl::PositionToXY(long pos, long *x, long *y) const
2bda0e17 1318{
789295bf 1319 HWND hWnd = GetHwnd();
2bda0e17
KB
1320
1321 // This gets the line number containing the character
a5aa8086 1322 long lineNo;
0efe5ba7 1323#if wxUSE_RICHEDIT
aac7e7fe 1324 if ( IsRich() )
0efe5ba7 1325 {
a5aa8086 1326 lineNo = SendMessage(hWnd, EM_EXLINEFROMCHAR, 0, (LPARAM)pos);
0efe5ba7
VZ
1327 }
1328 else
1329#endif // wxUSE_RICHEDIT
a5aa8086
VZ
1330 {
1331 lineNo = SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)pos, 0);
1332 }
0efe5ba7
VZ
1333
1334 if ( lineNo == -1 )
1335 {
1336 // no such line
1337 return FALSE;
1338 }
1339
2bda0e17 1340 // This gets the char index for the _beginning_ of this line
a5aa8086 1341 long charIndex = SendMessage(hWnd, EM_LINEINDEX, (WPARAM)lineNo, (LPARAM)0);
0efe5ba7
VZ
1342 if ( charIndex == -1 )
1343 {
1344 return FALSE;
1345 }
1346
2bda0e17 1347 // The X position must therefore be the different between pos and charIndex
0efe5ba7 1348 if ( x )
a5aa8086 1349 *x = pos - charIndex;
0efe5ba7 1350 if ( y )
a5aa8086 1351 *y = lineNo;
0efe5ba7
VZ
1352
1353 return TRUE;
2bda0e17
KB
1354}
1355
efe66bbc
VZ
1356wxTextCtrlHitTestResult
1357wxTextCtrl::HitTest(const wxPoint& pt, wxTextCoord *col, wxTextCoord *row) const
1358{
1359 // first get the position from Windows
1360 LPARAM lParam;
1361
1362#if wxUSE_RICHEDIT
1363 POINTL ptl;
1364 if ( IsRich() )
1365 {
1366 // for rich edit controls the position is passed iva the struct fields
1367 ptl.x = pt.x;
1368 ptl.y = pt.y;
1369 lParam = (LPARAM)&ptl;
1370 }
1371 else
1372#endif // wxUSE_RICHEDIT
1373 {
1374 // for the plain ones, we are limited to 16 bit positions which are
1375 // combined in a single 32 bit value
1376 lParam = MAKELPARAM(pt.x, pt.y);
1377 }
1378
1379 LRESULT pos = SendMessage(GetHwnd(), EM_CHARFROMPOS, 0, lParam);
1380
1381 if ( pos == -1 )
1382 {
1383 // this seems to indicate an error...
1384 return wxTE_HT_UNKNOWN;
1385 }
1386
1387#if wxUSE_RICHEDIT
1388 if ( !IsRich() )
1389#endif // wxUSE_RICHEDIT
1390 {
1391 // for plain EDIT controls the higher word contains something else
1392 pos = LOWORD(pos);
1393 }
1394
1395
1396 // next determine where it is relatively to our point: EM_CHARFROMPOS
1397 // always returns the closest character but we need to be more precise, so
1398 // double check that we really are where it pretends
1399 POINTL ptReal;
1400
1401#if wxUSE_RICHEDIT
1402 // FIXME: we need to distinguish between richedit 2 and 3 here somehow but
1403 // we don't know how to do it
1404 if ( IsRich() )
1405 {
1406 SendMessage(GetHwnd(), EM_POSFROMCHAR, (WPARAM)&ptReal, pos);
1407 }
1408 else
1409#endif // wxUSE_RICHEDIT
1410 {
1411 LRESULT lRc = SendMessage(GetHwnd(), EM_POSFROMCHAR, pos, 0);
1412
1413 if ( lRc == -1 )
1414 {
1415 // this is apparently returned when pos corresponds to the last
1416 // position
1417 ptReal.x =
1418 ptReal.y = 0;
1419 }
1420 else
1421 {
1422 ptReal.x = LOWORD(lRc);
1423 ptReal.y = HIWORD(lRc);
1424 }
1425 }
1426
1427 wxTextCtrlHitTestResult rc;
1428
1429 if ( pt.y > ptReal.y + GetCharHeight() )
1430 rc = wxTE_HT_BELOW;
1431 else if ( pt.x > ptReal.x + GetCharWidth() )
1432 rc = wxTE_HT_BEYOND;
1433 else
1434 rc = wxTE_HT_ON_TEXT;
1435
1436 // finally translate to column/row
1437 if ( !PositionToXY(pos, col, row) )
1438 {
1439 wxFAIL_MSG( _T("PositionToXY() not expected to fail in HitTest()") );
1440 }
1441
1442 return rc;
1443}
1444
1445// ----------------------------------------------------------------------------
1446//
1447// ----------------------------------------------------------------------------
1448
debe6624 1449void wxTextCtrl::ShowPosition(long pos)
2bda0e17 1450{
789295bf 1451 HWND hWnd = GetHwnd();
2bda0e17
KB
1452
1453 // To scroll to a position, we pass the number of lines and characters
1454 // to scroll *by*. This means that we need to:
1455 // (1) Find the line position of the current line.
1456 // (2) Find the line position of pos.
1457 // (3) Scroll by (pos - current).
1458 // For now, ignore the horizontal scrolling.
1459
1460 // Is this where scrolling is relative to - the line containing the caret?
1461 // Or is the first visible line??? Try first visible line.
1462// int currentLineLineNo1 = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)-1, (LPARAM)0L);
1463
1464 int currentLineLineNo = (int)SendMessage(hWnd, EM_GETFIRSTVISIBLELINE, (WPARAM)0, (LPARAM)0L);
1465
1466 int specifiedLineLineNo = (int)SendMessage(hWnd, EM_LINEFROMCHAR, (WPARAM)pos, (LPARAM)0L);
39136494 1467
2bda0e17
KB
1468 int linesToScroll = specifiedLineLineNo - currentLineLineNo;
1469
2bda0e17 1470 if (linesToScroll != 0)
de4d7713 1471 (void)SendMessage(hWnd, EM_LINESCROLL, (WPARAM)0, (LPARAM)linesToScroll);
2bda0e17
KB
1472}
1473
a5aa8086
VZ
1474long wxTextCtrl::GetLengthOfLineContainingPos(long pos) const
1475{
1476 return ::SendMessage(GetHwnd(), EM_LINELENGTH, (WPARAM)pos, 0);
1477}
1478
debe6624 1479int wxTextCtrl::GetLineLength(long lineNo) const
2bda0e17 1480{
a5aa8086
VZ
1481 long pos = XYToPosition(0, lineNo);
1482
1483 return GetLengthOfLineContainingPos(pos);
2bda0e17
KB
1484}
1485
debe6624 1486wxString wxTextCtrl::GetLineText(long lineNo) const
2bda0e17 1487{
a1b82138 1488 size_t len = (size_t)GetLineLength(lineNo) + 1;
488fe1fe 1489
f6bcfd97
BP
1490 // there must be at least enough place for the length WORD in the
1491 // buffer
1492 len += sizeof(WORD);
4438caf4 1493
f6bcfd97 1494 wxString str;
de564874
MB
1495 {
1496 wxStringBufferLength tmp(str, len);
1497 wxChar *buf = tmp;
1498
1499 *(WORD *)buf = (WORD)len;
60ab0c52
VZ
1500 len = (size_t)::SendMessage(GetHwnd(), EM_GETLINE, lineNo, (LPARAM)buf);
1501
1502#if wxUSE_RICHEDIT
1503 if ( IsRich() )
1504 {
1505 // remove the '\r' returned by the rich edit control, the user code
1506 // should never see it
1507 if ( buf[len - 2] == _T('\r') && buf[len - 1] == _T('\n') )
1508 {
1509 buf[len - 2] = _T('\n');
1510 len--;
1511 }
1512 }
1513#endif // wxUSE_RICHEDIT
1514
8f387d13
VZ
1515 // remove the '\n' at the end, if any (this is how this function is
1516 // supposed to work according to the docs)
1517 if ( buf[len - 1] == _T('\n') )
1518 {
1519 len--;
1520 }
1521
de564874
MB
1522 buf[len] = 0;
1523 tmp.SetLength(len);
1524 }
4438caf4
VZ
1525
1526 return str;
2bda0e17
KB
1527}
1528
d7eee191
VZ
1529void wxTextCtrl::SetMaxLength(unsigned long len)
1530{
1531 ::SendMessage(GetHwnd(), EM_LIMITTEXT, len, 0);
1532}
1533
a1b82138 1534// ----------------------------------------------------------------------------
ca8b28f2 1535// Undo/redo
a1b82138
VZ
1536// ----------------------------------------------------------------------------
1537
ca8b28f2
JS
1538void wxTextCtrl::Undo()
1539{
1540 if (CanUndo())
1541 {
789295bf 1542 ::SendMessage(GetHwnd(), EM_UNDO, 0, 0);
ca8b28f2
JS
1543 }
1544}
1545
1546void wxTextCtrl::Redo()
1547{
1548 if (CanRedo())
1549 {
1550 // Same as Undo, since Undo undoes the undo, i.e. a redo.
789295bf 1551 ::SendMessage(GetHwnd(), EM_UNDO, 0, 0);
ca8b28f2
JS
1552 }
1553}
1554
1555bool wxTextCtrl::CanUndo() const
1556{
a5aa8086 1557 return ::SendMessage(GetHwnd(), EM_CANUNDO, 0, 0) != 0;
ca8b28f2
JS
1558}
1559
1560bool wxTextCtrl::CanRedo() const
1561{
a5aa8086 1562 return ::SendMessage(GetHwnd(), EM_CANUNDO, 0, 0) != 0;
ca8b28f2
JS
1563}
1564
e3a6a6b2
VZ
1565// ----------------------------------------------------------------------------
1566// caret handling (Windows only)
1567// ----------------------------------------------------------------------------
1568
1569bool wxTextCtrl::ShowNativeCaret(bool show)
1570{
1571 if ( show != m_isNativeCaretShown )
1572 {
1573 if ( !(show ? ::ShowCaret(GetHwnd()) : ::HideCaret(GetHwnd())) )
1574 {
1575 // not an error, may simply indicate that it's not shown/hidden
1576 // yet (i.e. it had been hidden/showh 2 times before)
1577 return false;
1578 }
1579
1580 m_isNativeCaretShown = show;
1581 }
1582
1583 return true;
1584}
1585
a1b82138
VZ
1586// ----------------------------------------------------------------------------
1587// implemenation details
1588// ----------------------------------------------------------------------------
39136494 1589
2bda0e17
KB
1590void wxTextCtrl::Command(wxCommandEvent & event)
1591{
a1b82138
VZ
1592 SetValue(event.GetString());
1593 ProcessCommand (event);
2bda0e17
KB
1594}
1595
1596void wxTextCtrl::OnDropFiles(wxDropFilesEvent& event)
1597{
a1b82138
VZ
1598 // By default, load the first file into the text window.
1599 if (event.GetNumberOfFiles() > 0)
1600 {
1601 LoadFile(event.GetFiles()[0]);
1602 }
2bda0e17
KB
1603}
1604
a37d422a
VZ
1605// ----------------------------------------------------------------------------
1606// kbd input processing
1607// ----------------------------------------------------------------------------
1608
1609bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG* pMsg)
1610{
1611 MSG *msg = (MSG *)pMsg;
1612
1613 // check for our special keys here: if we don't do it and the parent frame
1614 // uses them as accelerators, they wouldn't work at all, so we disable
1615 // usual preprocessing for them
1616 if ( msg->message == WM_KEYDOWN )
1617 {
574c939e 1618 WORD vkey = (WORD) msg->wParam;
a37d422a
VZ
1619 if ( (HIWORD(msg->lParam) & KF_ALTDOWN) == KF_ALTDOWN )
1620 {
1621 if ( vkey == VK_BACK )
1622 return FALSE;
1623 }
1624 else // no Alt
1625 {
cf6e951c
VZ
1626 // we want to process some Ctrl-foo and Shift-bar but no key
1627 // combinations without either Ctrl or Shift nor with both of them
1628 // pressed
1629 const int ctrl = wxIsCtrlDown(),
1630 shift = wxIsShiftDown();
1631 switch ( ctrl + shift )
a37d422a 1632 {
cf6e951c
VZ
1633 default:
1634 wxFAIL_MSG( _T("how many modifiers have we got?") );
1635 // fall through
1636
1637 case 0:
1638 case 2:
1639 break;
1640
1641 case 1:
1642 // either Ctrl or Shift pressed
1643 if ( ctrl )
1644 {
1645 switch ( vkey )
1646 {
1647 case 'C':
1648 case 'V':
1649 case 'X':
1650 case VK_INSERT:
1651 case VK_DELETE:
1652 case VK_HOME:
1653 case VK_END:
1654 return FALSE;
1655 }
1656 }
1657 else // Shift is pressed
1658 {
1659 if ( vkey == VK_INSERT || vkey == VK_DELETE )
1660 return FALSE;
1661 }
a37d422a
VZ
1662 }
1663 }
1664 }
1665
1666 return wxControl::MSWShouldPreProcessMessage(pMsg);
1667}
1668
2bda0e17
KB
1669void wxTextCtrl::OnChar(wxKeyEvent& event)
1670{
77e00fe9 1671 switch ( event.GetKeyCode() )
cd471848 1672 {
cd471848 1673 case WXK_RETURN:
818d407a 1674 if ( !HasFlag(wxTE_MULTILINE) )
cd471848
VZ
1675 {
1676 wxCommandEvent event(wxEVT_COMMAND_TEXT_ENTER, m_windowId);
bfbd6dc1 1677 InitCommandEvent(event);
f6bcfd97 1678 event.SetString(GetValue());
cd471848
VZ
1679 if ( GetEventHandler()->ProcessEvent(event) )
1680 return;
1681 }
5fb9fcfc
VZ
1682 //else: multiline controls need Enter for themselves
1683
1684 break;
4d91c1d1 1685
cd471848 1686 case WXK_TAB:
818d407a 1687 // always produce navigation event -- even if we process TAB
319fefa9 1688 // ourselves the fact that we got here means that the user code
818d407a 1689 // decided to skip processing of this TAB -- probably to let it
319fefa9 1690 // do its default job.
818d407a
VZ
1691
1692 // ok, so this is getting absolutely ridiculous but I don't see
1693 // any other way to fix this bug: when a multiline text control is
1694 // inside a wxFrame, we need to generate the navigation event as
1695 // otherwise nothing happens at all, but when the same control is
1696 // created inside a dialog, IsDialogMessage() *does* switch focus
1697 // all by itself and so if we do it here as well, it is advanced
1698 // twice and goes to the next control... to prevent this from
1699 // happening we're doing this ugly check, the logic being that if
1700 // we don't have focus then it had been already changed to the next
1701 // control
1702 //
1703 // the right thing to do would, of course, be to understand what
1704 // the hell is IsDialogMessage() doing but this is beyond my feeble
1705 // forces at the moment unfortunately
1706 if ( FindFocus() == this )
cd471848 1707 {
5fb9fcfc
VZ
1708 wxNavigationKeyEvent eventNav;
1709 eventNav.SetDirection(!event.ShiftDown());
8614c467 1710 eventNav.SetWindowChange(event.ControlDown());
5fb9fcfc 1711 eventNav.SetEventObject(this);
39136494 1712
d9506e77 1713 if ( GetParent()->GetEventHandler()->ProcessEvent(eventNav) )
cd471848
VZ
1714 return;
1715 }
341c92a8 1716 break;
cd471848 1717 }
39136494 1718
8614c467 1719 // no, we didn't process it
42e69d6b 1720 event.Skip();
2bda0e17
KB
1721}
1722
c140b7e7 1723WXLRESULT wxTextCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
0cf5b099 1724{
c140b7e7 1725 WXLRESULT lRc = wxTextCtrlBase::MSWWindowProc(nMsg, wParam, lParam);
e7e91e03 1726
0cf5b099
VZ
1727 if ( nMsg == WM_GETDLGCODE )
1728 {
2b5f62a0
VZ
1729 // we always want the chars and the arrows: the arrows for navigation
1730 // and the chars because we want Ctrl-C to work even in a read only
1731 // control
1732 long lDlgCode = DLGC_WANTCHARS | DLGC_WANTARROWS;
1733
080c709f
VZ
1734 if ( IsEditable() )
1735 {
080c709f
VZ
1736 // we may have several different cases:
1737 // 1. normal case: both TAB and ENTER are used for dlg navigation
1738 // 2. ctrl which wants TAB for itself: ENTER is used to pass to the
1739 // next control in the dialog
1740 // 3. ctrl which wants ENTER for itself: TAB is used for dialog
1741 // navigation
1742 // 4. ctrl which wants both TAB and ENTER: Ctrl-ENTER is used to go
1743 // to the next control
1744
1745 // the multiline edit control should always get <Return> for itself
1746 if ( HasFlag(wxTE_PROCESS_ENTER) || HasFlag(wxTE_MULTILINE) )
1747 lDlgCode |= DLGC_WANTMESSAGE;
1748
1749 if ( HasFlag(wxTE_PROCESS_TAB) )
1750 lDlgCode |= DLGC_WANTTAB;
1751
1752 lRc |= lDlgCode;
1753 }
1754 else // !editable
1755 {
e52d9c78
VZ
1756 // NB: use "=", not "|=" as the base class version returns the
1757 // same flags is this state as usual (i.e. including
1758 // DLGC_WANTMESSAGE). This is strange (how does it work in the
1759 // native Win32 apps?) but for now live with it.
2b5f62a0 1760 lRc = lDlgCode;
080c709f 1761 }
0cf5b099
VZ
1762 }
1763
e7e91e03 1764 return lRc;
129223d6
VZ
1765}
1766
1767// ----------------------------------------------------------------------------
1768// text control event processing
1769// ----------------------------------------------------------------------------
1770
5036ea90
VZ
1771bool wxTextCtrl::SendUpdateEvent()
1772{
1773 // is event reporting suspended?
1774 if ( m_suppressNextUpdate )
1775 {
1776 // do process the next one
1777 m_suppressNextUpdate = FALSE;
1778
1779 return FALSE;
1780 }
1781
1782 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, GetId());
1783 InitCommandEvent(event);
1784 event.SetString(GetValue());
1785
1786 return ProcessCommand(event);
1787}
1788
debe6624 1789bool wxTextCtrl::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
2bda0e17 1790{
5036ea90 1791 switch ( param )
789295bf
VZ
1792 {
1793 case EN_SETFOCUS:
1794 case EN_KILLFOCUS:
1795 {
1796 wxFocusEvent event(param == EN_KILLFOCUS ? wxEVT_KILL_FOCUS
d7eee191
VZ
1797 : wxEVT_SET_FOCUS,
1798 m_windowId);
5036ea90 1799 event.SetEventObject(this);
789295bf
VZ
1800 GetEventHandler()->ProcessEvent(event);
1801 }
1802 break;
ae29de83 1803
789295bf 1804 case EN_CHANGE:
5036ea90 1805 SendUpdateEvent();
789295bf 1806 break;
2bda0e17 1807
b12915c1 1808 case EN_MAXTEXT:
5036ea90 1809 // the text size limit has been hit -- try to increase it
d7eee191
VZ
1810 if ( !AdjustSpaceLimit() )
1811 {
1812 wxCommandEvent event(wxEVT_COMMAND_TEXT_MAXLEN, m_windowId);
1813 InitCommandEvent(event);
1814 event.SetString(GetValue());
1815 ProcessCommand(event);
1816 }
789295bf
VZ
1817 break;
1818
5036ea90 1819 // the other edit notification messages are not processed
789295bf
VZ
1820 default:
1821 return FALSE;
1822 }
1823
1824 // processed
1825 return TRUE;
2bda0e17
KB
1826}
1827
33ac7e6f 1828WXHBRUSH wxTextCtrl::OnCtlColor(WXHDC pDC, WXHWND WXUNUSED(pWnd), WXUINT WXUNUSED(nCtlColor),
788722ac
JS
1829#if wxUSE_CTL3D
1830 WXUINT message,
1831 WXWPARAM wParam,
1832 WXLPARAM lParam
1833#else
33ac7e6f
KB
1834 WXUINT WXUNUSED(message),
1835 WXWPARAM WXUNUSED(wParam),
788722ac
JS
1836 WXLPARAM WXUNUSED(lParam)
1837#endif
1838 )
f6bcfd97
BP
1839{
1840#if wxUSE_CTL3D
1841 if ( m_useCtl3D )
1842 {
1843 HBRUSH hbrush = Ctl3dCtlColorEx(message, wParam, lParam);
1844 return (WXHBRUSH) hbrush;
1845 }
1846#endif // wxUSE_CTL3D
1847
1848 HDC hdc = (HDC)pDC;
f6bcfd97
BP
1849 wxColour colBack = GetBackgroundColour();
1850
1851 if (!IsEnabled() && (GetWindowStyle() & wxTE_MULTILINE) == 0)
a756f210 1852 colBack = wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE);
f6bcfd97
BP
1853
1854 ::SetBkColor(hdc, wxColourToRGB(colBack));
1855 ::SetTextColor(hdc, wxColourToRGB(GetForegroundColour()));
1856
1857 wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBack, wxSOLID);
1858
1859 return (WXHBRUSH)brush->GetResourceHandle();
1860}
1861
d7eee191 1862bool wxTextCtrl::AdjustSpaceLimit()
789295bf 1863{
d7eee191
VZ
1864 unsigned int limit = ::SendMessage(GetHwnd(), EM_GETLIMITTEXT, 0, 0);
1865
1866 // HACK: we try to automatically extend the limit for the amount of text
1867 // to allow (interactively) entering more than 64Kb of text under
1868 // Win9x but we shouldn't reset the text limit which was previously
1869 // set explicitly with SetMaxLength()
1870 //
1871 // we could solve this by storing the limit we set in wxTextCtrl but
1872 // to save space we prefer to simply test here the actual limit
1873 // value: we consider that SetMaxLength() can only be called for
1874 // values < 32Kb
1875 if ( limit < 0x8000 )
1876 {
1877 // we've got more text than limit set by SetMaxLength()
1878 return FALSE;
1879 }
1880
1881 unsigned int len = ::GetWindowTextLength(GetHwnd());
17d8ee1c 1882 if ( len >= limit )
789295bf
VZ
1883 {
1884 limit = len + 0x8000; // 32Kb
1885
5ea105e0 1886#if wxUSE_RICHEDIT
aac7e7fe 1887 if ( IsRich() )
b12915c1
VZ
1888 {
1889 // as a nice side effect, this also allows passing limit > 64Kb
1890 ::SendMessage(GetHwnd(), EM_EXLIMITTEXT, 0, limit);
1891 }
789295bf 1892 else
b12915c1
VZ
1893#endif // wxUSE_RICHEDIT
1894 {
1895 if ( limit > 0xffff )
1896 {
1897 // this will set it to a platform-dependent maximum (much more
1898 // than 64Kb under NT)
1899 limit = 0;
1900 }
1901
789295bf 1902 ::SendMessage(GetHwnd(), EM_LIMITTEXT, limit, 0);
b12915c1 1903 }
789295bf 1904 }
d7eee191
VZ
1905
1906 // we changed the limit
1907 return TRUE;
789295bf 1908}
2bda0e17 1909
a1b82138 1910bool wxTextCtrl::AcceptsFocus() const
2bda0e17 1911{
589c7163
VZ
1912 // we don't want focus if we can't be edited unless we're a multiline
1913 // control because then it might be still nice to get focus from keyboard
1914 // to be able to scroll it without mouse
1915 return (IsEditable() || IsMultiLine()) && wxControl::AcceptsFocus();
a1b82138 1916}
c085e333 1917
f68586e5 1918wxSize wxTextCtrl::DoGetBestSize() const
a1b82138
VZ
1919{
1920 int cx, cy;
1921 wxGetCharSize(GetHWND(), &cx, &cy, &GetFont());
1922
1923 int wText = DEFAULT_ITEM_WIDTH;
1924
f60e797e 1925 int hText = cy;
a1b82138
VZ
1926 if ( m_windowStyle & wxTE_MULTILINE )
1927 {
3988b155 1928 hText *= wxMax(GetNumberOfLines(), 5);
a1b82138
VZ
1929 }
1930 //else: for single line control everything is ok
1931
f60e797e
VZ
1932 // we have to add the adjustments for the control height only once, not
1933 // once per line, so do it after multiplication above
1934 hText += EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy) - cy;
1935
a1b82138 1936 return wxSize(wText, hText);
2bda0e17 1937}
a1b82138
VZ
1938
1939// ----------------------------------------------------------------------------
1940// standard handlers for standard edit menu events
1941// ----------------------------------------------------------------------------
2bda0e17 1942
bfbd6dc1 1943void wxTextCtrl::OnCut(wxCommandEvent& WXUNUSED(event))
e702ff0f
JS
1944{
1945 Cut();
1946}
1947
bfbd6dc1 1948void wxTextCtrl::OnCopy(wxCommandEvent& WXUNUSED(event))
e702ff0f
JS
1949{
1950 Copy();
1951}
1952
bfbd6dc1 1953void wxTextCtrl::OnPaste(wxCommandEvent& WXUNUSED(event))
e702ff0f
JS
1954{
1955 Paste();
1956}
1957
bfbd6dc1 1958void wxTextCtrl::OnUndo(wxCommandEvent& WXUNUSED(event))
e702ff0f
JS
1959{
1960 Undo();
1961}
1962
bfbd6dc1 1963void wxTextCtrl::OnRedo(wxCommandEvent& WXUNUSED(event))
e702ff0f
JS
1964{
1965 Redo();
1966}
1967
2eb10e2a 1968void wxTextCtrl::OnDelete(wxCommandEvent& WXUNUSED(event))
2b5f62a0
VZ
1969{
1970 long from, to;
1971 GetSelection(& from, & to);
1972 if (from != -1 && to != -1)
1973 Remove(from, to);
1974}
1975
2eb10e2a 1976void wxTextCtrl::OnSelectAll(wxCommandEvent& WXUNUSED(event))
2b5f62a0
VZ
1977{
1978 SetSelection(-1, -1);
1979}
1980
e702ff0f
JS
1981void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent& event)
1982{
1983 event.Enable( CanCut() );
1984}
1985
1986void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent& event)
1987{
1988 event.Enable( CanCopy() );
1989}
1990
1991void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent& event)
1992{
1993 event.Enable( CanPaste() );
1994}
1995
1996void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent& event)
1997{
1998 event.Enable( CanUndo() );
1999}
2000
2001void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent& event)
2002{
2003 event.Enable( CanRedo() );
2004}
2005
2b5f62a0
VZ
2006void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent& event)
2007{
2008 long from, to;
2009 GetSelection(& from, & to);
2010 event.Enable(from != -1 && to != -1 && from != to && IsEditable()) ;
2011}
2012
2013void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent& event)
2014{
2015 event.Enable(GetLastPosition() > 0);
2016}
2017
2018void wxTextCtrl::OnRightClick(wxMouseEvent& event)
2019{
2020#if wxUSE_RICHEDIT
2021 if (IsRich())
2022 {
2023 if (!m_privateContextMenu)
2024 {
2025 m_privateContextMenu = new wxMenu;
2026 m_privateContextMenu->Append(wxID_UNDO, _("&Undo"));
2027 m_privateContextMenu->Append(wxID_REDO, _("&Redo"));
2028 m_privateContextMenu->AppendSeparator();
2029 m_privateContextMenu->Append(wxID_CUT, _("Cu&t"));
2030 m_privateContextMenu->Append(wxID_COPY, _("&Copy"));
2031 m_privateContextMenu->Append(wxID_PASTE, _("&Paste"));
2032 m_privateContextMenu->Append(wxID_CLEAR, _("&Delete"));
2033 m_privateContextMenu->AppendSeparator();
2034 m_privateContextMenu->Append(wxID_SELECTALL, _("Select &All"));
2035 }
2036 PopupMenu(m_privateContextMenu, event.GetPosition());
2037 return;
2038 }
2039 else
2040#endif
2041 event.Skip();
2042}
2043
2eb10e2a 2044void wxTextCtrl::OnSetFocus(wxFocusEvent& WXUNUSED(event))
e3a6a6b2
VZ
2045{
2046 // be sure the caret remains invisible if the user had hidden it
2047 if ( !m_isNativeCaretShown )
2048 {
2049 ::HideCaret(GetHwnd());
2050 }
2051}
2052
4bc1afd5
VZ
2053// the rest of the file only deals with the rich edit controls
2054#if wxUSE_RICHEDIT
2055
c57e3339
VZ
2056// ----------------------------------------------------------------------------
2057// EN_LINK processing
2058// ----------------------------------------------------------------------------
2059
a64c3b74 2060bool wxTextCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
c57e3339
VZ
2061{
2062 NMHDR *hdr = (NMHDR* )lParam;
1dae1d00 2063 switch ( hdr->code )
c57e3339 2064 {
3bce6687 2065 case EN_MSGFILTER:
1dae1d00
VZ
2066 {
2067 const MSGFILTER *msgf = (MSGFILTER *)lParam;
2068 UINT msg = msgf->msg;
2069
2070 // this is a bit crazy but richedit 1.0 sends us all mouse
2071 // events _except_ WM_LBUTTONUP (don't ask me why) so we have
2072 // generate the wxWin events for this message manually
2073 //
2074 // NB: in fact, this is still not totally correct as it does
2075 // send us WM_LBUTTONUP if the selection was cleared by the
2076 // last click -- so currently we get 2 events in this case,
2077 // but as I don't see any obvious way to check for this I
2078 // leave this code in place because it's still better than
2079 // not getting left up events at all
2080 if ( msg == WM_LBUTTONUP )
c57e3339 2081 {
1dae1d00
VZ
2082 WXUINT flags = msgf->wParam;
2083 int x = GET_X_LPARAM(msgf->lParam),
2084 y = GET_Y_LPARAM(msgf->lParam);
2085
2086 HandleMouseEvent(msg, x, y, flags);
c57e3339 2087 }
1dae1d00 2088 }
c57e3339 2089
1dae1d00
VZ
2090 // return TRUE to process the event (and FALSE to ignore it)
2091 return TRUE;
2092
2093 case EN_LINK:
2094 {
2095 const ENLINK *enlink = (ENLINK *)hdr;
2096
2097 switch ( enlink->msg )
2098 {
2099 case WM_SETCURSOR:
2100 // ok, so it is hardcoded - do we really nee to
2101 // customize it?
2102 ::SetCursor(GetHcursorOf(wxCursor(wxCURSOR_HAND)));
2103 *result = TRUE;
2104 break;
2105
2106 case WM_MOUSEMOVE:
2107 case WM_LBUTTONDOWN:
2108 case WM_LBUTTONUP:
2109 case WM_LBUTTONDBLCLK:
2110 case WM_RBUTTONDOWN:
2111 case WM_RBUTTONUP:
2112 case WM_RBUTTONDBLCLK:
2113 // send a mouse event
2114 {
2115 static const wxEventType eventsMouse[] =
2116 {
2117 wxEVT_MOTION,
2118 wxEVT_LEFT_DOWN,
2119 wxEVT_LEFT_UP,
2120 wxEVT_LEFT_DCLICK,
2121 wxEVT_RIGHT_DOWN,
2122 wxEVT_RIGHT_UP,
2123 wxEVT_RIGHT_DCLICK,
2124 };
2125
2126 // the event ids are consecutive
2127 wxMouseEvent
2128 evtMouse(eventsMouse[enlink->msg - WM_MOUSEMOVE]);
2129
2130 InitMouseEvent(evtMouse,
2131 GET_X_LPARAM(enlink->lParam),
2132 GET_Y_LPARAM(enlink->lParam),
2133 enlink->wParam);
2134
2135 wxTextUrlEvent event(m_windowId, evtMouse,
2136 enlink->chrg.cpMin,
2137 enlink->chrg.cpMax);
2138
2139 InitCommandEvent(event);
2140
2141 *result = ProcessCommand(event);
2142 }
2143 break;
2144 }
2145 }
2146 return TRUE;
c57e3339 2147 }
7f5d8b00 2148
d86ab8e2
VZ
2149 // not processed, leave it to the base class
2150 return wxTextCtrlBase::MSWOnNotify(idCtrl, lParam, result);
c57e3339
VZ
2151}
2152
f6bcfd97
BP
2153// ----------------------------------------------------------------------------
2154// colour setting for the rich edit controls
2155// ----------------------------------------------------------------------------
2156
f6bcfd97
BP
2157bool wxTextCtrl::SetBackgroundColour(const wxColour& colour)
2158{
2159 if ( !wxTextCtrlBase::SetBackgroundColour(colour) )
2160 {
2161 // colour didn't really change
2162 return FALSE;
2163 }
2164
2165 if ( IsRich() )
2166 {
2167 // rich edit doesn't use WM_CTLCOLOR, hence we need to send
2168 // EM_SETBKGNDCOLOR additionally
2169 ::SendMessage(GetHwnd(), EM_SETBKGNDCOLOR, 0, wxColourToRGB(colour));
2170 }
2171
2172 return TRUE;
2173}
2174
2175bool wxTextCtrl::SetForegroundColour(const wxColour& colour)
2176{
2177 if ( !wxTextCtrlBase::SetForegroundColour(colour) )
2178 {
2179 // colour didn't really change
2180 return FALSE;
2181 }
2182
2183 if ( IsRich() )
2184 {
2185 // change the colour of everything
2186 CHARFORMAT cf;
2187 wxZeroMemory(cf);
2188 cf.cbSize = sizeof(cf);
2189 cf.dwMask = CFM_COLOR;
2190 cf.crTextColor = wxColourToRGB(colour);
2191 ::SendMessage(GetHwnd(), EM_SETCHARFORMAT, SCF_ALL, (LPARAM)&cf);
2192 }
2193
2194 return TRUE;
2195}
2196
4bc1afd5
VZ
2197// ----------------------------------------------------------------------------
2198// styling support for rich edit controls
2199// ----------------------------------------------------------------------------
2200
cc164686
RD
2201#if wxUSE_RICHEDIT
2202
4bc1afd5
VZ
2203bool wxTextCtrl::SetStyle(long start, long end, const wxTextAttr& style)
2204{
2205 if ( !IsRich() )
2206 {
2207 // can't do it with normal text control
2208 return FALSE;
2209 }
2210
a5aa8086
VZ
2211 // the richedit 1.0 doesn't handle setting background colour, so don't
2212 // even try to do anything if it's the only thing we want to change
e00a5d3c
JS
2213 if ( m_verRichEdit == 1 && !style.HasFont() && !style.HasTextColour() &&
2214 !style.HasLeftIndent() && !style.HasRightIndent() && !style.HasAlignment() &&
2215 !style.HasTabs() )
4bc1afd5 2216 {
be329a3d
RD
2217 // nothing to do: return TRUE if there was really nothing to do and
2218 // FALSE if we failed to set bg colour
4bc1afd5
VZ
2219 return !style.HasBackgroundColour();
2220 }
2221
2222 // order the range if needed
2223 if ( start > end )
2224 {
2225 long tmp = start;
2226 start = end;
2227 end = tmp;
2228 }
2229
2230 // we can only change the format of the selection, so select the range we
2231 // want and restore the old selection later
2232 long startOld, endOld;
2233 GetSelection(&startOld, &endOld);
2234
2235 // but do we really have to change the selection?
2236 bool changeSel = start != startOld || end != endOld;
2237
2238 if ( changeSel )
aac7e7fe 2239 {
f882d57e 2240 DoSetSelection(start, end, FALSE /* don't scroll caret into view */);
aac7e7fe 2241 }
4bc1afd5
VZ
2242
2243 // initialize CHARFORMAT struct
be329a3d
RD
2244#if wxUSE_RICHEDIT2
2245 CHARFORMAT2 cf;
2246#else
4bc1afd5 2247 CHARFORMAT cf;
be329a3d 2248#endif
a5aa8086 2249
4bc1afd5 2250 wxZeroMemory(cf);
a5aa8086
VZ
2251
2252 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2253 // CHARFORMAT in that case
2254#if wxUSE_RICHEDIT2
2255 if ( m_verRichEdit == 1 )
2256 {
2257 // this is the only thing the control is going to grok
2258 cf.cbSize = sizeof(CHARFORMAT);
2259 }
2260 else
2261#endif
2262 {
2263 // CHARFORMAT or CHARFORMAT2
2264 cf.cbSize = sizeof(cf);
2265 }
4bc1afd5
VZ
2266
2267 if ( style.HasFont() )
2268 {
aac7e7fe
VZ
2269 // VZ: CFM_CHARSET doesn't seem to do anything at all in RichEdit 2.0
2270 // but using it doesn't seem to hurt neither so leaving it for now
2271
784164e1
VZ
2272 cf.dwMask |= CFM_FACE | CFM_SIZE | CFM_CHARSET |
2273 CFM_ITALIC | CFM_BOLD | CFM_UNDERLINE;
4bc1afd5
VZ
2274
2275 // fill in data from LOGFONT but recalculate lfHeight because we need
2276 // the real height in twips and not the negative number which
2277 // wxFillLogFont() returns (this is correct in general and works with
2278 // the Windows font mapper, but not here)
2279 LOGFONT lf;
2280 wxFillLogFont(&lf, &style.GetFont());
2281 cf.yHeight = 20*style.GetFont().GetPointSize(); // 1 pt = 20 twips
2282 cf.bCharSet = lf.lfCharSet;
2283 cf.bPitchAndFamily = lf.lfPitchAndFamily;
2284 wxStrncpy( cf.szFaceName, lf.lfFaceName, WXSIZEOF(cf.szFaceName) );
2285
784164e1
VZ
2286 // also deal with underline/italic/bold attributes: note that we must
2287 // always set CFM_ITALIC &c bits in dwMask, even if we don't set the
2288 // style to allow clearing it
4bc1afd5
VZ
2289 if ( lf.lfItalic )
2290 {
4bc1afd5
VZ
2291 cf.dwEffects |= CFE_ITALIC;
2292 }
2293
2294 if ( lf.lfWeight == FW_BOLD )
2295 {
4bc1afd5
VZ
2296 cf.dwEffects |= CFE_BOLD;
2297 }
2298
2299 if ( lf.lfUnderline )
2300 {
4bc1afd5
VZ
2301 cf.dwEffects |= CFE_UNDERLINE;
2302 }
2303
2304 // strikeout fonts are not supported by wxWindows
2305 }
2306
2307 if ( style.HasTextColour() )
2308 {
2309 cf.dwMask |= CFM_COLOR;
2310 cf.crTextColor = wxColourToRGB(style.GetTextColour());
2311 }
2312
be329a3d 2313#if wxUSE_RICHEDIT2
a5aa8086 2314 if ( m_verRichEdit != 1 && style.HasBackgroundColour() )
be329a3d
RD
2315 {
2316 cf.dwMask |= CFM_BACKCOLOR;
2317 cf.crBackColor = wxColourToRGB(style.GetBackgroundColour());
2318 }
784164e1
VZ
2319#endif // wxUSE_RICHEDIT2
2320
4bc1afd5
VZ
2321 // do format the selection
2322 bool ok = ::SendMessage(GetHwnd(), EM_SETCHARFORMAT,
2323 SCF_SELECTION, (LPARAM)&cf) != 0;
2324 if ( !ok )
2325 {
2326 wxLogDebug(_T("SendMessage(EM_SETCHARFORMAT, SCF_SELECTION) failed"));
2327 }
2328
e00a5d3c
JS
2329 // now do the paragraph formatting
2330 PARAFORMAT2 pf;
2331 wxZeroMemory(pf);
2332 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2333 // PARAFORMAT in that case
2334#if wxUSE_RICHEDIT2
2335 if ( m_verRichEdit == 1 )
2336 {
2337 // this is the only thing the control is going to grok
2338 pf.cbSize = sizeof(PARAFORMAT);
2339 }
2340 else
2341#endif
2342 {
2343 // PARAFORMAT or PARAFORMAT2
2344 pf.cbSize = sizeof(pf);
2345 }
2346
2347 if (style.HasAlignment())
2348 {
2349 pf.dwMask |= PFM_ALIGNMENT;
2350 if (style.GetAlignment() == wxTEXT_ALIGNMENT_RIGHT)
2351 pf.wAlignment = PFA_RIGHT;
2352 else if (style.GetAlignment() == wxTEXT_ALIGNMENT_CENTRE)
2353 pf.wAlignment = PFA_CENTER;
2354 else if (style.GetAlignment() == wxTEXT_ALIGNMENT_JUSTIFIED)
2355 pf.wAlignment = PFA_JUSTIFY;
2356 else
2357 pf.wAlignment = PFA_LEFT;
2358 }
2359
2360 if (style.HasLeftIndent())
2361 {
2362 pf.dwMask |= PFM_STARTINDENT;
2363
2364 // Convert from 1/10 mm to TWIPS
2365 pf.dxStartIndent = (int) (((double) style.GetLeftIndent()) * mm2twips / 10.0) ;
2366
2367 // TODO: do we need to specify dxOffset?
2368 }
2369
2370 if (style.HasRightIndent())
2371 {
2372 pf.dwMask |= PFM_RIGHTINDENT;
2373
2374 // Convert from 1/10 mm to TWIPS
2375 pf.dxRightIndent = (int) (((double) style.GetRightIndent()) * mm2twips / 10.0) ;
2376 }
2377
2378 if (style.HasTabs())
2379 {
2380 pf.dwMask |= PFM_TABSTOPS;
2381
2382 const wxArrayInt& tabs = style.GetTabs();
2383
2384 pf.cTabCount = wxMin(tabs.GetCount(), MAX_TAB_STOPS);
2385 size_t i;
2386 for (i = 0; i < (size_t) pf.cTabCount; i++)
2387 {
2388 // Convert from 1/10 mm to TWIPS
2389 pf.rgxTabs[i] = (int) (((double) tabs[i]) * mm2twips / 10.0) ;
2390 }
2391 }
2392
2393 if (pf.dwMask != 0)
2394 {
2395 // do format the selection
2396 bool ok = ::SendMessage(GetHwnd(), EM_SETPARAFORMAT,
2397 0, (LPARAM) &pf) != 0;
2398 if ( !ok )
2399 {
2400 wxLogDebug(_T("SendMessage(EM_SETPARAFORMAT, 0) failed"));
2401 }
2402 }
2403
4bc1afd5
VZ
2404 if ( changeSel )
2405 {
2406 // restore the original selection
aac7e7fe 2407 DoSetSelection(startOld, endOld, FALSE);
4bc1afd5
VZ
2408 }
2409
2410 return ok;
2411}
f6bcfd97 2412
5bf75ae7
VZ
2413bool wxTextCtrl::SetDefaultStyle(const wxTextAttr& style)
2414{
2415 if ( !wxTextCtrlBase::SetDefaultStyle(style) )
2416 return FALSE;
2417
2418 // we have to do this or the style wouldn't apply for the text typed by the
2419 // user
2420 long posLast = GetLastPosition();
2421 SetStyle(posLast, posLast, m_defaultStyle);
2422
2423 return TRUE;
2424}
2425
80185c6c 2426bool wxTextCtrl::GetStyle(long position, wxTextAttr& style)
e00a5d3c 2427{
80185c6c
JS
2428 if ( !IsRich() )
2429 {
2430 // can't do it with normal text control
2431 return FALSE;
2432 }
2433
2434 // initialize CHARFORMAT struct
2435#if wxUSE_RICHEDIT2
2436 CHARFORMAT2 cf;
2437#else
2438 CHARFORMAT cf;
2439#endif
2440
2441 wxZeroMemory(cf);
2442
2443 // we can't use CHARFORMAT2 with RichEdit 1.0, so pretend it is a simple
2444 // CHARFORMAT in that case
2445#if wxUSE_RICHEDIT2
2446 if ( m_verRichEdit == 1 )
2447 {
2448 // this is the only thing the control is going to grok
2449 cf.cbSize = sizeof(CHARFORMAT);
2450 }
2451 else
2452#endif
2453 {
2454 // CHARFORMAT or CHARFORMAT2
2455 cf.cbSize = sizeof(cf);
2456 }
2457 // we can only change the format of the selection, so select the range we
2458 // want and restore the old selection later
2459 long startOld, endOld;
2460 GetSelection(&startOld, &endOld);
2461
2462 // but do we really have to change the selection?
2463 bool changeSel = position != startOld || position != endOld;
2464
2465 if ( changeSel )
2466 {
2467 DoSetSelection(position, position, FALSE /* don't scroll caret into view */);
2468 }
2469
2470 // get the selection formatting
2471 (void) ::SendMessage(GetHwnd(), EM_GETCHARFORMAT,
2472 SCF_SELECTION, (LPARAM)&cf) ;
2473
2474 LOGFONT lf;
2475 lf.lfHeight = cf.yHeight;
2476 lf.lfWidth = 0;
2477 lf.lfCharSet = ANSI_CHARSET; // FIXME: how to get correct charset?
2478 lf.lfClipPrecision = 0;
2479 lf.lfEscapement = 0;
2480 wxStrcpy(lf.lfFaceName, cf.szFaceName);
2481 if (cf.dwEffects & CFE_ITALIC)
2482 lf.lfItalic = TRUE;
2483 lf.lfOrientation = 0;
2484 lf.lfPitchAndFamily = cf.bPitchAndFamily;
2485 lf.lfQuality = 0;
2486 if (cf.dwEffects & CFE_STRIKEOUT)
2487 lf.lfStrikeOut = TRUE;
2488 if (cf.dwEffects & CFE_UNDERLINE)
2489 lf.lfUnderline = TRUE;
2490 if (cf.dwEffects & CFE_BOLD)
2491 lf.lfWeight = FW_BOLD;
2492
2493 wxFont font = wxCreateFontFromLogFont(& lf);
2494 if (font.Ok())
2495 {
2496 style.SetFont(font);
2497 }
2498 style.SetTextColour(wxColour(cf.crTextColor));
2499
2500#if wxUSE_RICHEDIT2
2501 if ( m_verRichEdit != 1 )
2502 {
2503 // cf.dwMask |= CFM_BACKCOLOR;
2504 style.SetBackgroundColour(wxColour(cf.crBackColor));
2505 }
2506#endif // wxUSE_RICHEDIT2
2507
2508 // now get the paragraph formatting
2509 PARAFORMAT2 pf;
2510 wxZeroMemory(pf);
2511 // we can't use PARAFORMAT2 with RichEdit 1.0, so pretend it is a simple
2512 // PARAFORMAT in that case
2513#if wxUSE_RICHEDIT2
2514 if ( m_verRichEdit == 1 )
2515 {
2516 // this is the only thing the control is going to grok
2517 pf.cbSize = sizeof(PARAFORMAT);
2518 }
2519 else
2520#endif
2521 {
2522 // PARAFORMAT or PARAFORMAT2
2523 pf.cbSize = sizeof(pf);
2524 }
2525
2526 // do format the selection
2527 (void) ::SendMessage(GetHwnd(), EM_GETPARAFORMAT, 0, (LPARAM) &pf) ;
2528
2529 style.SetLeftIndent( (int) ((double) pf.dxStartIndent * twips2mm * 10.0) );
2530 style.SetRightIndent( (int) ((double) pf.dxRightIndent * twips2mm * 10.0) );
2531
2532 if (pf.wAlignment == PFA_CENTER)
2533 style.SetAlignment(wxTEXT_ALIGNMENT_CENTRE);
2534 else if (pf.wAlignment == PFA_RIGHT)
2535 style.SetAlignment(wxTEXT_ALIGNMENT_RIGHT);
2536 else if (pf.wAlignment == PFA_JUSTIFY)
2537 style.SetAlignment(wxTEXT_ALIGNMENT_JUSTIFIED);
2538 else
2539 style.SetAlignment(wxTEXT_ALIGNMENT_LEFT);
2540
2541 wxArrayInt tabStops;
2542 size_t i;
2543 for (i = 0; i < (size_t) pf.cTabCount; i++)
2544 {
2545 tabStops[i] = (int) ((double) (pf.rgxTabs[i] & 0xFFFF) * twips2mm * 10.0) ;
2546 }
2547
2548 if ( changeSel )
2549 {
2550 // restore the original selection
2551 DoSetSelection(startOld, endOld, FALSE);
2552 }
2553
2554 return TRUE;
e00a5d3c
JS
2555}
2556
cc164686
RD
2557#endif
2558
b12915c1
VZ
2559// ----------------------------------------------------------------------------
2560// wxRichEditModule
2561// ----------------------------------------------------------------------------
2562
b12915c1
VZ
2563bool wxRichEditModule::OnInit()
2564{
2565 // don't do anything - we will load it when needed
2566 return TRUE;
2567}
2568
2569void wxRichEditModule::OnExit()
2570{
136cb3c7 2571 for ( size_t i = 0; i < WXSIZEOF(ms_hRichEdit); i++ )
b12915c1 2572 {
a5aa8086
VZ
2573 if ( ms_hRichEdit[i] )
2574 {
2575 ::FreeLibrary(ms_hRichEdit[i]);
8c74e477 2576 ms_hRichEdit[i] = NULL;
a5aa8086 2577 }
b12915c1
VZ
2578 }
2579}
2580
2581/* static */
2582bool wxRichEditModule::Load(int version)
2583{
a5aa8086
VZ
2584 // we don't support loading richedit 3.0 as I don't know how to distinguish
2585 // it from 2.0 anyhow
2586 wxCHECK_MSG( version == 1 || version == 2, FALSE,
b12915c1
VZ
2587 _T("incorrect richedit control version requested") );
2588
a5aa8086
VZ
2589 // make it the index in the array
2590 version--;
2591
a5aa8086 2592 if ( ms_hRichEdit[version] == (HINSTANCE)-1 )
b12915c1 2593 {
a5aa8086
VZ
2594 // we had already tried to load it and failed
2595 return FALSE;
b12915c1
VZ
2596 }
2597
28978e0c
VZ
2598 if ( ms_hRichEdit[version] )
2599 {
2600 // we've already got this one
2601 return TRUE;
2602 }
2603
a5aa8086
VZ
2604 wxString dllname = version ? _T("riched20") : _T("riched32");
2605 dllname += _T(".dll");
b12915c1 2606
a5aa8086 2607 ms_hRichEdit[version] = ::LoadLibrary(dllname);
b12915c1 2608
a5aa8086 2609 if ( !ms_hRichEdit[version] )
b12915c1
VZ
2610 {
2611 wxLogSysError(_("Could not load Rich Edit DLL '%s'"), dllname.c_str());
2612
a5aa8086 2613 ms_hRichEdit[version] = (HINSTANCE)-1;
b12915c1
VZ
2614
2615 return FALSE;
2616 }
2617
2618 return TRUE;
2619}
2620
2621#endif // wxUSE_RICHEDIT
2622
1e6feb95 2623#endif // wxUSE_TEXTCTRL