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