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