]> git.saurik.com Git - wxWidgets.git/blame - src/common/textcmn.cpp
cleaning up common OSX code
[wxWidgets.git] / src / common / textcmn.cpp
CommitLineData
a1b82138 1///////////////////////////////////////////////////////////////////////////////
d5da0ce7 2// Name: src/common/textcmn.cpp
a1b82138
VZ
3// Purpose: implementation of platform-independent functions of wxTextCtrl
4// Author: Julian Smart
5// Modified by:
6// Created: 13.07.99
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) wxWidgets team
65571936 9// Licence: wxWindows licence
a1b82138
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
1e6feb95 15
a1b82138
VZ
16// for compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20 #pragma hdrstop
21#endif
22
d5da0ce7
WS
23#ifndef WX_PRECOMP
24 #include "wx/event.h"
25#endif // WX_PRECOMP
26
1e6feb95
VZ
27#if wxUSE_TEXTCTRL
28
d5da0ce7
WS
29#include "wx/textctrl.h"
30
a1b82138 31#ifndef WX_PRECOMP
0efe5ba7
VZ
32 #include "wx/intl.h"
33 #include "wx/log.h"
a1b82138
VZ
34#endif // WX_PRECOMP
35
36#include "wx/ffile.h"
37
38// ----------------------------------------------------------------------------
39// macros
40// ----------------------------------------------------------------------------
41
42// we don't have any objects of type wxTextCtrlBase in the program, only
43// wxTextCtrl, so this cast is safe
44#define TEXTCTRL(ptr) ((wxTextCtrl *)(ptr))
45
46// ============================================================================
47// implementation
48// ============================================================================
49
c57e3339
VZ
50IMPLEMENT_DYNAMIC_CLASS(wxTextUrlEvent, wxCommandEvent)
51
52DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED)
53DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER)
54DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_URL)
d7eee191 55DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_MAXLEN)
c57e3339 56
9d112688
JS
57IMPLEMENT_ABSTRACT_CLASS(wxTextCtrlBase, wxControl)
58
44cc96a8
JS
59// ============================================================================
60// wxTextAttr implementation
61// ============================================================================
4bc1afd5 62
e00a5d3c
JS
63wxTextAttr::wxTextAttr(const wxColour& colText,
64 const wxColour& colBack,
65 const wxFont& font,
44cc96a8 66 wxTextAttrAlignment alignment): m_textAlignment(alignment), m_colText(colText), m_colBack(colBack)
e00a5d3c 67{
44cc96a8
JS
68 Init();
69
e00a5d3c
JS
70 if (m_colText.Ok()) m_flags |= wxTEXT_ATTR_TEXT_COLOUR;
71 if (m_colBack.Ok()) m_flags |= wxTEXT_ATTR_BACKGROUND_COLOUR;
e00a5d3c
JS
72 if (alignment != wxTEXT_ALIGNMENT_DEFAULT)
73 m_flags |= wxTEXT_ATTR_ALIGNMENT;
44cc96a8
JS
74
75 GetFontAttributes(font);
e00a5d3c
JS
76}
77
44cc96a8 78// Initialisation
e00a5d3c
JS
79void wxTextAttr::Init()
80{
81 m_textAlignment = wxTEXT_ALIGNMENT_DEFAULT;
82 m_flags = 0;
83 m_leftIndent = 0;
89b67477 84 m_leftSubIndent = 0;
e00a5d3c 85 m_rightIndent = 0;
44cc96a8
JS
86
87 m_fontSize = 12;
88 m_fontStyle = wxNORMAL;
89 m_fontWeight = wxNORMAL;
90 m_fontUnderlined = false;
91 m_fontEncoding = wxFONTENCODING_DEFAULT;
92
93 m_paragraphSpacingAfter = 0;
94 m_paragraphSpacingBefore = 0;
95 m_lineSpacing = 0;
96 m_bulletStyle = wxTEXT_ATTR_BULLET_STYLE_NONE;
97 m_textEffects = wxTEXT_ATTR_EFFECT_NONE;
98 m_textEffectFlags = wxTEXT_ATTR_EFFECT_NONE;
99 m_outlineLevel = 0;
100 m_bulletNumber = 0;
101}
102
103// Copy
104void wxTextAttr::Copy(const wxTextAttr& attr)
105{
106 m_colText = attr.m_colText;
107 m_colBack = attr.m_colBack;
108 m_textAlignment = attr.m_textAlignment;
109 m_leftIndent = attr.m_leftIndent;
110 m_leftSubIndent = attr.m_leftSubIndent;
111 m_rightIndent = attr.m_rightIndent;
112 m_tabs = attr.m_tabs;
113 m_flags = attr.m_flags;
114
115 m_fontSize = attr.m_fontSize;
116 m_fontStyle = attr.m_fontStyle;
117 m_fontWeight = attr.m_fontWeight;
118 m_fontUnderlined = attr.m_fontUnderlined;
119 m_fontFaceName = attr.m_fontFaceName;
120 m_fontEncoding = attr.m_fontEncoding;
121 m_textEffects = attr.m_textEffects;
122 m_textEffectFlags = attr.m_textEffectFlags;
123
124 m_paragraphSpacingAfter = attr.m_paragraphSpacingAfter;
125 m_paragraphSpacingBefore = attr.m_paragraphSpacingBefore;
126 m_lineSpacing = attr.m_lineSpacing;
127 m_characterStyleName = attr.m_characterStyleName;
128 m_paragraphStyleName = attr.m_paragraphStyleName;
129 m_listStyleName = attr.m_listStyleName;
130 m_bulletStyle = attr.m_bulletStyle;
131 m_bulletNumber = attr.m_bulletNumber;
132 m_bulletText = attr.m_bulletText;
133 m_bulletFont = attr.m_bulletFont;
134 m_bulletName = attr.m_bulletName;
135 m_outlineLevel = attr.m_outlineLevel;
136
137 m_urlTarget = attr.m_urlTarget;
138}
139
140// operators
141void wxTextAttr::operator= (const wxTextAttr& attr)
142{
143 Copy(attr);
144}
145
146// Equality test
147bool wxTextAttr::operator== (const wxTextAttr& attr) const
148{
149 return GetFlags() == attr.GetFlags() &&
150
151 GetTextColour() == attr.GetTextColour() &&
152 GetBackgroundColour() == attr.GetBackgroundColour() &&
153
154 GetAlignment() == attr.GetAlignment() &&
155 GetLeftIndent() == attr.GetLeftIndent() &&
156 GetLeftSubIndent() == attr.GetLeftSubIndent() &&
157 GetRightIndent() == attr.GetRightIndent() &&
158 TabsEq(GetTabs(), attr.GetTabs()) &&
159
160 GetParagraphSpacingAfter() == attr.GetParagraphSpacingAfter() &&
161 GetParagraphSpacingBefore() == attr.GetParagraphSpacingBefore() &&
162 GetLineSpacing() == attr.GetLineSpacing() &&
163 GetCharacterStyleName() == attr.GetCharacterStyleName() &&
164 GetParagraphStyleName() == attr.GetParagraphStyleName() &&
165 GetListStyleName() == attr.GetListStyleName() &&
166
167 GetBulletStyle() == attr.GetBulletStyle() &&
168 GetBulletText() == attr.GetBulletText() &&
169 GetBulletNumber() == attr.GetBulletNumber() &&
170 GetBulletFont() == attr.GetBulletFont() &&
171 GetBulletName() == attr.GetBulletName() &&
172
173 GetTextEffects() == attr.GetTextEffects() &&
174 GetTextEffectFlags() == attr.GetTextEffectFlags() &&
175
176 GetOutlineLevel() == attr.GetOutlineLevel() &&
177
178 GetFontSize() == attr.GetFontSize() &&
179 GetFontStyle() == attr.GetFontStyle() &&
180 GetFontWeight() == attr.GetFontWeight() &&
181 GetFontUnderlined() == attr.GetFontUnderlined() &&
182 GetFontFaceName() == attr.GetFontFaceName() &&
183 GetFontEncoding() == attr.GetFontEncoding() &&
184
185 GetURL() == attr.GetURL();
186}
187
188// Partial equality test taking flags into account
189bool wxTextAttr::EqPartial(const wxTextAttr& attr, int flags) const
190{
191 if ((flags & wxTEXT_ATTR_TEXT_COLOUR) && GetTextColour() != attr.GetTextColour())
192 return false;
193
194 if ((flags & wxTEXT_ATTR_BACKGROUND_COLOUR) && GetBackgroundColour() != attr.GetBackgroundColour())
195 return false;
196
197 if ((flags & wxTEXT_ATTR_FONT_FACE) &&
198 GetFontFaceName() != attr.GetFontFaceName())
199 return false;
200
201 if ((flags & wxTEXT_ATTR_FONT_SIZE) &&
202 GetFontSize() != attr.GetFontSize())
203 return false;
204
205 if ((flags & wxTEXT_ATTR_FONT_WEIGHT) &&
206 GetFontWeight() != attr.GetFontWeight())
207 return false;
208
209 if ((flags & wxTEXT_ATTR_FONT_ITALIC) &&
210 GetFontStyle() != attr.GetFontStyle())
211 return false;
212
213 if ((flags & wxTEXT_ATTR_FONT_UNDERLINE) &&
214 GetFontUnderlined() != attr.GetFontUnderlined())
215 return false;
216
217 if ((flags & wxTEXT_ATTR_FONT_ENCODING) &&
218 GetFontEncoding() != attr.GetFontEncoding())
219 return false;
220
221 if ((flags & wxTEXT_ATTR_URL) && GetURL() != attr.GetURL())
222 return false;
223
224 if ((flags & wxTEXT_ATTR_ALIGNMENT) && GetAlignment() != attr.GetAlignment())
225 return false;
226
227 if ((flags & wxTEXT_ATTR_LEFT_INDENT) &&
228 ((GetLeftIndent() != attr.GetLeftIndent()) || (GetLeftSubIndent() != attr.GetLeftSubIndent())))
229 return false;
230
231 if ((flags & wxTEXT_ATTR_RIGHT_INDENT) &&
232 (GetRightIndent() != attr.GetRightIndent()))
233 return false;
234
235 if ((flags & wxTEXT_ATTR_PARA_SPACING_AFTER) &&
236 (GetParagraphSpacingAfter() != attr.GetParagraphSpacingAfter()))
237 return false;
238
239 if ((flags & wxTEXT_ATTR_PARA_SPACING_BEFORE) &&
240 (GetParagraphSpacingBefore() != attr.GetParagraphSpacingBefore()))
241 return false;
242
243 if ((flags & wxTEXT_ATTR_LINE_SPACING) &&
244 (GetLineSpacing() != attr.GetLineSpacing()))
245 return false;
246
247 if ((flags & wxTEXT_ATTR_CHARACTER_STYLE_NAME) &&
248 (GetCharacterStyleName() != attr.GetCharacterStyleName()))
249 return false;
250
251 if ((flags & wxTEXT_ATTR_PARAGRAPH_STYLE_NAME) &&
252 (GetParagraphStyleName() != attr.GetParagraphStyleName()))
253 return false;
254
255 if ((flags & wxTEXT_ATTR_LIST_STYLE_NAME) &&
256 (GetListStyleName() != attr.GetListStyleName()))
257 return false;
258
259 if ((flags & wxTEXT_ATTR_BULLET_STYLE) &&
260 (GetBulletStyle() != attr.GetBulletStyle()))
261 return false;
262
263 if ((flags & wxTEXT_ATTR_BULLET_NUMBER) &&
264 (GetBulletNumber() != attr.GetBulletNumber()))
265 return false;
266
267 if ((flags & wxTEXT_ATTR_BULLET_TEXT) &&
268 (GetBulletText() != attr.GetBulletText()) &&
269 (GetBulletFont() != attr.GetBulletFont()))
270 return false;
271
272 if ((flags & wxTEXT_ATTR_BULLET_NAME) &&
273 (GetBulletName() != attr.GetBulletName()))
274 return false;
275
276 if ((flags & wxTEXT_ATTR_TABS) &&
277 !TabsEq(GetTabs(), attr.GetTabs()))
278 return false;
279
280 if ((flags & wxTEXT_ATTR_PAGE_BREAK) &&
281 (HasPageBreak() != attr.HasPageBreak()))
282 return false;
283
284 if (flags & wxTEXT_ATTR_EFFECTS)
285 {
286 if (HasTextEffects() != attr.HasTextEffects())
287 return false;
288 if (!BitlistsEqPartial(GetTextEffects(), attr.GetTextEffects(), attr.GetTextEffectFlags()))
289 return false;
290 }
291
292 if ((flags & wxTEXT_ATTR_OUTLINE_LEVEL) &&
293 (GetOutlineLevel() != attr.GetOutlineLevel()))
294 return false;
295
296 return true;
297}
298
299// Create font from font attributes.
300wxFont wxTextAttr::CreateFont() const
301{
302 int fontSize = 10;
303 if (HasFontSize())
304 fontSize = GetFontSize();
305
306 int fontStyle = wxNORMAL;
307 if (HasFontItalic())
308 fontStyle = GetFontStyle();
309
310 int fontWeight = wxNORMAL;
311 if (HasFontWeight())
312 fontWeight = GetFontWeight();
313
314 bool underlined = false;
315 if (HasFontUnderlined())
316 underlined = GetFontUnderlined();
317
318 wxString fontFaceName;
319 if (HasFontFaceName())
320 fontFaceName = GetFontFaceName();
321
322 wxFontEncoding encoding = wxFONTENCODING_DEFAULT;
323 if (HasFontEncoding())
324 encoding = GetFontEncoding();
325
326 wxFont font(fontSize, wxDEFAULT, fontStyle, fontWeight, underlined, fontFaceName, encoding);
327#ifdef __WXMAC__
328 font.SetNoAntiAliasing(true);
329#endif
330 return font;
331}
332
333// Get attributes from font.
334bool wxTextAttr::GetFontAttributes(const wxFont& font, int flags)
335{
336 if (!font.Ok())
337 return false;
338
339 if (flags & wxTEXT_ATTR_FONT_SIZE)
340 m_fontSize = font.GetPointSize();
341
342 if (flags & wxTEXT_ATTR_FONT_ITALIC)
343 m_fontStyle = font.GetStyle();
344
345 if (flags & wxTEXT_ATTR_FONT_WEIGHT)
346 m_fontWeight = font.GetWeight();
347
348 if (flags & wxTEXT_ATTR_FONT_UNDERLINE)
349 m_fontUnderlined = font.GetUnderlined();
350
351 if (flags & wxTEXT_ATTR_FONT_FACE)
352 m_fontFaceName = font.GetFaceName();
353
354 if (flags & wxTEXT_ATTR_FONT_ENCODING)
355 m_fontEncoding = font.GetEncoding();
356
c4076626
JS
357 m_flags |= flags;
358
44cc96a8
JS
359 return true;
360}
361
362bool wxTextAttr::Apply(const wxTextAttr& style, const wxTextAttr* compareWith)
363{
364 wxTextAttr& destStyle = (*this);
365
366 if (style.HasFontWeight())
367 {
368 if (!(compareWith && compareWith->HasFontWeight() && compareWith->GetFontWeight() == style.GetFontWeight()))
369 destStyle.SetFontWeight(style.GetFontWeight());
370 }
371
372 if (style.HasFontSize())
373 {
374 if (!(compareWith && compareWith->HasFontSize() && compareWith->GetFontSize() == style.GetFontSize()))
375 destStyle.SetFontSize(style.GetFontSize());
376 }
377
378 if (style.HasFontItalic())
379 {
380 if (!(compareWith && compareWith->HasFontItalic() && compareWith->GetFontStyle() == style.GetFontStyle()))
381 destStyle.SetFontStyle(style.GetFontStyle());
382 }
383
384 if (style.HasFontUnderlined())
385 {
386 if (!(compareWith && compareWith->HasFontUnderlined() && compareWith->GetFontUnderlined() == style.GetFontUnderlined()))
387 destStyle.SetFontUnderlined(style.GetFontUnderlined());
388 }
389
390 if (style.HasFontFaceName())
391 {
392 if (!(compareWith && compareWith->HasFontFaceName() && compareWith->GetFontFaceName() == style.GetFontFaceName()))
393 destStyle.SetFontFaceName(style.GetFontFaceName());
394 }
395
396 if (style.HasFontEncoding())
397 {
398 if (!(compareWith && compareWith->HasFontEncoding() && compareWith->GetFontEncoding() == style.GetFontEncoding()))
399 destStyle.SetFontEncoding(style.GetFontEncoding());
400 }
401
402 if (style.GetTextColour().Ok() && style.HasTextColour())
403 {
404 if (!(compareWith && compareWith->HasTextColour() && compareWith->GetTextColour() == style.GetTextColour()))
405 destStyle.SetTextColour(style.GetTextColour());
406 }
407
408 if (style.GetBackgroundColour().Ok() && style.HasBackgroundColour())
409 {
410 if (!(compareWith && compareWith->HasBackgroundColour() && compareWith->GetBackgroundColour() == style.GetBackgroundColour()))
411 destStyle.SetBackgroundColour(style.GetBackgroundColour());
412 }
413
414 if (style.HasAlignment())
415 {
416 if (!(compareWith && compareWith->HasAlignment() && compareWith->GetAlignment() == style.GetAlignment()))
417 destStyle.SetAlignment(style.GetAlignment());
418 }
419
420 if (style.HasTabs())
421 {
422 if (!(compareWith && compareWith->HasTabs() && TabsEq(compareWith->GetTabs(), style.GetTabs())))
423 destStyle.SetTabs(style.GetTabs());
424 }
425
426 if (style.HasLeftIndent())
427 {
428 if (!(compareWith && compareWith->HasLeftIndent() && compareWith->GetLeftIndent() == style.GetLeftIndent()
429 && compareWith->GetLeftSubIndent() == style.GetLeftSubIndent()))
430 destStyle.SetLeftIndent(style.GetLeftIndent(), style.GetLeftSubIndent());
431 }
432
433 if (style.HasRightIndent())
434 {
435 if (!(compareWith && compareWith->HasRightIndent() && compareWith->GetRightIndent() == style.GetRightIndent()))
436 destStyle.SetRightIndent(style.GetRightIndent());
437 }
438
439 if (style.HasParagraphSpacingAfter())
440 {
441 if (!(compareWith && compareWith->HasParagraphSpacingAfter() && compareWith->GetParagraphSpacingAfter() == style.GetParagraphSpacingAfter()))
442 destStyle.SetParagraphSpacingAfter(style.GetParagraphSpacingAfter());
443 }
444
445 if (style.HasParagraphSpacingBefore())
446 {
447 if (!(compareWith && compareWith->HasParagraphSpacingBefore() && compareWith->GetParagraphSpacingBefore() == style.GetParagraphSpacingBefore()))
448 destStyle.SetParagraphSpacingBefore(style.GetParagraphSpacingBefore());
449 }
450
451 if (style.HasLineSpacing())
452 {
453 if (!(compareWith && compareWith->HasLineSpacing() && compareWith->GetLineSpacing() == style.GetLineSpacing()))
454 destStyle.SetLineSpacing(style.GetLineSpacing());
455 }
456
457 if (style.HasCharacterStyleName())
458 {
459 if (!(compareWith && compareWith->HasCharacterStyleName() && compareWith->GetCharacterStyleName() == style.GetCharacterStyleName()))
460 destStyle.SetCharacterStyleName(style.GetCharacterStyleName());
461 }
462
463 if (style.HasParagraphStyleName())
464 {
465 if (!(compareWith && compareWith->HasParagraphStyleName() && compareWith->GetParagraphStyleName() == style.GetParagraphStyleName()))
466 destStyle.SetParagraphStyleName(style.GetParagraphStyleName());
467 }
468
469 if (style.HasListStyleName())
470 {
471 if (!(compareWith && compareWith->HasListStyleName() && compareWith->GetListStyleName() == style.GetListStyleName()))
472 destStyle.SetListStyleName(style.GetListStyleName());
473 }
474
475 if (style.HasBulletStyle())
476 {
477 if (!(compareWith && compareWith->HasBulletStyle() && compareWith->GetBulletStyle() == style.GetBulletStyle()))
478 destStyle.SetBulletStyle(style.GetBulletStyle());
479 }
480
481 if (style.HasBulletText())
482 {
483 if (!(compareWith && compareWith->HasBulletText() && compareWith->GetBulletText() == style.GetBulletText()))
484 {
485 destStyle.SetBulletText(style.GetBulletText());
486 destStyle.SetBulletFont(style.GetBulletFont());
487 }
488 }
489
490 if (style.HasBulletNumber())
491 {
492 if (!(compareWith && compareWith->HasBulletNumber() && compareWith->GetBulletNumber() == style.GetBulletNumber()))
493 destStyle.SetBulletNumber(style.GetBulletNumber());
494 }
495
496 if (style.HasBulletName())
497 {
498 if (!(compareWith && compareWith->HasBulletName() && compareWith->GetBulletName() == style.GetBulletName()))
499 destStyle.SetBulletName(style.GetBulletName());
500 }
501
502 if (style.HasURL())
503 {
504 if (!(compareWith && compareWith->HasURL() && compareWith->GetURL() == style.GetURL()))
505 destStyle.SetURL(style.GetURL());
506 }
507
508 if (style.HasPageBreak())
509 {
510 if (!(compareWith && compareWith->HasPageBreak()))
511 destStyle.SetPageBreak();
512 }
513
514 if (style.HasTextEffects())
515 {
516 if (!(compareWith && compareWith->HasTextEffects() && compareWith->GetTextEffects() == style.GetTextEffects()))
517 {
518 int destBits = destStyle.GetTextEffects();
519 int destFlags = destStyle.GetTextEffectFlags();
520
521 int srcBits = style.GetTextEffects();
522 int srcFlags = style.GetTextEffectFlags();
523
524 CombineBitlists(destBits, srcBits, destFlags, srcFlags);
525
526 destStyle.SetTextEffects(destBits);
527 destStyle.SetTextEffectFlags(destFlags);
528 }
529 }
530
531 if (style.HasOutlineLevel())
532 {
533 if (!(compareWith && compareWith->HasOutlineLevel() && compareWith->GetOutlineLevel() == style.GetOutlineLevel()))
534 destStyle.SetOutlineLevel(style.GetOutlineLevel());
535 }
536
537 return true;
e00a5d3c
JS
538}
539
eda40bfc
VZ
540/* static */
541wxTextAttr wxTextAttr::Combine(const wxTextAttr& attr,
542 const wxTextAttr& attrDef,
543 const wxTextCtrlBase *text)
544{
7c3c990e
JS
545 wxFont font;
546 if (attr.HasFont())
547 font = attr.GetFont();
548
eda40bfc
VZ
549 if ( !font.Ok() )
550 {
7c3c990e
JS
551 if (attrDef.HasFont())
552 font = attrDef.GetFont();
eda40bfc
VZ
553
554 if ( text && !font.Ok() )
555 font = text->GetFont();
556 }
557
558 wxColour colFg = attr.GetTextColour();
559 if ( !colFg.Ok() )
560 {
561 colFg = attrDef.GetTextColour();
562
563 if ( text && !colFg.Ok() )
564 colFg = text->GetForegroundColour();
565 }
566
567 wxColour colBg = attr.GetBackgroundColour();
568 if ( !colBg.Ok() )
569 {
570 colBg = attrDef.GetBackgroundColour();
571
572 if ( text && !colBg.Ok() )
573 colBg = text->GetBackgroundColour();
574 }
575
e00a5d3c 576 wxTextAttr newAttr(colFg, colBg, font);
cb719f2e 577
e00a5d3c
JS
578 if (attr.HasAlignment())
579 newAttr.SetAlignment(attr.GetAlignment());
580 else if (attrDef.HasAlignment())
581 newAttr.SetAlignment(attrDef.GetAlignment());
cb719f2e 582
e00a5d3c
JS
583 if (attr.HasTabs())
584 newAttr.SetTabs(attr.GetTabs());
585 else if (attrDef.HasTabs())
586 newAttr.SetTabs(attrDef.GetTabs());
cb719f2e 587
e00a5d3c 588 if (attr.HasLeftIndent())
89b67477 589 newAttr.SetLeftIndent(attr.GetLeftIndent(), attr.GetLeftSubIndent());
e00a5d3c 590 else if (attrDef.HasLeftIndent())
89b67477 591 newAttr.SetLeftIndent(attrDef.GetLeftIndent(), attr.GetLeftSubIndent());
cb719f2e 592
e00a5d3c
JS
593 if (attr.HasRightIndent())
594 newAttr.SetRightIndent(attr.GetRightIndent());
595 else if (attrDef.HasRightIndent())
cb719f2e
WS
596 newAttr.SetRightIndent(attrDef.GetRightIndent());
597
e00a5d3c 598 return newAttr;
eda40bfc
VZ
599}
600
44cc96a8
JS
601/// Compare tabs
602bool wxTextAttr::TabsEq(const wxArrayInt& tabs1, const wxArrayInt& tabs2)
e00a5d3c 603{
44cc96a8
JS
604 if (tabs1.GetCount() != tabs2.GetCount())
605 return false;
606
607 size_t i;
608 for (i = 0; i < tabs1.GetCount(); i++)
609 {
610 if (tabs1[i] != tabs2[i])
611 return false;
612 }
613 return true;
614}
615
616// Remove attributes
617bool wxTextAttr::RemoveStyle(wxTextAttr& destStyle, const wxTextAttr& style)
618{
619 int flags = style.GetFlags();
620 int destFlags = destStyle.GetFlags();
621
622 destStyle.SetFlags(destFlags & ~flags);
623
624 return true;
625}
626
627/// Combine two bitlists, specifying the bits of interest with separate flags.
628bool wxTextAttr::CombineBitlists(int& valueA, int valueB, int& flagsA, int flagsB)
629{
630 // We want to apply B's bits to A, taking into account each's flags which indicate which bits
631 // are to be taken into account. A zero in B's bits should reset that bit in A but only if B's flags
632 // indicate it.
633
634 // First, reset the 0 bits from B. We make a mask so we're only dealing with B's zero
635 // bits at this point, ignoring any 1 bits in B or 0 bits in B that are not relevant.
636 int valueA2 = ~(~valueB & flagsB) & valueA;
637
638 // Now combine the 1 bits.
639 int valueA3 = (valueB & flagsB) | valueA2;
640
641 valueA = valueA3;
642 flagsA = (flagsA | flagsB);
643
644 return true;
645}
646
647/// Compare two bitlists
648bool wxTextAttr::BitlistsEqPartial(int valueA, int valueB, int flags)
649{
650 int relevantBitsA = valueA & flags;
651 int relevantBitsB = valueB & flags;
652 return (relevantBitsA != relevantBitsB);
e00a5d3c
JS
653}
654
44cc96a8
JS
655/// Split into paragraph and character styles
656bool wxTextAttr::SplitParaCharStyles(const wxTextAttr& style, wxTextAttr& parStyle, wxTextAttr& charStyle)
657{
658 wxTextAttr defaultCharStyle1(style);
659 wxTextAttr defaultParaStyle1(style);
660 defaultCharStyle1.SetFlags(defaultCharStyle1.GetFlags()&wxTEXT_ATTR_CHARACTER);
661 defaultParaStyle1.SetFlags(defaultParaStyle1.GetFlags()&wxTEXT_ATTR_PARAGRAPH);
662
663 charStyle.Apply(defaultCharStyle1);
664 parStyle.Apply(defaultParaStyle1);
665
666 return true;
667}
e00a5d3c 668
4bc1afd5
VZ
669// apply styling to text range
670bool wxTextCtrlBase::SetStyle(long WXUNUSED(start), long WXUNUSED(end),
671 const wxTextAttr& WXUNUSED(style))
672{
0ec1179b 673 // to be implemented in derived classes
cb719f2e 674 return false;
4bc1afd5
VZ
675}
676
e00a5d3c
JS
677// get the styling at the given position
678bool wxTextCtrlBase::GetStyle(long WXUNUSED(position), wxTextAttr& WXUNUSED(style))
679{
0ec1179b 680 // to be implemented in derived classes
cb719f2e 681 return false;
e00a5d3c
JS
682}
683
4bc1afd5 684// change default text attributes
eda40bfc 685bool wxTextCtrlBase::SetDefaultStyle(const wxTextAttr& style)
4bc1afd5 686{
c598f225
VZ
687 // keep the old attributes if the new style doesn't specify them unless the
688 // new style is empty - then reset m_defaultStyle (as there is no other way
689 // to do it)
690 if ( style.IsDefault() )
691 m_defaultStyle = style;
692 else
693 m_defaultStyle = wxTextAttr::Combine(style, m_defaultStyle, this);
eda40bfc 694
cb719f2e 695 return true;
4bc1afd5
VZ
696}
697
a1b82138
VZ
698// ----------------------------------------------------------------------------
699// file IO functions
700// ----------------------------------------------------------------------------
701
3306aec1 702bool wxTextCtrlBase::DoLoadFile(const wxString& filename, int WXUNUSED(fileType))
a1b82138 703{
1e6feb95 704#if wxUSE_FFILE
a1b82138
VZ
705 wxFFile file(filename);
706 if ( file.IsOpened() )
707 {
708 wxString text;
709 if ( file.ReadAll(&text) )
710 {
711 SetValue(text);
712
713 DiscardEdits();
714
715 m_filename = filename;
716
cb719f2e 717 return true;
a1b82138
VZ
718 }
719 }
720
721 wxLogError(_("File couldn't be loaded."));
1e6feb95 722#endif // wxUSE_FFILE
a1b82138 723
cb719f2e 724 return false;
a1b82138
VZ
725}
726
0ec1179b 727bool wxTextAreaBase::SaveFile(const wxString& filename, int fileType)
a1b82138 728{
7d8268a1 729 wxString filenameToUse = filename.empty() ? m_filename : filename;
64dcc269 730 if ( filenameToUse.empty() )
a1b82138
VZ
731 {
732 // what kind of message to give? is it an error or a program bug?
223d09f6 733 wxLogDebug(wxT("Can't save textctrl to file without filename."));
a1b82138 734
cb719f2e 735 return false;
a1b82138
VZ
736 }
737
3306aec1
JS
738 return DoSaveFile(filenameToUse, fileType);
739}
740
741bool wxTextCtrlBase::DoSaveFile(const wxString& filename, int WXUNUSED(fileType))
742{
1e6feb95 743#if wxUSE_FFILE
3306aec1 744 wxFFile file(filename, _T("w"));
a1b82138
VZ
745 if ( file.IsOpened() && file.Write(GetValue()) )
746 {
3306aec1
JS
747 // if it worked, save for future calls
748 m_filename = filename;
ee2ec18e 749
a1b82138
VZ
750 // it's not modified any longer
751 DiscardEdits();
752
cb719f2e 753 return true;
a1b82138 754 }
64dcc269 755#endif // wxUSE_FFILE
a1b82138
VZ
756
757 wxLogError(_("The text couldn't be saved."));
758
cb719f2e 759 return false;
a1b82138
VZ
760}
761
762// ----------------------------------------------------------------------------
763// stream-like insertion operator
764// ----------------------------------------------------------------------------
765
766wxTextCtrl& wxTextCtrlBase::operator<<(const wxString& s)
767{
768 AppendText(s);
769 return *TEXTCTRL(this);
770}
771
772wxTextCtrl& wxTextCtrlBase::operator<<(float f)
773{
774 wxString str;
223d09f6 775 str.Printf(wxT("%.2f"), f);
a1b82138
VZ
776 AppendText(str);
777 return *TEXTCTRL(this);
778}
779
780wxTextCtrl& wxTextCtrlBase::operator<<(double d)
781{
782 wxString str;
223d09f6 783 str.Printf(wxT("%.2f"), d);
a1b82138
VZ
784 AppendText(str);
785 return *TEXTCTRL(this);
786}
787
788wxTextCtrl& wxTextCtrlBase::operator<<(int i)
789{
790 wxString str;
223d09f6 791 str.Printf(wxT("%d"), i);
a1b82138
VZ
792 AppendText(str);
793 return *TEXTCTRL(this);
794}
795
796wxTextCtrl& wxTextCtrlBase::operator<<(long i)
797{
798 wxString str;
223d09f6 799 str.Printf(wxT("%ld"), i);
a1b82138
VZ
800 AppendText(str);
801 return *TEXTCTRL(this);
802}
803
a324a7bc 804wxTextCtrl& wxTextCtrlBase::operator<<(const wxChar c)
a1b82138
VZ
805{
806 return operator<<(wxString(c));
807}
808
809// ----------------------------------------------------------------------------
810// streambuf methods implementation
811// ----------------------------------------------------------------------------
812
15cdc341 813#if wxHAS_TEXT_WINDOW_STREAM
a1b82138 814
d73e6791 815int wxTextCtrlBase::overflow(int c)
a1b82138 816{
d73e6791 817 AppendText((wxChar)c);
a1b82138 818
d73e6791 819 // return something different from EOF
a1b82138
VZ
820 return 0;
821}
822
15cdc341 823#endif // wxHAS_TEXT_WINDOW_STREAM
a1b82138 824
94af7d45
VZ
825// ----------------------------------------------------------------------------
826// emulating key presses
827// ----------------------------------------------------------------------------
828
829bool wxTextCtrlBase::EmulateKeyPress(const wxKeyEvent& event)
830{
0ec1179b
VZ
831 // we have a native implementation for Win32 and so don't need this one
832#ifndef __WIN32__
02a48e3b 833 wxChar ch = 0;
94af7d45
VZ
834 int keycode = event.GetKeyCode();
835 switch ( keycode )
836 {
837 case WXK_NUMPAD0:
838 case WXK_NUMPAD1:
839 case WXK_NUMPAD2:
840 case WXK_NUMPAD3:
841 case WXK_NUMPAD4:
842 case WXK_NUMPAD5:
843 case WXK_NUMPAD6:
844 case WXK_NUMPAD7:
845 case WXK_NUMPAD8:
846 case WXK_NUMPAD9:
7a893a31 847 ch = (wxChar)(_T('0') + keycode - WXK_NUMPAD0);
94af7d45
VZ
848 break;
849
850 case WXK_MULTIPLY:
851 case WXK_NUMPAD_MULTIPLY:
852 ch = _T('*');
853 break;
854
855 case WXK_ADD:
856 case WXK_NUMPAD_ADD:
857 ch = _T('+');
858 break;
859
860 case WXK_SUBTRACT:
861 case WXK_NUMPAD_SUBTRACT:
862 ch = _T('-');
863 break;
864
865 case WXK_DECIMAL:
866 case WXK_NUMPAD_DECIMAL:
867 ch = _T('.');
868 break;
869
870 case WXK_DIVIDE:
871 case WXK_NUMPAD_DIVIDE:
872 ch = _T('/');
873 break;
874
cd916794
VZ
875 case WXK_DELETE:
876 case WXK_NUMPAD_DELETE:
877 // delete the character at cursor
878 {
7d8268a1
WS
879 const long pos = GetInsertionPoint();
880 if ( pos < GetLastPosition() )
cd916794
VZ
881 Remove(pos, pos + 1);
882 }
883 break;
884
885 case WXK_BACK:
886 // delete the character before the cursor
887 {
888 const long pos = GetInsertionPoint();
889 if ( pos > 0 )
890 Remove(pos - 1, pos);
891 }
892 break;
893
94af7d45 894 default:
c4d25c01
VS
895#if wxUSE_UNICODE
896 if ( event.GetUnicodeKey() )
897 {
898 ch = event.GetUnicodeKey();
899 }
900 else
901#endif
401eb3de 902 if ( keycode < 256 && keycode >= 0 && wxIsprint(keycode) )
94af7d45
VZ
903 {
904 // FIXME this is not going to work for non letters...
905 if ( !event.ShiftDown() )
906 {
401eb3de 907 keycode = wxTolower(keycode);
94af7d45
VZ
908 }
909
910 ch = (wxChar)keycode;
911 }
912 else
913 {
914 ch = _T('\0');
915 }
916 }
917
918 if ( ch )
919 {
920 WriteText(ch);
921
cb719f2e 922 return true;
94af7d45 923 }
c8fe7fda
VZ
924#else // __WIN32__
925 wxUnusedVar(event);
926#endif // !__WIN32__/__WIN32__
94af7d45 927
0ec1179b 928 return false;
18414479
VZ
929}
930
e39af974
JS
931// do the window-specific processing after processing the update event
932void wxTextCtrlBase::DoUpdateWindowUI(wxUpdateUIEvent& event)
933{
a3a4105d
VZ
934 // call inherited, but skip the wxControl's version, and call directly the
935 // wxWindow's one instead, because the only reason why we are overriding this
936 // function is that we want to use SetValue() instead of wxControl::SetLabel()
937 wxWindowBase::DoUpdateWindowUI(event);
cb719f2e 938
a3a4105d 939 // update text
e39af974
JS
940 if ( event.GetSetText() )
941 {
942 if ( event.GetText() != GetValue() )
943 SetValue(event.GetText());
cb719f2e 944 }
e39af974
JS
945}
946
efe66bbc
VZ
947// ----------------------------------------------------------------------------
948// hit testing
949// ----------------------------------------------------------------------------
950
692c9b86 951wxTextCtrlHitTestResult
0ec1179b 952wxTextAreaBase::HitTest(const wxPoint& pt, wxTextCoord *x, wxTextCoord *y) const
692c9b86
VZ
953{
954 // implement in terms of the other overload as the native ports typically
955 // can get the position and not (x, y) pair directly (although wxUniv
956 // directly gets x and y -- and so overrides this method as well)
957 long pos;
958 wxTextCtrlHitTestResult rc = HitTest(pt, &pos);
959
960 if ( rc != wxTE_HT_UNKNOWN )
961 {
962 PositionToXY(pos, x, y);
963 }
964
965 return rc;
966}
967
efe66bbc 968wxTextCtrlHitTestResult
0ec1179b 969wxTextAreaBase::HitTest(const wxPoint& WXUNUSED(pt), long * WXUNUSED(pos)) const
efe66bbc
VZ
970{
971 // not implemented
972 return wxTE_HT_UNKNOWN;
973}
e39af974 974
ee2ec18e
VZ
975// ----------------------------------------------------------------------------
976// events
977// ----------------------------------------------------------------------------
978
0ec1179b 979/* static */
fa2f57be 980bool wxTextCtrlBase::SendTextUpdatedEvent(wxWindow *win)
ee2ec18e 981{
0ec1179b 982 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, win->GetId());
ee2ec18e
VZ
983
984 // do not do this as it could be very inefficient if the text control
985 // contains a lot of text and we're not using ref-counted wxString
986 // implementation -- instead, event.GetString() will query the control for
987 // its current text if needed
0ec1179b 988 //event.SetString(win->GetValue());
ee2ec18e 989
0ec1179b 990 event.SetEventObject(win);
fa2f57be 991 return win->GetEventHandler()->ProcessEvent(event);
ee2ec18e
VZ
992}
993
ad0bae85
VZ
994#else // !wxUSE_TEXTCTRL
995
996// define this one even if !wxUSE_TEXTCTRL because it is also used by other
997// controls (wxComboBox and wxSpinCtrl)
ad0bae85
VZ
998
999DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED)
1000
1001#endif // wxUSE_TEXTCTRL/!wxUSE_TEXTCTRL