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