1 /////////////////////////////////////////////////////////////////////////////
2 // Name: samples/richtext/richtext.cpp
3 // Purpose: wxWidgets rich text editor sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
27 // for all others, include the necessary headers (this file is usually all you
28 // need because it includes almost all "standard" wxWidgets headers)
33 #include "wx/fontdlg.h"
34 #include "wx/splitter.h"
35 #include "wx/sstream.h"
36 #include "wx/html/htmlwin.h"
39 #include "wx/filesys.h"
40 #include "wx/fs_mem.h"
44 #include "wx/cshelp.h"
48 #include "../sample.xpm"
51 #include "bitmaps/smiley.xpm"
52 // #include "bitmaps/idea.xpm"
53 #include "bitmaps/zebra.xpm"
55 #include "bitmaps/open.xpm"
56 #include "bitmaps/save.xpm"
57 #include "bitmaps/copy.xpm"
58 #include "bitmaps/cut.xpm"
59 #include "bitmaps/paste.xpm"
60 #include "bitmaps/undo.xpm"
61 #include "bitmaps/redo.xpm"
62 #include "bitmaps/bold.xpm"
63 #include "bitmaps/italic.xpm"
64 #include "bitmaps/underline.xpm"
66 #include "bitmaps/alignleft.xpm"
67 #include "bitmaps/alignright.xpm"
68 #include "bitmaps/centre.xpm"
69 #include "bitmaps/font.xpm"
70 #include "bitmaps/indentless.xpm"
71 #include "bitmaps/indentmore.xpm"
73 #include "wx/richtext/richtextctrl.h"
74 #include "wx/richtext/richtextstyles.h"
75 #include "wx/richtext/richtextxml.h"
76 #include "wx/richtext/richtexthtml.h"
77 #include "wx/richtext/richtextformatdlg.h"
78 #include "wx/richtext/richtextsymboldlg.h"
79 #include "wx/richtext/richtextstyledlg.h"
80 #include "wx/richtext/richtextprint.h"
82 // ----------------------------------------------------------------------------
84 // ----------------------------------------------------------------------------
86 // ----------------------------------------------------------------------------
88 // ----------------------------------------------------------------------------
90 // Define a new application type, each program should derive a class from wxApp
91 class MyApp
: public wxApp
94 // override base class virtuals
95 // ----------------------------
97 // this one is called on application startup and is a good place for the app
98 // initialization (doing it here and not in the ctor allows to have an error
99 // return: if OnInit() returns false, the application terminates)
100 virtual bool OnInit();
101 virtual int OnExit();
105 wxRichTextStyleSheet
* GetStyleSheet() const { return m_styleSheet
; }
106 wxRichTextPrinting
* GetPrinting() const { return m_printing
; }
108 wxRichTextStyleSheet
* m_styleSheet
;
109 wxRichTextPrinting
* m_printing
;
112 // Define a new frame type: this is going to be our main frame
113 class MyFrame
: public wxFrame
117 MyFrame(const wxString
& title
, wxWindowID id
, const wxPoint
& pos
= wxDefaultPosition
,
118 const wxSize
& size
= wxDefaultSize
, long style
= wxDEFAULT_FRAME_STYLE
);
120 // event handlers (these functions should _not_ be virtual)
121 void OnQuit(wxCommandEvent
& event
);
122 void OnAbout(wxCommandEvent
& event
);
124 void OnOpen(wxCommandEvent
& event
);
125 void OnSave(wxCommandEvent
& event
);
126 void OnSaveAs(wxCommandEvent
& event
);
128 void OnBold(wxCommandEvent
& event
);
129 void OnItalic(wxCommandEvent
& event
);
130 void OnUnderline(wxCommandEvent
& event
);
132 void OnUpdateBold(wxUpdateUIEvent
& event
);
133 void OnUpdateItalic(wxUpdateUIEvent
& event
);
134 void OnUpdateUnderline(wxUpdateUIEvent
& event
);
136 void OnAlignLeft(wxCommandEvent
& event
);
137 void OnAlignCentre(wxCommandEvent
& event
);
138 void OnAlignRight(wxCommandEvent
& event
);
140 void OnUpdateAlignLeft(wxUpdateUIEvent
& event
);
141 void OnUpdateAlignCentre(wxUpdateUIEvent
& event
);
142 void OnUpdateAlignRight(wxUpdateUIEvent
& event
);
144 void OnIndentMore(wxCommandEvent
& event
);
145 void OnIndentLess(wxCommandEvent
& event
);
147 void OnFont(wxCommandEvent
& event
);
148 void OnParagraph(wxCommandEvent
& event
);
149 void OnFormat(wxCommandEvent
& event
);
150 void OnUpdateFormat(wxUpdateUIEvent
& event
);
152 void OnInsertSymbol(wxCommandEvent
& event
);
154 void OnLineSpacingHalf(wxCommandEvent
& event
);
155 void OnLineSpacingDouble(wxCommandEvent
& event
);
156 void OnLineSpacingSingle(wxCommandEvent
& event
);
158 void OnParagraphSpacingMore(wxCommandEvent
& event
);
159 void OnParagraphSpacingLess(wxCommandEvent
& event
);
161 void OnNumberList(wxCommandEvent
& event
);
162 void OnBulletsAndNumbering(wxCommandEvent
& event
);
163 void OnItemizeList(wxCommandEvent
& event
);
164 void OnRenumberList(wxCommandEvent
& event
);
165 void OnPromoteList(wxCommandEvent
& event
);
166 void OnDemoteList(wxCommandEvent
& event
);
167 void OnClearList(wxCommandEvent
& event
);
169 void OnReload(wxCommandEvent
& event
);
171 void OnViewHTML(wxCommandEvent
& event
);
173 void OnSwitchStyleSheets(wxCommandEvent
& event
);
174 void OnManageStyles(wxCommandEvent
& event
);
176 void OnInsertURL(wxCommandEvent
& event
);
177 void OnURL(wxTextUrlEvent
& event
);
178 void OnStyleSheetReplacing(wxRichTextEvent
& event
);
180 void OnPrint(wxCommandEvent
& event
);
181 void OnPreview(wxCommandEvent
& event
);
182 void OnPageSetup(wxCommandEvent
& event
);
184 // Forward command events to the current rich text control, if any
185 bool ProcessEvent(wxEvent
& event
);
188 void WriteInitialText();
191 // any class wishing to process wxWidgets events must use this macro
192 DECLARE_EVENT_TABLE()
194 wxRichTextCtrl
* m_richTextCtrl
;
197 // ----------------------------------------------------------------------------
199 // ----------------------------------------------------------------------------
201 // IDs for the controls and the menu commands
206 ID_About
= wxID_ABOUT
,
208 ID_FORMAT_BOLD
= 100,
220 ID_FORMAT_ALIGN_LEFT
,
221 ID_FORMAT_ALIGN_CENTRE
,
222 ID_FORMAT_ALIGN_RIGHT
,
224 ID_FORMAT_INDENT_MORE
,
225 ID_FORMAT_INDENT_LESS
,
227 ID_FORMAT_PARAGRAPH_SPACING_MORE
,
228 ID_FORMAT_PARAGRAPH_SPACING_LESS
,
230 ID_FORMAT_LINE_SPACING_HALF
,
231 ID_FORMAT_LINE_SPACING_DOUBLE
,
232 ID_FORMAT_LINE_SPACING_SINGLE
,
234 ID_FORMAT_NUMBER_LIST
,
235 ID_FORMAT_BULLETS_AND_NUMBERING
,
236 ID_FORMAT_ITEMIZE_LIST
,
237 ID_FORMAT_RENUMBER_LIST
,
238 ID_FORMAT_PROMOTE_LIST
,
239 ID_FORMAT_DEMOTE_LIST
,
240 ID_FORMAT_CLEAR_LIST
,
243 ID_SWITCH_STYLE_SHEETS
,
251 ID_RICHTEXT_STYLE_LIST
,
252 ID_RICHTEXT_STYLE_COMBO
255 // ----------------------------------------------------------------------------
256 // event tables and other macros for wxWidgets
257 // ----------------------------------------------------------------------------
259 // the event tables connect the wxWidgets events with the functions (event
260 // handlers) which process them. It can be also done at run-time, but for the
261 // simple menu events like this the static method is much simpler.
262 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
263 EVT_MENU(ID_Quit
, MyFrame::OnQuit
)
264 EVT_MENU(ID_About
, MyFrame::OnAbout
)
266 EVT_MENU(wxID_OPEN
, MyFrame::OnOpen
)
267 EVT_MENU(wxID_SAVE
, MyFrame::OnSave
)
268 EVT_MENU(wxID_SAVEAS
, MyFrame::OnSaveAs
)
270 EVT_MENU(ID_FORMAT_BOLD
, MyFrame::OnBold
)
271 EVT_MENU(ID_FORMAT_ITALIC
, MyFrame::OnItalic
)
272 EVT_MENU(ID_FORMAT_UNDERLINE
, MyFrame::OnUnderline
)
274 EVT_UPDATE_UI(ID_FORMAT_BOLD
, MyFrame::OnUpdateBold
)
275 EVT_UPDATE_UI(ID_FORMAT_ITALIC
, MyFrame::OnUpdateItalic
)
276 EVT_UPDATE_UI(ID_FORMAT_UNDERLINE
, MyFrame::OnUpdateUnderline
)
278 EVT_MENU(ID_FORMAT_ALIGN_LEFT
, MyFrame::OnAlignLeft
)
279 EVT_MENU(ID_FORMAT_ALIGN_CENTRE
, MyFrame::OnAlignCentre
)
280 EVT_MENU(ID_FORMAT_ALIGN_RIGHT
, MyFrame::OnAlignRight
)
282 EVT_UPDATE_UI(ID_FORMAT_ALIGN_LEFT
, MyFrame::OnUpdateAlignLeft
)
283 EVT_UPDATE_UI(ID_FORMAT_ALIGN_CENTRE
, MyFrame::OnUpdateAlignCentre
)
284 EVT_UPDATE_UI(ID_FORMAT_ALIGN_RIGHT
, MyFrame::OnUpdateAlignRight
)
286 EVT_MENU(ID_FORMAT_FONT
, MyFrame::OnFont
)
287 EVT_MENU(ID_FORMAT_PARAGRAPH
, MyFrame::OnParagraph
)
288 EVT_MENU(ID_FORMAT_CONTENT
, MyFrame::OnFormat
)
289 EVT_UPDATE_UI(ID_FORMAT_CONTENT
, MyFrame::OnUpdateFormat
)
290 EVT_UPDATE_UI(ID_FORMAT_FONT
, MyFrame::OnUpdateFormat
)
291 EVT_UPDATE_UI(ID_FORMAT_PARAGRAPH
, MyFrame::OnUpdateFormat
)
292 EVT_MENU(ID_FORMAT_INDENT_MORE
, MyFrame::OnIndentMore
)
293 EVT_MENU(ID_FORMAT_INDENT_LESS
, MyFrame::OnIndentLess
)
295 EVT_MENU(ID_FORMAT_LINE_SPACING_HALF
, MyFrame::OnLineSpacingHalf
)
296 EVT_MENU(ID_FORMAT_LINE_SPACING_SINGLE
, MyFrame::OnLineSpacingSingle
)
297 EVT_MENU(ID_FORMAT_LINE_SPACING_DOUBLE
, MyFrame::OnLineSpacingDouble
)
299 EVT_MENU(ID_FORMAT_PARAGRAPH_SPACING_MORE
, MyFrame::OnParagraphSpacingMore
)
300 EVT_MENU(ID_FORMAT_PARAGRAPH_SPACING_LESS
, MyFrame::OnParagraphSpacingLess
)
302 EVT_MENU(ID_RELOAD
, MyFrame::OnReload
)
304 EVT_MENU(ID_INSERT_SYMBOL
, MyFrame::OnInsertSymbol
)
305 EVT_MENU(ID_INSERT_URL
, MyFrame::OnInsertURL
)
307 EVT_MENU(ID_FORMAT_NUMBER_LIST
, MyFrame::OnNumberList
)
308 EVT_MENU(ID_FORMAT_BULLETS_AND_NUMBERING
, MyFrame::OnBulletsAndNumbering
)
309 EVT_MENU(ID_FORMAT_ITEMIZE_LIST
, MyFrame::OnItemizeList
)
310 EVT_MENU(ID_FORMAT_RENUMBER_LIST
, MyFrame::OnRenumberList
)
311 EVT_MENU(ID_FORMAT_PROMOTE_LIST
, MyFrame::OnPromoteList
)
312 EVT_MENU(ID_FORMAT_DEMOTE_LIST
, MyFrame::OnDemoteList
)
313 EVT_MENU(ID_FORMAT_CLEAR_LIST
, MyFrame::OnClearList
)
315 EVT_MENU(ID_VIEW_HTML
, MyFrame::OnViewHTML
)
316 EVT_MENU(ID_SWITCH_STYLE_SHEETS
, MyFrame::OnSwitchStyleSheets
)
317 EVT_MENU(ID_MANAGE_STYLES
, MyFrame::OnManageStyles
)
319 EVT_MENU(ID_PRINT
, MyFrame::OnPrint
)
320 EVT_MENU(ID_PREVIEW
, MyFrame::OnPreview
)
321 EVT_MENU(ID_PAGE_SETUP
, MyFrame::OnPageSetup
)
323 EVT_TEXT_URL(wxID_ANY
, MyFrame::OnURL
)
324 EVT_RICHTEXT_STYLESHEET_REPLACING(wxID_ANY
, MyFrame::OnStyleSheetReplacing
)
327 // Create a new application object: this macro will allow wxWidgets to create
328 // the application object during program execution (it's better than using a
329 // static object for many reasons) and also implements the accessor function
330 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
334 // ============================================================================
336 // ============================================================================
338 // ----------------------------------------------------------------------------
339 // the application class
340 // ----------------------------------------------------------------------------
342 // 'Main program' equivalent: the program execution "starts" here
345 if ( !wxApp::OnInit() )
349 wxHelpProvider::Set(new wxSimpleHelpProvider
);
352 m_styleSheet
= new wxRichTextStyleSheet
;
353 m_printing
= new wxRichTextPrinting(wxT("Test Document"));
355 m_printing
->SetFooterText(wxT("@TITLE@"), wxRICHTEXT_PAGE_ALL
, wxRICHTEXT_PAGE_CENTRE
);
356 m_printing
->SetFooterText(wxT("Page @PAGENUM@"), wxRICHTEXT_PAGE_ALL
, wxRICHTEXT_PAGE_RIGHT
);
360 // Add extra handlers (plain text is automatically added)
361 wxRichTextBuffer::AddHandler(new wxRichTextXMLHandler
);
362 wxRichTextBuffer::AddHandler(new wxRichTextHTMLHandler
);
364 // Add image handlers
366 wxImage::AddHandler( new wxPNGHandler
);
370 wxImage::AddHandler( new wxJPEGHandler
);
374 wxImage::AddHandler( new wxGIFHandler
);
378 wxFileSystem::AddHandler( new wxMemoryFSHandler
);
381 // create the main application window
382 MyFrame
*frame
= new MyFrame(_T("wxRichTextCtrl Sample"), wxID_ANY
, wxDefaultPosition
, wxSize(700, 600));
384 m_printing
->SetParentWindow(frame
);
386 // and show it (the frames, unlike simple controls, are not shown when
387 // created initially)
390 // success: wxApp::OnRun() will be called which will enter the main message
391 // loop and the application will run. If we returned false here, the
392 // application would exit immediately.
404 void MyApp::CreateStyles()
408 wxFont
romanFont(12, wxROMAN
, wxNORMAL
, wxNORMAL
);
409 wxFont
swissFont(12, wxSWISS
, wxNORMAL
, wxNORMAL
);
411 wxRichTextParagraphStyleDefinition
* normalPara
= new wxRichTextParagraphStyleDefinition(wxT("Normal"));
412 wxRichTextAttr normalAttr
;
413 normalAttr
.SetFontFaceName(romanFont
.GetFaceName());
414 normalAttr
.SetFontSize(12);
415 // Let's set all attributes for this style
416 normalAttr
.SetFlags(wxTEXT_ATTR_FONT
| wxTEXT_ATTR_BACKGROUND_COLOUR
| wxTEXT_ATTR_TEXT_COLOUR
|wxTEXT_ATTR_ALIGNMENT
|wxTEXT_ATTR_LEFT_INDENT
|wxTEXT_ATTR_RIGHT_INDENT
|wxTEXT_ATTR_TABS
|
417 wxTEXT_ATTR_PARA_SPACING_BEFORE
|wxTEXT_ATTR_PARA_SPACING_AFTER
|wxTEXT_ATTR_LINE_SPACING
|
418 wxTEXT_ATTR_BULLET_STYLE
|wxTEXT_ATTR_BULLET_NUMBER
);
419 normalPara
->SetStyle(normalAttr
);
421 m_styleSheet
->AddParagraphStyle(normalPara
);
423 wxRichTextParagraphStyleDefinition
* indentedPara
= new wxRichTextParagraphStyleDefinition(wxT("Indented"));
424 wxRichTextAttr indentedAttr
;
425 indentedAttr
.SetFontFaceName(romanFont
.GetFaceName());
426 indentedAttr
.SetFontSize(12);
427 indentedAttr
.SetLeftIndent(100, 0);
428 // We only want to affect indentation
429 indentedAttr
.SetFlags(wxTEXT_ATTR_LEFT_INDENT
|wxTEXT_ATTR_RIGHT_INDENT
);
430 indentedPara
->SetStyle(indentedAttr
);
432 m_styleSheet
->AddParagraphStyle(indentedPara
);
434 wxRichTextParagraphStyleDefinition
* indentedPara2
= new wxRichTextParagraphStyleDefinition(wxT("Red Bold Indented"));
435 wxRichTextAttr indentedAttr2
;
436 indentedAttr2
.SetFontFaceName(romanFont
.GetFaceName());
437 indentedAttr2
.SetFontSize(12);
438 indentedAttr2
.SetFontWeight(wxBOLD
);
439 indentedAttr2
.SetTextColour(*wxRED
);
440 indentedAttr2
.SetFontSize(12);
441 indentedAttr2
.SetLeftIndent(100, 0);
442 // We want to affect indentation, font and text colour
443 indentedAttr2
.SetFlags(wxTEXT_ATTR_LEFT_INDENT
|wxTEXT_ATTR_RIGHT_INDENT
|wxTEXT_ATTR_FONT
|wxTEXT_ATTR_TEXT_COLOUR
);
444 indentedPara2
->SetStyle(indentedAttr2
);
446 m_styleSheet
->AddParagraphStyle(indentedPara2
);
448 wxRichTextParagraphStyleDefinition
* flIndentedPara
= new wxRichTextParagraphStyleDefinition(wxT("First Line Indented"));
449 wxRichTextAttr flIndentedAttr
;
450 flIndentedAttr
.SetFontFaceName(swissFont
.GetFaceName());
451 flIndentedAttr
.SetFontSize(12);
452 flIndentedAttr
.SetLeftIndent(100, -100);
453 // We only want to affect indentation
454 flIndentedAttr
.SetFlags(wxTEXT_ATTR_LEFT_INDENT
|wxTEXT_ATTR_RIGHT_INDENT
);
455 flIndentedPara
->SetStyle(flIndentedAttr
);
457 m_styleSheet
->AddParagraphStyle(flIndentedPara
);
461 wxRichTextCharacterStyleDefinition
* boldDef
= new wxRichTextCharacterStyleDefinition(wxT("Bold"));
462 wxRichTextAttr boldAttr
;
463 boldAttr
.SetFontFaceName(romanFont
.GetFaceName());
464 boldAttr
.SetFontSize(12);
465 boldAttr
.SetFontWeight(wxBOLD
);
466 // We only want to affect boldness
467 boldAttr
.SetFlags(wxTEXT_ATTR_FONT_WEIGHT
);
468 boldDef
->SetStyle(boldAttr
);
470 m_styleSheet
->AddCharacterStyle(boldDef
);
472 wxRichTextCharacterStyleDefinition
* italicDef
= new wxRichTextCharacterStyleDefinition(wxT("Italic"));
473 wxRichTextAttr italicAttr
;
474 italicAttr
.SetFontFaceName(romanFont
.GetFaceName());
475 italicAttr
.SetFontSize(12);
476 italicAttr
.SetFontStyle(wxITALIC
);
477 // We only want to affect italics
478 italicAttr
.SetFlags(wxTEXT_ATTR_FONT_ITALIC
);
479 italicDef
->SetStyle(italicAttr
);
481 m_styleSheet
->AddCharacterStyle(italicDef
);
483 wxRichTextCharacterStyleDefinition
* redDef
= new wxRichTextCharacterStyleDefinition(wxT("Red Bold"));
484 wxRichTextAttr redAttr
;
485 redAttr
.SetFontFaceName(romanFont
.GetFaceName());
486 redAttr
.SetFontSize(12);
487 redAttr
.SetFontWeight(wxBOLD
);
488 redAttr
.SetTextColour(*wxRED
);
489 // We only want to affect colour, weight and face
490 redAttr
.SetFlags(wxTEXT_ATTR_FONT_FACE
|wxTEXT_ATTR_FONT_WEIGHT
|wxTEXT_ATTR_TEXT_COLOUR
);
491 redDef
->SetStyle(redAttr
);
493 m_styleSheet
->AddCharacterStyle(redDef
);
495 wxRichTextListStyleDefinition
* bulletList
= new wxRichTextListStyleDefinition(wxT("Bullet List 1"));
497 for (i
= 0; i
< 10; i
++)
501 bulletText
= wxT("standard/circle");
503 bulletText
= wxT("standard/square");
505 bulletText
= wxT("standard/circle");
507 bulletText
= wxT("standard/square");
509 bulletText
= wxT("standard/circle");
511 bulletList
->SetAttributes(i
, (i
+1)*60, 60, wxTEXT_ATTR_BULLET_STYLE_STANDARD
, bulletText
);
514 m_styleSheet
->AddListStyle(bulletList
);
516 wxRichTextListStyleDefinition
* numberedList
= new wxRichTextListStyleDefinition(wxT("Numbered List 1"));
517 for (i
= 0; i
< 10; i
++)
521 numberStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
;
523 numberStyle
= wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER
|wxTEXT_ATTR_BULLET_STYLE_PARENTHESES
;
525 numberStyle
= wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER
|wxTEXT_ATTR_BULLET_STYLE_PARENTHESES
;
527 numberStyle
= wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER
|wxTEXT_ATTR_BULLET_STYLE_PARENTHESES
;
529 numberStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
;
531 numberStyle
|= wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT
;
533 numberedList
->SetAttributes(i
, (i
+1)*60, 60, numberStyle
);
536 m_styleSheet
->AddListStyle(numberedList
);
538 wxRichTextListStyleDefinition
* outlineList
= new wxRichTextListStyleDefinition(wxT("Outline List 1"));
539 for (i
= 0; i
< 10; i
++)
543 numberStyle
= wxTEXT_ATTR_BULLET_STYLE_OUTLINE
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
;
545 numberStyle
= wxTEXT_ATTR_BULLET_STYLE_ARABIC
|wxTEXT_ATTR_BULLET_STYLE_PERIOD
;
547 outlineList
->SetAttributes(i
, (i
+1)*120, 120, numberStyle
);
550 m_styleSheet
->AddListStyle(outlineList
);
553 // ----------------------------------------------------------------------------
555 // ----------------------------------------------------------------------------
558 MyFrame::MyFrame(const wxString
& title
, wxWindowID id
, const wxPoint
& pos
,
559 const wxSize
& size
, long style
)
560 : wxFrame(NULL
, id
, title
, pos
, size
, style
)
562 // set the frame icon
563 SetIcon(wxICON(sample
));
566 wxMenu
*fileMenu
= new wxMenu
;
568 // the "About" item should be in the help menu
569 wxMenu
*helpMenu
= new wxMenu
;
570 helpMenu
->Append(ID_About
, _T("&About...\tF1"), _T("Show about dialog"));
572 fileMenu
->Append(wxID_OPEN
, _T("&Open\tCtrl+O"), _T("Open a file"));
573 fileMenu
->Append(wxID_SAVE
, _T("&Save\tCtrl+S"), _T("Save a file"));
574 fileMenu
->Append(wxID_SAVEAS
, _T("&Save As...\tF12"), _T("Save to a new file"));
575 fileMenu
->AppendSeparator();
576 fileMenu
->Append(ID_RELOAD
, _T("&Reload Text\tF2"), _T("Reload the initial text"));
577 fileMenu
->AppendSeparator();
578 fileMenu
->Append(ID_PAGE_SETUP
, _T("Page Set&up..."), _T("Page setup"));
579 fileMenu
->Append(ID_PRINT
, _T("&Print...\tCtrl+P"), _T("Print"));
580 fileMenu
->Append(ID_PREVIEW
, _T("Print Pre&view"), _T("Print preview"));
581 fileMenu
->AppendSeparator();
582 fileMenu
->Append(ID_VIEW_HTML
, _T("&View as HTML"), _T("View HTML"));
583 fileMenu
->AppendSeparator();
584 fileMenu
->Append(ID_Quit
, _T("E&xit\tAlt+X"), _T("Quit this program"));
586 wxMenu
* editMenu
= new wxMenu
;
587 editMenu
->Append(wxID_UNDO
, _("&Undo\tCtrl+Z"));
588 editMenu
->Append(wxID_REDO
, _("&Redo\tCtrl+Y"));
589 editMenu
->AppendSeparator();
590 editMenu
->Append(wxID_CUT
, _("Cu&t\tCtrl+X"));
591 editMenu
->Append(wxID_COPY
, _("&Copy\tCtrl+C"));
592 editMenu
->Append(wxID_PASTE
, _("&Paste\tCtrl+V"));
594 editMenu
->AppendSeparator();
595 editMenu
->Append(wxID_SELECTALL
, _("Select A&ll\tCtrl+A"));
597 editMenu
->AppendSeparator();
598 editMenu
->Append(wxID_FIND
, _("&Find...\tCtrl+F"));
599 editMenu
->Append(stID_FIND_REPLACE
, _("&Replace...\tCtrl+R"));
602 wxMenu
* formatMenu
= new wxMenu
;
603 formatMenu
->AppendCheckItem(ID_FORMAT_BOLD
, _("&Bold\tCtrl+B"));
604 formatMenu
->AppendCheckItem(ID_FORMAT_ITALIC
, _("&Italic\tCtrl+I"));
605 formatMenu
->AppendCheckItem(ID_FORMAT_UNDERLINE
, _("&Underline\tCtrl+U"));
606 formatMenu
->AppendSeparator();
607 formatMenu
->AppendCheckItem(ID_FORMAT_ALIGN_LEFT
, _("L&eft Align"));
608 formatMenu
->AppendCheckItem(ID_FORMAT_ALIGN_RIGHT
, _("&Right Align"));
609 formatMenu
->AppendCheckItem(ID_FORMAT_ALIGN_CENTRE
, _("&Centre"));
610 formatMenu
->AppendSeparator();
611 formatMenu
->Append(ID_FORMAT_INDENT_MORE
, _("Indent &More"));
612 formatMenu
->Append(ID_FORMAT_INDENT_LESS
, _("Indent &Less"));
613 formatMenu
->AppendSeparator();
614 formatMenu
->Append(ID_FORMAT_PARAGRAPH_SPACING_MORE
, _("Increase Paragraph &Spacing"));
615 formatMenu
->Append(ID_FORMAT_PARAGRAPH_SPACING_LESS
, _("Decrease &Paragraph Spacing"));
616 formatMenu
->AppendSeparator();
617 formatMenu
->Append(ID_FORMAT_LINE_SPACING_SINGLE
, _("Normal Line Spacing"));
618 formatMenu
->Append(ID_FORMAT_LINE_SPACING_HALF
, _("1.5 Line Spacing"));
619 formatMenu
->Append(ID_FORMAT_LINE_SPACING_DOUBLE
, _("Double Line Spacing"));
620 formatMenu
->AppendSeparator();
621 formatMenu
->Append(ID_FORMAT_FONT
, _("&Font..."));
622 formatMenu
->Append(ID_FORMAT_PARAGRAPH
, _("&Paragraph..."));
623 formatMenu
->Append(ID_FORMAT_CONTENT
, _("Font and Pa&ragraph...\tShift+Ctrl+F"));
624 formatMenu
->AppendSeparator();
625 formatMenu
->Append(ID_SWITCH_STYLE_SHEETS
, _("&Switch Style Sheets"));
626 formatMenu
->Append(ID_MANAGE_STYLES
, _("&Manage Styles"));
628 wxMenu
* listsMenu
= new wxMenu
;
629 listsMenu
->Append(ID_FORMAT_BULLETS_AND_NUMBERING
, _("Bullets and &Numbering..."));
630 listsMenu
->AppendSeparator();
631 listsMenu
->Append(ID_FORMAT_NUMBER_LIST
, _("Number List"));
632 listsMenu
->Append(ID_FORMAT_ITEMIZE_LIST
, _("Itemize List"));
633 listsMenu
->Append(ID_FORMAT_RENUMBER_LIST
, _("Renumber List"));
634 listsMenu
->Append(ID_FORMAT_PROMOTE_LIST
, _("Promote List Items"));
635 listsMenu
->Append(ID_FORMAT_DEMOTE_LIST
, _("Demote List Items"));
636 listsMenu
->Append(ID_FORMAT_CLEAR_LIST
, _("Clear List Formatting"));
638 wxMenu
* insertMenu
= new wxMenu
;
639 insertMenu
->Append(ID_INSERT_SYMBOL
, _("&Symbol...\tCtrl+I"));
640 insertMenu
->Append(ID_INSERT_URL
, _("&URL..."));
642 // now append the freshly created menu to the menu bar...
643 wxMenuBar
*menuBar
= new wxMenuBar();
644 menuBar
->Append(fileMenu
, _T("&File"));
645 menuBar
->Append(editMenu
, _T("&Edit"));
646 menuBar
->Append(formatMenu
, _T("F&ormat"));
647 menuBar
->Append(listsMenu
, _T("&Lists"));
648 menuBar
->Append(insertMenu
, _T("&Insert"));
649 menuBar
->Append(helpMenu
, _T("&Help"));
651 // ... and attach this menu bar to the frame
654 // create a status bar just for fun (by default with 1 pane only)
655 // but don't create it on limited screen space (WinCE)
656 bool is_pda
= wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
;
662 SetStatusText(_T("Welcome to wxRichTextCtrl!"));
666 wxToolBar
* toolBar
= CreateToolBar();
668 toolBar
->AddTool(wxID_OPEN
, wxEmptyString
, wxBitmap(open_xpm
), _("Open"));
669 toolBar
->AddTool(wxID_SAVEAS
, wxEmptyString
, wxBitmap(save_xpm
), _("Save"));
670 toolBar
->AddSeparator();
671 toolBar
->AddTool(wxID_CUT
, wxEmptyString
, wxBitmap(cut_xpm
), _("Cut"));
672 toolBar
->AddTool(wxID_COPY
, wxEmptyString
, wxBitmap(copy_xpm
), _("Copy"));
673 toolBar
->AddTool(wxID_PASTE
, wxEmptyString
, wxBitmap(paste_xpm
), _("Paste"));
674 toolBar
->AddSeparator();
675 toolBar
->AddTool(wxID_UNDO
, wxEmptyString
, wxBitmap(undo_xpm
), _("Undo"));
676 toolBar
->AddTool(wxID_REDO
, wxEmptyString
, wxBitmap(redo_xpm
), _("Redo"));
677 toolBar
->AddSeparator();
678 toolBar
->AddCheckTool(ID_FORMAT_BOLD
, wxEmptyString
, wxBitmap(bold_xpm
), wxNullBitmap
, _("Bold"));
679 toolBar
->AddCheckTool(ID_FORMAT_ITALIC
, wxEmptyString
, wxBitmap(italic_xpm
), wxNullBitmap
, _("Italic"));
680 toolBar
->AddCheckTool(ID_FORMAT_UNDERLINE
, wxEmptyString
, wxBitmap(underline_xpm
), wxNullBitmap
, _("Underline"));
681 toolBar
->AddSeparator();
682 toolBar
->AddCheckTool(ID_FORMAT_ALIGN_LEFT
, wxEmptyString
, wxBitmap(alignleft_xpm
), wxNullBitmap
, _("Align Left"));
683 toolBar
->AddCheckTool(ID_FORMAT_ALIGN_CENTRE
, wxEmptyString
, wxBitmap(centre_xpm
), wxNullBitmap
, _("Centre"));
684 toolBar
->AddCheckTool(ID_FORMAT_ALIGN_RIGHT
, wxEmptyString
, wxBitmap(alignright_xpm
), wxNullBitmap
, _("Align Right"));
685 toolBar
->AddSeparator();
686 toolBar
->AddTool(ID_FORMAT_INDENT_LESS
, wxEmptyString
, wxBitmap(indentless_xpm
), _("Indent Less"));
687 toolBar
->AddTool(ID_FORMAT_INDENT_MORE
, wxEmptyString
, wxBitmap(indentmore_xpm
), _("Indent More"));
688 toolBar
->AddSeparator();
689 toolBar
->AddTool(ID_FORMAT_FONT
, wxEmptyString
, wxBitmap(font_xpm
), _("Font"));
691 wxRichTextStyleComboCtrl
* combo
= new wxRichTextStyleComboCtrl(toolBar
, ID_RICHTEXT_STYLE_COMBO
, wxDefaultPosition
, wxSize(200, -1));
692 toolBar
->AddControl(combo
);
696 wxSplitterWindow
* splitter
= new wxSplitterWindow(this, wxID_ANY
, wxDefaultPosition
, GetClientSize(), wxSP_LIVE_UPDATE
);
698 wxFont textFont
= wxFont(12, wxROMAN
, wxNORMAL
, wxNORMAL
);
699 wxFont boldFont
= wxFont(12, wxROMAN
, wxNORMAL
, wxBOLD
);
700 wxFont italicFont
= wxFont(12, wxROMAN
, wxITALIC
, wxNORMAL
);
702 m_richTextCtrl
= new wxRichTextCtrl(splitter
, ID_RICHTEXT_CTRL
, wxEmptyString
, wxDefaultPosition
, wxSize(200, 200), wxVSCROLL
|wxHSCROLL
|wxWANTS_CHARS
);
703 wxFont
font(12, wxROMAN
, wxNORMAL
, wxNORMAL
);
705 m_richTextCtrl
->SetFont(font
);
707 m_richTextCtrl
->SetStyleSheet(wxGetApp().GetStyleSheet());
709 combo
->SetStyleSheet(wxGetApp().GetStyleSheet());
710 combo
->SetRichTextCtrl(m_richTextCtrl
);
711 combo
->UpdateStyles();
713 wxRichTextStyleListCtrl
* styleListCtrl
= new wxRichTextStyleListCtrl(splitter
, ID_RICHTEXT_STYLE_LIST
);
715 wxSize display
= wxGetDisplaySize();
716 if ( is_pda
&& ( display
.GetWidth() < display
.GetHeight() ) )
718 splitter
->SplitHorizontally(m_richTextCtrl
, styleListCtrl
);
722 splitter
->SplitVertically(m_richTextCtrl
, styleListCtrl
, 500);
725 splitter
->UpdateSize();
727 styleListCtrl
->SetStyleSheet(wxGetApp().GetStyleSheet());
728 styleListCtrl
->SetRichTextCtrl(m_richTextCtrl
);
729 styleListCtrl
->UpdateStyles();
735 void MyFrame::WriteInitialText()
737 wxRichTextCtrl
& r
= *m_richTextCtrl
;
739 r
.SetDefaultStyle(wxRichTextAttr());
741 r
.BeginSuppressUndo();
743 r
.BeginParagraphSpacing(0, 20);
745 r
.BeginAlignment(wxTEXT_ALIGNMENT_CENTRE
);
750 wxString lineBreak
= (wxChar
) 29;
752 r
.WriteText(wxString(wxT("Welcome to wxRichTextCtrl, a wxWidgets control")) + lineBreak
+ wxT("for editing and presenting styled text and images\n"));
756 r
.WriteText(wxT("by Julian Smart"));
762 r
.WriteImage(wxBitmap(zebra_xpm
));
769 r
.WriteText(wxT("What can you do with this thing? "));
771 r
.WriteImage(wxBitmap(smiley_xpm
));
772 r
.WriteText(wxT(" Well, you can change text "));
774 r
.BeginTextColour(wxColour(255, 0, 0));
775 r
.WriteText(wxT("colour, like this red bit."));
778 wxRichTextAttr backgroundColourAttr
;
779 backgroundColourAttr
.SetBackgroundColour(*wxGREEN
);
780 backgroundColourAttr
.SetTextColour(wxColour(0, 0, 255));
781 r
.BeginStyle(backgroundColourAttr
);
782 r
.WriteText(wxT(" And this blue on green bit."));
785 r
.WriteText(wxT(" Naturally you can make things "));
787 r
.WriteText(wxT("bold "));
790 r
.WriteText(wxT("or italic "));
793 r
.WriteText(wxT("or underlined."));
797 r
.WriteText(wxT(" Different font sizes on the same line is allowed, too."));
800 r
.WriteText(wxT(" Next we'll show an indented paragraph."));
804 r
.BeginLeftIndent(60);
805 r
.WriteText(wxT("It was in January, the most down-trodden month of an Edinburgh winter. An attractive woman came into the cafe, which is nothing remarkable."));
810 r
.WriteText(wxT("Next, we'll show a first-line indent, achieved using BeginLeftIndent(100, -40)."));
814 r
.BeginLeftIndent(100, -40);
816 r
.WriteText(wxT("It was in January, the most down-trodden month of an Edinburgh winter. An attractive woman came into the cafe, which is nothing remarkable."));
821 r
.WriteText(wxT("Numbered bullets are possible, again using subindents:"));
824 r
.BeginNumberedBullet(1, 100, 60);
825 r
.WriteText(wxT("This is my first item. Note that wxRichTextCtrl can apply numbering and bullets automatically based on list styles, but this list is formatted explicitly by setting indents."));
827 r
.EndNumberedBullet();
829 r
.BeginNumberedBullet(2, 100, 60);
830 r
.WriteText(wxT("This is my second item."));
832 r
.EndNumberedBullet();
834 r
.WriteText(wxT("The following paragraph is right-indented:"));
837 r
.BeginRightIndent(200);
839 r
.WriteText(wxT("It was in January, the most down-trodden month of an Edinburgh winter. An attractive woman came into the cafe, which is nothing remarkable."));
844 r
.WriteText(wxT("The following paragraph is right-aligned with 1.5 line spacing:"));
847 r
.BeginAlignment(wxTEXT_ALIGNMENT_RIGHT
);
848 r
.BeginLineSpacing(wxTEXT_ATTR_LINE_SPACING_HALF
);
849 r
.WriteText(wxT("It was in January, the most down-trodden month of an Edinburgh winter. An attractive woman came into the cafe, which is nothing remarkable."));
860 attr
.SetFlags(wxTEXT_ATTR_TABS
);
862 r
.SetDefaultStyle(attr
);
864 r
.WriteText(wxT("This line contains tabs:\tFirst tab\tSecond tab\tThird tab"));
867 r
.WriteText(wxT("Other notable features of wxRichTextCtrl include:"));
870 r
.BeginSymbolBullet(wxT('*'), 100, 60);
871 r
.WriteText(wxT("Compatibility with wxTextCtrl API"));
875 r
.BeginSymbolBullet(wxT('*'), 100, 60);
876 r
.WriteText(wxT("Easy stack-based BeginXXX()...EndXXX() style setting in addition to SetStyle()"));
880 r
.BeginSymbolBullet(wxT('*'), 100, 60);
881 r
.WriteText(wxT("XML loading and saving"));
885 r
.BeginSymbolBullet(wxT('*'), 100, 60);
886 r
.WriteText(wxT("Undo/Redo, with batching option and Undo suppressing"));
890 r
.BeginSymbolBullet(wxT('*'), 100, 60);
891 r
.WriteText(wxT("Clipboard copy and paste"));
895 r
.BeginSymbolBullet(wxT('*'), 100, 60);
896 r
.WriteText(wxT("wxRichTextStyleSheet with named character and paragraph styles, and control for applying named styles"));
900 r
.BeginSymbolBullet(wxT('*'), 100, 60);
901 r
.WriteText(wxT("A design that can easily be extended to other content types, ultimately with text boxes, tables, controls, and so on"));
905 // Make a style suitable for showing a URL
906 wxRichTextAttr urlStyle
;
907 urlStyle
.SetTextColour(*wxBLUE
);
908 urlStyle
.SetFontUnderlined(true);
910 r
.WriteText(wxT("wxRichTextCtrl can also display URLs, such as this one: "));
911 r
.BeginStyle(urlStyle
);
912 r
.BeginURL(wxT("http://www.wxwidgets.org"));
913 r
.WriteText(wxT("The wxWidgets Web Site"));
916 r
.WriteText(wxT(". Click on the URL to generate an event."));
920 r
.WriteText(wxT("Note: this sample content was generated programmatically from within the MyFrame constructor in the demo. The images were loaded from inline XPMs. Enjoy wxRichTextCtrl!\n"));
922 r
.EndParagraphSpacing();
929 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
931 // true is to force the frame to close
935 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
938 msg
.Printf( _T("This is a demo for wxRichTextCtrl, a control for editing styled text.\n(c) Julian Smart, 2005"));
939 wxMessageBox(msg
, _T("About wxRichTextCtrl Sample"), wxOK
| wxICON_INFORMATION
, this);
942 // Forward command events to the current rich text control, if any
943 bool MyFrame::ProcessEvent(wxEvent
& event
)
945 if (event
.IsCommandEvent() && !event
.IsKindOf(CLASSINFO(wxChildFocusEvent
)))
947 // Problem: we can get infinite recursion because the events
948 // climb back up to this frame, and repeat.
949 // Assume that command events don't cause another command event
950 // to be called, so we can rely on inCommand not being overwritten
952 static int s_eventType
= 0;
953 static wxWindowID s_id
= 0;
955 if (s_id
!= event
.GetId() && s_eventType
!= event
.GetEventType())
957 s_eventType
= event
.GetEventType();
958 s_id
= event
.GetId();
960 wxWindow
* focusWin
= wxFindFocusDescendant(this);
961 if (focusWin
&& focusWin
->ProcessEvent(event
))
978 return wxFrame::ProcessEvent(event
);
981 void MyFrame::OnOpen(wxCommandEvent
& WXUNUSED(event
))
985 wxArrayInt fileTypes
;
987 wxString filter
= wxRichTextBuffer::GetExtWildcard(false, false, & fileTypes
);
990 filter
+= wxT("All files (*.*)|*.*");
992 wxFileDialog
dialog(this,
993 _("Choose a filename"),
999 if (dialog
.ShowModal() == wxID_OK
)
1001 wxString path
= dialog
.GetPath();
1005 int filterIndex
= dialog
.GetFilterIndex();
1006 int fileType
= (filterIndex
< (int) fileTypes
.GetCount())
1007 ? fileTypes
[filterIndex
]
1008 : wxRICHTEXT_TYPE_TEXT
;
1009 m_richTextCtrl
->LoadFile(path
, fileType
);
1014 void MyFrame::OnSave(wxCommandEvent
& event
)
1016 if (m_richTextCtrl
->GetFilename().empty())
1021 m_richTextCtrl
->SaveFile();
1024 void MyFrame::OnSaveAs(wxCommandEvent
& WXUNUSED(event
))
1026 wxString filter
= wxRichTextBuffer::GetExtWildcard(false, true);
1030 wxFileDialog
dialog(this,
1031 _("Choose a filename"),
1037 if (dialog
.ShowModal() == wxID_OK
)
1039 wxString path
= dialog
.GetPath();
1043 m_richTextCtrl
->SaveFile(path
);
1048 void MyFrame::OnBold(wxCommandEvent
& WXUNUSED(event
))
1050 m_richTextCtrl
->ApplyBoldToSelection();
1053 void MyFrame::OnItalic(wxCommandEvent
& WXUNUSED(event
))
1055 m_richTextCtrl
->ApplyItalicToSelection();
1058 void MyFrame::OnUnderline(wxCommandEvent
& WXUNUSED(event
))
1060 m_richTextCtrl
->ApplyUnderlineToSelection();
1064 void MyFrame::OnUpdateBold(wxUpdateUIEvent
& event
)
1066 event
.Check(m_richTextCtrl
->IsSelectionBold());
1069 void MyFrame::OnUpdateItalic(wxUpdateUIEvent
& event
)
1071 event
.Check(m_richTextCtrl
->IsSelectionItalics());
1074 void MyFrame::OnUpdateUnderline(wxUpdateUIEvent
& event
)
1076 event
.Check(m_richTextCtrl
->IsSelectionUnderlined());
1079 void MyFrame::OnAlignLeft(wxCommandEvent
& WXUNUSED(event
))
1081 m_richTextCtrl
->ApplyAlignmentToSelection(wxTEXT_ALIGNMENT_LEFT
);
1084 void MyFrame::OnAlignCentre(wxCommandEvent
& WXUNUSED(event
))
1086 m_richTextCtrl
->ApplyAlignmentToSelection(wxTEXT_ALIGNMENT_CENTRE
);
1089 void MyFrame::OnAlignRight(wxCommandEvent
& WXUNUSED(event
))
1091 m_richTextCtrl
->ApplyAlignmentToSelection(wxTEXT_ALIGNMENT_RIGHT
);
1094 void MyFrame::OnUpdateAlignLeft(wxUpdateUIEvent
& event
)
1096 event
.Check(m_richTextCtrl
->IsSelectionAligned(wxTEXT_ALIGNMENT_LEFT
));
1099 void MyFrame::OnUpdateAlignCentre(wxUpdateUIEvent
& event
)
1101 event
.Check(m_richTextCtrl
->IsSelectionAligned(wxTEXT_ALIGNMENT_CENTRE
));
1104 void MyFrame::OnUpdateAlignRight(wxUpdateUIEvent
& event
)
1106 event
.Check(m_richTextCtrl
->IsSelectionAligned(wxTEXT_ALIGNMENT_RIGHT
));
1109 void MyFrame::OnFont(wxCommandEvent
& WXUNUSED(event
))
1111 wxRichTextRange range
;
1112 if (m_richTextCtrl
->HasSelection())
1113 range
= m_richTextCtrl
->GetSelectionRange();
1115 range
= wxRichTextRange(0, m_richTextCtrl
->GetLastPosition()+1);
1117 int pages
= wxRICHTEXT_FORMAT_FONT
;
1119 wxRichTextFormattingDialog
formatDlg(pages
, this);
1120 formatDlg
.GetStyle(m_richTextCtrl
, range
);
1122 if (formatDlg
.ShowModal() == wxID_OK
)
1124 formatDlg
.ApplyStyle(m_richTextCtrl
, range
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_OPTIMIZE
|wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
);
1127 // Old method using wxFontDialog
1129 if (!m_richTextCtrl
->HasSelection())
1132 wxRichTextRange range
= m_richTextCtrl
->GetSelectionRange();
1133 wxFontData fontData
;
1136 attr
.SetFlags(wxTEXT_ATTR_FONT
);
1138 if (m_richTextCtrl
->GetStyle(m_richTextCtrl
->GetInsertionPoint(), attr
))
1139 fontData
.SetInitialFont(attr
.GetFont());
1141 wxFontDialog
dialog(this, fontData
);
1142 if (dialog
.ShowModal() == wxID_OK
)
1144 fontData
= dialog
.GetFontData();
1145 attr
.SetFlags(wxTEXT_ATTR_FONT
);
1146 attr
.SetFont(fontData
.GetChosenFont());
1147 if (attr
.GetFont().Ok())
1149 m_richTextCtrl
->SetStyle(range
, attr
);
1155 void MyFrame::OnParagraph(wxCommandEvent
& WXUNUSED(event
))
1157 wxRichTextRange range
;
1158 if (m_richTextCtrl
->HasSelection())
1159 range
= m_richTextCtrl
->GetSelectionRange();
1161 range
= wxRichTextRange(0, m_richTextCtrl
->GetLastPosition()+1);
1163 int pages
= wxRICHTEXT_FORMAT_INDENTS_SPACING
|wxRICHTEXT_FORMAT_TABS
|wxRICHTEXT_FORMAT_BULLETS
;
1165 wxRichTextFormattingDialog
formatDlg(pages
, this);
1166 formatDlg
.GetStyle(m_richTextCtrl
, range
);
1168 if (formatDlg
.ShowModal() == wxID_OK
)
1170 formatDlg
.ApplyStyle(m_richTextCtrl
, range
);
1174 void MyFrame::OnFormat(wxCommandEvent
& WXUNUSED(event
))
1176 wxRichTextRange range
;
1177 if (m_richTextCtrl
->HasSelection())
1178 range
= m_richTextCtrl
->GetSelectionRange();
1180 range
= wxRichTextRange(0, m_richTextCtrl
->GetLastPosition()+1);
1182 int pages
= wxRICHTEXT_FORMAT_FONT
|wxRICHTEXT_FORMAT_INDENTS_SPACING
|wxRICHTEXT_FORMAT_TABS
|wxRICHTEXT_FORMAT_BULLETS
;
1184 wxRichTextFormattingDialog
formatDlg(pages
, this);
1185 formatDlg
.GetStyle(m_richTextCtrl
, range
);
1187 if (formatDlg
.ShowModal() == wxID_OK
)
1189 formatDlg
.ApplyStyle(m_richTextCtrl
, range
);
1193 void MyFrame::OnUpdateFormat(wxUpdateUIEvent
& event
)
1195 event
.Enable(m_richTextCtrl
->HasSelection());
1198 void MyFrame::OnIndentMore(wxCommandEvent
& WXUNUSED(event
))
1200 wxRichTextAttr attr
;
1201 attr
.SetFlags(wxTEXT_ATTR_LEFT_INDENT
);
1203 if (m_richTextCtrl
->GetStyle(m_richTextCtrl
->GetInsertionPoint(), attr
))
1205 wxRichTextRange
range(m_richTextCtrl
->GetInsertionPoint(), m_richTextCtrl
->GetInsertionPoint());
1206 if (m_richTextCtrl
->HasSelection())
1207 range
= m_richTextCtrl
->GetSelectionRange();
1209 attr
.SetLeftIndent(attr
.GetLeftIndent() + 100);
1211 attr
.SetFlags(wxTEXT_ATTR_LEFT_INDENT
);
1212 m_richTextCtrl
->SetStyle(range
, attr
);
1216 void MyFrame::OnIndentLess(wxCommandEvent
& WXUNUSED(event
))
1218 wxRichTextAttr attr
;
1219 attr
.SetFlags(wxTEXT_ATTR_LEFT_INDENT
);
1221 if (m_richTextCtrl
->GetStyle(m_richTextCtrl
->GetInsertionPoint(), attr
))
1223 wxRichTextRange
range(m_richTextCtrl
->GetInsertionPoint(), m_richTextCtrl
->GetInsertionPoint());
1224 if (m_richTextCtrl
->HasSelection())
1225 range
= m_richTextCtrl
->GetSelectionRange();
1227 if (attr
.GetLeftIndent() > 0)
1229 attr
.SetLeftIndent(wxMax(0, attr
.GetLeftIndent() - 100));
1231 m_richTextCtrl
->SetStyle(range
, attr
);
1236 void MyFrame::OnLineSpacingHalf(wxCommandEvent
& WXUNUSED(event
))
1238 wxRichTextAttr attr
;
1239 attr
.SetFlags(wxTEXT_ATTR_LINE_SPACING
);
1241 if (m_richTextCtrl
->GetStyle(m_richTextCtrl
->GetInsertionPoint(), attr
))
1243 wxRichTextRange
range(m_richTextCtrl
->GetInsertionPoint(), m_richTextCtrl
->GetInsertionPoint());
1244 if (m_richTextCtrl
->HasSelection())
1245 range
= m_richTextCtrl
->GetSelectionRange();
1247 attr
.SetFlags(wxTEXT_ATTR_LINE_SPACING
);
1248 attr
.SetLineSpacing(15);
1250 m_richTextCtrl
->SetStyle(range
, attr
);
1254 void MyFrame::OnLineSpacingDouble(wxCommandEvent
& WXUNUSED(event
))
1256 wxRichTextAttr attr
;
1257 attr
.SetFlags(wxTEXT_ATTR_LINE_SPACING
);
1259 if (m_richTextCtrl
->GetStyle(m_richTextCtrl
->GetInsertionPoint(), attr
))
1261 wxRichTextRange
range(m_richTextCtrl
->GetInsertionPoint(), m_richTextCtrl
->GetInsertionPoint());
1262 if (m_richTextCtrl
->HasSelection())
1263 range
= m_richTextCtrl
->GetSelectionRange();
1265 attr
.SetFlags(wxTEXT_ATTR_LINE_SPACING
);
1266 attr
.SetLineSpacing(20);
1268 m_richTextCtrl
->SetStyle(range
, attr
);
1272 void MyFrame::OnLineSpacingSingle(wxCommandEvent
& WXUNUSED(event
))
1274 wxRichTextAttr attr
;
1275 attr
.SetFlags(wxTEXT_ATTR_LINE_SPACING
);
1277 if (m_richTextCtrl
->GetStyle(m_richTextCtrl
->GetInsertionPoint(), attr
))
1279 wxRichTextRange
range(m_richTextCtrl
->GetInsertionPoint(), m_richTextCtrl
->GetInsertionPoint());
1280 if (m_richTextCtrl
->HasSelection())
1281 range
= m_richTextCtrl
->GetSelectionRange();
1283 attr
.SetFlags(wxTEXT_ATTR_LINE_SPACING
);
1284 attr
.SetLineSpacing(0); // Can also use 10
1286 m_richTextCtrl
->SetStyle(range
, attr
);
1290 void MyFrame::OnParagraphSpacingMore(wxCommandEvent
& WXUNUSED(event
))
1292 wxRichTextAttr attr
;
1293 attr
.SetFlags(wxTEXT_ATTR_PARA_SPACING_AFTER
);
1295 if (m_richTextCtrl
->GetStyle(m_richTextCtrl
->GetInsertionPoint(), attr
))
1297 wxRichTextRange
range(m_richTextCtrl
->GetInsertionPoint(), m_richTextCtrl
->GetInsertionPoint());
1298 if (m_richTextCtrl
->HasSelection())
1299 range
= m_richTextCtrl
->GetSelectionRange();
1301 attr
.SetParagraphSpacingAfter(attr
.GetParagraphSpacingAfter() + 20);
1303 attr
.SetFlags(wxTEXT_ATTR_PARA_SPACING_AFTER
);
1304 m_richTextCtrl
->SetStyle(range
, attr
);
1308 void MyFrame::OnParagraphSpacingLess(wxCommandEvent
& WXUNUSED(event
))
1310 wxRichTextAttr attr
;
1311 attr
.SetFlags(wxTEXT_ATTR_PARA_SPACING_AFTER
);
1313 if (m_richTextCtrl
->GetStyle(m_richTextCtrl
->GetInsertionPoint(), attr
))
1315 wxRichTextRange
range(m_richTextCtrl
->GetInsertionPoint(), m_richTextCtrl
->GetInsertionPoint());
1316 if (m_richTextCtrl
->HasSelection())
1317 range
= m_richTextCtrl
->GetSelectionRange();
1319 if (attr
.GetParagraphSpacingAfter() >= 20)
1321 attr
.SetParagraphSpacingAfter(attr
.GetParagraphSpacingAfter() - 20);
1323 attr
.SetFlags(wxTEXT_ATTR_PARA_SPACING_AFTER
);
1324 m_richTextCtrl
->SetStyle(range
, attr
);
1329 void MyFrame::OnReload(wxCommandEvent
& WXUNUSED(event
))
1331 m_richTextCtrl
->Clear();
1335 void MyFrame::OnViewHTML(wxCommandEvent
& WXUNUSED(event
))
1337 wxDialog
dialog(this, wxID_ANY
, _("HTML"), wxDefaultPosition
, wxSize(500, 400), wxDEFAULT_DIALOG_STYLE
);
1339 wxBoxSizer
* boxSizer
= new wxBoxSizer(wxVERTICAL
);
1340 dialog
.SetSizer(boxSizer
);
1342 wxHtmlWindow
* win
= new wxHtmlWindow(& dialog
, wxID_ANY
, wxDefaultPosition
, wxSize(500, 400), wxSUNKEN_BORDER
);
1343 boxSizer
->Add(win
, 1, wxALL
, 5);
1345 wxButton
* cancelButton
= new wxButton(& dialog
, wxID_CANCEL
, wxT("&Close"));
1346 boxSizer
->Add(cancelButton
, 0, wxALL
|wxCENTRE
, 5);
1349 wxStringOutputStream
strStream(& text
);
1351 wxRichTextHTMLHandler htmlHandler
;
1352 htmlHandler
.SetFlags(wxRICHTEXT_HANDLER_SAVE_IMAGES_TO_MEMORY
);
1354 wxArrayInt fontSizeMapping
;
1355 fontSizeMapping
.Add(7);
1356 fontSizeMapping
.Add(9);
1357 fontSizeMapping
.Add(11);
1358 fontSizeMapping
.Add(12);
1359 fontSizeMapping
.Add(14);
1360 fontSizeMapping
.Add(22);
1361 fontSizeMapping
.Add(100);
1363 htmlHandler
.SetFontSizeMapping(fontSizeMapping
);
1365 if (htmlHandler
.SaveFile(& m_richTextCtrl
->GetBuffer(), strStream
))
1370 boxSizer
->Fit(& dialog
);
1374 // Now delete the temporary in-memory images
1375 htmlHandler
.DeleteTemporaryImages();
1378 // Demonstrates how you can change the style sheets and have the changes
1379 // reflected in the control content without wiping out character formatting.
1381 void MyFrame::OnSwitchStyleSheets(wxCommandEvent
& WXUNUSED(event
))
1383 static wxRichTextStyleSheet
* gs_AlternateStyleSheet
= NULL
;
1385 wxRichTextStyleListCtrl
*styleList
= (wxRichTextStyleListCtrl
*) FindWindow(ID_RICHTEXT_STYLE_LIST
);
1386 wxRichTextStyleComboCtrl
* styleCombo
= (wxRichTextStyleComboCtrl
*) FindWindow(ID_RICHTEXT_STYLE_COMBO
);
1388 wxRichTextStyleSheet
* sheet
= m_richTextCtrl
->GetStyleSheet();
1390 // One-time creation of an alternate style sheet
1391 if (!gs_AlternateStyleSheet
)
1393 gs_AlternateStyleSheet
= new wxRichTextStyleSheet(*sheet
);
1395 // Make some modifications
1396 for (int i
= 0; i
< (int) gs_AlternateStyleSheet
->GetParagraphStyleCount(); i
++)
1398 wxRichTextParagraphStyleDefinition
* def
= gs_AlternateStyleSheet
->GetParagraphStyle(i
);
1400 if (def
->GetStyle().HasTextColour())
1401 def
->GetStyle().SetTextColour(*wxBLUE
);
1403 if (def
->GetStyle().HasAlignment())
1405 if (def
->GetStyle().GetAlignment() == wxTEXT_ALIGNMENT_CENTRE
)
1406 def
->GetStyle().SetAlignment(wxTEXT_ALIGNMENT_RIGHT
);
1407 else if (def
->GetStyle().GetAlignment() == wxTEXT_ALIGNMENT_LEFT
)
1408 def
->GetStyle().SetAlignment(wxTEXT_ALIGNMENT_CENTRE
);
1410 if (def
->GetStyle().HasLeftIndent())
1412 def
->GetStyle().SetLeftIndent(def
->GetStyle().GetLeftIndent() * 2);
1418 wxRichTextStyleSheet
* tmp
= gs_AlternateStyleSheet
;
1419 gs_AlternateStyleSheet
= sheet
;
1422 m_richTextCtrl
->SetStyleSheet(sheet
);
1423 m_richTextCtrl
->ApplyStyleSheet(sheet
); // Makes the control reflect the new style definitions
1425 styleList
->SetStyleSheet(sheet
);
1426 styleList
->UpdateStyles();
1428 styleCombo
->SetStyleSheet(sheet
);
1429 styleCombo
->UpdateStyles();
1432 void MyFrame::OnManageStyles(wxCommandEvent
& WXUNUSED(event
))
1434 wxRichTextStyleSheet
* sheet
= m_richTextCtrl
->GetStyleSheet();
1436 int flags
= wxRICHTEXT_ORGANISER_CREATE_STYLES
|wxRICHTEXT_ORGANISER_EDIT_STYLES
;
1438 wxRichTextStyleOrganiserDialog
dlg(flags
, sheet
, NULL
, this, wxID_ANY
, _("Style Manager"));
1442 void MyFrame::OnInsertSymbol(wxCommandEvent
& WXUNUSED(event
))
1444 wxRichTextAttr attr
;
1445 attr
.SetFlags(wxTEXT_ATTR_FONT
);
1446 m_richTextCtrl
->GetStyle(m_richTextCtrl
->GetInsertionPoint(), attr
);
1448 wxString currentFontName
;
1449 if (attr
.HasFont() && attr
.GetFont().Ok())
1450 currentFontName
= attr
.GetFont().GetFaceName();
1452 // Don't set the initial font in the dialog (so the user is choosing
1453 // 'normal text', i.e. the current font) but do tell the dialog
1454 // what 'normal text' is.
1456 wxSymbolPickerDialog
dlg(wxT("*"), wxEmptyString
, currentFontName
, this);
1458 if (dlg
.ShowModal() == wxID_OK
)
1460 if (dlg
.HasSelection())
1462 long insertionPoint
= m_richTextCtrl
->GetInsertionPoint();
1464 m_richTextCtrl
->WriteText(dlg
.GetSymbol());
1466 if (!dlg
.UseNormalFont())
1468 wxFont
font(attr
.GetFont());
1469 font
.SetFaceName(dlg
.GetFontName());
1471 m_richTextCtrl
->SetStyle(insertionPoint
, insertionPoint
+1, attr
);
1477 void MyFrame::OnNumberList(wxCommandEvent
& WXUNUSED(event
))
1479 if (m_richTextCtrl
->HasSelection())
1481 wxRichTextRange range
= m_richTextCtrl
->GetSelectionRange();
1482 m_richTextCtrl
->SetListStyle(range
, wxT("Numbered List 1"), wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_RENUMBER
);
1486 void MyFrame::OnBulletsAndNumbering(wxCommandEvent
& WXUNUSED(event
))
1488 wxRichTextStyleSheet
* sheet
= m_richTextCtrl
->GetStyleSheet();
1490 int flags
= wxRICHTEXT_ORGANISER_BROWSE_NUMBERING
;
1492 wxRichTextStyleOrganiserDialog
dlg(flags
, sheet
, m_richTextCtrl
, this, wxID_ANY
, _("Bullets and Numbering"));
1493 if (dlg
.ShowModal() == wxID_OK
)
1495 if (dlg
.GetSelectedStyleDefinition())
1500 void MyFrame::OnItemizeList(wxCommandEvent
& WXUNUSED(event
))
1502 if (m_richTextCtrl
->HasSelection())
1504 wxRichTextRange range
= m_richTextCtrl
->GetSelectionRange();
1505 m_richTextCtrl
->SetListStyle(range
, wxT("Bullet List 1"));
1509 void MyFrame::OnRenumberList(wxCommandEvent
& WXUNUSED(event
))
1511 if (m_richTextCtrl
->HasSelection())
1513 wxRichTextRange range
= m_richTextCtrl
->GetSelectionRange();
1514 m_richTextCtrl
->NumberList(range
, NULL
, wxRICHTEXT_SETSTYLE_WITH_UNDO
|wxRICHTEXT_SETSTYLE_RENUMBER
);
1518 void MyFrame::OnPromoteList(wxCommandEvent
& WXUNUSED(event
))
1520 if (m_richTextCtrl
->HasSelection())
1522 wxRichTextRange range
= m_richTextCtrl
->GetSelectionRange();
1523 m_richTextCtrl
->PromoteList(1, range
, NULL
);
1527 void MyFrame::OnDemoteList(wxCommandEvent
& WXUNUSED(event
))
1529 if (m_richTextCtrl
->HasSelection())
1531 wxRichTextRange range
= m_richTextCtrl
->GetSelectionRange();
1532 m_richTextCtrl
->PromoteList(-1, range
, NULL
);
1536 void MyFrame::OnClearList(wxCommandEvent
& WXUNUSED(event
))
1538 if (m_richTextCtrl
->HasSelection())
1540 wxRichTextRange range
= m_richTextCtrl
->GetSelectionRange();
1541 m_richTextCtrl
->ClearListStyle(range
);
1545 void MyFrame::OnInsertURL(wxCommandEvent
& WXUNUSED(event
))
1547 wxString url
= wxGetTextFromUser(_("URL:"), _("Insert URL"));
1550 // Make a style suitable for showing a URL
1551 wxRichTextAttr urlStyle
;
1552 urlStyle
.SetTextColour(*wxBLUE
);
1553 urlStyle
.SetFontUnderlined(true);
1555 m_richTextCtrl
->BeginStyle(urlStyle
);
1556 m_richTextCtrl
->BeginURL(url
);
1557 m_richTextCtrl
->WriteText(url
);
1558 m_richTextCtrl
->EndURL();
1559 m_richTextCtrl
->EndStyle();
1563 void MyFrame::OnURL(wxTextUrlEvent
& event
)
1565 wxMessageBox(event
.GetString());
1568 // Veto style sheet replace events when loading from XML, since we want
1569 // to keep the original style sheet.
1570 void MyFrame::OnStyleSheetReplacing(wxRichTextEvent
& event
)
1575 void MyFrame::OnPrint(wxCommandEvent
& WXUNUSED(event
))
1577 wxGetApp().GetPrinting()->PrintBuffer(m_richTextCtrl
->GetBuffer());
1580 void MyFrame::OnPreview(wxCommandEvent
& WXUNUSED(event
))
1582 wxGetApp().GetPrinting()->PreviewBuffer(m_richTextCtrl
->GetBuffer());
1585 void MyFrame::OnPageSetup(wxCommandEvent
& WXUNUSED(event
))
1587 wxGetApp().GetPrinting()->PageSetup();