]> git.saurik.com Git - wxWidgets.git/blame - src/richtext/richtextformatdlg.cpp
Initialize paragraph descent in wxRichTextParagraph::Layout().
[wxWidgets.git] / src / richtext / richtextformatdlg.cpp
CommitLineData
97ff49b3
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/richtext/richtextformatdlg.cpp
3// Purpose: Formatting dialog for wxRichTextCtrl
4// Author: Julian Smart
5// Modified by:
6// Created: 2006-10-01
7// RCS-ID: $Id$
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__
16 #pragma hdrstop
17#endif
18
62b51bfb 19#if wxUSE_RICHTEXT
97ff49b3 20
528e5cf8
PC
21#include "wx/richtext/richtextformatdlg.h"
22
97ff49b3
JS
23#ifndef WX_PRECOMP
24 #include "wx/listbox.h"
25 #include "wx/combobox.h"
26 #include "wx/textctrl.h"
27 #include "wx/sizer.h"
28 #include "wx/stattext.h"
29 #include "wx/statline.h"
30 #include "wx/radiobut.h"
31 #include "wx/icon.h"
32 #include "wx/bitmap.h"
33 #include "wx/dcclient.h"
34 #include "wx/frame.h"
97ff49b3
JS
35 #include "wx/checkbox.h"
36 #include "wx/button.h"
37#endif // WX_PRECOMP
38
97ff49b3
JS
39#include "wx/bookctrl.h"
40#include "wx/colordlg.h"
97ff49b3
JS
41#include "wx/settings.h"
42#include "wx/module.h"
62b51bfb 43#include "wx/imaglist.h"
97ff49b3 44
97ff49b3
JS
45#include "wx/richtext/richtextctrl.h"
46#include "wx/richtext/richtextstyles.h"
47
ee5c8f01
SC
48#ifdef __WXMAC__
49#include "../../src/richtext/richtextfontpage.cpp"
50#include "../../src/richtext/richtextindentspage.cpp"
51#include "../../src/richtext/richtexttabspage.cpp"
52#include "../../src/richtext/richtextbulletspage.cpp"
53#include "../../src/richtext/richtextstylepage.cpp"
dadd4f55 54#include "../../src/richtext/richtextliststylepage.cpp"
ee5c8f01 55#else
97ff49b3
JS
56#include "richtextfontpage.cpp"
57#include "richtextindentspage.cpp"
58#include "richtexttabspage.cpp"
59#include "richtextbulletspage.cpp"
1f71a770
JS
60// Digital Mars can't cope with this much code
61#ifndef __DMC__
62 #include "richtextliststylepage.cpp"
63#endif
97ff49b3 64#include "richtextstylepage.cpp"
ee5c8f01 65#endif
97ff49b3 66
61c006ec 67#if 0 // def __WXMAC__
c730fa07 68#define wxRICHTEXT_USE_TOOLBOOK 1
97ff49b3 69#else
c730fa07 70#define wxRICHTEXT_USE_TOOLBOOK 0
97ff49b3
JS
71#endif
72
dadd4f55
JS
73bool wxRichTextFormattingDialog::sm_showToolTips = false;
74
97ff49b3
JS
75IMPLEMENT_CLASS(wxRichTextFormattingDialog, wxPropertySheetDialog)
76
77BEGIN_EVENT_TABLE(wxRichTextFormattingDialog, wxPropertySheetDialog)
2b741a39 78 EVT_BOOKCTRL_PAGE_CHANGED(wxID_ANY, wxRichTextFormattingDialog::OnTabChanged)
97ff49b3
JS
79END_EVENT_TABLE()
80
81wxRichTextFormattingDialogFactory* wxRichTextFormattingDialog::ms_FormattingDialogFactory = NULL;
82
83void wxRichTextFormattingDialog::Init()
84{
85 m_imageList = NULL;
86 m_styleDefinition = NULL;
87 m_styleSheet = NULL;
88}
89
90wxRichTextFormattingDialog::~wxRichTextFormattingDialog()
91{
92 delete m_imageList;
93 delete m_styleDefinition;
94}
95
96bool wxRichTextFormattingDialog::Create(long flags, wxWindow* parent, const wxString& title, wxWindowID id,
97 const wxPoint& pos, const wxSize& sz, long style)
98{
99 SetExtraStyle(wxDIALOG_EX_CONTEXTHELP|wxWS_EX_VALIDATE_RECURSIVELY);
100
101 int resizeBorder = wxRESIZE_BORDER;
102
103 GetFormattingDialogFactory()->SetSheetStyle(this);
104
105 wxPropertySheetDialog::Create(parent, id, title, pos, sz,
528e5cf8 106 style | (int)wxPlatform::IfNot(wxOS_WINDOWS_CE, resizeBorder)
97ff49b3
JS
107 );
108
109 GetFormattingDialogFactory()->CreateButtons(this);
110 GetFormattingDialogFactory()->CreatePages(flags, this);
111
112 LayoutDialog();
113
114 return true;
115}
116
117/// Get attributes from the given range
118bool wxRichTextFormattingDialog::GetStyle(wxRichTextCtrl* ctrl, const wxRichTextRange& range)
119{
120 if (ctrl->GetBuffer().GetStyleForRange(range.ToInternal(), m_attributes))
121 return UpdateDisplay();
122 else
123 return false;
124}
125
126/// Apply attributes to the given range, only applying if necessary (wxRICHTEXT_SETSTYLE_OPTIMIZE)
127bool wxRichTextFormattingDialog::ApplyStyle(wxRichTextCtrl* ctrl, const wxRichTextRange& range, int flags)
128{
129 return ctrl->SetStyleEx(range, m_attributes, flags);
130}
131
132/// Set the attributes and optionally update the display
24777478 133bool wxRichTextFormattingDialog::SetStyle(const wxRichTextAttr& style, bool update)
97ff49b3
JS
134{
135 m_attributes = style;
136 if (update)
137 UpdateDisplay();
138 return true;
139}
140
141/// Set the style definition and optionally update the display
142bool wxRichTextFormattingDialog::SetStyleDefinition(const wxRichTextStyleDefinition& styleDef, wxRichTextStyleSheet* sheet, bool update)
143{
144 m_styleSheet = sheet;
145
146 if (m_styleDefinition)
147 delete m_styleDefinition;
148 m_styleDefinition = styleDef.Clone();
149
150 return SetStyle(m_styleDefinition->GetStyle(), update);
151}
152
153/// Transfers the data and from to the window
154bool wxRichTextFormattingDialog::TransferDataToWindow()
155{
156 if (m_styleDefinition)
157 m_attributes = m_styleDefinition->GetStyle();
158
159 if (!wxPropertySheetDialog::TransferDataToWindow())
160 return false;
161
162 return true;
163}
164
165bool wxRichTextFormattingDialog::TransferDataFromWindow()
166{
167 if (!wxPropertySheetDialog::TransferDataFromWindow())
168 return false;
169
170 if (m_styleDefinition)
171 m_styleDefinition->GetStyle() = m_attributes;
172
173 return true;
174}
175
176/// Update the display
177bool wxRichTextFormattingDialog::UpdateDisplay()
178{
179 return TransferDataToWindow();
180}
181
182/// Apply the styles when a different tab is selected, so the previews are
183/// up to date
2b741a39 184void wxRichTextFormattingDialog::OnTabChanged(wxBookCtrlEvent& event)
97ff49b3
JS
185{
186 if (GetBookCtrl() != event.GetEventObject())
187 {
188 event.Skip();
189 return;
190 }
191
192 int oldPageId = event.GetOldSelection();
193 if (oldPageId != -1)
194 {
195 wxWindow* page = GetBookCtrl()->GetPage(oldPageId);
196 if (page)
197 page->TransferDataFromWindow();
198 }
199
200 int pageId = event.GetSelection();
201 if (pageId != -1)
202 {
203 wxWindow* page = GetBookCtrl()->GetPage(pageId);
204 if (page)
205 page->TransferDataToWindow();
206 }
207}
208
1807a1f3
JS
209/// Respond to help command
210void wxRichTextFormattingDialog::OnHelp(wxCommandEvent& event)
211{
212 int selPage = GetBookCtrl()->GetSelection();
213 if (selPage != wxNOT_FOUND)
214 {
215 int pageId = m_pageIds[selPage];
216 if (!GetFormattingDialogFactory()->ShowHelp(pageId, this))
217 event.Skip();
218 }
219}
220
97ff49b3
JS
221void wxRichTextFormattingDialog::SetFormattingDialogFactory(wxRichTextFormattingDialogFactory* factory)
222{
223 if (ms_FormattingDialogFactory)
224 delete ms_FormattingDialogFactory;
225 ms_FormattingDialogFactory = factory;
226}
227
228/*!
229 * Factory for formatting dialog
230 */
231
232/// Create all pages, under the dialog's book control, also calling AddPage
233bool wxRichTextFormattingDialogFactory::CreatePages(long pages, wxRichTextFormattingDialog* dialog)
234{
235 if (dialog->GetImageList())
236 dialog->GetBookCtrl()->SetImageList(dialog->GetImageList());
237
238 int availablePageCount = GetPageIdCount();
239 int i;
61c006ec 240 bool selected = false;
97ff49b3
JS
241 for (i = 0; i < availablePageCount; i ++)
242 {
243 int pageId = GetPageId(i);
244 if (pageId != -1 && (pages & pageId))
245 {
246 wxString title;
247 wxPanel* panel = CreatePage(pageId, title, dialog);
248 wxASSERT( panel != NULL );
249 if (panel)
250 {
251 int imageIndex = GetPageImage(pageId);
61c006ec
JS
252 dialog->GetBookCtrl()->AddPage(panel, title, !selected, imageIndex);
253 selected = true;
41a85215 254
1807a1f3 255 dialog->AddPageId(pageId);
97ff49b3
JS
256 }
257 }
258 }
2b741a39 259
97ff49b3
JS
260 return true;
261}
262
263/// Create a page, given a page identifier
264wxPanel* wxRichTextFormattingDialogFactory::CreatePage(int page, wxString& title, wxRichTextFormattingDialog* dialog)
265{
266 if (page == wxRICHTEXT_FORMAT_STYLE_EDITOR)
267 {
268 wxRichTextStylePage* page = new wxRichTextStylePage(dialog->GetBookCtrl(), wxID_ANY);
269 title = _("Style");
270 return page;
271 }
272 else if (page == wxRICHTEXT_FORMAT_FONT)
273 {
274 wxRichTextFontPage* page = new wxRichTextFontPage(dialog->GetBookCtrl(), wxID_ANY);
275 title = _("Font");
276 return page;
277 }
278 else if (page == wxRICHTEXT_FORMAT_INDENTS_SPACING)
279 {
280 wxRichTextIndentsSpacingPage* page = new wxRichTextIndentsSpacingPage(dialog->GetBookCtrl(), wxID_ANY);
281 title = _("Indents && Spacing");
282 return page;
283 }
284 else if (page == wxRICHTEXT_FORMAT_TABS)
285 {
286 wxRichTextTabsPage* page = new wxRichTextTabsPage(dialog->GetBookCtrl(), wxID_ANY);
287 title = _("Tabs");
288 return page;
289 }
290 else if (page == wxRICHTEXT_FORMAT_BULLETS)
291 {
292 wxRichTextBulletsPage* page = new wxRichTextBulletsPage(dialog->GetBookCtrl(), wxID_ANY);
293 title = _("Bullets");
294 return page;
295 }
1f71a770 296#ifndef __DMC__
dadd4f55
JS
297 else if (page == wxRICHTEXT_FORMAT_LIST_STYLE)
298 {
299 wxRichTextListStylePage* page = new wxRichTextListStylePage(dialog->GetBookCtrl(), wxID_ANY);
300 title = _("List Style");
301 return page;
302 }
1f71a770 303#endif
97ff49b3
JS
304 else
305 return NULL;
306}
307
308/// Enumerate all available page identifiers
309int wxRichTextFormattingDialogFactory::GetPageId(int i) const
310{
311 int pages[] = {
312 wxRICHTEXT_FORMAT_STYLE_EDITOR,
313 wxRICHTEXT_FORMAT_FONT,
314 wxRICHTEXT_FORMAT_INDENTS_SPACING,
315 wxRICHTEXT_FORMAT_BULLETS,
dadd4f55
JS
316 wxRICHTEXT_FORMAT_TABS,
317 wxRICHTEXT_FORMAT_LIST_STYLE };
97ff49b3 318
dadd4f55 319 if (i < 0 || i > 5)
97ff49b3
JS
320 return -1;
321
322 return pages[i];
323}
324
325/// Get the number of available page identifiers
326int wxRichTextFormattingDialogFactory::GetPageIdCount() const
327{
1f71a770
JS
328#ifdef __DMC__
329 return 5;
330#else
dadd4f55 331 return 6;
1f71a770 332#endif
97ff49b3
JS
333}
334
335/// Set the sheet style, called at the start of wxRichTextFormattingDialog::Create
336bool wxRichTextFormattingDialogFactory::SetSheetStyle(wxRichTextFormattingDialog* dialog)
337{
d0cf4953
VZ
338#if wxRICHTEXT_USE_TOOLBOOK
339 int sheetStyle = wxPROPSHEET_SHRINKTOFIT;
97ff49b3 340#ifdef __WXMAC__
d0cf4953 341 sheetStyle |= wxPROPSHEET_BUTTONTOOLBOOK;
97ff49b3 342#else
d0cf4953 343 sheetStyle |= wxPROPSHEET_TOOLBOOK;
97ff49b3
JS
344#endif
345
d0cf4953
VZ
346 dialog->SetSheetStyle(sheetStyle);
347 dialog->SetSheetInnerBorder(0);
348 dialog->SetSheetOuterBorder(0);
c730fa07 349#else
44cc96a8 350 wxUnusedVar(dialog);
d0cf4953 351#endif // wxRICHTEXT_USE_TOOLBOOK
97ff49b3
JS
352
353 return true;
354}
355
356/// Create the main dialog buttons
357bool wxRichTextFormattingDialogFactory::CreateButtons(wxRichTextFormattingDialog* dialog)
358{
97ff49b3
JS
359 int flags = wxOK|wxCANCEL;
360#ifndef __WXWINCE__
dadd4f55
JS
361 if (dialog->GetWindowStyleFlag() & wxRICHTEXT_FORMAT_HELP_BUTTON)
362 flags |= wxHELP;
97ff49b3
JS
363#endif
364
d0cf4953
VZ
365 // If using a toolbook, also follow Mac style and don't create buttons
366#if !wxRICHTEXT_USE_TOOLBOOK
367 dialog->CreateButtons(flags);
368#endif
97ff49b3
JS
369
370 return true;
371}
372
373/*
374 * Module to initialise and clean up handlers
375 */
376
377class wxRichTextFormattingDialogModule: public wxModule
378{
379DECLARE_DYNAMIC_CLASS(wxRichTextFormattingDialogModule)
380public:
381 wxRichTextFormattingDialogModule() {}
47b378bd
VS
382 bool OnInit() { wxRichTextFormattingDialog::SetFormattingDialogFactory(new wxRichTextFormattingDialogFactory); return true; }
383 void OnExit() { wxRichTextFormattingDialog::SetFormattingDialogFactory(NULL); }
97ff49b3
JS
384};
385
386IMPLEMENT_DYNAMIC_CLASS(wxRichTextFormattingDialogModule, wxModule)
387
388/*
389 * Font preview control
390 */
391
392BEGIN_EVENT_TABLE(wxRichTextFontPreviewCtrl, wxWindow)
393 EVT_PAINT(wxRichTextFontPreviewCtrl::OnPaint)
394END_EVENT_TABLE()
395
2fce6547
JS
396wxRichTextFontPreviewCtrl::wxRichTextFontPreviewCtrl(wxWindow *parent, wxWindowID id, const wxPoint& pos, const wxSize& sz, long style)
397{
398 if ((style & wxBORDER_MASK) == wxBORDER_DEFAULT)
399 style |= wxBORDER_THEME;
400
401 wxWindow::Create(parent, id, pos, sz, style);
402
403 SetBackgroundColour(*wxWHITE);
404 m_textEffects = 0;
405}
406
97ff49b3
JS
407void wxRichTextFontPreviewCtrl::OnPaint(wxPaintEvent& WXUNUSED(event))
408{
409 wxPaintDC dc(this);
410
411 wxSize size = GetSize();
412 wxFont font = GetFont();
413
30bf7630
JS
414 if ((GetTextEffects() & wxTEXT_ATTR_EFFECT_SUPERSCRIPT) || (GetTextEffects() & wxTEXT_ATTR_EFFECT_SUBSCRIPT))
415 {
416 double size = static_cast<double>(font.GetPointSize()) / wxSCRIPT_MUL_FACTOR;
417 font.SetPointSize( static_cast<int>(size) );
418 }
419
97ff49b3
JS
420 if ( font.Ok() )
421 {
422 dc.SetFont(font);
423 // Calculate vertical and horizontal centre
0bc58f95 424 wxCoord w = 0, h = 0;
97ff49b3
JS
425
426 wxString text(_("ABCDEFGabcdefg12345"));
42688aea
JS
427 if (GetTextEffects() & wxTEXT_ATTR_EFFECT_CAPITALS)
428 text.MakeUpper();
97ff49b3
JS
429
430 dc.GetTextExtent( text, &w, &h);
431 int cx = wxMax(2, (size.x/2) - (w/2));
432 int cy = wxMax(2, (size.y/2) - (h/2));
433
30bf7630
JS
434 if ( GetTextEffects() & wxTEXT_ATTR_EFFECT_SUPERSCRIPT )
435 cy -= h/2;
436 if ( GetTextEffects() & wxTEXT_ATTR_EFFECT_SUBSCRIPT )
437 cy += h/2;
438
97ff49b3
JS
439 dc.SetTextForeground(GetForegroundColour());
440 dc.SetClippingRegion(2, 2, size.x-4, size.y-4);
441 dc.DrawText(text, cx, cy);
c730fa07 442
42688aea
JS
443 if (GetTextEffects() & wxTEXT_ATTR_EFFECT_STRIKETHROUGH)
444 {
445 dc.SetPen(wxPen(GetForegroundColour(), 1));
446 dc.DrawLine(cx, (int) (cy + h/2 + 0.5), cx + w, (int) (cy + h/2 + 0.5));
447 }
c730fa07 448
97ff49b3
JS
449 dc.DestroyClippingRegion();
450 }
451}
452
453// Helper for pages to get the top-level dialog
454wxRichTextFormattingDialog* wxRichTextFormattingDialog::GetDialog(wxWindow* win)
455{
456 wxWindow* p = win->GetParent();
457 while (p && !p->IsKindOf(CLASSINFO(wxRichTextFormattingDialog)))
458 p = p->GetParent();
459 wxRichTextFormattingDialog* dialog = wxDynamicCast(p, wxRichTextFormattingDialog);
460 return dialog;
461}
462
463
464// Helper for pages to get the attributes
24777478 465wxRichTextAttr* wxRichTextFormattingDialog::GetDialogAttributes(wxWindow* win)
97ff49b3
JS
466{
467 wxRichTextFormattingDialog* dialog = GetDialog(win);
468 if (dialog)
469 return & dialog->GetAttributes();
470 else
471 return NULL;
472}
473
474// Helper for pages to get the style
475wxRichTextStyleDefinition* wxRichTextFormattingDialog::GetDialogStyleDefinition(wxWindow* win)
476{
477 wxRichTextFormattingDialog* dialog = GetDialog(win);
478 if (dialog)
479 return dialog->GetStyleDefinition();
480 else
481 return NULL;
482}
483
484/*
485 * A control for displaying a small preview of a colour or bitmap
486 */
487
488BEGIN_EVENT_TABLE(wxRichTextColourSwatchCtrl, wxControl)
489 EVT_MOUSE_EVENTS(wxRichTextColourSwatchCtrl::OnMouseEvent)
490END_EVENT_TABLE()
491
492IMPLEMENT_CLASS(wxRichTextColourSwatchCtrl, wxControl)
493
2fce6547 494wxRichTextColourSwatchCtrl::wxRichTextColourSwatchCtrl(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style)
97ff49b3 495{
2fce6547
JS
496 if ((style & wxBORDER_MASK) == wxBORDER_DEFAULT)
497 style |= wxBORDER_THEME;
498
499 wxControl::Create(parent, id, pos, size, style);
500
97ff49b3 501 SetColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
97ff49b3
JS
502}
503
504wxRichTextColourSwatchCtrl::~wxRichTextColourSwatchCtrl()
505{
506}
507
508void wxRichTextColourSwatchCtrl::OnMouseEvent(wxMouseEvent& event)
509{
510 if (event.LeftDown())
511 {
512 wxWindow* parent = GetParent();
513 while (parent != NULL && !parent->IsKindOf(CLASSINFO(wxDialog)) && !parent->IsKindOf(CLASSINFO(wxFrame)))
514 parent = parent->GetParent();
515
516 wxColourData data;
517 data.SetChooseFull(true);
518 data.SetColour(m_colour);
2b741a39 519#if wxUSE_COLOURDLG
97ff49b3
JS
520 wxColourDialog *dialog = new wxColourDialog(parent, &data);
521 // Crashes on wxMac (no m_peer)
522#ifndef __WXMAC__
2fce6547 523 dialog->SetTitle(_("Colour"));
97ff49b3
JS
524#endif
525 if (dialog->ShowModal() == wxID_OK)
526 {
527 wxColourData retData = dialog->GetColourData();
528 m_colour = retData.GetColour();
529 SetBackgroundColour(m_colour);
530 }
531 dialog->Destroy();
2b741a39 532#endif // wxUSE_COLOURDLG
97ff49b3
JS
533 Refresh();
534
535 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED, GetId());
536 GetEventHandler()->ProcessEvent(event);
537 }
538}
539
540#if wxUSE_HTML
541
542/*!
543 * wxRichTextFontListBox class declaration
544 * A listbox to display styles.
545 */
546
547IMPLEMENT_CLASS(wxRichTextFontListBox, wxHtmlListBox)
548
549BEGIN_EVENT_TABLE(wxRichTextFontListBox, wxHtmlListBox)
550END_EVENT_TABLE()
551
552wxRichTextFontListBox::wxRichTextFontListBox(wxWindow* parent, wxWindowID id, const wxPoint& pos,
553 const wxSize& size, long style)
554{
555 Init();
556 Create(parent, id, pos, size, style);
557}
558
559bool wxRichTextFontListBox::Create(wxWindow* parent, wxWindowID id, const wxPoint& pos,
560 const wxSize& size, long style)
561{
2fce6547
JS
562 if ((style & wxBORDER_MASK) == wxBORDER_DEFAULT)
563 style |= wxBORDER_THEME;
564
97ff49b3
JS
565 return wxHtmlListBox::Create(parent, id, pos, size, style);
566}
567
568wxRichTextFontListBox::~wxRichTextFontListBox()
569{
570}
571
572/// Returns the HTML for this item
573wxString wxRichTextFontListBox::OnGetItem(size_t n) const
574{
575 if (m_faceNames.GetCount() == 0)
576 return wxEmptyString;
577
578 wxString str = CreateHTML(m_faceNames[n]);
579 return str;
580}
581
582/// Get font name for index
583wxString wxRichTextFontListBox::GetFaceName(size_t i) const
584{
585 return m_faceNames[i];
586}
587
588/// Set selection for string, returning the index.
589int wxRichTextFontListBox::SetFaceNameSelection(const wxString& name)
590{
591 int i = m_faceNames.Index(name);
592 SetSelection(i);
593
594 return i;
595}
596
597/// Updates the font list
598void wxRichTextFontListBox::UpdateFonts()
599{
dadd4f55 600 wxArrayString facenames = wxRichTextCtrl::GetAvailableFontNames();
97ff49b3
JS
601 m_faceNames = facenames;
602 m_faceNames.Sort();
603
604 SetItemCount(m_faceNames.GetCount());
605 Refresh();
606}
607
608#if 0
609// Convert a colour to a 6-digit hex string
610static wxString ColourToHexString(const wxColour& col)
611{
612 wxString hex;
613
614 hex += wxDecToHex(col.Red());
615 hex += wxDecToHex(col.Green());
616 hex += wxDecToHex(col.Blue());
617
618 return hex;
619}
620#endif
621
622/// Creates a suitable HTML fragment for a definition
623wxString wxRichTextFontListBox::CreateHTML(const wxString& facename) const
624{
625 wxString str = wxT("<font");
626
627 str << wxT(" size=\"+2\"");;
628
629 if (!facename.IsEmpty() && facename != _("(none)"))
630 str << wxT(" face=\"") << facename << wxT("\"");
631/*
632 if (def->GetStyle().GetTextColour().Ok())
633 str << wxT(" color=\"#") << ColourToHexString(def->GetStyle().GetTextColour()) << wxT("\"");
634*/
635
636 str << wxT(">");
637
638 bool hasBold = false;
639
640 if (hasBold)
641 str << wxT("<b>");
642
643 str += facename;
644
645 if (hasBold)
646 str << wxT("</b>");
647
648 str << wxT("</font>");
649
650 return str;
651}
652
653#endif
654 // wxUSE_HTML
655
656
657#endif
658 // wxUSE_RICHTEXT