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 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED
)
53 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_ENTER
)
54 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_URL
)
55 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_MAXLEN
)
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
= wxNORMAL
;
89 m_fontWeight
= wxNORMAL
;
90 m_fontUnderlined
= false;
91 m_fontEncoding
= wxFONTENCODING_DEFAULT
;
93 m_paragraphSpacingAfter
= 0;
94 m_paragraphSpacingBefore
= 0;
96 m_bulletStyle
= wxTEXT_ATTR_BULLET_STYLE_NONE
;
97 m_textEffects
= wxTEXT_ATTR_EFFECT_NONE
;
98 m_textEffectFlags
= wxTEXT_ATTR_EFFECT_NONE
;
104 void wxTextAttr::Copy(const wxTextAttr
& attr
)
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
;
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
;
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
;
137 m_urlTarget
= attr
.m_urlTarget
;
141 void wxTextAttr::operator= (const wxTextAttr
& attr
)
147 bool wxTextAttr::operator== (const wxTextAttr
& attr
) const
149 return GetFlags() == attr
.GetFlags() &&
151 GetTextColour() == attr
.GetTextColour() &&
152 GetBackgroundColour() == attr
.GetBackgroundColour() &&
154 GetAlignment() == attr
.GetAlignment() &&
155 GetLeftIndent() == attr
.GetLeftIndent() &&
156 GetLeftSubIndent() == attr
.GetLeftSubIndent() &&
157 GetRightIndent() == attr
.GetRightIndent() &&
158 TabsEq(GetTabs(), attr
.GetTabs()) &&
160 GetParagraphSpacingAfter() == attr
.GetParagraphSpacingAfter() &&
161 GetParagraphSpacingBefore() == attr
.GetParagraphSpacingBefore() &&
162 GetLineSpacing() == attr
.GetLineSpacing() &&
163 GetCharacterStyleName() == attr
.GetCharacterStyleName() &&
164 GetParagraphStyleName() == attr
.GetParagraphStyleName() &&
165 GetListStyleName() == attr
.GetListStyleName() &&
167 GetBulletStyle() == attr
.GetBulletStyle() &&
168 GetBulletText() == attr
.GetBulletText() &&
169 GetBulletNumber() == attr
.GetBulletNumber() &&
170 GetBulletFont() == attr
.GetBulletFont() &&
171 GetBulletName() == attr
.GetBulletName() &&
173 GetTextEffects() == attr
.GetTextEffects() &&
174 GetTextEffectFlags() == attr
.GetTextEffectFlags() &&
176 GetOutlineLevel() == attr
.GetOutlineLevel() &&
178 GetFontSize() == attr
.GetFontSize() &&
179 GetFontStyle() == attr
.GetFontStyle() &&
180 GetFontWeight() == attr
.GetFontWeight() &&
181 GetFontUnderlined() == attr
.GetFontUnderlined() &&
182 GetFontFaceName() == attr
.GetFontFaceName() &&
183 GetFontEncoding() == attr
.GetFontEncoding() &&
185 GetURL() == attr
.GetURL();
188 // Partial equality test taking flags into account
189 bool wxTextAttr::EqPartial(const wxTextAttr
& attr
, int flags
) const
191 if ((flags
& wxTEXT_ATTR_TEXT_COLOUR
) && GetTextColour() != attr
.GetTextColour())
194 if ((flags
& wxTEXT_ATTR_BACKGROUND_COLOUR
) && GetBackgroundColour() != attr
.GetBackgroundColour())
197 if ((flags
& wxTEXT_ATTR_FONT_FACE
) &&
198 GetFontFaceName() != attr
.GetFontFaceName())
201 if ((flags
& wxTEXT_ATTR_FONT_SIZE
) &&
202 GetFontSize() != attr
.GetFontSize())
205 if ((flags
& wxTEXT_ATTR_FONT_WEIGHT
) &&
206 GetFontWeight() != attr
.GetFontWeight())
209 if ((flags
& wxTEXT_ATTR_FONT_ITALIC
) &&
210 GetFontStyle() != attr
.GetFontStyle())
213 if ((flags
& wxTEXT_ATTR_FONT_UNDERLINE
) &&
214 GetFontUnderlined() != attr
.GetFontUnderlined())
217 if ((flags
& wxTEXT_ATTR_FONT_ENCODING
) &&
218 GetFontEncoding() != attr
.GetFontEncoding())
221 if ((flags
& wxTEXT_ATTR_URL
) && GetURL() != attr
.GetURL())
224 if ((flags
& wxTEXT_ATTR_ALIGNMENT
) && GetAlignment() != attr
.GetAlignment())
227 if ((flags
& wxTEXT_ATTR_LEFT_INDENT
) &&
228 ((GetLeftIndent() != attr
.GetLeftIndent()) || (GetLeftSubIndent() != attr
.GetLeftSubIndent())))
231 if ((flags
& wxTEXT_ATTR_RIGHT_INDENT
) &&
232 (GetRightIndent() != attr
.GetRightIndent()))
235 if ((flags
& wxTEXT_ATTR_PARA_SPACING_AFTER
) &&
236 (GetParagraphSpacingAfter() != attr
.GetParagraphSpacingAfter()))
239 if ((flags
& wxTEXT_ATTR_PARA_SPACING_BEFORE
) &&
240 (GetParagraphSpacingBefore() != attr
.GetParagraphSpacingBefore()))
243 if ((flags
& wxTEXT_ATTR_LINE_SPACING
) &&
244 (GetLineSpacing() != attr
.GetLineSpacing()))
247 if ((flags
& wxTEXT_ATTR_CHARACTER_STYLE_NAME
) &&
248 (GetCharacterStyleName() != attr
.GetCharacterStyleName()))
251 if ((flags
& wxTEXT_ATTR_PARAGRAPH_STYLE_NAME
) &&
252 (GetParagraphStyleName() != attr
.GetParagraphStyleName()))
255 if ((flags
& wxTEXT_ATTR_LIST_STYLE_NAME
) &&
256 (GetListStyleName() != attr
.GetListStyleName()))
259 if ((flags
& wxTEXT_ATTR_BULLET_STYLE
) &&
260 (GetBulletStyle() != attr
.GetBulletStyle()))
263 if ((flags
& wxTEXT_ATTR_BULLET_NUMBER
) &&
264 (GetBulletNumber() != attr
.GetBulletNumber()))
267 if ((flags
& wxTEXT_ATTR_BULLET_TEXT
) &&
268 (GetBulletText() != attr
.GetBulletText()) &&
269 (GetBulletFont() != attr
.GetBulletFont()))
272 if ((flags
& wxTEXT_ATTR_BULLET_NAME
) &&
273 (GetBulletName() != attr
.GetBulletName()))
276 if ((flags
& wxTEXT_ATTR_TABS
) &&
277 !TabsEq(GetTabs(), attr
.GetTabs()))
280 if ((flags
& wxTEXT_ATTR_PAGE_BREAK
) &&
281 (HasPageBreak() != attr
.HasPageBreak()))
284 if (flags
& wxTEXT_ATTR_EFFECTS
)
286 if (HasTextEffects() != attr
.HasTextEffects())
288 if (!BitlistsEqPartial(GetTextEffects(), attr
.GetTextEffects(), attr
.GetTextEffectFlags()))
292 if ((flags
& wxTEXT_ATTR_OUTLINE_LEVEL
) &&
293 (GetOutlineLevel() != attr
.GetOutlineLevel()))
299 // Create font from font attributes.
300 wxFont
wxTextAttr::GetFont() const
307 fontSize
= GetFontSize();
309 int fontStyle
= wxNORMAL
;
311 fontStyle
= GetFontStyle();
313 int fontWeight
= wxNORMAL
;
315 fontWeight
= GetFontWeight();
317 bool underlined
= false;
318 if (HasFontUnderlined())
319 underlined
= GetFontUnderlined();
321 wxString fontFaceName
;
322 if (HasFontFaceName())
323 fontFaceName
= GetFontFaceName();
325 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
;
326 if (HasFontEncoding())
327 encoding
= GetFontEncoding();
329 wxFont
font(fontSize
, wxDEFAULT
, fontStyle
, fontWeight
, underlined
, fontFaceName
, encoding
);
331 font
.SetNoAntiAliasing(true);
336 // Get attributes from font.
337 bool wxTextAttr::GetFontAttributes(const wxFont
& font
, int flags
)
342 if (flags
& wxTEXT_ATTR_FONT_SIZE
)
343 m_fontSize
= font
.GetPointSize();
345 if (flags
& wxTEXT_ATTR_FONT_ITALIC
)
346 m_fontStyle
= font
.GetStyle();
348 if (flags
& wxTEXT_ATTR_FONT_WEIGHT
)
349 m_fontWeight
= font
.GetWeight();
351 if (flags
& wxTEXT_ATTR_FONT_UNDERLINE
)
352 m_fontUnderlined
= font
.GetUnderlined();
354 if (flags
& wxTEXT_ATTR_FONT_FACE
)
355 m_fontFaceName
= font
.GetFaceName();
357 if (flags
& wxTEXT_ATTR_FONT_ENCODING
)
358 m_fontEncoding
= font
.GetEncoding();
365 bool wxTextAttr::Apply(const wxTextAttr
& style
, const wxTextAttr
* compareWith
)
367 wxTextAttr
& destStyle
= (*this);
369 if (style
.HasFontWeight())
371 if (!(compareWith
&& compareWith
->HasFontWeight() && compareWith
->GetFontWeight() == style
.GetFontWeight()))
372 destStyle
.SetFontWeight(style
.GetFontWeight());
375 if (style
.HasFontSize())
377 if (!(compareWith
&& compareWith
->HasFontSize() && compareWith
->GetFontSize() == style
.GetFontSize()))
378 destStyle
.SetFontSize(style
.GetFontSize());
381 if (style
.HasFontItalic())
383 if (!(compareWith
&& compareWith
->HasFontItalic() && compareWith
->GetFontStyle() == style
.GetFontStyle()))
384 destStyle
.SetFontStyle(style
.GetFontStyle());
387 if (style
.HasFontUnderlined())
389 if (!(compareWith
&& compareWith
->HasFontUnderlined() && compareWith
->GetFontUnderlined() == style
.GetFontUnderlined()))
390 destStyle
.SetFontUnderlined(style
.GetFontUnderlined());
393 if (style
.HasFontFaceName())
395 if (!(compareWith
&& compareWith
->HasFontFaceName() && compareWith
->GetFontFaceName() == style
.GetFontFaceName()))
396 destStyle
.SetFontFaceName(style
.GetFontFaceName());
399 if (style
.HasFontEncoding())
401 if (!(compareWith
&& compareWith
->HasFontEncoding() && compareWith
->GetFontEncoding() == style
.GetFontEncoding()))
402 destStyle
.SetFontEncoding(style
.GetFontEncoding());
405 if (style
.GetTextColour().Ok() && style
.HasTextColour())
407 if (!(compareWith
&& compareWith
->HasTextColour() && compareWith
->GetTextColour() == style
.GetTextColour()))
408 destStyle
.SetTextColour(style
.GetTextColour());
411 if (style
.GetBackgroundColour().Ok() && style
.HasBackgroundColour())
413 if (!(compareWith
&& compareWith
->HasBackgroundColour() && compareWith
->GetBackgroundColour() == style
.GetBackgroundColour()))
414 destStyle
.SetBackgroundColour(style
.GetBackgroundColour());
417 if (style
.HasAlignment())
419 if (!(compareWith
&& compareWith
->HasAlignment() && compareWith
->GetAlignment() == style
.GetAlignment()))
420 destStyle
.SetAlignment(style
.GetAlignment());
425 if (!(compareWith
&& compareWith
->HasTabs() && TabsEq(compareWith
->GetTabs(), style
.GetTabs())))
426 destStyle
.SetTabs(style
.GetTabs());
429 if (style
.HasLeftIndent())
431 if (!(compareWith
&& compareWith
->HasLeftIndent() && compareWith
->GetLeftIndent() == style
.GetLeftIndent()
432 && compareWith
->GetLeftSubIndent() == style
.GetLeftSubIndent()))
433 destStyle
.SetLeftIndent(style
.GetLeftIndent(), style
.GetLeftSubIndent());
436 if (style
.HasRightIndent())
438 if (!(compareWith
&& compareWith
->HasRightIndent() && compareWith
->GetRightIndent() == style
.GetRightIndent()))
439 destStyle
.SetRightIndent(style
.GetRightIndent());
442 if (style
.HasParagraphSpacingAfter())
444 if (!(compareWith
&& compareWith
->HasParagraphSpacingAfter() && compareWith
->GetParagraphSpacingAfter() == style
.GetParagraphSpacingAfter()))
445 destStyle
.SetParagraphSpacingAfter(style
.GetParagraphSpacingAfter());
448 if (style
.HasParagraphSpacingBefore())
450 if (!(compareWith
&& compareWith
->HasParagraphSpacingBefore() && compareWith
->GetParagraphSpacingBefore() == style
.GetParagraphSpacingBefore()))
451 destStyle
.SetParagraphSpacingBefore(style
.GetParagraphSpacingBefore());
454 if (style
.HasLineSpacing())
456 if (!(compareWith
&& compareWith
->HasLineSpacing() && compareWith
->GetLineSpacing() == style
.GetLineSpacing()))
457 destStyle
.SetLineSpacing(style
.GetLineSpacing());
460 if (style
.HasCharacterStyleName())
462 if (!(compareWith
&& compareWith
->HasCharacterStyleName() && compareWith
->GetCharacterStyleName() == style
.GetCharacterStyleName()))
463 destStyle
.SetCharacterStyleName(style
.GetCharacterStyleName());
466 if (style
.HasParagraphStyleName())
468 if (!(compareWith
&& compareWith
->HasParagraphStyleName() && compareWith
->GetParagraphStyleName() == style
.GetParagraphStyleName()))
469 destStyle
.SetParagraphStyleName(style
.GetParagraphStyleName());
472 if (style
.HasListStyleName())
474 if (!(compareWith
&& compareWith
->HasListStyleName() && compareWith
->GetListStyleName() == style
.GetListStyleName()))
475 destStyle
.SetListStyleName(style
.GetListStyleName());
478 if (style
.HasBulletStyle())
480 if (!(compareWith
&& compareWith
->HasBulletStyle() && compareWith
->GetBulletStyle() == style
.GetBulletStyle()))
481 destStyle
.SetBulletStyle(style
.GetBulletStyle());
484 if (style
.HasBulletText())
486 if (!(compareWith
&& compareWith
->HasBulletText() && compareWith
->GetBulletText() == style
.GetBulletText()))
488 destStyle
.SetBulletText(style
.GetBulletText());
489 destStyle
.SetBulletFont(style
.GetBulletFont());
493 if (style
.HasBulletNumber())
495 if (!(compareWith
&& compareWith
->HasBulletNumber() && compareWith
->GetBulletNumber() == style
.GetBulletNumber()))
496 destStyle
.SetBulletNumber(style
.GetBulletNumber());
499 if (style
.HasBulletName())
501 if (!(compareWith
&& compareWith
->HasBulletName() && compareWith
->GetBulletName() == style
.GetBulletName()))
502 destStyle
.SetBulletName(style
.GetBulletName());
507 if (!(compareWith
&& compareWith
->HasURL() && compareWith
->GetURL() == style
.GetURL()))
508 destStyle
.SetURL(style
.GetURL());
511 if (style
.HasPageBreak())
513 if (!(compareWith
&& compareWith
->HasPageBreak()))
514 destStyle
.SetPageBreak();
517 if (style
.HasTextEffects())
519 if (!(compareWith
&& compareWith
->HasTextEffects() && compareWith
->GetTextEffects() == style
.GetTextEffects()))
521 int destBits
= destStyle
.GetTextEffects();
522 int destFlags
= destStyle
.GetTextEffectFlags();
524 int srcBits
= style
.GetTextEffects();
525 int srcFlags
= style
.GetTextEffectFlags();
527 CombineBitlists(destBits
, srcBits
, destFlags
, srcFlags
);
529 destStyle
.SetTextEffects(destBits
);
530 destStyle
.SetTextEffectFlags(destFlags
);
534 if (style
.HasOutlineLevel())
536 if (!(compareWith
&& compareWith
->HasOutlineLevel() && compareWith
->GetOutlineLevel() == style
.GetOutlineLevel()))
537 destStyle
.SetOutlineLevel(style
.GetOutlineLevel());
544 wxTextAttr
wxTextAttr::Combine(const wxTextAttr
& attr
,
545 const wxTextAttr
& attrDef
,
546 const wxTextCtrlBase
*text
)
550 font
= attr
.GetFont();
554 if (attrDef
.HasFont())
555 font
= attrDef
.GetFont();
557 if ( text
&& !font
.Ok() )
558 font
= text
->GetFont();
561 wxColour colFg
= attr
.GetTextColour();
564 colFg
= attrDef
.GetTextColour();
566 if ( text
&& !colFg
.Ok() )
567 colFg
= text
->GetForegroundColour();
570 wxColour colBg
= attr
.GetBackgroundColour();
573 colBg
= attrDef
.GetBackgroundColour();
575 if ( text
&& !colBg
.Ok() )
576 colBg
= text
->GetBackgroundColour();
579 wxTextAttr
newAttr(colFg
, colBg
, font
);
581 if (attr
.HasAlignment())
582 newAttr
.SetAlignment(attr
.GetAlignment());
583 else if (attrDef
.HasAlignment())
584 newAttr
.SetAlignment(attrDef
.GetAlignment());
587 newAttr
.SetTabs(attr
.GetTabs());
588 else if (attrDef
.HasTabs())
589 newAttr
.SetTabs(attrDef
.GetTabs());
591 if (attr
.HasLeftIndent())
592 newAttr
.SetLeftIndent(attr
.GetLeftIndent(), attr
.GetLeftSubIndent());
593 else if (attrDef
.HasLeftIndent())
594 newAttr
.SetLeftIndent(attrDef
.GetLeftIndent(), attr
.GetLeftSubIndent());
596 if (attr
.HasRightIndent())
597 newAttr
.SetRightIndent(attr
.GetRightIndent());
598 else if (attrDef
.HasRightIndent())
599 newAttr
.SetRightIndent(attrDef
.GetRightIndent());
605 bool wxTextAttr::TabsEq(const wxArrayInt
& tabs1
, const wxArrayInt
& tabs2
)
607 if (tabs1
.GetCount() != tabs2
.GetCount())
611 for (i
= 0; i
< tabs1
.GetCount(); i
++)
613 if (tabs1
[i
] != tabs2
[i
])
620 bool wxTextAttr::RemoveStyle(wxTextAttr
& destStyle
, const wxTextAttr
& style
)
622 int flags
= style
.GetFlags();
623 int destFlags
= destStyle
.GetFlags();
625 destStyle
.SetFlags(destFlags
& ~flags
);
630 /// Combine two bitlists, specifying the bits of interest with separate flags.
631 bool wxTextAttr::CombineBitlists(int& valueA
, int valueB
, int& flagsA
, int flagsB
)
633 // We want to apply B's bits to A, taking into account each's flags which indicate which bits
634 // are to be taken into account. A zero in B's bits should reset that bit in A but only if B's flags
637 // First, reset the 0 bits from B. We make a mask so we're only dealing with B's zero
638 // bits at this point, ignoring any 1 bits in B or 0 bits in B that are not relevant.
639 int valueA2
= ~(~valueB
& flagsB
) & valueA
;
641 // Now combine the 1 bits.
642 int valueA3
= (valueB
& flagsB
) | valueA2
;
645 flagsA
= (flagsA
| flagsB
);
650 /// Compare two bitlists
651 bool wxTextAttr::BitlistsEqPartial(int valueA
, int valueB
, int flags
)
653 int relevantBitsA
= valueA
& flags
;
654 int relevantBitsB
= valueB
& flags
;
655 return (relevantBitsA
!= relevantBitsB
);
658 /// Split into paragraph and character styles
659 bool wxTextAttr::SplitParaCharStyles(const wxTextAttr
& style
, wxTextAttr
& parStyle
, wxTextAttr
& charStyle
)
661 wxTextAttr
defaultCharStyle1(style
);
662 wxTextAttr
defaultParaStyle1(style
);
663 defaultCharStyle1
.SetFlags(defaultCharStyle1
.GetFlags()&wxTEXT_ATTR_CHARACTER
);
664 defaultParaStyle1
.SetFlags(defaultParaStyle1
.GetFlags()&wxTEXT_ATTR_PARAGRAPH
);
666 charStyle
.Apply(defaultCharStyle1
);
667 parStyle
.Apply(defaultParaStyle1
);
672 // apply styling to text range
673 bool wxTextCtrlBase::SetStyle(long WXUNUSED(start
), long WXUNUSED(end
),
674 const wxTextAttr
& WXUNUSED(style
))
676 // to be implemented in derived classes
680 // get the styling at the given position
681 bool wxTextCtrlBase::GetStyle(long WXUNUSED(position
), wxTextAttr
& WXUNUSED(style
))
683 // to be implemented in derived classes
687 // change default text attributes
688 bool wxTextCtrlBase::SetDefaultStyle(const wxTextAttr
& style
)
690 // keep the old attributes if the new style doesn't specify them unless the
691 // new style is empty - then reset m_defaultStyle (as there is no other way
693 if ( style
.IsDefault() )
694 m_defaultStyle
= style
;
696 m_defaultStyle
= wxTextAttr::Combine(style
, m_defaultStyle
, this);
701 // ----------------------------------------------------------------------------
703 // ----------------------------------------------------------------------------
705 bool wxTextCtrlBase::DoLoadFile(const wxString
& filename
, int WXUNUSED(fileType
))
708 wxFFile
file(filename
);
709 if ( file
.IsOpened() )
712 if ( file
.ReadAll(&text
) )
718 m_filename
= filename
;
724 wxLogError(_("File couldn't be loaded."));
725 #endif // wxUSE_FFILE
730 bool wxTextAreaBase::SaveFile(const wxString
& filename
, int fileType
)
732 wxString filenameToUse
= filename
.empty() ? m_filename
: filename
;
733 if ( filenameToUse
.empty() )
735 // what kind of message to give? is it an error or a program bug?
736 wxLogDebug(wxT("Can't save textctrl to file without filename."));
741 return DoSaveFile(filenameToUse
, fileType
);
744 bool wxTextCtrlBase::DoSaveFile(const wxString
& filename
, int WXUNUSED(fileType
))
747 wxFFile
file(filename
, _T("w"));
748 if ( file
.IsOpened() && file
.Write(GetValue()) )
750 // if it worked, save for future calls
751 m_filename
= filename
;
753 // it's not modified any longer
758 #endif // wxUSE_FFILE
760 wxLogError(_("The text couldn't be saved."));
765 // ----------------------------------------------------------------------------
766 // stream-like insertion operator
767 // ----------------------------------------------------------------------------
769 wxTextCtrl
& wxTextCtrlBase::operator<<(const wxString
& s
)
772 return *TEXTCTRL(this);
775 wxTextCtrl
& wxTextCtrlBase::operator<<(float f
)
778 str
.Printf(wxT("%.2f"), f
);
780 return *TEXTCTRL(this);
783 wxTextCtrl
& wxTextCtrlBase::operator<<(double d
)
786 str
.Printf(wxT("%.2f"), d
);
788 return *TEXTCTRL(this);
791 wxTextCtrl
& wxTextCtrlBase::operator<<(int i
)
794 str
.Printf(wxT("%d"), i
);
796 return *TEXTCTRL(this);
799 wxTextCtrl
& wxTextCtrlBase::operator<<(long i
)
802 str
.Printf(wxT("%ld"), i
);
804 return *TEXTCTRL(this);
807 wxTextCtrl
& wxTextCtrlBase::operator<<(const wxChar c
)
809 return operator<<(wxString(c
));
812 // ----------------------------------------------------------------------------
813 // streambuf methods implementation
814 // ----------------------------------------------------------------------------
816 #if wxHAS_TEXT_WINDOW_STREAM
818 int wxTextCtrlBase::overflow(int c
)
820 AppendText((wxChar
)c
);
822 // return something different from EOF
826 #endif // wxHAS_TEXT_WINDOW_STREAM
828 // ----------------------------------------------------------------------------
829 // emulating key presses
830 // ----------------------------------------------------------------------------
832 bool wxTextCtrlBase::EmulateKeyPress(const wxKeyEvent
& event
)
834 // we have a native implementation for Win32 and so don't need this one
837 int keycode
= event
.GetKeyCode();
850 ch
= (wxChar
)(_T('0') + keycode
- WXK_NUMPAD0
);
854 case WXK_NUMPAD_MULTIPLY
:
864 case WXK_NUMPAD_SUBTRACT
:
869 case WXK_NUMPAD_DECIMAL
:
874 case WXK_NUMPAD_DIVIDE
:
879 case WXK_NUMPAD_DELETE
:
880 // delete the character at cursor
882 const long pos
= GetInsertionPoint();
883 if ( pos
< GetLastPosition() )
884 Remove(pos
, pos
+ 1);
889 // delete the character before the cursor
891 const long pos
= GetInsertionPoint();
893 Remove(pos
- 1, pos
);
899 if ( event
.GetUnicodeKey() )
901 ch
= event
.GetUnicodeKey();
905 if ( keycode
< 256 && keycode
>= 0 && wxIsprint(keycode
) )
907 // FIXME this is not going to work for non letters...
908 if ( !event
.ShiftDown() )
910 keycode
= wxTolower(keycode
);
913 ch
= (wxChar
)keycode
;
929 #endif // !__WIN32__/__WIN32__
934 // do the window-specific processing after processing the update event
935 void wxTextCtrlBase::DoUpdateWindowUI(wxUpdateUIEvent
& event
)
937 // call inherited, but skip the wxControl's version, and call directly the
938 // wxWindow's one instead, because the only reason why we are overriding this
939 // function is that we want to use SetValue() instead of wxControl::SetLabel()
940 wxWindowBase::DoUpdateWindowUI(event
);
943 if ( event
.GetSetText() )
945 if ( event
.GetText() != GetValue() )
946 SetValue(event
.GetText());
950 // ----------------------------------------------------------------------------
952 // ----------------------------------------------------------------------------
954 wxTextCtrlHitTestResult
955 wxTextAreaBase::HitTest(const wxPoint
& pt
, wxTextCoord
*x
, wxTextCoord
*y
) const
957 // implement in terms of the other overload as the native ports typically
958 // can get the position and not (x, y) pair directly (although wxUniv
959 // directly gets x and y -- and so overrides this method as well)
961 wxTextCtrlHitTestResult rc
= HitTest(pt
, &pos
);
963 if ( rc
!= wxTE_HT_UNKNOWN
)
965 PositionToXY(pos
, x
, y
);
971 wxTextCtrlHitTestResult
972 wxTextAreaBase::HitTest(const wxPoint
& WXUNUSED(pt
), long * WXUNUSED(pos
)) const
975 return wxTE_HT_UNKNOWN
;
978 // ----------------------------------------------------------------------------
980 // ----------------------------------------------------------------------------
983 bool wxTextCtrlBase::SendTextUpdatedEvent(wxWindow
*win
)
985 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, win
->GetId());
987 // do not do this as it could be very inefficient if the text control
988 // contains a lot of text and we're not using ref-counted wxString
989 // implementation -- instead, event.GetString() will query the control for
990 // its current text if needed
991 //event.SetString(win->GetValue());
993 event
.SetEventObject(win
);
994 return win
->GetEventHandler()->ProcessEvent(event
);
997 #else // !wxUSE_TEXTCTRL
999 // define this one even if !wxUSE_TEXTCTRL because it is also used by other
1000 // controls (wxComboBox and wxSpinCtrl)
1002 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TEXT_UPDATED
)
1004 #endif // wxUSE_TEXTCTRL/!wxUSE_TEXTCTRL