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
);
344 // Get attributes from font.
345 bool wxTextAttr::GetFontAttributes(const wxFont
& font
, int flags
)
350 if (flags
& wxTEXT_ATTR_FONT_SIZE
)
351 m_fontSize
= font
.GetPointSize();
353 if (flags
& wxTEXT_ATTR_FONT_ITALIC
)
354 m_fontStyle
= font
.GetStyle();
356 if (flags
& wxTEXT_ATTR_FONT_WEIGHT
)
357 m_fontWeight
= font
.GetWeight();
359 if (flags
& wxTEXT_ATTR_FONT_UNDERLINE
)
360 m_fontUnderlined
= font
.GetUnderlined();
362 if (flags
& wxTEXT_ATTR_FONT_FACE
)
363 m_fontFaceName
= font
.GetFaceName();
365 if (flags
& wxTEXT_ATTR_FONT_ENCODING
)
366 m_fontEncoding
= font
.GetEncoding();
368 if (flags
& wxTEXT_ATTR_FONT_FAMILY
)
369 m_fontFamily
= font
.GetFamily();
376 // Resets bits in destination so new attributes aren't merged with mutually exclusive ones
377 static bool wxResetIncompatibleBits(const int mask
, const int srcFlags
, int& destFlags
, int& destBits
)
379 if ((srcFlags
& mask
) && (destFlags
& mask
))
388 bool wxTextAttr::Apply(const wxTextAttr
& style
, const wxTextAttr
* compareWith
)
390 wxTextAttr
& destStyle
= (*this);
392 if (style
.HasFontWeight())
394 if (!(compareWith
&& compareWith
->HasFontWeight() && compareWith
->GetFontWeight() == style
.GetFontWeight()))
395 destStyle
.SetFontWeight(style
.GetFontWeight());
398 if (style
.HasFontSize())
400 if (!(compareWith
&& compareWith
->HasFontSize() && compareWith
->GetFontSize() == style
.GetFontSize()))
401 destStyle
.SetFontSize(style
.GetFontSize());
404 if (style
.HasFontItalic())
406 if (!(compareWith
&& compareWith
->HasFontItalic() && compareWith
->GetFontStyle() == style
.GetFontStyle()))
407 destStyle
.SetFontStyle(style
.GetFontStyle());
410 if (style
.HasFontUnderlined())
412 if (!(compareWith
&& compareWith
->HasFontUnderlined() && compareWith
->GetFontUnderlined() == style
.GetFontUnderlined()))
413 destStyle
.SetFontUnderlined(style
.GetFontUnderlined());
416 if (style
.HasFontFaceName())
418 if (!(compareWith
&& compareWith
->HasFontFaceName() && compareWith
->GetFontFaceName() == style
.GetFontFaceName()))
419 destStyle
.SetFontFaceName(style
.GetFontFaceName());
422 if (style
.HasFontEncoding())
424 if (!(compareWith
&& compareWith
->HasFontEncoding() && compareWith
->GetFontEncoding() == style
.GetFontEncoding()))
425 destStyle
.SetFontEncoding(style
.GetFontEncoding());
428 if (style
.HasFontFamily())
430 if (!(compareWith
&& compareWith
->HasFontFamily() && compareWith
->GetFontFamily() == style
.GetFontFamily()))
431 destStyle
.SetFontFamily(style
.GetFontFamily());
434 if (style
.GetTextColour().Ok() && style
.HasTextColour())
436 if (!(compareWith
&& compareWith
->HasTextColour() && compareWith
->GetTextColour() == style
.GetTextColour()))
437 destStyle
.SetTextColour(style
.GetTextColour());
440 if (style
.GetBackgroundColour().Ok() && style
.HasBackgroundColour())
442 if (!(compareWith
&& compareWith
->HasBackgroundColour() && compareWith
->GetBackgroundColour() == style
.GetBackgroundColour()))
443 destStyle
.SetBackgroundColour(style
.GetBackgroundColour());
446 if (style
.HasAlignment())
448 if (!(compareWith
&& compareWith
->HasAlignment() && compareWith
->GetAlignment() == style
.GetAlignment()))
449 destStyle
.SetAlignment(style
.GetAlignment());
454 if (!(compareWith
&& compareWith
->HasTabs() && TabsEq(compareWith
->GetTabs(), style
.GetTabs())))
455 destStyle
.SetTabs(style
.GetTabs());
458 if (style
.HasLeftIndent())
460 if (!(compareWith
&& compareWith
->HasLeftIndent() && compareWith
->GetLeftIndent() == style
.GetLeftIndent()
461 && compareWith
->GetLeftSubIndent() == style
.GetLeftSubIndent()))
462 destStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
465 if (style
.HasRightIndent())
467 if (!(compareWith
&& compareWith
->HasRightIndent() && compareWith
->GetRightIndent() == style
.GetRightIndent()))
468 destStyle
.SetRightIndent(style
.GetRightIndent());
471 if (style
.HasParagraphSpacingAfter())
473 if (!(compareWith
&& compareWith
->HasParagraphSpacingAfter() && compareWith
->GetParagraphSpacingAfter() == style
.GetParagraphSpacingAfter()))
474 destStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
477 if (style
.HasParagraphSpacingBefore())
479 if (!(compareWith
&& compareWith
->HasParagraphSpacingBefore() && compareWith
->GetParagraphSpacingBefore() == style
.GetParagraphSpacingBefore()))
480 destStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
483 if (style
.HasLineSpacing())
485 if (!(compareWith
&& compareWith
->HasLineSpacing() && compareWith
->GetLineSpacing() == style
.GetLineSpacing()))
486 destStyle
.SetLineSpacing(style
.GetLineSpacing());
489 if (style
.HasCharacterStyleName())
491 if (!(compareWith
&& compareWith
->HasCharacterStyleName() && compareWith
->GetCharacterStyleName() == style
.GetCharacterStyleName()))
492 destStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
495 if (style
.HasParagraphStyleName())
497 if (!(compareWith
&& compareWith
->HasParagraphStyleName() && compareWith
->GetParagraphStyleName() == style
.GetParagraphStyleName()))
498 destStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
501 if (style
.HasListStyleName())
503 if (!(compareWith
&& compareWith
->HasListStyleName() && compareWith
->GetListStyleName() == style
.GetListStyleName()))
504 destStyle
.SetListStyleName(style
.GetListStyleName());
507 if (style
.HasBulletStyle())
509 if (!(compareWith
&& compareWith
->HasBulletStyle() && compareWith
->GetBulletStyle() == style
.GetBulletStyle()))
510 destStyle
.SetBulletStyle(style
.GetBulletStyle());
513 if (style
.HasBulletText())
515 if (!(compareWith
&& compareWith
->HasBulletText() && compareWith
->GetBulletText() == style
.GetBulletText()))
517 destStyle
.SetBulletText(style
.GetBulletText());
518 destStyle
.SetBulletFont(style
.GetBulletFont());
522 if (style
.HasBulletNumber())
524 if (!(compareWith
&& compareWith
->HasBulletNumber() && compareWith
->GetBulletNumber() == style
.GetBulletNumber()))
525 destStyle
.SetBulletNumber(style
.GetBulletNumber());
528 if (style
.HasBulletName())
530 if (!(compareWith
&& compareWith
->HasBulletName() && compareWith
->GetBulletName() == style
.GetBulletName()))
531 destStyle
.SetBulletName(style
.GetBulletName());
536 if (!(compareWith
&& compareWith
->HasURL() && compareWith
->GetURL() == style
.GetURL()))
537 destStyle
.SetURL(style
.GetURL());
540 if (style
.HasPageBreak())
542 if (!(compareWith
&& compareWith
->HasPageBreak()))
543 destStyle
.SetPageBreak();
546 if (style
.HasTextEffects())
548 if (!(compareWith
&& compareWith
->HasTextEffects() && compareWith
->GetTextEffects() == style
.GetTextEffects()))
550 int destBits
= destStyle
.GetTextEffects();
551 int destFlags
= destStyle
.GetTextEffectFlags();
553 int srcBits
= style
.GetTextEffects();
554 int srcFlags
= style
.GetTextEffectFlags();
556 // Reset incompatible bits in the destination
557 wxResetIncompatibleBits((wxTEXT_ATTR_EFFECT_SUPERSCRIPT
|wxTEXT_ATTR_EFFECT_SUBSCRIPT
), srcFlags
, destFlags
, destBits
);
558 wxResetIncompatibleBits((wxTEXT_ATTR_EFFECT_CAPITALS
|wxTEXT_ATTR_EFFECT_SMALL_CAPITALS
), srcFlags
, destFlags
, destBits
);
559 wxResetIncompatibleBits((wxTEXT_ATTR_EFFECT_STRIKETHROUGH
|wxTEXT_ATTR_EFFECT_DOUBLE_STRIKETHROUGH
), srcFlags
, destFlags
, destBits
);
561 CombineBitlists(destBits
, srcBits
, destFlags
, srcFlags
);
563 destStyle
.SetTextEffects(destBits
);
564 destStyle
.SetTextEffectFlags(destFlags
);
568 if (style
.HasOutlineLevel())
570 if (!(compareWith
&& compareWith
->HasOutlineLevel() && compareWith
->GetOutlineLevel() == style
.GetOutlineLevel()))
571 destStyle
.SetOutlineLevel(style
.GetOutlineLevel());
578 wxTextAttr
wxTextAttr::Combine(const wxTextAttr
& attr
,
579 const wxTextAttr
& attrDef
,
580 const wxTextCtrlBase
*text
)
584 font
= attr
.GetFont();
588 if (attrDef
.HasFont())
589 font
= attrDef
.GetFont();
591 if ( text
&& !font
.Ok() )
592 font
= text
->GetFont();
595 wxColour colFg
= attr
.GetTextColour();
598 colFg
= attrDef
.GetTextColour();
600 if ( text
&& !colFg
.Ok() )
601 colFg
= text
->GetForegroundColour();
604 wxColour colBg
= attr
.GetBackgroundColour();
607 colBg
= attrDef
.GetBackgroundColour();
609 if ( text
&& !colBg
.Ok() )
610 colBg
= text
->GetBackgroundColour();
613 wxTextAttr
newAttr(colFg
, colBg
, font
);
615 if (attr
.HasAlignment())
616 newAttr
.SetAlignment(attr
.GetAlignment());
617 else if (attrDef
.HasAlignment())
618 newAttr
.SetAlignment(attrDef
.GetAlignment());
621 newAttr
.SetTabs(attr
.GetTabs());
622 else if (attrDef
.HasTabs())
623 newAttr
.SetTabs(attrDef
.GetTabs());
625 if (attr
.HasLeftIndent())
626 newAttr
.SetLeftIndent(attr
.GetLeftIndent(), attr
.GetLeftSubIndent());
627 else if (attrDef
.HasLeftIndent())
628 newAttr
.SetLeftIndent(attrDef
.GetLeftIndent(), attr
.GetLeftSubIndent());
630 if (attr
.HasRightIndent())
631 newAttr
.SetRightIndent(attr
.GetRightIndent());
632 else if (attrDef
.HasRightIndent())
633 newAttr
.SetRightIndent(attrDef
.GetRightIndent());
639 bool wxTextAttr::TabsEq(const wxArrayInt
& tabs1
, const wxArrayInt
& tabs2
)
641 if (tabs1
.GetCount() != tabs2
.GetCount())
645 for (i
= 0; i
< tabs1
.GetCount(); i
++)
647 if (tabs1
[i
] != tabs2
[i
])
654 bool wxTextAttr::RemoveStyle(wxTextAttr
& destStyle
, const wxTextAttr
& style
)
656 int flags
= style
.GetFlags();
657 int destFlags
= destStyle
.GetFlags();
659 destStyle
.SetFlags(destFlags
& ~flags
);
664 /// Combine two bitlists, specifying the bits of interest with separate flags.
665 bool wxTextAttr::CombineBitlists(int& valueA
, int valueB
, int& flagsA
, int flagsB
)
667 // We want to apply B's bits to A, taking into account each's flags which indicate which bits
668 // are to be taken into account. A zero in B's bits should reset that bit in A but only if B's flags
671 // First, reset the 0 bits from B. We make a mask so we're only dealing with B's zero
672 // bits at this point, ignoring any 1 bits in B or 0 bits in B that are not relevant.
673 int valueA2
= ~(~valueB
& flagsB
) & valueA
;
675 // Now combine the 1 bits.
676 int valueA3
= (valueB
& flagsB
) | valueA2
;
679 flagsA
= (flagsA
| flagsB
);
684 /// Compare two bitlists
685 bool wxTextAttr::BitlistsEqPartial(int valueA
, int valueB
, int flags
)
687 int relevantBitsA
= valueA
& flags
;
688 int relevantBitsB
= valueB
& flags
;
689 return (relevantBitsA
!= relevantBitsB
);
692 /// Split into paragraph and character styles
693 bool wxTextAttr::SplitParaCharStyles(const wxTextAttr
& style
, wxTextAttr
& parStyle
, wxTextAttr
& charStyle
)
695 wxTextAttr
defaultCharStyle1(style
);
696 wxTextAttr
defaultParaStyle1(style
);
697 defaultCharStyle1
.SetFlags(defaultCharStyle1
.GetFlags()&wxTEXT_ATTR_CHARACTER
);
698 defaultParaStyle1
.SetFlags(defaultParaStyle1
.GetFlags()&wxTEXT_ATTR_PARAGRAPH
);
700 charStyle
.Apply(defaultCharStyle1
);
701 parStyle
.Apply(defaultParaStyle1
);
706 // apply styling to text range
707 bool wxTextCtrlBase::SetStyle(long WXUNUSED(start
), long WXUNUSED(end
),
708 const wxTextAttr
& WXUNUSED(style
))
710 // to be implemented in derived classes
714 // get the styling at the given position
715 bool wxTextCtrlBase::GetStyle(long WXUNUSED(position
), wxTextAttr
& WXUNUSED(style
))
717 // to be implemented in derived classes
721 // change default text attributes
722 bool wxTextCtrlBase::SetDefaultStyle(const wxTextAttr
& style
)
724 // keep the old attributes if the new style doesn't specify them unless the
725 // new style is empty - then reset m_defaultStyle (as there is no other way
727 if ( style
.IsDefault() )
728 m_defaultStyle
= style
;
730 m_defaultStyle
= wxTextAttr::Combine(style
, m_defaultStyle
, this);
735 // ----------------------------------------------------------------------------
737 // ----------------------------------------------------------------------------
739 bool wxTextAreaBase::DoLoadFile(const wxString
& filename
, int WXUNUSED(fileType
))
742 wxFFile
file(filename
);
743 if ( file
.IsOpened() )
746 if ( file
.ReadAll(&text
) )
753 #endif // wxUSE_FFILE
758 bool wxTextCtrlBase::DoLoadFile(const wxString
& filename
, int fileType
)
760 if ( wxTextAreaBase::DoLoadFile(filename
, fileType
) )
763 m_filename
= filename
;
766 wxLogError(_("File couldn't be loaded."));
770 bool wxTextAreaBase::DoSaveFile(const wxString
& filename
, int WXUNUSED(fileType
))
773 wxFFile
file(filename
, wxT("w"));
774 return file
.IsOpened() && file
.Write(GetValue(), *wxConvCurrent
);
777 #endif // wxUSE_FFILE
780 bool wxTextAreaBase::SaveFile(const wxString
& filename
, int fileType
)
782 wxString filenameToUse
= filename
.empty() ? m_filename
: filename
;
783 if ( filenameToUse
.empty() )
785 // what kind of message to give? is it an error or a program bug?
786 wxLogDebug(wxT("Can't save textctrl to file without filename."));
791 return DoSaveFile(filenameToUse
, fileType
);
794 bool wxTextCtrlBase::DoSaveFile(const wxString
& filename
, int fileType
)
796 if ( wxTextAreaBase::DoSaveFile(filename
, fileType
) )
798 // if it worked, save for future calls
799 m_filename
= filename
;
801 // it's not modified any longer
809 // ----------------------------------------------------------------------------
810 // stream-like insertion operator
811 // ----------------------------------------------------------------------------
813 wxTextCtrl
& wxTextCtrlBase::operator<<(const wxString
& s
)
816 return *TEXTCTRL(this);
819 wxTextCtrl
& wxTextCtrlBase::operator<<(double d
)
821 return *this << wxString::Format("%.2f", d
);
824 wxTextCtrl
& wxTextCtrlBase::operator<<(int i
)
826 return *this << wxString::Format("%d", i
);
829 wxTextCtrl
& wxTextCtrlBase::operator<<(long l
)
831 return *this << wxString::Format("%ld", l
);
834 // ----------------------------------------------------------------------------
835 // streambuf methods implementation
836 // ----------------------------------------------------------------------------
838 #if wxHAS_TEXT_WINDOW_STREAM
840 int wxTextCtrlBase::overflow(int c
)
842 AppendText((wxChar
)c
);
844 // return something different from EOF
848 #endif // wxHAS_TEXT_WINDOW_STREAM
850 // ----------------------------------------------------------------------------
851 // emulating key presses
852 // ----------------------------------------------------------------------------
854 bool wxTextCtrlBase::EmulateKeyPress(const wxKeyEvent
& event
)
856 // we have a native implementation for Win32 and so don't need this one
859 int keycode
= event
.GetKeyCode();
872 ch
= (wxChar
)(wxT('0') + keycode
- WXK_NUMPAD0
);
876 case WXK_NUMPAD_MULTIPLY
:
886 case WXK_NUMPAD_SUBTRACT
:
891 case WXK_NUMPAD_DECIMAL
:
896 case WXK_NUMPAD_DIVIDE
:
901 case WXK_NUMPAD_DELETE
:
902 // delete the character at cursor
904 const long pos
= GetInsertionPoint();
905 if ( pos
< GetLastPosition() )
906 Remove(pos
, pos
+ 1);
911 // delete the character before the cursor
913 const long pos
= GetInsertionPoint();
915 Remove(pos
- 1, pos
);
921 if ( event
.GetUnicodeKey() )
923 ch
= event
.GetUnicodeKey();
927 if ( keycode
< 256 && keycode
>= 0 && wxIsprint(keycode
) )
929 // FIXME this is not going to work for non letters...
930 if ( !event
.ShiftDown() )
932 keycode
= wxTolower(keycode
);
935 ch
= (wxChar
)keycode
;
951 #endif // !__WIN32__/__WIN32__
956 // do the window-specific processing after processing the update event
957 void wxTextCtrlBase::DoUpdateWindowUI(wxUpdateUIEvent
& event
)
959 // call inherited, but skip the wxControl's version, and call directly the
960 // wxWindow's one instead, because the only reason why we are overriding this
961 // function is that we want to use SetValue() instead of wxControl::SetLabel()
962 wxWindowBase::DoUpdateWindowUI(event
);
965 if ( event
.GetSetText() )
967 if ( event
.GetText() != GetValue() )
968 SetValue(event
.GetText());
972 // ----------------------------------------------------------------------------
974 // ----------------------------------------------------------------------------
976 wxTextCtrlHitTestResult
977 wxTextAreaBase::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
979 // implement in terms of the other overload as the native ports typically
980 // can get the position and not (x, y) pair directly (although wxUniv
981 // directly gets x and y -- and so overrides this method as well)
983 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
985 if ( rc
!= wxTE_HT_UNKNOWN
)
987 PositionToXY(pos
, x
, y
);
993 wxTextCtrlHitTestResult
994 wxTextAreaBase::HitTest(const wxPoint
& WXUNUSED(pt
), long * WXUNUSED(pos
)) const
997 return wxTE_HT_UNKNOWN
;
1000 // ----------------------------------------------------------------------------
1002 // ----------------------------------------------------------------------------
1005 bool wxTextCtrlBase::SendTextUpdatedEvent(wxWindow
*win
)
1007 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId());
1009 // do not do this as it could be very inefficient if the text control
1010 // contains a lot of text and we're not using ref-counted wxString
1011 // implementation -- instead, event.GetString() will query the control for
1012 // its current text if needed
1013 //event.SetString(win->GetValue());
1015 event
.SetEventObject(win
);
1016 return win
->GetEventHandler()->ProcessEvent(event
);
1019 #else // !wxUSE_TEXTCTRL
1021 // define this one even if !wxUSE_TEXTCTRL because it is also used by other
1022 // controls (wxComboBox and wxSpinCtrl)
1024 wxDEFINE_EVENT( wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
);
1026 #endif // wxUSE_TEXTCTRL/!wxUSE_TEXTCTRL