]>
Commit | Line | Data |
---|---|---|
5d7836c4 | 1 | ///////////////////////////////////////////////////////////////////////////// |
61399247 | 2 | // Name: src/richtext/richtextstyles.cpp |
5d7836c4 JS |
3 | // Purpose: Style management for wxRichTextCtrl |
4 | // Author: Julian Smart | |
61399247 | 5 | // Modified by: |
5d7836c4 | 6 | // Created: 2005-09-30 |
61399247 | 7 | // RCS-ID: $Id$ |
5d7836c4 JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // For compilers that support precompilation, includes "wx.h". | |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
fe5aa22c | 16 | #pragma hdrstop |
5d7836c4 JS |
17 | #endif |
18 | ||
b01ca8b6 JS |
19 | #if wxUSE_RICHTEXT |
20 | ||
21 | #include "wx/richtext/richtextstyles.h" | |
22 | ||
5d7836c4 | 23 | #ifndef WX_PRECOMP |
fe5aa22c | 24 | #include "wx/wx.h" |
5d7836c4 JS |
25 | #endif |
26 | ||
5d7836c4 JS |
27 | #include "wx/filename.h" |
28 | #include "wx/clipbrd.h" | |
29 | #include "wx/wfstream.h" | |
38f833b1 | 30 | #include "wx/settings.h" |
5d7836c4 | 31 | |
5d7836c4 JS |
32 | #include "wx/richtext/richtextctrl.h" |
33 | ||
34 | IMPLEMENT_CLASS(wxRichTextStyleDefinition, wxObject) | |
35 | IMPLEMENT_CLASS(wxRichTextCharacterStyleDefinition, wxRichTextStyleDefinition) | |
36 | IMPLEMENT_CLASS(wxRichTextParagraphStyleDefinition, wxRichTextStyleDefinition) | |
38f833b1 | 37 | IMPLEMENT_CLASS(wxRichTextListStyleDefinition, wxRichTextParagraphStyleDefinition) |
5d7836c4 | 38 | |
fe5aa22c JS |
39 | /*! |
40 | * A definition | |
41 | */ | |
42 | ||
43 | void wxRichTextStyleDefinition::Copy(const wxRichTextStyleDefinition& def) | |
44 | { | |
45 | m_name = def.m_name; | |
46 | m_baseStyle = def.m_baseStyle; | |
47 | m_style = def.m_style; | |
42688aea | 48 | m_description = def.m_description; |
fe5aa22c JS |
49 | } |
50 | ||
51 | bool wxRichTextStyleDefinition::Eq(const wxRichTextStyleDefinition& def) const | |
52 | { | |
53 | return (m_name == def.m_name && m_baseStyle == def.m_baseStyle && m_style == def.m_style); | |
54 | } | |
55 | ||
336d8ae9 VZ |
56 | /// Gets the style combined with the base style |
57 | wxRichTextAttr wxRichTextStyleDefinition::GetStyleMergedWithBase(const wxRichTextStyleSheet* sheet) const | |
58 | { | |
59 | if (!m_baseStyle.IsEmpty()) | |
60 | { | |
61 | wxRichTextStyleDefinition* baseStyle = sheet->FindStyle(m_baseStyle); | |
62 | if (baseStyle) | |
63 | { | |
64 | wxRichTextAttr baseAttr = baseStyle->GetStyleMergedWithBase(sheet); | |
65 | baseAttr.Apply(m_style, NULL); | |
66 | return baseAttr; | |
67 | } | |
68 | } | |
69 | return m_style; | |
70 | } | |
71 | ||
fe5aa22c JS |
72 | /*! |
73 | * Paragraph style definition | |
74 | */ | |
75 | ||
76 | void wxRichTextParagraphStyleDefinition::Copy(const wxRichTextParagraphStyleDefinition& def) | |
77 | { | |
78 | wxRichTextStyleDefinition::Copy(def); | |
79 | ||
80 | m_nextStyle = def.m_nextStyle; | |
81 | } | |
82 | ||
83 | bool wxRichTextParagraphStyleDefinition::operator ==(const wxRichTextParagraphStyleDefinition& def) const | |
84 | { | |
85 | return (Eq(def) && m_nextStyle == def.m_nextStyle); | |
86 | } | |
87 | ||
38f833b1 JS |
88 | /*! |
89 | * List style definition | |
90 | */ | |
91 | ||
92 | void wxRichTextListStyleDefinition::Copy(const wxRichTextListStyleDefinition& def) | |
93 | { | |
94 | wxRichTextParagraphStyleDefinition::Copy(def); | |
41a85215 | 95 | |
38f833b1 JS |
96 | int i; |
97 | for (i = 0; i < 10; i++) | |
98 | m_levelStyles[i] = def.m_levelStyles[i]; | |
99 | } | |
100 | ||
101 | bool wxRichTextListStyleDefinition::operator ==(const wxRichTextListStyleDefinition& def) const | |
102 | { | |
103 | if (!Eq(def)) | |
104 | return false; | |
105 | int i; | |
106 | for (i = 0; i < 10; i++) | |
107 | if (!(m_levelStyles[i] == def.m_levelStyles[i])) | |
108 | return false; | |
41a85215 | 109 | |
38f833b1 JS |
110 | return true; |
111 | } | |
112 | ||
113 | /// Sets/gets the attributes for the given level | |
d2d0adc7 | 114 | void wxRichTextListStyleDefinition::SetLevelAttributes(int i, const wxRichTextAttr& attr) |
38f833b1 JS |
115 | { |
116 | wxASSERT( (i >= 0 && i < 10) ); | |
117 | if (i >= 0 && i < 10) | |
118 | m_levelStyles[i] = attr; | |
119 | } | |
120 | ||
d2d0adc7 | 121 | const wxRichTextAttr* wxRichTextListStyleDefinition::GetLevelAttributes(int i) const |
38f833b1 JS |
122 | { |
123 | wxASSERT( (i >= 0 && i < 10) ); | |
124 | if (i >= 0 && i < 10) | |
125 | return & m_levelStyles[i]; | |
126 | else | |
127 | return NULL; | |
128 | } | |
129 | ||
d2d0adc7 | 130 | wxRichTextAttr* wxRichTextListStyleDefinition::GetLevelAttributes(int i) |
38f833b1 JS |
131 | { |
132 | wxASSERT( (i >= 0 && i < 10) ); | |
133 | if (i >= 0 && i < 10) | |
134 | return & m_levelStyles[i]; | |
135 | else | |
136 | return NULL; | |
137 | } | |
138 | ||
139 | /// Convenience function for setting the major attributes for a list level specification | |
140 | void wxRichTextListStyleDefinition::SetAttributes(int i, int leftIndent, int leftSubIndent, int bulletStyle, const wxString& bulletSymbol) | |
141 | { | |
142 | wxASSERT( (i >= 0 && i < 10) ); | |
143 | if (i >= 0 && i < 10) | |
144 | { | |
d2d0adc7 | 145 | wxRichTextAttr attr; |
41a85215 | 146 | |
38f833b1 JS |
147 | attr.SetBulletStyle(bulletStyle); |
148 | attr.SetLeftIndent(leftIndent, leftSubIndent); | |
149 | ||
150 | if (!bulletSymbol.IsEmpty()) | |
d2d0adc7 JS |
151 | { |
152 | if (bulletStyle & wxTEXT_ATTR_BULLET_STYLE_SYMBOL) | |
153 | attr.SetBulletText(bulletSymbol); | |
154 | else | |
155 | attr.SetBulletName(bulletSymbol); | |
156 | } | |
41a85215 WS |
157 | |
158 | m_levelStyles[i] = attr; | |
159 | } | |
38f833b1 JS |
160 | } |
161 | ||
162 | /// Finds the level corresponding to the given indentation | |
163 | int wxRichTextListStyleDefinition::FindLevelForIndent(int indent) const | |
164 | { | |
165 | int i; | |
166 | for (i = 0; i < 10; i++) | |
167 | { | |
168 | if (indent < m_levelStyles[i].GetLeftIndent()) | |
169 | { | |
170 | if (i > 0) | |
171 | return i - 1; | |
172 | else | |
173 | return 0; | |
174 | } | |
175 | } | |
176 | return 9; | |
177 | } | |
178 | ||
179 | /// Combine the list style with a paragraph style, using the given indent (from which | |
180 | /// an appropriate level is found) | |
336d8ae9 | 181 | wxRichTextAttr wxRichTextListStyleDefinition::CombineWithParagraphStyle(int indent, const wxRichTextAttr& paraStyle, wxRichTextStyleSheet* styleSheet) |
38f833b1 JS |
182 | { |
183 | int listLevel = FindLevelForIndent(indent); | |
41a85215 | 184 | |
d2d0adc7 | 185 | wxRichTextAttr attr(*GetLevelAttributes(listLevel)); |
38f833b1 JS |
186 | int oldLeftIndent = attr.GetLeftIndent(); |
187 | int oldLeftSubIndent = attr.GetLeftSubIndent(); | |
188 | ||
41a85215 | 189 | // First apply the overall paragraph style, if any |
336d8ae9 VZ |
190 | if (styleSheet) |
191 | attr.Apply(GetStyleMergedWithBase(styleSheet)); | |
192 | else | |
193 | attr.Apply(GetStyle()); | |
38f833b1 JS |
194 | |
195 | // Then apply paragraph style, e.g. from paragraph style definition | |
336d8ae9 | 196 | attr.Apply(paraStyle); |
41a85215 | 197 | |
38f833b1 JS |
198 | // We override the indents according to the list definition |
199 | attr.SetLeftIndent(oldLeftIndent, oldLeftSubIndent); | |
41a85215 | 200 | |
38f833b1 JS |
201 | return attr; |
202 | } | |
203 | ||
204 | /// Combine the base and list style, using the given indent (from which | |
205 | /// an appropriate level is found) | |
336d8ae9 | 206 | wxRichTextAttr wxRichTextListStyleDefinition::GetCombinedStyle(int indent, wxRichTextStyleSheet* styleSheet) |
38f833b1 JS |
207 | { |
208 | int listLevel = FindLevelForIndent(indent); | |
336d8ae9 | 209 | return GetCombinedStyleForLevel(listLevel, styleSheet); |
38f833b1 JS |
210 | } |
211 | ||
212 | /// Combine the base and list style, using the given indent (from which | |
213 | /// an appropriate level is found) | |
336d8ae9 | 214 | wxRichTextAttr wxRichTextListStyleDefinition::GetCombinedStyleForLevel(int listLevel, wxRichTextStyleSheet* styleSheet) |
38f833b1 | 215 | { |
d2d0adc7 | 216 | wxRichTextAttr attr(*GetLevelAttributes(listLevel)); |
38f833b1 JS |
217 | int oldLeftIndent = attr.GetLeftIndent(); |
218 | int oldLeftSubIndent = attr.GetLeftSubIndent(); | |
219 | ||
41a85215 | 220 | // Apply the overall paragraph style, if any |
336d8ae9 VZ |
221 | if (styleSheet) |
222 | attr.Apply(GetStyleMergedWithBase(styleSheet)); | |
223 | else | |
224 | attr.Apply(GetStyle()); | |
38f833b1 JS |
225 | |
226 | // We override the indents according to the list definition | |
227 | attr.SetLeftIndent(oldLeftIndent, oldLeftSubIndent); | |
41a85215 | 228 | |
38f833b1 JS |
229 | return attr; |
230 | } | |
231 | ||
232 | /// Is this a numbered list? | |
233 | bool wxRichTextListStyleDefinition::IsNumbered(int i) const | |
234 | { | |
235 | return (0 != (GetLevelAttributes(i)->GetFlags() & | |
236 | (wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER|wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER| | |
237 | wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER|wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER))); | |
238 | } | |
239 | ||
5d7836c4 JS |
240 | /*! |
241 | * The style manager | |
242 | */ | |
243 | ||
244 | IMPLEMENT_CLASS(wxRichTextStyleSheet, wxObject) | |
245 | ||
38f833b1 JS |
246 | wxRichTextStyleSheet::~wxRichTextStyleSheet() |
247 | { | |
248 | DeleteStyles(); | |
249 | ||
250 | if (m_nextSheet) | |
251 | m_nextSheet->m_previousSheet = m_previousSheet; | |
41a85215 | 252 | |
38f833b1 JS |
253 | if (m_previousSheet) |
254 | m_previousSheet->m_nextSheet = m_nextSheet; | |
41a85215 | 255 | |
38f833b1 JS |
256 | m_previousSheet = NULL; |
257 | m_nextSheet = NULL; | |
258 | } | |
259 | ||
5d7836c4 JS |
260 | /// Initialisation |
261 | void wxRichTextStyleSheet::Init() | |
262 | { | |
38f833b1 JS |
263 | m_previousSheet = NULL; |
264 | m_nextSheet = NULL; | |
5d7836c4 JS |
265 | } |
266 | ||
267 | /// Add a definition to one of the style lists | |
268 | bool wxRichTextStyleSheet::AddStyle(wxList& list, wxRichTextStyleDefinition* def) | |
269 | { | |
270 | if (!list.Find(def)) | |
271 | list.Append(def); | |
272 | return true; | |
273 | } | |
274 | ||
275 | /// Remove a style | |
276 | bool wxRichTextStyleSheet::RemoveStyle(wxList& list, wxRichTextStyleDefinition* def, bool deleteStyle) | |
277 | { | |
09f14108 | 278 | wxList::compatibility_iterator node = list.Find(def); |
5d7836c4 JS |
279 | if (node) |
280 | { | |
281 | wxRichTextStyleDefinition* def = (wxRichTextStyleDefinition*) node->GetData(); | |
09f14108 | 282 | list.Erase(node); |
5d7836c4 JS |
283 | if (deleteStyle) |
284 | delete def; | |
285 | return true; | |
286 | } | |
287 | else | |
288 | return false; | |
289 | } | |
290 | ||
336d8ae9 VZ |
291 | /// Remove a style |
292 | bool wxRichTextStyleSheet::RemoveStyle(wxRichTextStyleDefinition* def, bool deleteStyle) | |
293 | { | |
294 | if (RemoveParagraphStyle(def, deleteStyle)) | |
295 | return true; | |
296 | if (RemoveCharacterStyle(def, deleteStyle)) | |
297 | return true; | |
298 | if (RemoveListStyle(def, deleteStyle)) | |
299 | return true; | |
300 | return false; | |
301 | } | |
302 | ||
5d7836c4 | 303 | /// Find a definition by name |
38f833b1 | 304 | wxRichTextStyleDefinition* wxRichTextStyleSheet::FindStyle(const wxList& list, const wxString& name, bool recurse) const |
5d7836c4 | 305 | { |
09f14108 | 306 | for (wxList::compatibility_iterator node = list.GetFirst(); node; node = node->GetNext()) |
5d7836c4 JS |
307 | { |
308 | wxRichTextStyleDefinition* def = (wxRichTextStyleDefinition*) node->GetData(); | |
309 | if (def->GetName().Lower() == name.Lower()) | |
310 | return def; | |
311 | } | |
41a85215 | 312 | |
38f833b1 JS |
313 | if (m_nextSheet && recurse) |
314 | return m_nextSheet->FindStyle(list, name, recurse); | |
315 | ||
61399247 | 316 | return NULL; |
5d7836c4 JS |
317 | } |
318 | ||
319 | /// Delete all styles | |
320 | void wxRichTextStyleSheet::DeleteStyles() | |
321 | { | |
322 | WX_CLEAR_LIST(wxList, m_characterStyleDefinitions); | |
323 | WX_CLEAR_LIST(wxList, m_paragraphStyleDefinitions); | |
38f833b1 JS |
324 | WX_CLEAR_LIST(wxList, m_listStyleDefinitions); |
325 | } | |
326 | ||
327 | /// Insert into list of style sheets | |
328 | bool wxRichTextStyleSheet::InsertSheet(wxRichTextStyleSheet* before) | |
329 | { | |
330 | m_previousSheet = before->m_previousSheet; | |
331 | m_nextSheet = before; | |
41a85215 | 332 | |
38f833b1 JS |
333 | before->m_previousSheet = this; |
334 | return true; | |
335 | } | |
336 | ||
337 | /// Append to list of style sheets | |
338 | bool wxRichTextStyleSheet::AppendSheet(wxRichTextStyleSheet* after) | |
339 | { | |
340 | wxRichTextStyleSheet* last = after; | |
341 | while (last && last->m_nextSheet) | |
342 | { | |
343 | last = last->m_nextSheet; | |
344 | } | |
41a85215 | 345 | |
38f833b1 JS |
346 | if (last) |
347 | { | |
348 | m_previousSheet = last; | |
349 | last->m_nextSheet = this; | |
41a85215 | 350 | |
38f833b1 JS |
351 | return true; |
352 | } | |
353 | else | |
354 | return false; | |
355 | } | |
356 | ||
357 | /// Unlink from the list of style sheets | |
358 | void wxRichTextStyleSheet::Unlink() | |
359 | { | |
360 | if (m_previousSheet) | |
361 | m_previousSheet->m_nextSheet = m_nextSheet; | |
362 | if (m_nextSheet) | |
363 | m_nextSheet->m_previousSheet = m_previousSheet; | |
41a85215 | 364 | |
38f833b1 JS |
365 | m_previousSheet = NULL; |
366 | m_nextSheet = NULL; | |
5d7836c4 JS |
367 | } |
368 | ||
fe5aa22c JS |
369 | /// Add a definition to the character style list |
370 | bool wxRichTextStyleSheet::AddCharacterStyle(wxRichTextCharacterStyleDefinition* def) | |
371 | { | |
372 | def->GetStyle().SetCharacterStyleName(def->GetName()); | |
373 | return AddStyle(m_characterStyleDefinitions, def); | |
374 | } | |
375 | ||
376 | /// Add a definition to the paragraph style list | |
377 | bool wxRichTextStyleSheet::AddParagraphStyle(wxRichTextParagraphStyleDefinition* def) | |
378 | { | |
379 | def->GetStyle().SetParagraphStyleName(def->GetName()); | |
380 | return AddStyle(m_paragraphStyleDefinitions, def); | |
381 | } | |
382 | ||
38f833b1 JS |
383 | /// Add a definition to the list style list |
384 | bool wxRichTextStyleSheet::AddListStyle(wxRichTextListStyleDefinition* def) | |
385 | { | |
386 | def->GetStyle().SetListStyleName(def->GetName()); | |
387 | return AddStyle(m_listStyleDefinitions, def); | |
388 | } | |
389 | ||
336d8ae9 VZ |
390 | /// Add a definition to the appropriate style list |
391 | bool wxRichTextStyleSheet::AddStyle(wxRichTextStyleDefinition* def) | |
392 | { | |
393 | wxRichTextListStyleDefinition* listDef = wxDynamicCast(def, wxRichTextListStyleDefinition); | |
394 | if (listDef) | |
395 | return AddListStyle(listDef); | |
396 | ||
397 | wxRichTextParagraphStyleDefinition* paraDef = wxDynamicCast(def, wxRichTextParagraphStyleDefinition); | |
398 | if (paraDef) | |
399 | return AddParagraphStyle(paraDef); | |
400 | ||
401 | wxRichTextCharacterStyleDefinition* charDef = wxDynamicCast(def, wxRichTextCharacterStyleDefinition); | |
402 | if (charDef) | |
403 | return AddCharacterStyle(charDef); | |
3706bae0 | 404 | |
336d8ae9 VZ |
405 | return false; |
406 | } | |
407 | ||
408 | /// Find any definition by name | |
409 | wxRichTextStyleDefinition* wxRichTextStyleSheet::FindStyle(const wxString& name, bool recurse) const | |
410 | { | |
411 | wxRichTextListStyleDefinition* listDef = FindListStyle(name, recurse); | |
412 | if (listDef) | |
413 | return listDef; | |
414 | ||
415 | wxRichTextParagraphStyleDefinition* paraDef = FindParagraphStyle(name, recurse); | |
416 | if (paraDef) | |
417 | return paraDef; | |
418 | ||
419 | wxRichTextCharacterStyleDefinition* charDef = FindCharacterStyle(name, recurse); | |
420 | if (charDef) | |
421 | return charDef; | |
3706bae0 JS |
422 | |
423 | return NULL; | |
336d8ae9 VZ |
424 | } |
425 | ||
fe5aa22c JS |
426 | /// Copy |
427 | void wxRichTextStyleSheet::Copy(const wxRichTextStyleSheet& sheet) | |
428 | { | |
429 | DeleteStyles(); | |
430 | ||
431 | wxList::compatibility_iterator node; | |
432 | ||
433 | for (node = sheet.m_characterStyleDefinitions.GetFirst(); node; node = node->GetNext()) | |
434 | { | |
435 | wxRichTextCharacterStyleDefinition* def = (wxRichTextCharacterStyleDefinition*) node->GetData(); | |
436 | AddCharacterStyle(new wxRichTextCharacterStyleDefinition(*def)); | |
437 | } | |
438 | ||
439 | for (node = sheet.m_paragraphStyleDefinitions.GetFirst(); node; node = node->GetNext()) | |
440 | { | |
441 | wxRichTextParagraphStyleDefinition* def = (wxRichTextParagraphStyleDefinition*) node->GetData(); | |
442 | AddParagraphStyle(new wxRichTextParagraphStyleDefinition(*def)); | |
443 | } | |
38f833b1 JS |
444 | |
445 | for (node = sheet.m_listStyleDefinitions.GetFirst(); node; node = node->GetNext()) | |
446 | { | |
447 | wxRichTextListStyleDefinition* def = (wxRichTextListStyleDefinition*) node->GetData(); | |
448 | AddListStyle(new wxRichTextListStyleDefinition(*def)); | |
449 | } | |
3706bae0 | 450 | |
42688aea JS |
451 | SetName(sheet.GetName()); |
452 | SetDescription(sheet.GetDescription()); | |
fe5aa22c JS |
453 | } |
454 | ||
455 | /// Equality | |
456 | bool wxRichTextStyleSheet::operator==(const wxRichTextStyleSheet& WXUNUSED(sheet)) const | |
457 | { | |
458 | // TODO | |
459 | return false; | |
460 | } | |
461 | ||
462 | ||
5d7836c4 JS |
463 | #if wxUSE_HTML |
464 | /*! | |
38f833b1 | 465 | * wxRichTextStyleListBox: a listbox to display styles. |
5d7836c4 JS |
466 | */ |
467 | ||
468 | IMPLEMENT_CLASS(wxRichTextStyleListBox, wxHtmlListBox) | |
469 | ||
470 | BEGIN_EVENT_TABLE(wxRichTextStyleListBox, wxHtmlListBox) | |
5d7836c4 | 471 | EVT_LEFT_DOWN(wxRichTextStyleListBox::OnLeftDown) |
38f833b1 | 472 | EVT_LEFT_DCLICK(wxRichTextStyleListBox::OnLeftDoubleClick) |
e637208a | 473 | EVT_IDLE(wxRichTextStyleListBox::OnIdle) |
5d7836c4 JS |
474 | END_EVENT_TABLE() |
475 | ||
476 | wxRichTextStyleListBox::wxRichTextStyleListBox(wxWindow* parent, wxWindowID id, const wxPoint& pos, | |
e637208a | 477 | const wxSize& size, long style) |
5d7836c4 | 478 | { |
e637208a JS |
479 | Init(); |
480 | Create(parent, id, pos, size, style); | |
481 | } | |
482 | ||
483 | bool wxRichTextStyleListBox::Create(wxWindow* parent, wxWindowID id, const wxPoint& pos, | |
484 | const wxSize& size, long style) | |
485 | { | |
486 | return wxHtmlListBox::Create(parent, id, pos, size, style); | |
5d7836c4 JS |
487 | } |
488 | ||
489 | wxRichTextStyleListBox::~wxRichTextStyleListBox() | |
490 | { | |
491 | } | |
492 | ||
493 | /// Returns the HTML for this item | |
494 | wxString wxRichTextStyleListBox::OnGetItem(size_t n) const | |
495 | { | |
496 | if (!GetStyleSheet()) | |
497 | return wxEmptyString; | |
41a85215 | 498 | |
38f833b1 JS |
499 | wxRichTextStyleDefinition* def = GetStyle(n); |
500 | if (def) | |
501 | return CreateHTML(def); | |
5d7836c4 | 502 | |
5d7836c4 JS |
503 | return wxEmptyString; |
504 | } | |
505 | ||
506 | // Get style for index | |
507 | wxRichTextStyleDefinition* wxRichTextStyleListBox::GetStyle(size_t i) const | |
508 | { | |
509 | if (!GetStyleSheet()) | |
510 | return NULL; | |
3706bae0 | 511 | |
8a8e9df8 | 512 | if (i >= m_styleNames.GetCount() /* || i < 0 */ ) |
486dd03a | 513 | return NULL; |
5d7836c4 | 514 | |
486dd03a | 515 | return GetStyleSheet()->FindStyle(m_styleNames[i]); |
5d7836c4 JS |
516 | } |
517 | ||
518 | /// Updates the list | |
519 | void wxRichTextStyleListBox::UpdateStyles() | |
520 | { | |
521 | if (GetStyleSheet()) | |
522 | { | |
dadd4f55 | 523 | SetSelection(wxNOT_FOUND); |
3706bae0 | 524 | |
486dd03a | 525 | m_styleNames.Clear(); |
3706bae0 | 526 | |
486dd03a JS |
527 | size_t i; |
528 | if (GetStyleType() == wxRICHTEXT_STYLE_ALL || GetStyleType() == wxRICHTEXT_STYLE_PARAGRAPH) | |
529 | { | |
530 | for (i = 0; i < GetStyleSheet()->GetParagraphStyleCount(); i++) | |
531 | m_styleNames.Add(GetStyleSheet()->GetParagraphStyle(i)->GetName()); | |
532 | } | |
533 | if (GetStyleType() == wxRICHTEXT_STYLE_ALL || GetStyleType() == wxRICHTEXT_STYLE_CHARACTER) | |
534 | { | |
535 | for (i = 0; i < GetStyleSheet()->GetCharacterStyleCount(); i++) | |
536 | m_styleNames.Add(GetStyleSheet()->GetCharacterStyle(i)->GetName()); | |
537 | } | |
538 | if (GetStyleType() == wxRICHTEXT_STYLE_ALL || GetStyleType() == wxRICHTEXT_STYLE_LIST) | |
539 | { | |
540 | for (i = 0; i < GetStyleSheet()->GetListStyleCount(); i++) | |
541 | m_styleNames.Add(GetStyleSheet()->GetListStyle(i)->GetName()); | |
542 | } | |
3706bae0 | 543 | |
486dd03a JS |
544 | m_styleNames.Sort(); |
545 | SetItemCount(m_styleNames.GetCount()); | |
41a85215 | 546 | |
5d7836c4 | 547 | Refresh(); |
dadd4f55 JS |
548 | |
549 | if (GetItemCount() > 0) | |
550 | { | |
551 | SetSelection(0); | |
552 | SendSelectedEvent(); | |
41a85215 | 553 | } |
5d7836c4 JS |
554 | } |
555 | } | |
556 | ||
e637208a JS |
557 | // Get index for style name |
558 | int wxRichTextStyleListBox::GetIndexForStyle(const wxString& name) const | |
559 | { | |
486dd03a | 560 | return m_styleNames.Index(name); |
e637208a JS |
561 | } |
562 | ||
563 | /// Set selection for string | |
564 | int wxRichTextStyleListBox::SetStyleSelection(const wxString& name) | |
565 | { | |
566 | int i = GetIndexForStyle(name); | |
567 | if (i > -1) | |
568 | SetSelection(i); | |
569 | return i; | |
570 | } | |
571 | ||
5d7836c4 JS |
572 | // Convert a colour to a 6-digit hex string |
573 | static wxString ColourToHexString(const wxColour& col) | |
574 | { | |
575 | wxString hex; | |
576 | ||
577 | hex += wxDecToHex(col.Red()); | |
578 | hex += wxDecToHex(col.Green()); | |
579 | hex += wxDecToHex(col.Blue()); | |
580 | ||
581 | return hex; | |
582 | } | |
583 | ||
584 | /// Creates a suitable HTML fragment for a definition | |
585 | wxString wxRichTextStyleListBox::CreateHTML(wxRichTextStyleDefinition* def) const | |
586 | { | |
38f833b1 JS |
587 | // TODO: indicate list format for list style types |
588 | ||
380a5dd8 JS |
589 | wxString str; |
590 | ||
591 | bool isCentred = false; | |
3706bae0 | 592 | |
336d8ae9 | 593 | wxRichTextAttr attr(def->GetStyleMergedWithBase(GetStyleSheet())); |
380a5dd8 | 594 | |
336d8ae9 | 595 | if (attr.HasAlignment() && attr.GetAlignment() == wxTEXT_ALIGNMENT_CENTRE) |
380a5dd8 JS |
596 | isCentred = true; |
597 | ||
598 | if (isCentred) | |
599 | str << wxT("<center>"); | |
600 | ||
3706bae0 | 601 | |
380a5dd8 | 602 | str << wxT("<table><tr>"); |
5d7836c4 | 603 | |
336d8ae9 | 604 | if (attr.GetLeftIndent() > 0) |
5d7836c4 JS |
605 | { |
606 | wxClientDC dc((wxWindow*) this); | |
607 | ||
336d8ae9 | 608 | str << wxT("<td width=") << wxMin(50, (ConvertTenthsMMToPixels(dc, attr.GetLeftIndent())/2)) << wxT("></td>"); |
5d7836c4 JS |
609 | } |
610 | ||
380a5dd8 JS |
611 | if (isCentred) |
612 | str << wxT("<td nowrap align=\"center\">"); | |
613 | else | |
614 | str << wxT("<td nowrap>"); | |
5d7836c4 | 615 | |
dadd4f55 JS |
616 | #ifdef __WXMSW__ |
617 | int size = 3; | |
618 | #else | |
38f833b1 | 619 | int size = 4; |
dadd4f55 JS |
620 | #endif |
621 | ||
622 | int stdFontSize = 12; | |
336d8ae9 | 623 | int thisFontSize = ((attr.GetFlags() & wxTEXT_ATTR_FONT_SIZE) != 0) ? attr.GetFontSize() : stdFontSize; |
5d7836c4 | 624 | |
dadd4f55 JS |
625 | if (thisFontSize < stdFontSize) |
626 | size ++; | |
627 | else if (thisFontSize > stdFontSize) | |
628 | size --; | |
5d7836c4 JS |
629 | |
630 | str += wxT("<font"); | |
631 | ||
632 | str << wxT(" size=") << size; | |
633 | ||
336d8ae9 VZ |
634 | if (!attr.GetFontFaceName().IsEmpty()) |
635 | str << wxT(" face=\"") << attr.GetFontFaceName() << wxT("\""); | |
5d7836c4 | 636 | |
336d8ae9 VZ |
637 | if (attr.GetTextColour().Ok()) |
638 | str << wxT(" color=\"#") << ColourToHexString(attr.GetTextColour()) << wxT("\""); | |
5d7836c4 JS |
639 | |
640 | str << wxT(">"); | |
641 | ||
642 | bool hasBold = false; | |
643 | bool hasItalic = false; | |
644 | bool hasUnderline = false; | |
645 | ||
336d8ae9 | 646 | if (attr.GetFontWeight() == wxBOLD) |
5d7836c4 | 647 | hasBold = true; |
336d8ae9 | 648 | if (attr.GetFontStyle() == wxITALIC) |
5d7836c4 | 649 | hasItalic = true; |
336d8ae9 | 650 | if (attr.GetFontUnderlined()) |
5d7836c4 JS |
651 | hasUnderline = true; |
652 | ||
653 | if (hasBold) | |
654 | str << wxT("<b>"); | |
655 | if (hasItalic) | |
656 | str << wxT("<i>"); | |
657 | if (hasUnderline) | |
658 | str << wxT("<u>"); | |
659 | ||
660 | str += def->GetName(); | |
661 | ||
662 | if (hasUnderline) | |
663 | str << wxT("</u>"); | |
664 | if (hasItalic) | |
665 | str << wxT("</i>"); | |
666 | if (hasBold) | |
667 | str << wxT("</b>"); | |
668 | ||
380a5dd8 JS |
669 | if (isCentred) |
670 | str << wxT("</centre>"); | |
671 | ||
5d7836c4 JS |
672 | str << wxT("</font>"); |
673 | ||
380a5dd8 JS |
674 | str << wxT("</td></tr></table>"); |
675 | ||
676 | if (isCentred) | |
677 | str << wxT("</center>"); | |
678 | ||
5d7836c4 JS |
679 | return str; |
680 | } | |
681 | ||
682 | // Convert units in tends of a millimetre to device units | |
683 | int wxRichTextStyleListBox::ConvertTenthsMMToPixels(wxDC& dc, int units) const | |
684 | { | |
685 | int ppi = dc.GetPPI().x; | |
686 | ||
687 | // There are ppi pixels in 254.1 "1/10 mm" | |
688 | ||
689 | double pixels = ((double) units * (double)ppi) / 254.1; | |
690 | ||
691 | return (int) pixels; | |
692 | } | |
693 | ||
5d7836c4 JS |
694 | void wxRichTextStyleListBox::OnLeftDown(wxMouseEvent& event) |
695 | { | |
696 | wxVListBox::OnLeftDown(event); | |
697 | ||
698 | int item = HitTest(event.GetPosition()); | |
86015e55 JS |
699 | if (item != wxNOT_FOUND && GetApplyOnSelection()) |
700 | ApplyStyle(item); | |
e637208a | 701 | } |
5d7836c4 | 702 | |
38f833b1 | 703 | void wxRichTextStyleListBox::OnLeftDoubleClick(wxMouseEvent& event) |
e637208a | 704 | { |
38f833b1 | 705 | wxVListBox::OnLeftDown(event); |
fe5aa22c | 706 | |
38f833b1 JS |
707 | int item = HitTest(event.GetPosition()); |
708 | if (item != wxNOT_FOUND && !GetApplyOnSelection()) | |
709 | ApplyStyle(item); | |
710 | } | |
e637208a | 711 | |
38f833b1 JS |
712 | /// Helper for listbox and combo control |
713 | wxString wxRichTextStyleListBox::GetStyleToShowInIdleTime(wxRichTextCtrl* ctrl, wxRichTextStyleType styleType) | |
714 | { | |
715 | int adjustedCaretPos = ctrl->GetAdjustedCaretPosition(ctrl->GetCaretPosition()); | |
e637208a | 716 | |
38f833b1 JS |
717 | wxRichTextParagraph* para = ctrl->GetBuffer().GetParagraphAtPosition(adjustedCaretPos); |
718 | wxRichTextObject* obj = ctrl->GetBuffer().GetLeafObjectAtPosition(adjustedCaretPos); | |
719 | ||
720 | wxString styleName; | |
721 | ||
722 | // Take into account current default style just chosen by user | |
723 | if (ctrl->IsDefaultStyleShowing()) | |
724 | { | |
3706bae0 JS |
725 | wxTextAttrEx attr; |
726 | ||
727 | ctrl->GetStyle(adjustedCaretPos, attr); | |
728 | wxRichTextApplyStyle(attr, ctrl->GetDefaultStyleEx()); | |
729 | ||
38f833b1 | 730 | if ((styleType == wxRICHTEXT_STYLE_ALL || styleType == wxRICHTEXT_STYLE_CHARACTER) && |
3706bae0 JS |
731 | !attr.GetCharacterStyleName().IsEmpty()) |
732 | styleName = attr.GetCharacterStyleName(); | |
38f833b1 | 733 | else if ((styleType == wxRICHTEXT_STYLE_ALL || styleType == wxRICHTEXT_STYLE_PARAGRAPH) && |
3706bae0 JS |
734 | !attr.GetParagraphStyleName().IsEmpty()) |
735 | styleName = attr.GetParagraphStyleName(); | |
38f833b1 | 736 | else if ((styleType == wxRICHTEXT_STYLE_ALL || styleType == wxRICHTEXT_STYLE_LIST) && |
3706bae0 JS |
737 | !attr.GetListStyleName().IsEmpty()) |
738 | styleName = attr.GetListStyleName(); | |
38f833b1 JS |
739 | } |
740 | else if (obj && (styleType == wxRICHTEXT_STYLE_ALL || styleType == wxRICHTEXT_STYLE_CHARACTER) && | |
741 | !obj->GetAttributes().GetCharacterStyleName().IsEmpty()) | |
742 | { | |
743 | styleName = obj->GetAttributes().GetCharacterStyleName(); | |
744 | } | |
745 | else if (para && (styleType == wxRICHTEXT_STYLE_ALL || styleType == wxRICHTEXT_STYLE_PARAGRAPH) && | |
746 | !para->GetAttributes().GetParagraphStyleName().IsEmpty()) | |
747 | { | |
748 | styleName = para->GetAttributes().GetParagraphStyleName(); | |
749 | } | |
750 | else if (para && (styleType == wxRICHTEXT_STYLE_ALL || styleType == wxRICHTEXT_STYLE_LIST) && | |
751 | !para->GetAttributes().GetListStyleName().IsEmpty()) | |
752 | { | |
753 | styleName = para->GetAttributes().GetListStyleName(); | |
754 | } | |
41a85215 | 755 | |
38f833b1 JS |
756 | return styleName; |
757 | } | |
758 | ||
759 | /// Auto-select from style under caret in idle time | |
760 | void wxRichTextStyleListBox::OnIdle(wxIdleEvent& event) | |
761 | { | |
762 | if (CanAutoSetSelection() && GetRichTextCtrl() && wxWindow::FindFocus() != this) | |
763 | { | |
764 | wxString styleName = GetStyleToShowInIdleTime(GetRichTextCtrl(), GetStyleType()); | |
61399247 | 765 | |
e637208a JS |
766 | int sel = GetSelection(); |
767 | if (!styleName.IsEmpty()) | |
768 | { | |
769 | // Don't do the selection if it's already set | |
770 | if (sel == GetIndexForStyle(styleName)) | |
771 | return; | |
5d7836c4 | 772 | |
e637208a JS |
773 | SetStyleSelection(styleName); |
774 | } | |
775 | else if (sel != -1) | |
776 | SetSelection(-1); | |
777 | } | |
778 | event.Skip(); | |
779 | } | |
5d7836c4 | 780 | |
e637208a | 781 | /// Do selection |
86015e55 | 782 | void wxRichTextStyleListBox::ApplyStyle(int item) |
e637208a JS |
783 | { |
784 | if ( item != wxNOT_FOUND ) | |
785 | { | |
786 | wxRichTextStyleDefinition* def = GetStyle(item); | |
787 | if (def && GetRichTextCtrl()) | |
788 | { | |
789 | GetRichTextCtrl()->ApplyStyle(def); | |
790 | GetRichTextCtrl()->SetFocus(); | |
5d7836c4 JS |
791 | } |
792 | } | |
793 | } | |
794 | ||
38f833b1 JS |
795 | /*! |
796 | * wxRichTextStyleListCtrl class: manages a listbox and a choice control to | |
797 | * switch shown style types | |
798 | */ | |
799 | ||
800 | IMPLEMENT_CLASS(wxRichTextStyleListCtrl, wxControl) | |
801 | ||
802 | BEGIN_EVENT_TABLE(wxRichTextStyleListCtrl, wxControl) | |
803 | EVT_CHOICE(wxID_ANY, wxRichTextStyleListCtrl::OnChooseType) | |
804 | EVT_SIZE(wxRichTextStyleListCtrl::OnSize) | |
805 | END_EVENT_TABLE() | |
806 | ||
807 | wxRichTextStyleListCtrl::wxRichTextStyleListCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pos, | |
808 | const wxSize& size, long style) | |
5d7836c4 | 809 | { |
38f833b1 JS |
810 | Init(); |
811 | Create(parent, id, pos, size, style); | |
5d7836c4 JS |
812 | } |
813 | ||
38f833b1 JS |
814 | bool wxRichTextStyleListCtrl::Create(wxWindow* parent, wxWindowID id, const wxPoint& pos, |
815 | const wxSize& size, long style) | |
5d7836c4 | 816 | { |
38f833b1 | 817 | wxControl::Create(parent, id, pos, size, style); |
41a85215 | 818 | |
38f833b1 | 819 | SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); |
dadd4f55 | 820 | if (size != wxDefaultSize) |
170acdc9 | 821 | SetInitialSize(size); |
41a85215 | 822 | |
dadd4f55 | 823 | bool showSelector = ((style & wxRICHTEXTSTYLELIST_HIDE_TYPE_SELECTOR) == 0); |
41a85215 | 824 | |
a047aff2 | 825 | m_styleListBox = new wxRichTextStyleListBox(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, showSelector ? wxBORDER_DEFAULT : wxBORDER_NONE); |
dadd4f55 JS |
826 | |
827 | wxBoxSizer* boxSizer = new wxBoxSizer(wxVERTICAL); | |
41a85215 | 828 | |
dadd4f55 | 829 | if (showSelector) |
41a85215 | 830 | { |
dadd4f55 JS |
831 | wxArrayString choices; |
832 | choices.Add(_("All styles")); | |
833 | choices.Add(_("Paragraph styles")); | |
834 | choices.Add(_("Character styles")); | |
835 | choices.Add(_("List styles")); | |
41a85215 | 836 | |
dadd4f55 | 837 | m_styleChoice = new wxChoice(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, choices); |
41a85215 | 838 | |
dadd4f55 | 839 | boxSizer->Add(m_styleListBox, 1, wxALL|wxEXPAND, 5); |
a047aff2 | 840 | boxSizer->Add(m_styleChoice, 0, wxLEFT|wxRIGHT|wxBOTTOM|wxEXPAND, 5); |
dadd4f55 JS |
841 | } |
842 | else | |
843 | { | |
844 | boxSizer->Add(m_styleListBox, 1, wxALL|wxEXPAND, 0); | |
845 | } | |
41a85215 | 846 | |
dadd4f55 JS |
847 | SetSizer(boxSizer); |
848 | Layout(); | |
38f833b1 JS |
849 | |
850 | m_dontUpdate = true; | |
dadd4f55 JS |
851 | |
852 | if (m_styleChoice) | |
41a85215 | 853 | { |
dadd4f55 JS |
854 | int i = StyleTypeToIndex(m_styleListBox->GetStyleType()); |
855 | m_styleChoice->SetSelection(i); | |
856 | } | |
41a85215 | 857 | |
38f833b1 | 858 | m_dontUpdate = false; |
41a85215 | 859 | |
38f833b1 JS |
860 | return true; |
861 | } | |
862 | ||
863 | wxRichTextStyleListCtrl::~wxRichTextStyleListCtrl() | |
864 | { | |
41a85215 | 865 | |
38f833b1 JS |
866 | } |
867 | ||
868 | /// React to style type choice | |
869 | void wxRichTextStyleListCtrl::OnChooseType(wxCommandEvent& event) | |
870 | { | |
871 | if (event.GetEventObject() != m_styleChoice) | |
872 | event.Skip(); | |
873 | else | |
874 | { | |
875 | if (m_dontUpdate) | |
876 | return; | |
41a85215 | 877 | |
38f833b1 JS |
878 | wxRichTextStyleListBox::wxRichTextStyleType styleType = StyleIndexToType(event.GetSelection()); |
879 | m_styleListBox->SetStyleType(styleType); | |
880 | } | |
881 | } | |
882 | ||
883 | /// Lay out the controls | |
884 | void wxRichTextStyleListCtrl::OnSize(wxSizeEvent& WXUNUSED(event)) | |
885 | { | |
886 | if (GetAutoLayout()) | |
887 | Layout(); | |
888 | } | |
889 | ||
890 | /// Get the choice index for style type | |
891 | int wxRichTextStyleListCtrl::StyleTypeToIndex(wxRichTextStyleListBox::wxRichTextStyleType styleType) | |
892 | { | |
893 | if (styleType == wxRichTextStyleListBox::wxRICHTEXT_STYLE_ALL) | |
894 | { | |
895 | return 0; | |
896 | } | |
897 | else if (styleType == wxRichTextStyleListBox::wxRICHTEXT_STYLE_PARAGRAPH) | |
898 | { | |
899 | return 1; | |
900 | } | |
901 | else if (styleType == wxRichTextStyleListBox::wxRICHTEXT_STYLE_CHARACTER) | |
902 | { | |
903 | return 2; | |
904 | } | |
905 | else if (styleType == wxRichTextStyleListBox::wxRICHTEXT_STYLE_LIST) | |
906 | { | |
907 | return 3; | |
908 | } | |
909 | return 0; | |
910 | } | |
911 | ||
912 | /// Get the style type for choice index | |
913 | wxRichTextStyleListBox::wxRichTextStyleType wxRichTextStyleListCtrl::StyleIndexToType(int i) | |
914 | { | |
915 | if (i == 1) | |
916 | return wxRichTextStyleListBox::wxRICHTEXT_STYLE_PARAGRAPH; | |
917 | else if (i == 2) | |
918 | return wxRichTextStyleListBox::wxRICHTEXT_STYLE_CHARACTER; | |
919 | else if (i == 3) | |
920 | return wxRichTextStyleListBox::wxRICHTEXT_STYLE_LIST; | |
921 | ||
922 | return wxRichTextStyleListBox::wxRICHTEXT_STYLE_ALL; | |
923 | } | |
924 | ||
925 | /// Associates the control with a style manager | |
926 | void wxRichTextStyleListCtrl::SetStyleSheet(wxRichTextStyleSheet* styleSheet) | |
927 | { | |
928 | if (m_styleListBox) | |
929 | m_styleListBox->SetStyleSheet(styleSheet); | |
930 | } | |
931 | ||
932 | wxRichTextStyleSheet* wxRichTextStyleListCtrl::GetStyleSheet() const | |
933 | { | |
934 | if (m_styleListBox) | |
935 | return m_styleListBox->GetStyleSheet(); | |
936 | else | |
937 | return NULL; | |
938 | } | |
939 | ||
940 | /// Associates the control with a wxRichTextCtrl | |
941 | void wxRichTextStyleListCtrl::SetRichTextCtrl(wxRichTextCtrl* ctrl) | |
942 | { | |
943 | if (m_styleListBox) | |
944 | m_styleListBox->SetRichTextCtrl(ctrl); | |
945 | } | |
946 | ||
947 | wxRichTextCtrl* wxRichTextStyleListCtrl::GetRichTextCtrl() const | |
948 | { | |
949 | if (m_styleListBox) | |
950 | return m_styleListBox->GetRichTextCtrl(); | |
951 | else | |
952 | return NULL; | |
953 | } | |
954 | ||
955 | /// Set/get the style type to display | |
956 | void wxRichTextStyleListCtrl::SetStyleType(wxRichTextStyleListBox::wxRichTextStyleType styleType) | |
957 | { | |
cd5dea50 VZ |
958 | if ( !m_styleListBox ) |
959 | return; | |
960 | ||
961 | m_styleListBox->SetStyleType(styleType); | |
38f833b1 JS |
962 | |
963 | m_dontUpdate = true; | |
964 | ||
965 | if (m_styleChoice) | |
41a85215 | 966 | { |
38f833b1 JS |
967 | int i = StyleTypeToIndex(m_styleListBox->GetStyleType()); |
968 | m_styleChoice->SetSelection(i); | |
969 | } | |
41a85215 | 970 | |
38f833b1 JS |
971 | m_dontUpdate = false; |
972 | } | |
973 | ||
974 | wxRichTextStyleListBox::wxRichTextStyleType wxRichTextStyleListCtrl::GetStyleType() const | |
975 | { | |
976 | if (m_styleListBox) | |
977 | return m_styleListBox->GetStyleType(); | |
978 | else | |
979 | return wxRichTextStyleListBox::wxRICHTEXT_STYLE_ALL; | |
980 | } | |
981 | ||
982 | /// Updates the style list box | |
983 | void wxRichTextStyleListCtrl::UpdateStyles() | |
984 | { | |
985 | if (m_styleListBox) | |
41a85215 | 986 | m_styleListBox->UpdateStyles(); |
5d7836c4 | 987 | } |
5d7836c4 | 988 | |
e637208a JS |
989 | #if wxUSE_COMBOCTRL |
990 | ||
991 | /*! | |
992 | * Style drop-down for a wxComboCtrl | |
993 | */ | |
994 | ||
995 | ||
996 | BEGIN_EVENT_TABLE(wxRichTextStyleComboPopup, wxRichTextStyleListBox) | |
997 | EVT_MOTION(wxRichTextStyleComboPopup::OnMouseMove) | |
998 | EVT_LEFT_DOWN(wxRichTextStyleComboPopup::OnMouseClick) | |
999 | END_EVENT_TABLE() | |
1000 | ||
a047aff2 JS |
1001 | bool wxRichTextStyleComboPopup::Create( wxWindow* parent ) |
1002 | { | |
1003 | int borderStyle = GetDefaultBorder(); | |
1004 | if (borderStyle == wxBORDER_SUNKEN) | |
1005 | borderStyle = wxBORDER_SIMPLE; | |
1006 | ||
1007 | return wxRichTextStyleListBox::Create(parent, wxID_ANY, | |
1008 | wxPoint(0,0), wxDefaultSize, | |
1009 | borderStyle); | |
1010 | } | |
1011 | ||
e637208a JS |
1012 | void wxRichTextStyleComboPopup::SetStringValue( const wxString& s ) |
1013 | { | |
1014 | m_value = SetStyleSelection(s); | |
1015 | } | |
1016 | ||
1017 | wxString wxRichTextStyleComboPopup::GetStringValue() const | |
1018 | { | |
1019 | int sel = m_value; | |
1020 | if (sel > -1) | |
1021 | { | |
1022 | wxRichTextStyleDefinition* def = GetStyle(sel); | |
1023 | if (def) | |
1024 | return def->GetName(); | |
1025 | } | |
1026 | return wxEmptyString; | |
1027 | } | |
1028 | ||
1029 | // | |
1030 | // Popup event handlers | |
1031 | // | |
1032 | ||
1033 | // Mouse hot-tracking | |
1034 | void wxRichTextStyleComboPopup::OnMouseMove(wxMouseEvent& event) | |
1035 | { | |
1036 | // Move selection to cursor if it is inside the popup | |
1037 | ||
1038 | int itemHere = wxRichTextStyleListBox::HitTest(event.GetPosition()); | |
1039 | if ( itemHere >= 0 ) | |
1040 | { | |
1041 | wxRichTextStyleListBox::SetSelection(itemHere); | |
1042 | m_itemHere = itemHere; | |
1043 | } | |
1044 | event.Skip(); | |
1045 | } | |
1046 | ||
1047 | // On mouse left, set the value and close the popup | |
1048 | void wxRichTextStyleComboPopup::OnMouseClick(wxMouseEvent& WXUNUSED(event)) | |
1049 | { | |
1050 | if (m_itemHere >= 0) | |
1051 | m_value = m_itemHere; | |
1052 | ||
1053 | // Ordering is important, so we don't dismiss this popup accidentally | |
86015e55 | 1054 | // by setting the focus elsewhere e.g. in ApplyStyle |
e637208a JS |
1055 | Dismiss(); |
1056 | ||
1057 | if (m_itemHere >= 0) | |
86015e55 | 1058 | wxRichTextStyleListBox::ApplyStyle(m_itemHere); |
e637208a JS |
1059 | } |
1060 | ||
1061 | /*! | |
1062 | * wxRichTextStyleComboCtrl | |
1063 | * A combo for applying styles. | |
1064 | */ | |
1065 | ||
1066 | IMPLEMENT_CLASS(wxRichTextStyleComboCtrl, wxComboCtrl) | |
1067 | ||
1068 | BEGIN_EVENT_TABLE(wxRichTextStyleComboCtrl, wxComboCtrl) | |
1069 | EVT_IDLE(wxRichTextStyleComboCtrl::OnIdle) | |
1070 | END_EVENT_TABLE() | |
1071 | ||
1072 | bool wxRichTextStyleComboCtrl::Create(wxWindow* parent, wxWindowID id, const wxPoint& pos, | |
1073 | const wxSize& size, long style) | |
1074 | { | |
1075 | if (!wxComboCtrl::Create(parent, id, wxEmptyString, pos, size, style)) | |
1076 | return false; | |
1077 | ||
1078 | SetPopupMaxHeight(400); | |
1079 | ||
1080 | m_stylePopup = new wxRichTextStyleComboPopup; | |
1081 | ||
1082 | SetPopupControl(m_stylePopup); | |
1083 | ||
1084 | return true; | |
1085 | } | |
1086 | ||
1087 | /// Auto-select from style under caret in idle time | |
1088 | ||
1089 | // TODO: must be able to show italic, bold, combinations | |
1090 | // in style box. Do we have a concept of automatic, temporary | |
1091 | // styles that are added whenever we wish to show a style | |
1092 | // that doesn't exist already? E.g. "Bold, Italic, Underline". | |
1093 | // Word seems to generate these things on the fly. | |
1094 | // If there's a named style already, it uses e.g. Heading1 + Bold, Italic | |
1095 | // If you unembolden text in a style that has bold, it uses the | |
1096 | // term "Not bold". | |
1097 | // TODO: order styles alphabetically. This means indexes can change, | |
1098 | // so need a different way to specify selections, i.e. by name. | |
1099 | ||
1100 | void wxRichTextStyleComboCtrl::OnIdle(wxIdleEvent& event) | |
1101 | { | |
ecb7235d VZ |
1102 | event.Skip(); |
1103 | ||
1104 | if ( !m_stylePopup ) | |
1105 | return; | |
1106 | ||
1107 | wxRichTextCtrl * const richtext = GetRichTextCtrl(); | |
1108 | if ( !richtext ) | |
1109 | return; | |
1110 | ||
1111 | if ( !IsPopupShown() && wxWindow::FindFocus() != this ) | |
e637208a | 1112 | { |
ecb7235d VZ |
1113 | wxString styleName = |
1114 | wxRichTextStyleListBox::GetStyleToShowInIdleTime(richtext, m_stylePopup->GetStyleType()); | |
41a85215 | 1115 | |
e637208a JS |
1116 | wxString currentValue = GetValue(); |
1117 | if (!styleName.IsEmpty()) | |
1118 | { | |
1119 | // Don't do the selection if it's already set | |
1120 | if (currentValue == styleName) | |
1121 | return; | |
1122 | ||
1123 | SetValue(styleName); | |
1124 | } | |
1125 | else if (!currentValue.IsEmpty()) | |
1126 | SetValue(wxEmptyString); | |
1127 | } | |
e637208a JS |
1128 | } |
1129 | ||
1130 | #endif | |
1131 | // wxUSE_COMBOCTRL | |
1132 | ||
5d7836c4 JS |
1133 | #endif |
1134 | // wxUSE_HTML | |
1135 | ||
1136 | #endif | |
1137 | // wxUSE_RICHTEXT |