1 \section{wxRichTextCtrl overview
}\label{wxrichtextctrloverview
}
3 Classes:
\helpref{wxRichTextCtrl
}{wxrichtextctrl
},
\helpref{wxRichTextBuffer
}{wxrichtextbuffer
},
4 \helpref{wxRichTextAttr
}{wxrichtextattr
},
\helpref{wxTextAttrEx
}{wxtextattrex
},
5 \helpref{wxRichTextCharacterStyleDefinition
}{wxrichtextcharacterstyledefinition
},
6 \helpref{wxRichTextParagraphStyleDefinition
}{wxrichtextparagraphstyledefinition
},
7 \helpref{wxRichTextStyleSheet
}{wxrichtextstylesheet
},
8 \helpref{wxRichTextStyleListBox
}{wxrichtextstylelistbox
},
9 \helpref{wxRichTextEvent
}{wxrichtextevent
},
\helpref{wxRichTextRange
}{wxrichtextrange
},
10 \helpref{wxRichTextFileHandler
}{wxrichtextfilehandler
},
\helpref{wxRichTextHTMLHandler
}{wxrichtexthtmlhandler
},
11 \helpref{wxRichTextXMLHandler
}{wxrichtextxmlhandler
}
13 wxRichTextCtrl provides a generic implementation of a rich text editor that can handle different character
14 styles, paragraph formatting, and images. It's aimed at editing 'natural' language text - if you need an editor that supports code editing,
15 wxStyledTextCtrl is a better choice.
17 Despite its name, it cannot currently read or write RTF (rich text format) files. Instead, it
18 uses its own XML format, and can also read and write plain text. In future we expect to provide
19 RTF file capabilities. Custom file formats can be supported by creating additional
20 file handlers and registering them with the control.
22 wxRichTextCtrl is largely compatible with the wxTextCtrl API, but extends it where necessary.
23 The control can be used where the native rich text capabilities of wxTextCtrl are not
24 adequate (this is particularly true on Windows) and where more direct access to
25 the content representation is required. It is difficult and inefficient to read
26 the style information in a wxTextCtrl, whereas this information is readily
27 available in wxRichTextCtrl. Since it's written in pure wxWidgets, any customizations
28 you make to wxRichTextCtrl will be reflected on all platforms.
30 There are of course a few disadvantages to using wxRichTextCtrl. It is not native,
31 so does not behave exactly as a native wxTextCtrl, although common editing conventions
32 are followed. Users may miss the built-in spelling correction on Mac OS X, or any
33 special character input that may be provided by the native control. It would also
34 be a bad choice if intended users rely on screen readers that would be unhappy
35 with non-native text input implementation. You might mitigate this by providing
36 the choice between wxTextCtrl and wxRichTextCtrl, with fewer features in the
39 wxRichTextCtrl does not yet support printing directly, but content can be converted
40 to HTML which can then be used with
\helpref{wxHtmlEasyPrinting
}{wxhtmleasyprinting
}.
42 The following screenshot shows the wxRichTextCtrl sample in action:
44 $$
\image{8cm;
0cm
}{richtextctrl.gif
}$$
46 \wxheading{Example
}\label{wxrichtextctrlexample
}
48 The following code is taken from the sample, and adds text and styles to a rich text control programmatically.
52 wxRichTextCtrl* richTextCtrl = new wxRichTextCtrl(splitter, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(
200,
200), wxVSCROLL|wxHSCROLL|wxNO_BORDER|wxWANTS_CHARS);
54 wxFont textFont = wxFont(
12, wxROMAN, wxNORMAL, wxNORMAL);
55 wxFont boldFont = wxFont(
12, wxROMAN, wxNORMAL, wxBOLD);
56 wxFont italicFont = wxFont(
12, wxROMAN, wxITALIC, wxNORMAL);
58 wxFont font(
12, wxROMAN, wxNORMAL, wxNORMAL);
60 m_richTextCtrl->SetFont(font);
62 wxRichTextCtrl& r = richTextCtrl;
64 r.BeginSuppressUndo();
66 r.BeginParagraphSpacing(
0,
20);
68 r.BeginAlignment(wxTEXT_ALIGNMENT_CENTRE);
72 r.WriteText(wxT("Welcome to wxRichTextCtrl, a wxWidgets control for editing and presenting styled text and images"));
77 r.WriteText(wxT("by Julian Smart"));
83 r.WriteImage(wxBitmap(zebra_xpm));
90 r.WriteText(wxT("What can you do with this thing? "));
91 r.WriteImage(wxBitmap(smiley_xpm));
92 r.WriteText(wxT(" Well, you can change text "));
94 r.BeginTextColour(wxColour(
255,
0,
0));
95 r.WriteText(wxT("colour, like this red bit."));
98 r.BeginTextColour(wxColour(
0,
0,
255));
99 r.WriteText(wxT(" And this blue bit."));
102 r.WriteText(wxT(" Naturally you can make things "));
104 r.WriteText(wxT("bold "));
107 r.WriteText(wxT("or italic "));
110 r.WriteText(wxT("or underlined."));
114 r.WriteText(wxT(" Different font sizes on the same line is allowed, too."));
117 r.WriteText(wxT(" Next we'll show an indented paragraph."));
119 r.BeginLeftIndent(
60);
122 r.WriteText(wxT("Indented paragraph."));
127 r.WriteText(wxT("Next, we'll show a first-line indent, achieved using BeginLeftIndent(
100, -
40)."));
129 r.BeginLeftIndent(
100, -
40);
132 r.WriteText(wxT("It was in January, the most down-trodden month of an Edinburgh winter."));
137 r.WriteText(wxT("Numbered bullets are possible, again using subindents:"));
139 r.BeginNumberedBullet(
1,
100,
60);
142 r.WriteText(wxT("This is my first item. Note that wxRichTextCtrl doesn't automatically do numbering, but this will be added later."));
143 r.EndNumberedBullet();
145 r.BeginNumberedBullet(
2,
100,
60);
148 r.WriteText(wxT("This is my second item."));
149 r.EndNumberedBullet();
153 r.WriteText(wxT("The following paragraph is right-indented:"));
155 r.BeginRightIndent(
200);
158 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."));
169 attr.SetFlags(wxTEXT_ATTR_TABS);
171 r.SetDefaultStyle(attr);
173 r.WriteText(wxT("This line contains tabs:
\tFirst tab
\tSecond tab
\tThird tab"));
176 r.WriteText(wxT("Other notable features of wxRichTextCtrl include:"));
178 r.BeginSymbolBullet(wxT('*'),
100,
60);
180 r.WriteText(wxT("Compatibility with wxTextCtrl API"));
183 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!"));
189 \subsection{Programming with wxRichTextCtrl
}
191 You need to include
{\tt <wx/richtext/richtextctrl.h>
} in your source, and link
192 with the appropriate wxWidgets library with
{\tt richtext
} suffix. Put the rich text
193 library first in your link line to avoid unresolved symbols.
195 Then you can create a wxRichTextCtrl, with the wxWANT
\_CHARS style if you want tabs to
196 be processed by the control rather than being used for navigation between controls.
198 It's helpful to have a model of how styling works. Any piece of text can have its
199 style changed, but there also two global notions of style. The control's
{\it basic
} style
200 is the fundamental style for the whole control, to which other character and paragraph styles are
201 applied. For example, you can change the control's overall font by either calling SetBasicStyle with
202 the appropriate font style, or by calling SetFont.
204 The
{\it default
} style, on the other hand, is applied to subsequently inserted
205 content. You might click on a Bold formatting tool, which sets bold as one of the default
206 attributes, and typing will appear in bold. Then when you select Italic, both
207 bold and italic attributes are applied as you type. The default attribute
208 is set with
\helpref{SetDefaultStyle
}{wxrichtextctrlsetdefaultstyle
}.
212 \subsection{How wxRichTextCtrl is implemented
}
214 Data representation is handled by wxRichTextBuffer, and a wxRichTextCtrl
215 always has one such buffer.
217 The content is represented by a hierarchy of objects, all derived from
218 wxRichTextObject. An object might be an image, a fragment of text, a paragraph,
219 or a whole buffer. Objects store a wxRichTextAttr containing style information;
220 although it contains both paragraph formatting and character style, the
221 paragraph style information is ignored by children of a paragraph (only
222 character style is relevant to these objects).
224 The top of the hierarchy is the buffer, a kind of wxRichTextParagraphLayoutBox.
225 containing further wxRichTextParagraph objects, each of which can include text and
228 Each object maintains a range (start and end position) measured
229 from the start of the main parent box.
231 When Layout is called on an object, it is given a size which the object
232 must limit itself to, or one or more flexible directions (vertical
233 or horizontal). So, for example, a centered paragraph is given the page
234 width to play with (minus any margins), but can extend indefinitely
235 in the vertical direction. The implementation of Layout caches the calculated
238 When the buffer is modified, a range is invalidated (marked as requiring
239 layout), so that only the minimum amount of layout is performed.
241 A paragraph of pure text with the same style contains just one further
242 object, a wxRichTextPlainText object. When styling is applied to part of
243 this object, the object is decomposed into separate objects, one object
244 for each different character style. So each object within a paragraph always has
245 just one wxRichTextAttr object to denote its character style. Of course, this can
246 lead to fragmentation after a lot of edit operations, potentially leading
247 to several objects with the same style where just one would do. So
248 a Defragment function is called when updating the control's display, to ensure that
249 the minimum number of objects is used.
253 \subsection{wxRichTextCtrl roadmap
}
257 This is an incomplete list of bugs.
260 \item Moving the caret up at the beginning of a line sometimes incorrectly positions the
266 This is a list of some of the features that have yet to be implemented. Help with them will be appreciated.
270 \item RTF input and output
271 \item Floating images, with content wrapping around them
272 \item A ruler control
273 \item Standard editing toolbars
274 \item Automatic list numbering
275 \item Standard dialogs for paragraph/character formatting
278 \item Add ability to show images in wxHTML output (currently uses
279 \item More complete stylesheet viewer, plus style sheet editing dialogs
280 \item Ability to store style sheets with documents
281 embedded images suitable only for browsers).
284 There are also things that could be done to take advantage of the underlying text capabilities of the platform;
285 higher-level text formatting APIs are available on some platforms, such as Mac OS X, and some of translation from
286 high level to low level wxDC API is unnecessary. However this would require additions to the wxWidgets API.