]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/richtextoverview.tex
quote an underscore
[wxWidgets.git] / docs / latex / wx / richtextoverview.tex
CommitLineData
5f35b46a
JS
1\section{wxRichTextCtrl overview}\label{wxrichtextctrloverview}
2
3Classes: \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}
12
27b12131
JS
13wxRichTextCtrl provides a generic implementation of a rich text editor that can handle different character
14styles, paragraph formatting, and images. It's aimed at editing 'natural' language text - if you need an editor that supports code editing,
15wxStyledTextCtrl is a better choice.
16
17Despite its name, it cannot currently read or write RTF (rich text format) files. Instead, it
18uses its own XML format, and can also read and write plain text. In future we expect to provide
19RTF file capabilities. Custom file formats can be supported by creating additional
20file handlers and registering them with the control.
21
22wxRichTextCtrl is largely compatible with the wxTextCtrl API, but extends it where necessary.
23The control can be used where the native rich text capabilities of wxTextCtrl are not
24adequate (this is particularly true on Windows) and where more direct access to
25the content representation is required. It is difficult and inefficient to read
26the style information in a wxTextCtrl, whereas this information is readily
27available in wxRichTextCtrl. Since it's written in pure wxWidgets, any customizations
28you make to wxRichTextCtrl will be reflected on all platforms.
29
30There are of course a few disadvantages to using wxRichTextCtrl. It is not native,
31so does not behave exactly as a native wxTextCtrl, although common editing conventions
32are followed. Users may miss the built-in spelling correction on Mac OS X, or any
33special character input that may be provided by the native control. It would also
34be a bad choice if intended users rely on screen readers that would be unhappy
35with non-native text input implementation. You might mitigate this by providing
36the choice between wxTextCtrl and wxRichTextCtrl, with fewer features in the
37former case.
38
39wxRichTextCtrl does not yet support printing directly, but content can be converted
40to HTML which can then be used with \helpref{wxHtmlEasyPrinting}{wxhtmleasyprinting}.
5f35b46a
JS
41
42The following screenshot shows the wxRichTextCtrl sample in action:
43
44$$\image{8cm;0cm}{richtextctrl.gif}$$
45
46\wxheading{Example}\label{wxrichtextctrlexample}
47
27b12131 48The following code is taken from the sample, and adds text and styles to a rich text control programmatically.
5f35b46a
JS
49
50{\small
51\begin{verbatim}
27b12131
JS
52 wxRichTextCtrl* richTextCtrl = new wxRichTextCtrl(splitter, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(200, 200), wxVSCROLL|wxHSCROLL|wxNO_BORDER|wxWANTS_CHARS);
53
54 wxFont textFont = wxFont(12, wxROMAN, wxNORMAL, wxNORMAL);
55 wxFont boldFont = wxFont(12, wxROMAN, wxNORMAL, wxBOLD);
56 wxFont italicFont = wxFont(12, wxROMAN, wxITALIC, wxNORMAL);
57
58 wxFont font(12, wxROMAN, wxNORMAL, wxNORMAL);
59
60 m_richTextCtrl->SetFont(font);
61
62 wxRichTextCtrl& r = richTextCtrl;
63
64 r.BeginSuppressUndo();
65
66 r.BeginParagraphSpacing(0, 20);
67
68 r.BeginAlignment(wxTEXT_ALIGNMENT_CENTRE);
69 r.BeginBold();
70
71 r.BeginFontSize(14);
72 r.WriteText(wxT("Welcome to wxRichTextCtrl, a wxWidgets control for editing and presenting styled text and images"));
73 r.EndFontSize();
74 r.Newline();
75
76 r.BeginItalic();
77 r.WriteText(wxT("by Julian Smart"));
78 r.EndItalic();
79
80 r.EndBold();
81
82 r.Newline();
83 r.WriteImage(wxBitmap(zebra_xpm));
84
85 r.EndAlignment();
86
87 r.Newline();
88 r.Newline();
89
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 "));
93
94 r.BeginTextColour(wxColour(255, 0, 0));
95 r.WriteText(wxT("colour, like this red bit."));
96 r.EndTextColour();
97
98 r.BeginTextColour(wxColour(0, 0, 255));
99 r.WriteText(wxT(" And this blue bit."));
100 r.EndTextColour();
101
102 r.WriteText(wxT(" Naturally you can make things "));
103 r.BeginBold();
104 r.WriteText(wxT("bold "));
105 r.EndBold();
106 r.BeginItalic();
107 r.WriteText(wxT("or italic "));
108 r.EndItalic();
109 r.BeginUnderline();
110 r.WriteText(wxT("or underlined."));
111 r.EndUnderline();
112
113 r.BeginFontSize(14);
114 r.WriteText(wxT(" Different font sizes on the same line is allowed, too."));
115 r.EndFontSize();
116
117 r.WriteText(wxT(" Next we'll show an indented paragraph."));
118
119 r.BeginLeftIndent(60);
120 r.Newline();
121
122 r.WriteText(wxT("Indented paragraph."));
123 r.EndLeftIndent();
124
125 r.Newline();
126
127 r.WriteText(wxT("Next, we'll show a first-line indent, achieved using BeginLeftIndent(100, -40)."));
128
129 r.BeginLeftIndent(100, -40);
130 r.Newline();
131
132 r.WriteText(wxT("It was in January, the most down-trodden month of an Edinburgh winter."));
133 r.EndLeftIndent();
134
135 r.Newline();
136
137 r.WriteText(wxT("Numbered bullets are possible, again using subindents:"));
138
139 r.BeginNumberedBullet(1, 100, 60);
140 r.Newline();
141
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();
144
145 r.BeginNumberedBullet(2, 100, 60);
146 r.Newline();
147
148 r.WriteText(wxT("This is my second item."));
149 r.EndNumberedBullet();
150
151 r.Newline();
152
153 r.WriteText(wxT("The following paragraph is right-indented:"));
154
155 r.BeginRightIndent(200);
156 r.Newline();
157
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."));
159 r.EndRightIndent();
160
161 r.Newline();
162
163 wxArrayInt tabs;
164 tabs.Add(400);
165 tabs.Add(600);
166 tabs.Add(800);
167 tabs.Add(1000);
168 wxTextAttrEx attr;
169 attr.SetFlags(wxTEXT_ATTR_TABS);
170 attr.SetTabs(tabs);
171 r.SetDefaultStyle(attr);
172
173 r.WriteText(wxT("This line contains tabs:\tFirst tab\tSecond tab\tThird tab"));
174
175 r.Newline();
176 r.WriteText(wxT("Other notable features of wxRichTextCtrl include:"));
177
178 r.BeginSymbolBullet(wxT('*'), 100, 60);
179 r.Newline();
180 r.WriteText(wxT("Compatibility with wxTextCtrl API"));
181 r.EndSymbolBullet();
182
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!"));
184
185 r.EndSuppressUndo();
5f35b46a
JS
186\end{verbatim}
187}
188
27b12131
JS
189\subsection{Programming with wxRichTextCtrl}
190
191You need to include {\tt <wx/richtext/richtextctrl.h>} in your source, and link
192with the appropriate wxWidgets library with {\tt richtext} suffix. Put the rich text
193library first in your link line to avoid unresolved symbols.
194
195Then you can create a wxRichTextCtrl, with the wxWANT\_CHARS style if you want tabs to
196be processed by the control rather than being used for navigation between controls.
197
198It's helpful to have a model of how styling works. Any piece of text can have its
199style changed, but there also two global notions of style. The control's {\it basic} style
200is the fundamental style for the whole control, to which other character and paragraph styles are
201applied. For example, you can change the control's overall font by either calling SetBasicStyle with
202the appropriate font style, or by calling SetFont.
203
204The {\it default} style, on the other hand, is applied to subsequently inserted
205content. You might click on a Bold formatting tool, which sets bold as one of the default
206attributes, and typing will appear in bold. Then when you select Italic, both
207bold and italic attributes are applied as you type. The default attribute
208is set with \helpref{SetDefaultStyle}{wxrichtextctrlsetdefaultstyle}.
209
210(To be finished.)
211
212\subsection{How wxRichTextCtrl is implemented}
213
214Data representation is handled by wxRichTextBuffer, and a wxRichTextCtrl
215always has one such buffer.
216
217The content is represented by a hierarchy of objects, all derived from
218wxRichTextObject. An object might be an image, a fragment of text, a paragraph,
219or a whole buffer. Objects store a wxRichTextAttr containing style information;
220although it contains both paragraph formatting and character style, the
221paragraph style information is ignored by children of a paragraph (only
222character style is relevant to these objects).
223
224The top of the hierarchy is the buffer, a kind of wxRichTextParagraphLayoutBox.
225containing further wxRichTextParagraph objects, each of which can include text and
226images.
227
228Each object maintains a range (start and end position) measured
229from the start of the main parent box.
230
231When Layout is called on an object, it is given a size which the object
232must limit itself to, or one or more flexible directions (vertical
233or horizontal). So, for example, a centered paragraph is given the page
234width to play with (minus any margins), but can extend indefinitely
235in the vertical direction. The implementation of Layout caches the calculated
236size and position.
237
238When the buffer is modified, a range is invalidated (marked as requiring
239layout), so that only the minimum amount of layout is performed.
240
241A paragraph of pure text with the same style contains just one further
242object, a wxRichTextPlainText object. When styling is applied to part of
243this object, the object is decomposed into separate objects, one object
244for each different character style. So each object within a paragraph always has
245just one wxRichTextAttr object to denote its character style. Of course, this can
246lead to fragmentation after a lot of edit operations, potentially leading
247to several objects with the same style where just one would do. So
248a Defragment function is called when updating the control's display, to ensure that
249the minimum number of objects is used.
250
251(To be finished.)
252
253\subsection{wxRichTextCtrl roadmap}
254
255\wxheading{Bugs}
256
257This is an incomplete list of bugs.
258
259\begin{itemize}
260\item Moving the caret up at the beginning of a line sometimes incorrectly positions the
261caret.
262\end{itemize}
263
264\wxheading{Features}
5f35b46a 265
27b12131 266This is a list of some of the features that have yet to be implemented. Help with them will be appreciated.
5f35b46a 267
27b12131
JS
268\begin{itemize}
269\item Printing
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
276\item Tables
277\item Text frames
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
281embedded images suitable only for browsers).
282\end{itemize}
5f35b46a 283
27b12131
JS
284There are also things that could be done to take advantage of the underlying text capabilities of the platform;
285higher-level text formatting APIs are available on some platforms, such as Mac OS X, and some of translation from
286high level to low level wxDC API is unnecessary. However this would require additions to the wxWidgets API.