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