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