]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/textattrex.tex
Removed wxDataViewViewColumn since it is redundant.
[wxWidgets.git] / docs / latex / wx / textattrex.tex
CommitLineData
5f35b46a
JS
1\section{\class{wxTextAttrEx}}\label{wxtextattrex}
2
3wxTextAttrEx is an extended version of wxTextAttr with more paragraph attributes.
4Currently it is only used with \helpref{wxRichTextCtrl}{wxrichtextctrl}.
5
6It is intended that eventually, the members of wxTextAttrEx will
7be folded into wxTextAttr, and wxTextAttr will be the official
8cross-platform API for text controls that support attributes.
9However, for now, wxTextAttrEx is provided as a means of enabling
10extra functionality in wxRichTextCtrl, while retaining some compatibility
11with the wxTextAttr API.
12
13The most efficient method of accessing wxRichTextCtrl functionality
14is a third attribute class, \helpref{wxRichTextAttr}{wxrichtextattr}, which
15optimizes its storage to allow it to be used for implementing objects
16in a buffer, as well as access to that buffer.
17
18This section only documents the additional members; see \helpref{wxTextAttr}{wxtextattr} for
19the remaining functions.
20
21\wxheading{Derived from}
22
23\helpref{wxTextAttr}{wxtextattr}
24
25\wxheading{Include files}
26
27<wx/richtext/richtextbuffer.h>
28
29\wxheading{Constants}
30
31The following values can be passed to SetAlignment to determine
32paragraph alignment.
33
34{\small
35\begin{verbatim}
36enum wxTextAttrAlignment
37{
38 wxTEXT_ALIGNMENT_DEFAULT,
39 wxTEXT_ALIGNMENT_LEFT,
40 wxTEXT_ALIGNMENT_CENTRE,
41 wxTEXT_ALIGNMENT_CENTER = wxTEXT_ALIGNMENT_CENTRE,
42 wxTEXT_ALIGNMENT_RIGHT,
43 wxTEXT_ALIGNMENT_JUSTIFIED
44};
45\end{verbatim}
46}
47
48These values are passed in a bitlist to SetFlags to determine
49what attributes will be considered when setting the attributes
50for a text control.
51
52{\small
53\begin{verbatim}
54// Standard wxTextAttr constants
55
56#define wxTEXT_ATTR_TEXT_COLOUR 0x0001
57#define wxTEXT_ATTR_BACKGROUND_COLOUR 0x0002
58#define wxTEXT_ATTR_FONT_FACE 0x0004
59#define wxTEXT_ATTR_FONT_SIZE 0x0008
60#define wxTEXT_ATTR_FONT_WEIGHT 0x0010
61#define wxTEXT_ATTR_FONT_ITALIC 0x0020
62#define wxTEXT_ATTR_FONT_UNDERLINE 0x0040
63#define wxTEXT_ATTR_FONT \
64 wxTEXT_ATTR_FONT_FACE | wxTEXT_ATTR_FONT_SIZE | wxTEXT_ATTR_FONT_WEIGHT \
65| wxTEXT_ATTR_FONT_ITALIC | wxTEXT_ATTR_FONT_UNDERLINE
66#define wxTEXT_ATTR_ALIGNMENT 0x0080
67#define wxTEXT_ATTR_LEFT_INDENT 0x0100
68#define wxTEXT_ATTR_RIGHT_INDENT 0x0200
69#define wxTEXT_ATTR_TABS 0x0400
70
71// Extra formatting flags not in wxTextAttr
72
73#define wxTEXT_ATTR_PARA_SPACING_AFTER 0x00000800
74#define wxTEXT_ATTR_PARA_SPACING_BEFORE 0x00001000
75#define wxTEXT_ATTR_LINE_SPACING 0x00002000
76#define wxTEXT_ATTR_CHARACTER_STYLE_NAME 0x00004000
77#define wxTEXT_ATTR_PARAGRAPH_STYLE_NAME 0x00008000
d2d0adc7
JS
78#define wxTEXT_ATTR_LIST_STYLE_NAME 0x00010000
79#define wxTEXT_ATTR_BULLET_STYLE 0x00020000
80#define wxTEXT_ATTR_BULLET_NUMBER 0x00040000
81#define wxTEXT_ATTR_BULLET_TEXT 0x00080000
82#define wxTEXT_ATTR_BULLET_NAME 0x00100000
83#define wxTEXT_ATTR_URL 0x00200000
36f01cc7 84#define wxTEXT_ATTR_PAGE_BREAK 0x00400000
1f65137f 85#define wxTEXT_ATTR_EFFECTS 0x00800000
4d6d8bf4 86#define wxTEXT_ATTR_OUTLINE_LEVEL 0x01000000
5f35b46a
JS
87\end{verbatim}
88}
89
1f65137f 90The following styles can be passed to wxTextAttrEx::SetBulletStyle:
5f35b46a
JS
91
92{\small
93\begin{verbatim}
d2d0adc7
JS
94#define wxTEXT_ATTR_BULLET_STYLE_NONE 0x00000000
95#define wxTEXT_ATTR_BULLET_STYLE_ARABIC 0x00000001
96#define wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER 0x00000002
97#define wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER 0x00000004
98#define wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER 0x00000008
99#define wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER 0x00000010
100#define wxTEXT_ATTR_BULLET_STYLE_SYMBOL 0x00000020
101#define wxTEXT_ATTR_BULLET_STYLE_BITMAP 0x00000040
102#define wxTEXT_ATTR_BULLET_STYLE_PARENTHESES 0x00000080
103#define wxTEXT_ATTR_BULLET_STYLE_PERIOD 0x00000100
104#define wxTEXT_ATTR_BULLET_STYLE_STANDARD 0x00000200
105#define wxTEXT_ATTR_BULLET_STYLE_RIGHT_PARENTHESIS 0x00000400
106#define wxTEXT_ATTR_BULLET_STYLE_OUTLINE 0x00000800
107#define wxTEXT_ATTR_BULLET_STYLE_ALIGN_LEFT 0x00000000
108#define wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT 0x00001000
109#define wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE 0x00002000
5f35b46a
JS
110\end{verbatim}
111}
112
1f65137f
JS
113Of these, wxTEXT\_ATTR\_BULLET\_STYLE\_BITMAP is unimplemented.
114
115The following constants can be passed to wxTextAttrEx::SetLineSpacing:
5f35b46a
JS
116
117{\small
118\begin{verbatim}
119#define wxTEXT_ATTR_LINE_SPACING_NORMAL 10
120#define wxTEXT_ATTR_LINE_SPACING_HALF 15
121#define wxTEXT_ATTR_LINE_SPACING_TWICE 20
122\end{verbatim}
123}
124
1f65137f
JS
125The following styles can be passed to wxTextAttrEx::SetTextEffects:
126
127{\small
128\begin{verbatim}
129#define wxTEXT_ATTR_EFFECT_NONE 0x00000000
130#define wxTEXT_ATTR_EFFECT_CAPITALS 0x00000001
131#define wxTEXT_ATTR_EFFECT_SMALL_CAPITALS 0x00000002
132#define wxTEXT_ATTR_EFFECT_STRIKETHROUGH 0x00000004
133#define wxTEXT_ATTR_EFFECT_DOUBLE_STRIKETHROUGH 0x00000008
134#define wxTEXT_ATTR_EFFECT_SHADOW 0x00000010
135#define wxTEXT_ATTR_EFFECT_EMBOSS 0x00000020
136#define wxTEXT_ATTR_EFFECT_OUTLINE 0x00000040
137#define wxTEXT_ATTR_EFFECT_ENGRAVE 0x00000080
138#define wxTEXT_ATTR_EFFECT_SUPERSCRIPT 0x00000100
139#define wxTEXT_ATTR_EFFECT_SUBSCRIPT 0x00000200
140\end{verbatim}
141}
142
143Of these, only wxTEXT\_ATTR\_EFFECT\_CAPITALS and wxTEXT\_ATTR\_EFFECT\_STRIKETHROUGH are implemented.
144
5f35b46a
JS
145\wxheading{See also}
146
147\helpref{wxTextAttr}{wxtextattr}, \helpref{wxRichTextAttr}{wxrichtextattr}, \helpref{wxRichTextCtrl}{wxrichtextctrl}
148
149\latexignore{\rtfignore{\wxheading{Members}}}
150
151
152\membersection{wxTextAttrEx::wxTextAttrEx}\label{wxtextattrexwxtextattrex}
153
154\func{}{wxTextAttrEx}{\void}
155
156
157\func{}{wxTextAttrEx}{\param{const wxTextAttrEx\& }{attr}}
158
159Constructors.
160
62a268cc
JS
161\membersection{wxTextAttrEx::GetBulletFont}\label{wxtextattrexgetbulletfont}
162
163\constfunc{const wxString\&}{GetBulletFont}{\void}
164
165Returns a string containing the name of the font associated with the bullet symbol.
166Only valid for attributes with wxTEXT\_ATTR\_BULLET\_SYMBOL.
167
d2d0adc7
JS
168\membersection{wxTextAttrEx::GetBulletName}\label{wxtextattrexgetbulletname}
169
170\constfunc{const wxString\&}{GetBulletName}{\void}
171
172Returns the standard bullet name, applicable if the bullet style is wxTEXT\_ATTR\_BULLET\_STYLE\_STANDARD.
173Currently the following standard bullet names are supported:
174
175\begin{itemize}\itemsep=0pt
176\item {\tt standard/circle}
177\item {\tt standard/square}
178\item {\tt standard/diamond}
179\item {\tt standard/triangle}
180\end{itemize}
181
182If you wish your application to support further bullet graphics, you can derive a
183class from wxRichTextRenderer or wxRichTextStdRenderer, override {\tt DrawStandardBullet} and {\tt EnumerateStandardBulletNames}, and
184set an instance of the class using \helpref{wxRichTextBuffer::SetRenderer}{wxrichtextbuffersetrenderer}.
185
5f35b46a
JS
186\membersection{wxTextAttrEx::GetBulletNumber}\label{wxtextattrexgetbulletnumber}
187
188\constfunc{int}{GetBulletNumber}{\void}
189
190Returns the bullet number.
191
192\membersection{wxTextAttrEx::GetBulletStyle}\label{wxtextattrexgetbulletstyle}
193
194\constfunc{int}{GetBulletStyle}{\void}
195
196Returns the bullet style.
197See \helpref{wxTextAttrEx::SetBulletStyle}{wxtextattrexsetbulletstyle} for a list of available styles.
198
1f65137f 199\membersection{wxTextAttrEx::GetBulletText}\label{wxtextattrexgetbullettext}
5f35b46a 200
d2d0adc7 201\constfunc{const wxString\&}{GetBulletText}{\void}
5f35b46a 202
d2d0adc7 203Returns the bullet text, which could be a symbol, or (for example) cached outline text.
5f35b46a
JS
204
205\membersection{wxTextAttrEx::GetCharacterStyleName}\label{wxtextattrexgetcharacterstylename}
206
207\constfunc{const wxString\&}{GetCharacterStyleName}{\void}
208
209Returns the name of the character style.
210
211\membersection{wxTextAttrEx::GetLineSpacing}\label{wxtextattrexgetlinespacing}
212
213\constfunc{int}{GetLineSpacing}{\void}
214
215Returns the line spacing value, one of wxTEXT\_ATTR\_LINE\_SPACING\_NORMAL,
216wxTEXT\_ATTR\_LINE\_SPACING\_HALF, and wxTEXT\_ATTR\_LINE\_SPACING\_TWICE.
217
d2d0adc7
JS
218\membersection{wxTextAttrEx::GetListStyleName}\label{wxtextattrexgetliststylename}
219
220\constfunc{const wxString\&}{GetListStyleName}{\void}
221
222Returns the name of the list style.
223
4d6d8bf4
JS
224\membersection{wxTextAttrEx::GetOutlineLevel}\label{wxtextattrexgetoutlinelevel}
225
226\constfunc{bool}{GetOutlineLevel}{\void}
227
228Returns the outline level.
229
5f35b46a
JS
230\membersection{wxTextAttrEx::GetParagraphSpacingAfter}\label{wxtextattrexgetparagraphspacingafter}
231
232\constfunc{int}{GetParagraphSpacingAfter}{\void}
233
234Returns the space in tenths of a millimeter after the paragraph.
235
236\membersection{wxTextAttrEx::GetParagraphSpacingBefore}\label{wxtextattrexgetparagraphspacingbefore}
237
238\constfunc{int}{GetParagraphSpacingBefore}{\void}
239
240Returns the space in tenths of a millimeter before the paragraph.
241
242\membersection{wxTextAttrEx::GetParagraphStyleName}\label{wxtextattrexgetparagraphstylename}
243
244\constfunc{const wxString\&}{GetParagraphStyleName}{\void}
245
246Returns the name of the paragraph style.
247
1f65137f
JS
248\membersection{wxTextAttrEx::GetTextEffectFlags}\label{wxtextattrexgettexteffectflags}
249
250\constfunc{int}{GetTextEffectFlags}{\void}
251
252Returns the text effect bits of interest. See \helpref{wxTextAttr::SetFlags}{wxtextattrsetflags} for further information.
253
254\membersection{wxTextAttrEx::GetTextEffects}\label{wxtextattrexgettexteffects}
255
256\constfunc{int}{GetTextEffects}{\void}
257
258Returns the text effects, a bit list of styles. See \helpref{wxTextAttrEx::SetTextEffects}{wxtextattrexsettexteffects} for
259details.
260
d2d0adc7
JS
261\membersection{wxTextAttrEx::GetURL}\label{wxtextattrexgeturl}
262
263\constfunc{const wxString\&}{GetURL}{\void}
264
265Returns the URL for the content. Content with wxTEXT\_ATTR\_URL style
266causes wxRichTextCtrl to show a hand cursor over it, and wxRichTextCtrl generates
267a wxTextUrlEvent when the content is clicked.
268
269\membersection{wxTextAttrEx::HasBulletName}\label{wxtextattrexhasbulletname}
270
271\constfunc{bool}{HasBulletName}{\void}
272
273Returns \true if the attribute object specifies a standard bullet name.
274
5f35b46a
JS
275\membersection{wxTextAttrEx::HasBulletNumber}\label{wxtextattrexhasbulletnumber}
276
277\constfunc{bool}{HasBulletNumber}{\void}
278
279Returns \true if the attribute object specifies a bullet number.
280
281\membersection{wxTextAttrEx::HasBulletStyle}\label{wxtextattrexhasbulletstyle}
282
283\constfunc{bool}{HasBulletStyle}{\void}
284
285Returns \true if the attribute object specifies a bullet style.
286
d2d0adc7 287\membersection{wxTextAttrEx::HasBulletText}\label{wxtextattrexhasbullettext}
5f35b46a 288
d2d0adc7 289\constfunc{bool}{HasBulletText}{\void}
5f35b46a 290
d2d0adc7 291Returns \true if the attribute object specifies bullet text (usually containing a symbol).
5f35b46a
JS
292
293\membersection{wxTextAttrEx::HasCharacterStyleName}\label{wxtextattrexhascharacterstylename}
294
295\constfunc{bool}{HasCharacterStyleName}{\void}
296
297Returns \true if the attribute object specifies a character style name.
298
299\membersection{wxTextAttrEx::HasLineSpacing}\label{wxtextattrexhaslinespacing}
300
301\constfunc{bool}{HasLineSpacing}{\void}
302
303Returns \true if the attribute object specifies line spacing.
304
d2d0adc7
JS
305\membersection{wxTextAttrEx::HasListStyleName}\label{wxtextattrexhasliststylename}
306
307\constfunc{bool}{HasListStyleName}{\void}
308
309Returns \true if the attribute object specifies a list style name.
310
4d6d8bf4
JS
311\membersection{wxTextAttrEx::HasOutlineLevel}\label{wxtextattrexhasoutlinelevel}
312
313\constfunc{bool}{HasOutlineLevel}{\void}
314
315Returns \true if the attribute object specifies an outline level.
316
36f01cc7
JS
317\membersection{wxTextAttrEx::HasPageBreak}\label{wxtextattrexhaspagebreak}
318
319\constfunc{bool}{HasPageBreak}{\void}
320
321Returns \true if the attribute object specifies a page break before this paragraph.
322
5f35b46a
JS
323\membersection{wxTextAttrEx::HasParagraphSpacingAfter}\label{wxtextattrexhasparagraphspacingafter}
324
325\constfunc{bool}{HasParagraphSpacingAfter}{\void}
326
327Returns \true if the attribute object specifies spacing after a paragraph.
328
329\membersection{wxTextAttrEx::HasParagraphSpacingBefore}\label{wxtextattrexhasparagraphspacingbefore}
330
331\constfunc{bool}{HasParagraphSpacingBefore}{\void}
332
333Returns \true if the attribute object specifies spacing before a paragraph.
334
335\membersection{wxTextAttrEx::HasParagraphStyleName}\label{wxtextattrexhasparagraphstylename}
336
337\constfunc{bool}{HasParagraphStyleName}{\void}
338
339Returns \true if the attribute object specifies a paragraph style name.
340
4d6d8bf4
JS
341\membersection{wxTextAttrEx::HasTextEffects}\label{wxtextattrexhastexteffects}
342
343\constfunc{bool}{HasTextEffects}{\void}
344
345Returns \true if the attribute object specifies text effects.
346
347\membersection{wxTextAttrEx::HasURL}\label{wxtextattrexhasurl}
348
349\constfunc{bool}{HasURL}{\void}
350
351Returns \true if the attribute object specifies a URL.
352
5f35b46a
JS
353\membersection{wxTextAttrEx::Init}\label{wxtextattrexinit}
354
355\func{void}{Init}{\void}
356
357Initialises this object.
358
359\membersection{wxTextAttrEx::IsCharacterStyle}\label{wxtextattrexischaracterstyle}
360
361\constfunc{bool}{IsCharacterStyle}{\void}
362
363Returns \true if the object represents a character style, that is,
364the flags specify a font or a text background or foreground colour.
365
366\membersection{wxTextAttrEx::IsDefault}\label{wxtextattrexisdefault}
367
368\constfunc{bool}{IsDefault}{\void}
369
370Returns \false if we have any attributes set, \true otherwise.
371
372\membersection{wxTextAttrEx::IsParagraphStyle}\label{wxtextattrexisparagraphstyle}
373
374\constfunc{bool}{IsParagraphStyle}{\void}
375
376Returns \true if the object represents a paragraph style, that is,
377the flags specify alignment, indentation, tabs, paragraph spacing, or
378bullet style.
379
62a268cc
JS
380\membersection{wxTextAttrEx::SetBulletFont}\label{wxtextattrexsetbulletfont}
381
382\func{void}{SetBulletFont}{\param{const wxString\& }{font}}
383
384Sets the name of the font associated with the bullet symbol.
385Only valid for attributes with wxTEXT\_ATTR\_BULLET\_SYMBOL.
386
5f35b46a
JS
387\membersection{wxTextAttrEx::SetBulletNumber}\label{wxtextattrexsetbulletnumber}
388
389\func{void}{SetBulletNumber}{\param{int }{n}}
390
391Sets the bullet number.
392
d2d0adc7
JS
393\membersection{wxTextAttrEx::SetBulletName}\label{wxtextattrexsetbulletname}
394
395\func{void}{SetBulletName}{\param{const wxString\& }{name}}
396
397Sets the standard bullet name, applicable if the bullet style is wxTEXT\_ATTR\_BULLET\_STYLE\_STANDARD.
398See \helpref{wxTextAttrEx::GetBulletName}{wxtextattrexgetbulletname} for a list
399of supported names, and how to expand the range of supported types.
400
5f35b46a
JS
401\membersection{wxTextAttrEx::SetBulletStyle}\label{wxtextattrexsetbulletstyle}
402
403\func{void}{SetBulletStyle}{\param{int }{style}}
404
405Sets the bullet style. The following styles can be passed:
406
407{\small
408\begin{verbatim}
d2d0adc7
JS
409#define wxTEXT_ATTR_BULLET_STYLE_NONE 0x00000000
410#define wxTEXT_ATTR_BULLET_STYLE_ARABIC 0x00000001
411#define wxTEXT_ATTR_BULLET_STYLE_LETTERS_UPPER 0x00000002
412#define wxTEXT_ATTR_BULLET_STYLE_LETTERS_LOWER 0x00000004
413#define wxTEXT_ATTR_BULLET_STYLE_ROMAN_UPPER 0x00000008
414#define wxTEXT_ATTR_BULLET_STYLE_ROMAN_LOWER 0x00000010
415#define wxTEXT_ATTR_BULLET_STYLE_SYMBOL 0x00000020
416#define wxTEXT_ATTR_BULLET_STYLE_BITMAP 0x00000040
417#define wxTEXT_ATTR_BULLET_STYLE_PARENTHESES 0x00000080
418#define wxTEXT_ATTR_BULLET_STYLE_PERIOD 0x00000100
419#define wxTEXT_ATTR_BULLET_STYLE_STANDARD 0x00000200
420#define wxTEXT_ATTR_BULLET_STYLE_RIGHT_PARENTHESIS 0x00000400
421#define wxTEXT_ATTR_BULLET_STYLE_OUTLINE 0x00000800
422#define wxTEXT_ATTR_BULLET_STYLE_ALIGN_LEFT 0x00000000
423#define wxTEXT_ATTR_BULLET_STYLE_ALIGN_RIGHT 0x00001000
424#define wxTEXT_ATTR_BULLET_STYLE_ALIGN_CENTRE 0x00002000
5f35b46a
JS
425\end{verbatim}
426}
427
1f65137f
JS
428Currently wxTEXT\_ATTR\_BULLET\_STYLE\_BITMAP is not supported.
429
d2d0adc7 430\membersection{wxTextAttrEx::SetBulletText}\label{wxtextattrexsetbullettext}
5f35b46a 431
d2d0adc7 432\func{void}{SetBulletText}{\param{const wxString\& }{text}}
5f35b46a 433
d2d0adc7 434Sets the bullet text, which could be a symbol, or (for example) cached outline text.
5f35b46a
JS
435
436\membersection{wxTextAttrEx::SetCharacterStyleName}\label{wxtextattrexsetcharacterstylename}
437
438\func{void}{SetCharacterStyleName}{\param{const wxString\& }{name}}
439
440Sets the character style name.
441
442\membersection{wxTextAttrEx::SetLineSpacing}\label{wxtextattrexsetlinespacing}
443
444\func{void}{SetLineSpacing}{\param{int }{spacing}}
445
446Sets the line spacing. {\it spacing} is a multiple, where 10 means single-spacing,
44715 means 1.5 spacing, and 20 means double spacing. The following constants are
448defined for convenience:
449
450{\small
451\begin{verbatim}
452#define wxTEXT_ATTR_LINE_SPACING_NORMAL 10
453#define wxTEXT_ATTR_LINE_SPACING_HALF 15
454#define wxTEXT_ATTR_LINE_SPACING_TWICE 20
455\end{verbatim}
456}
457
d2d0adc7
JS
458\membersection{wxTextAttrEx::SetListStyleName}\label{wxtextattrexsetliststylename}
459
460\func{void}{SetListStyleName}{\param{const wxString\& }{name}}
461
462Sets the list style name.
463
4d6d8bf4
JS
464\membersection{wxTextAttrEx::SetOutlineLevel}\label{wxtextattrexsetoutlinelevel}
465
466\func{void}{SetOutlineLevel}{\param{int}{ level}}
467
468Specifies the outline level. Zero represents normal text. At present, the outline level is
469not used, but may be used in future for determining list levels and for applications
470that need to store document structure information.
471
36f01cc7
JS
472\membersection{wxTextAttrEx::SetPageBreak}\label{wxtextattrexsetpagebreak}
473
474\func{void}{SetPageBreak}{\param{bool}{ pageBreak = true}}
475
476Specifies a page break before this paragraph.
477
5f35b46a
JS
478\membersection{wxTextAttrEx::SetParagraphSpacingAfter}\label{wxtextattrexsetparagraphspacingafter}
479
480\func{void}{SetParagraphSpacingAfter}{\param{int }{spacing}}
481
482Sets the spacing after a paragraph, in tenths of a millimetre.
483
484\membersection{wxTextAttrEx::SetParagraphSpacingBefore}\label{wxtextattrexsetparagraphspacingbefore}
485
486\func{void}{SetParagraphSpacingBefore}{\param{int }{spacing}}
487
488Sets the spacing before a paragraph, in tenths of a millimetre.
489
490\membersection{wxTextAttrEx::SetParagraphStyleName}\label{wxtextattrexsetparagraphstylename}
491
492\func{void}{SetParagraphStyleName}{\param{const wxString\& }{name}}
493
494Sets the name of the paragraph style.
495
1f65137f
JS
496\membersection{wxTextAttrEx::SetTextEffectFlags}\label{wxtextattrexsettexteffectflags}
497
498\func{void}{SetTextEffectFlags}{\param{int }{flags}}
499
500Sets the text effect bits of interest. You should also pass wxTEXT\_ATTR\_EFFECTS to \helpref{wxTextAttr::SetFlags}{wxtextattrsetflags}.
501
502\membersection{wxTextAttrEx::SetTextEffects}\label{wxtextattrexsettexteffects}
503
504\func{void}{SetTextEffects}{\param{int }{effects}}
505
506Sets the text effects, a bit list of styles.
507
508The following styles can be passed:
509
510{\small
511\begin{verbatim}
512#define wxTEXT_ATTR_EFFECT_NONE 0x00000000
513#define wxTEXT_ATTR_EFFECT_CAPITALS 0x00000001
514#define wxTEXT_ATTR_EFFECT_SMALL_CAPITALS 0x00000002
515#define wxTEXT_ATTR_EFFECT_STRIKETHROUGH 0x00000004
516#define wxTEXT_ATTR_EFFECT_DOUBLE_STRIKETHROUGH 0x00000008
517#define wxTEXT_ATTR_EFFECT_SHADOW 0x00000010
518#define wxTEXT_ATTR_EFFECT_EMBOSS 0x00000020
519#define wxTEXT_ATTR_EFFECT_OUTLINE 0x00000040
520#define wxTEXT_ATTR_EFFECT_ENGRAVE 0x00000080
521#define wxTEXT_ATTR_EFFECT_SUPERSCRIPT 0x00000100
522#define wxTEXT_ATTR_EFFECT_SUBSCRIPT 0x00000200
523\end{verbatim}
524}
525
526Of these, only wxTEXT\_ATTR\_EFFECT\_CAPITALS and wxTEXT\_ATTR\_EFFECT\_STRIKETHROUGH are implemented.
527wxTEXT\_ATTR\_EFFECT\_CAPITALS capitalises text when displayed (leaving the case of the actual buffer
528text unchanged), and wxTEXT\_ATTR\_EFFECT\_STRIKETHROUGH draws a line through text.
529
530To set effects, you should also pass wxTEXT\_ATTR\_EFFECTS to \helpref{wxTextAttr::SetFlags}{wxtextattrsetflags}, and call\rtfsp
531\helpref{wxTextAttrEx::SetTextEffectFlags}{wxtextattrexsettexteffectflags} with the styles (taken from the
532above set) that you are interested in setting.
533
d2d0adc7
JS
534\membersection{wxTextAttrEx::SetURL}\label{wxtextattrexseturl}
535
536\func{void}{SetURL}{\param{const wxString\& }{url}}
537
538Sets the URL for the content. Sets the wxTEXT\_ATTR\_URL style; content with this style
539causes wxRichTextCtrl to show a hand cursor over it, and wxRichTextCtrl generates
540a wxTextUrlEvent when the content is clicked.
541
5f35b46a
JS
542\membersection{wxTextAttrEx::operator=}\label{wxtextattrexoperatorassign}
543
544\func{void operator}{operator=}{\param{const wxTextAttr\& }{attr}}
545
546Assignment from a wxTextAttr object.
547
548\func{void operator}{operator=}{\param{const wxTextAttrEx\& }{attr}}
549
550Assignment from a wxTextAttrEx object.
62a268cc 551