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