1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/textcmn.cpp
3 // Purpose: implementation of platform-independent functions of wxTextCtrl
4 // Author: Julian Smart
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // for compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
29 #include "wx/textctrl.h"
38 // ----------------------------------------------------------------------------
40 // ----------------------------------------------------------------------------
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))
46 // ============================================================================
48 // ============================================================================
50 IMPLEMENT_DYNAMIC_CLASS(wxTextUrlEvent
, wxCommandEvent
)
52 wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
);
53 wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_ENTER
, wxCommandEvent
);
54 wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_URL
, wxTextUrlEvent
);
55 wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_MAXLEN
, wxCommandEvent
);
57 IMPLEMENT_ABSTRACT_CLASS(wxTextCtrlBase
, wxControl
)
59 // ============================================================================
60 // wxTextAttr implementation
61 // ============================================================================
63 wxTextAttr::wxTextAttr(const wxColour
& colText
,
64 const wxColour
& colBack
,
66 wxTextAttrAlignment alignment
): m_textAlignment(alignment
), m_colText(colText
), m_colBack(colBack
)
70 if (m_colText
.Ok()) m_flags
|= wxTEXT_ATTR_TEXT_COLOUR
;
71 if (m_colBack
.Ok()) m_flags
|= wxTEXT_ATTR_BACKGROUND_COLOUR
;
72 if (alignment
!= wxTEXT_ALIGNMENT_DEFAULT
)
73 m_flags
|= wxTEXT_ATTR_ALIGNMENT
;
75 GetFontAttributes(font
);
79 void wxTextAttr::Init()
81 m_textAlignment
= wxTEXT_ALIGNMENT_DEFAULT
;
88 m_fontStyle
= wxFONTSTYLE_NORMAL
;
89 m_fontWeight
= wxFONTWEIGHT_NORMAL
;
90 m_fontUnderlined
= false;
91 m_fontEncoding
= wxFONTENCODING_DEFAULT
;
92 m_fontFamily
= wxFONTFAMILY_DEFAULT
;
94 m_paragraphSpacingAfter
= 0;
95 m_paragraphSpacingBefore
= 0;
97 m_bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_NONE
;
98 m_textEffects
= wxTEXT_ATTR_EFFECT_NONE
;
99 m_textEffectFlags
= wxTEXT_ATTR_EFFECT_NONE
;
105 void wxTextAttr::Copy(const wxTextAttr
& attr
)
107 m_colText
= attr
.m_colText
;
108 m_colBack
= attr
.m_colBack
;
109 m_textAlignment
= attr
.m_textAlignment
;
110 m_leftIndent
= attr
.m_leftIndent
;
111 m_leftSubIndent
= attr
.m_leftSubIndent
;
112 m_rightIndent
= attr
.m_rightIndent
;
113 m_tabs
= attr
.m_tabs
;
114 m_flags
= attr
.m_flags
;
116 m_fontSize
= attr
.m_fontSize
;
117 m_fontStyle
= attr
.m_fontStyle
;
118 m_fontWeight
= attr
.m_fontWeight
;
119 m_fontUnderlined
= attr
.m_fontUnderlined
;
120 m_fontFaceName
= attr
.m_fontFaceName
;
121 m_fontEncoding
= attr
.m_fontEncoding
;
122 m_fontFamily
= attr
.m_fontFamily
;
123 m_textEffects
= attr
.m_textEffects
;
124 m_textEffectFlags
= attr
.m_textEffectFlags
;
126 m_paragraphSpacingAfter
= attr
.m_paragraphSpacingAfter
;
127 m_paragraphSpacingBefore
= attr
.m_paragraphSpacingBefore
;
128 m_lineSpacing
= attr
.m_lineSpacing
;
129 m_characterStyleName
= attr
.m_characterStyleName
;
130 m_paragraphStyleName
= attr
.m_paragraphStyleName
;
131 m_listStyleName
= attr
.m_listStyleName
;
132 m_bulletStyle
= attr
.m_bulletStyle
;
133 m_bulletNumber
= attr
.m_bulletNumber
;
134 m_bulletText
= attr
.m_bulletText
;
135 m_bulletFont
= attr
.m_bulletFont
;
136 m_bulletName
= attr
.m_bulletName
;
137 m_outlineLevel
= attr
.m_outlineLevel
;
139 m_urlTarget
= attr
.m_urlTarget
;
143 void wxTextAttr::operator= (const wxTextAttr
& attr
)
149 bool wxTextAttr::operator== (const wxTextAttr
& attr
) const
151 return GetFlags() == attr
.GetFlags() &&
153 GetTextColour() == attr
.GetTextColour() &&
154 GetBackgroundColour() == attr
.GetBackgroundColour() &&
156 GetAlignment() == attr
.GetAlignment() &&
157 GetLeftIndent() == attr
.GetLeftIndent() &&
158 GetLeftSubIndent() == attr
.GetLeftSubIndent() &&
159 GetRightIndent() == attr
.GetRightIndent() &&
160 TabsEq(GetTabs(), attr
.GetTabs()) &&
162 GetParagraphSpacingAfter() == attr
.GetParagraphSpacingAfter() &&
163 GetParagraphSpacingBefore() == attr
.GetParagraphSpacingBefore() &&
164 GetLineSpacing() == attr
.GetLineSpacing() &&
165 GetCharacterStyleName() == attr
.GetCharacterStyleName() &&
166 GetParagraphStyleName() == attr
.GetParagraphStyleName() &&
167 GetListStyleName() == attr
.GetListStyleName() &&
169 GetBulletStyle() == attr
.GetBulletStyle() &&
170 GetBulletText() == attr
.GetBulletText() &&
171 GetBulletNumber() == attr
.GetBulletNumber() &&
172 GetBulletFont() == attr
.GetBulletFont() &&
173 GetBulletName() == attr
.GetBulletName() &&
175 GetTextEffects() == attr
.GetTextEffects() &&
176 GetTextEffectFlags() == attr
.GetTextEffectFlags() &&
178 GetOutlineLevel() == attr
.GetOutlineLevel() &&
180 GetFontSize() == attr
.GetFontSize() &&
181 GetFontStyle() == attr
.GetFontStyle() &&
182 GetFontWeight() == attr
.GetFontWeight() &&
183 GetFontUnderlined() == attr
.GetFontUnderlined() &&
184 GetFontFaceName() == attr
.GetFontFaceName() &&
185 GetFontEncoding() == attr
.GetFontEncoding() &&
186 GetFontFamily() == attr
.GetFontFamily() &&
188 GetURL() == attr
.GetURL();
191 // Partial equality test taking flags into account
192 bool wxTextAttr::EqPartial(const wxTextAttr
& attr
, int flags
) const
194 if ((flags
& wxTEXT_ATTR_TEXT_COLOUR
) && GetTextColour() != attr
.GetTextColour())
197 if ((flags
& wxTEXT_ATTR_BACKGROUND_COLOUR
) && GetBackgroundColour() != attr
.GetBackgroundColour())
200 if ((flags
& wxTEXT_ATTR_FONT_FACE
) &&
201 GetFontFaceName() != attr
.GetFontFaceName())
204 if ((flags
& wxTEXT_ATTR_FONT_SIZE
) &&
205 GetFontSize() != attr
.GetFontSize())
208 if ((flags
& wxTEXT_ATTR_FONT_WEIGHT
) &&
209 GetFontWeight() != attr
.GetFontWeight())
212 if ((flags
& wxTEXT_ATTR_FONT_ITALIC
) &&
213 GetFontStyle() != attr
.GetFontStyle())
216 if ((flags
& wxTEXT_ATTR_FONT_UNDERLINE
) &&
217 GetFontUnderlined() != attr
.GetFontUnderlined())
220 if ((flags
& wxTEXT_ATTR_FONT_ENCODING
) &&
221 GetFontEncoding() != attr
.GetFontEncoding())
224 if ((flags
& wxTEXT_ATTR_FONT_FAMILY
) &&
225 GetFontFamily() != attr
.GetFontFamily())
228 if ((flags
& wxTEXT_ATTR_URL
) && GetURL() != attr
.GetURL())
231 if ((flags
& wxTEXT_ATTR_ALIGNMENT
) && GetAlignment() != attr
.GetAlignment())
234 if ((flags
& wxTEXT_ATTR_LEFT_INDENT
) &&
235 ((GetLeftIndent() != attr
.GetLeftIndent()) || (GetLeftSubIndent() != attr
.GetLeftSubIndent())))
238 if ((flags
& wxTEXT_ATTR_RIGHT_INDENT
) &&
239 (GetRightIndent() != attr
.GetRightIndent()))
242 if ((flags
& wxTEXT_ATTR_PARA_SPACING_AFTER
) &&
243 (GetParagraphSpacingAfter() != attr
.GetParagraphSpacingAfter()))
246 if ((flags
& wxTEXT_ATTR_PARA_SPACING_BEFORE
) &&
247 (GetParagraphSpacingBefore() != attr
.GetParagraphSpacingBefore()))
250 if ((flags
& wxTEXT_ATTR_LINE_SPACING
) &&
251 (GetLineSpacing() != attr
.GetLineSpacing()))
254 if ((flags
& wxTEXT_ATTR_CHARACTER_STYLE_NAME
) &&
255 (GetCharacterStyleName() != attr
.GetCharacterStyleName()))
258 if ((flags
& wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) &&
259 (GetParagraphStyleName() != attr
.GetParagraphStyleName()))
262 if ((flags
& wxTEXT_ATTR_LIST_STYLE_NAME
) &&
263 (GetListStyleName() != attr
.GetListStyleName()))
266 if ((flags
& wxTEXT_ATTR_BULLET_STYLE
) &&
267 (GetBulletStyle() != attr
.GetBulletStyle()))
270 if ((flags
& wxTEXT_ATTR_BULLET_NUMBER
) &&
271 (GetBulletNumber() != attr
.GetBulletNumber()))
274 if ((flags
& wxTEXT_ATTR_BULLET_TEXT
) &&
275 (GetBulletText() != attr
.GetBulletText()) &&
276 (GetBulletFont() != attr
.GetBulletFont()))
279 if ((flags
& wxTEXT_ATTR_BULLET_NAME
) &&
280 (GetBulletName() != attr
.GetBulletName()))
283 if ((flags
& wxTEXT_ATTR_TABS
) &&
284 !TabsEq(GetTabs(), attr
.GetTabs()))
287 if ((flags
& wxTEXT_ATTR_PAGE_BREAK
) &&
288 (HasPageBreak() != attr
.HasPageBreak()))
291 if (flags
& wxTEXT_ATTR_EFFECTS
)
293 if (HasTextEffects() != attr
.HasTextEffects())
295 if (!BitlistsEqPartial(GetTextEffects(), attr
.GetTextEffects(), attr
.GetTextEffectFlags()))
299 if ((flags
& wxTEXT_ATTR_OUTLINE_LEVEL
) &&
300 (GetOutlineLevel() != attr
.GetOutlineLevel()))
306 // Create font from font attributes.
307 wxFont
wxTextAttr::GetFont() const
314 fontSize
= GetFontSize();
316 int fontStyle
= wxNORMAL
;
318 fontStyle
= GetFontStyle();
320 int fontWeight
= wxNORMAL
;
322 fontWeight
= GetFontWeight();
324 bool underlined
= false;
325 if (HasFontUnderlined())
326 underlined
= GetFontUnderlined();
328 wxString fontFaceName
;
329 if (HasFontFaceName())
330 fontFaceName
= GetFontFaceName();
332 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
;
333 if (HasFontEncoding())
334 encoding
= GetFontEncoding();
336 int fontFamily
= wxFONTFAMILY_DEFAULT
;
338 fontFamily
= GetFontFamily();
340 wxFont
font(fontSize
, fontFamily
, fontStyle
, fontWeight
, underlined
, fontFaceName
, encoding
);
342 font
.SetNoAntiAliasing(true);
347 // Get attributes from font.
348 bool wxTextAttr::GetFontAttributes(const wxFont
& font
, int flags
)
353 if (flags
& wxTEXT_ATTR_FONT_SIZE
)
354 m_fontSize
= font
.GetPointSize();
356 if (flags
& wxTEXT_ATTR_FONT_ITALIC
)
357 m_fontStyle
= font
.GetStyle();
359 if (flags
& wxTEXT_ATTR_FONT_WEIGHT
)
360 m_fontWeight
= font
.GetWeight();
362 if (flags
& wxTEXT_ATTR_FONT_UNDERLINE
)
363 m_fontUnderlined
= font
.GetUnderlined();
365 if (flags
& wxTEXT_ATTR_FONT_FACE
)
366 m_fontFaceName
= font
.GetFaceName();
368 if (flags
& wxTEXT_ATTR_FONT_ENCODING
)
369 m_fontEncoding
= font
.GetEncoding();
371 if (flags
& wxTEXT_ATTR_FONT_FAMILY
)
372 m_fontFamily
= font
.GetFamily();
379 // Resets bits in destination so new attributes aren't merged with mutually exclusive ones
380 static bool wxResetIncompatibleBits(const int mask
, const int srcFlags
, int& destFlags
, int& destBits
)
382 if ((srcFlags
& mask
) && (destFlags
& mask
))
391 bool wxTextAttr::Apply(const wxTextAttr
& style
, const wxTextAttr
* compareWith
)
393 wxTextAttr
& destStyle
= (*this);
395 if (style
.HasFontWeight())
397 if (!(compareWith
&& compareWith
->HasFontWeight() && compareWith
->GetFontWeight() == style
.GetFontWeight()))
398 destStyle
.SetFontWeight(style
.GetFontWeight());
401 if (style
.HasFontSize())
403 if (!(compareWith
&& compareWith
->HasFontSize() && compareWith
->GetFontSize() == style
.GetFontSize()))
404 destStyle
.SetFontSize(style
.GetFontSize());
407 if (style
.HasFontItalic())
409 if (!(compareWith
&& compareWith
->HasFontItalic() && compareWith
->GetFontStyle() == style
.GetFontStyle()))
410 destStyle
.SetFontStyle(style
.GetFontStyle());
413 if (style
.HasFontUnderlined())
415 if (!(compareWith
&& compareWith
->HasFontUnderlined() && compareWith
->GetFontUnderlined() == style
.GetFontUnderlined()))
416 destStyle
.SetFontUnderlined(style
.GetFontUnderlined());
419 if (style
.HasFontFaceName())
421 if (!(compareWith
&& compareWith
->HasFontFaceName() && compareWith
->GetFontFaceName() == style
.GetFontFaceName()))
422 destStyle
.SetFontFaceName(style
.GetFontFaceName());
425 if (style
.HasFontEncoding())
427 if (!(compareWith
&& compareWith
->HasFontEncoding() && compareWith
->GetFontEncoding() == style
.GetFontEncoding()))
428 destStyle
.SetFontEncoding(style
.GetFontEncoding());
431 if (style
.HasFontFamily())
433 if (!(compareWith
&& compareWith
->HasFontFamily() && compareWith
->GetFontFamily() == style
.GetFontFamily()))
434 destStyle
.SetFontFamily(style
.GetFontFamily());
437 if (style
.GetTextColour().Ok() && style
.HasTextColour())
439 if (!(compareWith
&& compareWith
->HasTextColour() && compareWith
->GetTextColour() == style
.GetTextColour()))
440 destStyle
.SetTextColour(style
.GetTextColour());
443 if (style
.GetBackgroundColour().Ok() && style
.HasBackgroundColour())
445 if (!(compareWith
&& compareWith
->HasBackgroundColour() && compareWith
->GetBackgroundColour() == style
.GetBackgroundColour()))
446 destStyle
.SetBackgroundColour(style
.GetBackgroundColour());
449 if (style
.HasAlignment())
451 if (!(compareWith
&& compareWith
->HasAlignment() && compareWith
->GetAlignment() == style
.GetAlignment()))
452 destStyle
.SetAlignment(style
.GetAlignment());
457 if (!(compareWith
&& compareWith
->HasTabs() && TabsEq(compareWith
->GetTabs(), style
.GetTabs())))
458 destStyle
.SetTabs(style
.GetTabs());
461 if (style
.HasLeftIndent())
463 if (!(compareWith
&& compareWith
->HasLeftIndent() && compareWith
->GetLeftIndent() == style
.GetLeftIndent()
464 && compareWith
->GetLeftSubIndent() == style
.GetLeftSubIndent()))
465 destStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
468 if (style
.HasRightIndent())
470 if (!(compareWith
&& compareWith
->HasRightIndent() && compareWith
->GetRightIndent() == style
.GetRightIndent()))
471 destStyle
.SetRightIndent(style
.GetRightIndent());
474 if (style
.HasParagraphSpacingAfter())
476 if (!(compareWith
&& compareWith
->HasParagraphSpacingAfter() && compareWith
->GetParagraphSpacingAfter() == style
.GetParagraphSpacingAfter()))
477 destStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
480 if (style
.HasParagraphSpacingBefore())
482 if (!(compareWith
&& compareWith
->HasParagraphSpacingBefore() && compareWith
->GetParagraphSpacingBefore() == style
.GetParagraphSpacingBefore()))
483 destStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
486 if (style
.HasLineSpacing())
488 if (!(compareWith
&& compareWith
->HasLineSpacing() && compareWith
->GetLineSpacing() == style
.GetLineSpacing()))
489 destStyle
.SetLineSpacing(style
.GetLineSpacing());
492 if (style
.HasCharacterStyleName())
494 if (!(compareWith
&& compareWith
->HasCharacterStyleName() && compareWith
->GetCharacterStyleName() == style
.GetCharacterStyleName()))
495 destStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
498 if (style
.HasParagraphStyleName())
500 if (!(compareWith
&& compareWith
->HasParagraphStyleName() && compareWith
->GetParagraphStyleName() == style
.GetParagraphStyleName()))
501 destStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
504 if (style
.HasListStyleName())
506 if (!(compareWith
&& compareWith
->HasListStyleName() && compareWith
->GetListStyleName() == style
.GetListStyleName()))
507 destStyle
.SetListStyleName(style
.GetListStyleName());
510 if (style
.HasBulletStyle())
512 if (!(compareWith
&& compareWith
->HasBulletStyle() && compareWith
->GetBulletStyle() == style
.GetBulletStyle()))
513 destStyle
.SetBulletStyle(style
.GetBulletStyle());
516 if (style
.HasBulletText())
518 if (!(compareWith
&& compareWith
->HasBulletText() && compareWith
->GetBulletText() == style
.GetBulletText()))
520 destStyle
.SetBulletText(style
.GetBulletText());
521 destStyle
.SetBulletFont(style
.GetBulletFont());
525 if (style
.HasBulletNumber())
527 if (!(compareWith
&& compareWith
->HasBulletNumber() && compareWith
->GetBulletNumber() == style
.GetBulletNumber()))
528 destStyle
.SetBulletNumber(style
.GetBulletNumber());
531 if (style
.HasBulletName())
533 if (!(compareWith
&& compareWith
->HasBulletName() && compareWith
->GetBulletName() == style
.GetBulletName()))
534 destStyle
.SetBulletName(style
.GetBulletName());
539 if (!(compareWith
&& compareWith
->HasURL() && compareWith
->GetURL() == style
.GetURL()))
540 destStyle
.SetURL(style
.GetURL());
543 if (style
.HasPageBreak())
545 if (!(compareWith
&& compareWith
->HasPageBreak()))
546 destStyle
.SetPageBreak();
549 if (style
.HasTextEffects())
551 if (!(compareWith
&& compareWith
->HasTextEffects() && compareWith
->GetTextEffects() == style
.GetTextEffects()))
553 int destBits
= destStyle
.GetTextEffects();
554 int destFlags
= destStyle
.GetTextEffectFlags();
556 int srcBits
= style
.GetTextEffects();
557 int srcFlags
= style
.GetTextEffectFlags();
559 // Reset incompatible bits in the destination
560 wxResetIncompatibleBits((wxTEXT_ATTR_EFFECT_SUPERSCRIPT
|wxTEXT_ATTR_EFFECT_SUBSCRIPT
), srcFlags
, destFlags
, destBits
);
561 wxResetIncompatibleBits((wxTEXT_ATTR_EFFECT_CAPITALS
|wxTEXT_ATTR_EFFECT_SMALL_CAPITALS
), srcFlags
, destFlags
, destBits
);
562 wxResetIncompatibleBits((wxTEXT_ATTR_EFFECT_STRIKETHROUGH
|wxTEXT_ATTR_EFFECT_DOUBLE_STRIKETHROUGH
), srcFlags
, destFlags
, destBits
);
564 CombineBitlists(destBits
, srcBits
, destFlags
, srcFlags
);
566 destStyle
.SetTextEffects(destBits
);
567 destStyle
.SetTextEffectFlags(destFlags
);
571 if (style
.HasOutlineLevel())
573 if (!(compareWith
&& compareWith
->HasOutlineLevel() && compareWith
->GetOutlineLevel() == style
.GetOutlineLevel()))
574 destStyle
.SetOutlineLevel(style
.GetOutlineLevel());
581 wxTextAttr
wxTextAttr::Combine(const wxTextAttr
& attr
,
582 const wxTextAttr
& attrDef
,
583 const wxTextCtrlBase
*text
)
587 font
= attr
.GetFont();
591 if (attrDef
.HasFont())
592 font
= attrDef
.GetFont();
594 if ( text
&& !font
.Ok() )
595 font
= text
->GetFont();
598 wxColour colFg
= attr
.GetTextColour();
601 colFg
= attrDef
.GetTextColour();
603 if ( text
&& !colFg
.Ok() )
604 colFg
= text
->GetForegroundColour();
607 wxColour colBg
= attr
.GetBackgroundColour();
610 colBg
= attrDef
.GetBackgroundColour();
612 if ( text
&& !colBg
.Ok() )
613 colBg
= text
->GetBackgroundColour();
616 wxTextAttr
newAttr(colFg
, colBg
, font
);
618 if (attr
.HasAlignment())
619 newAttr
.SetAlignment(attr
.GetAlignment());
620 else if (attrDef
.HasAlignment())
621 newAttr
.SetAlignment(attrDef
.GetAlignment());
624 newAttr
.SetTabs(attr
.GetTabs());
625 else if (attrDef
.HasTabs())
626 newAttr
.SetTabs(attrDef
.GetTabs());
628 if (attr
.HasLeftIndent())
629 newAttr
.SetLeftIndent(attr
.GetLeftIndent(), attr
.GetLeftSubIndent());
630 else if (attrDef
.HasLeftIndent())
631 newAttr
.SetLeftIndent(attrDef
.GetLeftIndent(), attr
.GetLeftSubIndent());
633 if (attr
.HasRightIndent())
634 newAttr
.SetRightIndent(attr
.GetRightIndent());
635 else if (attrDef
.HasRightIndent())
636 newAttr
.SetRightIndent(attrDef
.GetRightIndent());
642 bool wxTextAttr::TabsEq(const wxArrayInt
& tabs1
, const wxArrayInt
& tabs2
)
644 if (tabs1
.GetCount() != tabs2
.GetCount())
648 for (i
= 0; i
< tabs1
.GetCount(); i
++)
650 if (tabs1
[i
] != tabs2
[i
])
657 bool wxTextAttr::RemoveStyle(wxTextAttr
& destStyle
, const wxTextAttr
& style
)
659 int flags
= style
.GetFlags();
660 int destFlags
= destStyle
.GetFlags();
662 destStyle
.SetFlags(destFlags
& ~flags
);
667 /// Combine two bitlists, specifying the bits of interest with separate flags.
668 bool wxTextAttr::CombineBitlists(int& valueA
, int valueB
, int& flagsA
, int flagsB
)
670 // We want to apply B's bits to A, taking into account each's flags which indicate which bits
671 // are to be taken into account. A zero in B's bits should reset that bit in A but only if B's flags
674 // First, reset the 0 bits from B. We make a mask so we're only dealing with B's zero
675 // bits at this point, ignoring any 1 bits in B or 0 bits in B that are not relevant.
676 int valueA2
= ~(~valueB
& flagsB
) & valueA
;
678 // Now combine the 1 bits.
679 int valueA3
= (valueB
& flagsB
) | valueA2
;
682 flagsA
= (flagsA
| flagsB
);
687 /// Compare two bitlists
688 bool wxTextAttr::BitlistsEqPartial(int valueA
, int valueB
, int flags
)
690 int relevantBitsA
= valueA
& flags
;
691 int relevantBitsB
= valueB
& flags
;
692 return (relevantBitsA
!= relevantBitsB
);
695 /// Split into paragraph and character styles
696 bool wxTextAttr::SplitParaCharStyles(const wxTextAttr
& style
, wxTextAttr
& parStyle
, wxTextAttr
& charStyle
)
698 wxTextAttr
defaultCharStyle1(style
);
699 wxTextAttr
defaultParaStyle1(style
);
700 defaultCharStyle1
.SetFlags(defaultCharStyle1
.GetFlags()&wxTEXT_ATTR_CHARACTER
);
701 defaultParaStyle1
.SetFlags(defaultParaStyle1
.GetFlags()&wxTEXT_ATTR_PARAGRAPH
);
703 charStyle
.Apply(defaultCharStyle1
);
704 parStyle
.Apply(defaultParaStyle1
);
709 // apply styling to text range
710 bool wxTextCtrlBase::SetStyle(long WXUNUSED(start
), long WXUNUSED(end
),
711 const wxTextAttr
& WXUNUSED(style
))
713 // to be implemented in derived classes
717 // get the styling at the given position
718 bool wxTextCtrlBase::GetStyle(long WXUNUSED(position
), wxTextAttr
& WXUNUSED(style
))
720 // to be implemented in derived classes
724 // change default text attributes
725 bool wxTextCtrlBase::SetDefaultStyle(const wxTextAttr
& style
)
727 // keep the old attributes if the new style doesn't specify them unless the
728 // new style is empty - then reset m_defaultStyle (as there is no other way
730 if ( style
.IsDefault() )
731 m_defaultStyle
= style
;
733 m_defaultStyle
= wxTextAttr::Combine(style
, m_defaultStyle
, this);
738 // ----------------------------------------------------------------------------
740 // ----------------------------------------------------------------------------
742 bool wxTextCtrlBase::DoLoadFile(const wxString
& filename
, int WXUNUSED(fileType
))
745 wxFFile
file(filename
);
746 if ( file
.IsOpened() )
749 if ( file
.ReadAll(&text
) )
755 m_filename
= filename
;
761 wxLogError(_("File couldn't be loaded."));
762 #endif // wxUSE_FFILE
767 bool wxTextAreaBase::SaveFile(const wxString
& filename
, int fileType
)
769 wxString filenameToUse
= filename
.empty() ? m_filename
: filename
;
770 if ( filenameToUse
.empty() )
772 // what kind of message to give? is it an error or a program bug?
773 wxLogDebug(wxT("Can't save textctrl to file without filename."));
778 return DoSaveFile(filenameToUse
, fileType
);
781 bool wxTextCtrlBase::DoSaveFile(const wxString
& filename
, int WXUNUSED(fileType
))
784 wxFFile
file(filename
, _T("w"));
785 if ( file
.IsOpened() && file
.Write(GetValue()) )
787 // if it worked, save for future calls
788 m_filename
= filename
;
790 // it's not modified any longer
795 #endif // wxUSE_FFILE
797 wxLogError(_("The text couldn't be saved."));
802 // ----------------------------------------------------------------------------
803 // stream-like insertion operator
804 // ----------------------------------------------------------------------------
806 wxTextCtrl
& wxTextCtrlBase::operator<<(const wxString
& s
)
809 return *TEXTCTRL(this);
812 wxTextCtrl
& wxTextCtrlBase::operator<<(double d
)
814 return *this << wxString::Format("%.2f", d
);
817 wxTextCtrl
& wxTextCtrlBase::operator<<(int i
)
819 return *this << wxString::Format("%d", i
);
822 wxTextCtrl
& wxTextCtrlBase::operator<<(long l
)
824 return *this << wxString::Format("%ld", l
);
827 // ----------------------------------------------------------------------------
828 // streambuf methods implementation
829 // ----------------------------------------------------------------------------
831 #if wxHAS_TEXT_WINDOW_STREAM
833 int wxTextCtrlBase::overflow(int c
)
835 AppendText((wxChar
)c
);
837 // return something different from EOF
841 #endif // wxHAS_TEXT_WINDOW_STREAM
843 // ----------------------------------------------------------------------------
844 // emulating key presses
845 // ----------------------------------------------------------------------------
847 bool wxTextCtrlBase::EmulateKeyPress(const wxKeyEvent
& event
)
849 // we have a native implementation for Win32 and so don't need this one
852 int keycode
= event
.GetKeyCode();
865 ch
= (wxChar
)(_T('0') + keycode
- WXK_NUMPAD0
);
869 case WXK_NUMPAD_MULTIPLY
:
879 case WXK_NUMPAD_SUBTRACT
:
884 case WXK_NUMPAD_DECIMAL
:
889 case WXK_NUMPAD_DIVIDE
:
894 case WXK_NUMPAD_DELETE
:
895 // delete the character at cursor
897 const long pos
= GetInsertionPoint();
898 if ( pos
< GetLastPosition() )
899 Remove(pos
, pos
+ 1);
904 // delete the character before the cursor
906 const long pos
= GetInsertionPoint();
908 Remove(pos
- 1, pos
);
914 if ( event
.GetUnicodeKey() )
916 ch
= event
.GetUnicodeKey();
920 if ( keycode
< 256 && keycode
>= 0 && wxIsprint(keycode
) )
922 // FIXME this is not going to work for non letters...
923 if ( !event
.ShiftDown() )
925 keycode
= wxTolower(keycode
);
928 ch
= (wxChar
)keycode
;
944 #endif // !__WIN32__/__WIN32__
949 // do the window-specific processing after processing the update event
950 void wxTextCtrlBase::DoUpdateWindowUI(wxUpdateUIEvent
& event
)
952 // call inherited, but skip the wxControl's version, and call directly the
953 // wxWindow's one instead, because the only reason why we are overriding this
954 // function is that we want to use SetValue() instead of wxControl::SetLabel()
955 wxWindowBase::DoUpdateWindowUI(event
);
958 if ( event
.GetSetText() )
960 if ( event
.GetText() != GetValue() )
961 SetValue(event
.GetText());
965 // ----------------------------------------------------------------------------
967 // ----------------------------------------------------------------------------
969 wxTextCtrlHitTestResult
970 wxTextAreaBase::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
972 // implement in terms of the other overload as the native ports typically
973 // can get the position and not (x, y) pair directly (although wxUniv
974 // directly gets x and y -- and so overrides this method as well)
976 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
978 if ( rc
!= wxTE_HT_UNKNOWN
)
980 PositionToXY(pos
, x
, y
);
986 wxTextCtrlHitTestResult
987 wxTextAreaBase::HitTest(const wxPoint
& WXUNUSED(pt
), long * WXUNUSED(pos
)) const
990 return wxTE_HT_UNKNOWN
;
993 // ----------------------------------------------------------------------------
995 // ----------------------------------------------------------------------------
998 bool wxTextCtrlBase::SendTextUpdatedEvent(wxWindow
*win
)
1000 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId());
1002 // do not do this as it could be very inefficient if the text control
1003 // contains a lot of text and we're not using ref-counted wxString
1004 // implementation -- instead, event.GetString() will query the control for
1005 // its current text if needed
1006 //event.SetString(win->GetValue());
1008 event
.SetEventObject(win
);
1009 return win
->GetEventHandler()->ProcessEvent(event
);
1012 #else // !wxUSE_TEXTCTRL
1014 // define this one even if !wxUSE_TEXTCTRL because it is also used by other
1015 // controls (wxComboBox and wxSpinCtrl)
1017 wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
);
1019 #endif // wxUSE_TEXTCTRL/!wxUSE_TEXTCTRL