1 /////////////////////////////////////////////////////////////////////////////
2 // Name: richtext/richtextstyles.h
3 // Purpose: interface of wxRichTextStyleListCtrl
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxRichTextStyleListCtrl
12 This class incorporates a wxRichTextStyleListBox and a choice control that
13 allows the user to select the category of style to view.
15 It is demonstrated in the wxRichTextCtrl sample in @c samples/richtext.
17 To use wxRichTextStyleListCtrl, add the control to your window hierarchy and
18 call wxRichTextStyleListCtrl::SetStyleType with one of
19 wxRichTextStyleListBox::wxRICHTEXT_STYLE_ALL,
20 wxRichTextStyleListBox::wxRICHTEXT_STYLE_PARAGRAPH,
21 wxRichTextStyleListBox::wxRICHTEXT_STYLE_CHARACTER and
22 wxRichTextStyleListBox::wxRICHTEXT_STYLE_LIST to set the current view.
24 Associate the control with a style sheet and rich text control with
25 SetStyleSheet and SetRichTextCtrl, so that when a style is double-clicked,
26 it is applied to the selection.
29 @style{wxRICHTEXTSTYLELIST_HIDE_TYPE_SELECTOR}
30 This style hides the category selection control.
36 class wxRichTextStyleListCtrl
: public wxControl
43 wxRichTextStyleListCtrl(wxWindow
* parent
,
44 wxWindowID id
= wxID_ANY
,
45 const wxPoint
& pos
= wxDefaultPosition
,
46 const wxSize
& size
= wxDefaultSize
,
48 wxRichTextStyleListCtrl();
54 bool Create(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
55 const wxPoint
& pos
= wxDefaultPosition
,
56 const wxSize
& size
= wxDefaultSize
,
60 Returns the associated rich text control, if any.
62 wxRichTextCtrl
* GetRichTextCtrl() const;
65 Returns the wxChoice control used for selecting the style category.
67 wxChoice
* GetStyleChoice() const;
70 Returns the wxListBox control used to view the style list.
72 wxRichTextStyleListBox
* GetStyleListBox() const;
75 Returns the associated style sheet, if any.
77 wxRichTextStyleSheet
* GetStyleSheet() const;
80 Returns the type of style to show in the list box.
82 wxRichTextStyleListBox::wxRichTextStyleType
GetStyleType() const;
85 Associates the control with a wxRichTextCtrl.
87 void SetRichTextCtrl(wxRichTextCtrl
* ctrl
);
90 Associates the control with a style sheet.
92 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
);
95 Sets the style type to display.
98 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_ALL,
99 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_PARAGRAPH,
100 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_CHARACTER
101 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_LIST.
103 void SetStyleType(wxRichTextStyleListBox::wxRichTextStyleType styleType
);
106 Updates the style list box.
114 @class wxRichTextStyleDefinition
116 This is a base class for paragraph and character styles.
121 class wxRichTextStyleDefinition
: public wxObject
127 wxRichTextStyleDefinition(const wxString
& name
= wxEmptyString
);
132 virtual ~wxRichTextStyleDefinition();
135 Returns the style on which this style is based.
137 const wxString
GetBaseStyle() const;
140 Returns the style's description.
142 const wxString
GetDescription() const;
145 Returns the style name.
147 const wxString
GetName() const;
151 Returns the attributes associated with this style.
153 wxTextAttr
GetStyle() const;
154 const wxTextAttr
GetStyle() const;
158 Returns the style attributes combined with the attributes of the specified base
159 style, if any. This function works recursively.
161 wxTextAttr
GetStyleMergedWithBase(wxRichTextStyleSheet
* sheet
) const;
164 Sets the name of the style that this style is based on.
166 void SetBaseStyle(const wxString
& name
);
169 Sets the style description.
171 void SetDescription(const wxString
& descr
);
174 Sets the name of the style.
176 void SetName(const wxString
& name
);
179 Sets the attributes for this style.
181 void SetStyle(const wxTextAttr
& style
);
187 @class wxRichTextParagraphStyleDefinition
189 This class represents a paragraph style definition, usually added to a
190 wxRichTextStyleSheet.
195 class wxRichTextParagraphStyleDefinition
: public wxRichTextStyleDefinition
201 wxRichTextParagraphStyleDefinition(const wxString
& name
= wxEmptyString
);
206 virtual ~wxRichTextParagraphStyleDefinition();
209 Returns the style that should normally follow this style.
211 const wxString
GetNextStyle() const;
214 Sets the style that should normally follow this style.
216 void SetNextStyle(const wxString
& name
);
222 @class wxRichTextStyleListBox
224 This is a listbox that can display the styles in a wxRichTextStyleSheet,
225 and apply the selection to an associated wxRichTextCtrl.
227 See @c samples/richtext for an example of how to use it.
232 @see wxRichTextStyleComboCtrl, @ref overview_richtextctrl
234 class wxRichTextStyleListBox
: public wxHtmlListBox
240 wxRichTextStyleListBox(wxWindow
* parent
,
241 wxWindowID id
= wxID_ANY
,
242 const wxPoint
& pos
= wxDefaultPosition
,
243 const wxSize
& size
= wxDefaultSize
,
249 virtual ~wxRichTextStyleListBox();
252 Applies the @e ith style to the associated rich text control.
254 void ApplyStyle(int i
);
257 Converts units in tenths of a millimetre to device units.
259 int ConvertTenthsMMToPixels(wxDC
& dc
, int units
) const;
262 Creates a suitable HTML fragment for a definition.
264 wxString
CreateHTML(wxRichTextStyleDefinition
* def
) const;
267 If the return value is @true, clicking on a style name in the list will
268 immediately apply the style to the associated rich text control.
270 bool GetApplyOnSelection() const;
273 Returns the wxRichTextCtrl associated with this listbox.
275 wxRichTextCtrl
* GetRichTextCtrl() const;
278 Gets a style for a listbox index.
280 wxRichTextStyleDefinition
* GetStyle(size_t i
) const;
283 Returns the style sheet associated with this listbox.
285 wxRichTextStyleSheet
* GetStyleSheet() const;
288 Returns the type of style to show in the list box.
290 wxRichTextStyleListBox::wxRichTextStyleType
GetStyleType() const;
293 Returns the HTML for this item.
295 virtual wxString
OnGetItem(size_t n
) const;
298 Implements left click behaviour, applying the clicked style to the
301 void OnLeftDown(wxMouseEvent
& event
);
306 void OnSelect(wxCommandEvent
& event
);
309 If @a applyOnSelection is @true, clicking on a style name in the list will
310 immediately apply the style to the associated rich text control.
312 void SetApplyOnSelection(bool applyOnSelection
);
315 Associates the listbox with a wxRichTextCtrl.
317 void SetRichTextCtrl(wxRichTextCtrl
* ctrl
);
320 Associates the control with a style sheet.
322 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
);
325 Sets the style type to display. One of
326 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_ALL,
327 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_PARAGRAPH,
328 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_CHARACTER
329 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_LIST.
331 void SetStyleType(wxRichTextStyleListBox::wxRichTextStyleType styleType
);
334 Updates the list from the associated style sheet.
342 @class wxRichTextStyleComboCtrl
344 This is a combo control that can display the styles in a wxRichTextStyleSheet,
345 and apply the selection to an associated wxRichTextCtrl.
347 See @c samples/richtext for an example of how to use it.
352 @see wxRichTextStyleListBox, @ref overview_richtextctrl
354 class wxRichTextStyleComboCtrl
: public wxComboCtrl
360 wxRichTextStyleComboCtrl(wxWindow
* parent
,
361 wxWindowID id
= wxID_ANY
,
362 const wxPoint
& pos
= wxDefaultPosition
,
363 const wxSize
& size
= wxDefaultSize
,
369 virtual ~wxRichTextStyleComboCtrl();
372 Returns the wxRichTextCtrl associated with this control.
374 wxRichTextCtrl
* GetRichTextCtrl() const;
377 Returns the style sheet associated with this control.
379 wxRichTextStyleSheet
* GetStyleSheet() const;
382 Associates the control with a wxRichTextCtrl.
384 void SetRichTextCtrl(wxRichTextCtrl
* ctrl
);
387 Associates the control with a style sheet.
389 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
);
392 Updates the combo control from the associated style sheet.
400 @class wxRichTextCharacterStyleDefinition
402 This class represents a character style definition, usually added to a
403 wxRichTextStyleSheet.
408 class wxRichTextCharacterStyleDefinition
: public wxRichTextStyleDefinition
414 wxRichTextCharacterStyleDefinition(const wxString
& name
= wxEmptyString
);
419 virtual ~wxRichTextCharacterStyleDefinition();
425 @class wxRichTextListStyleDefinition
427 This class represents a list style definition, usually added to a
428 wxRichTextStyleSheet.
430 The class inherits paragraph attributes from wxRichTextStyleParagraphDefinition,
431 and adds 10 further attribute objects, one for each level of a list.
432 When applying a list style to a paragraph, the list style's base and
433 appropriate level attributes are merged with the paragraph's existing attributes.
435 You can apply a list style to one or more paragraphs using wxRichTextCtrl::SetListStyle.
436 You can also use the functions wxRichTextCtrl::NumberList, wxRichTextCtrl::PromoteList and
437 wxRichTextCtrl::ClearListStyle.
439 As usual, there are wxRichTextBuffer versions of these functions
440 so that you can apply them directly to a buffer without requiring a control.
445 class wxRichTextListStyleDefinition
: public wxRichTextParagraphStyleDefinition
451 wxRichTextListStyleDefinition(const wxString
& name
= wxEmptyString
);
456 virtual ~wxRichTextListStyleDefinition();
459 This function combines the given paragraph style with the list style's base
460 attributes and level style matching the given indent, returning the combined attributes.
462 If @a styleSheet is specified, the base style for this definition will also be
463 included in the result.
465 wxTextAttr
CombineWithParagraphStyle(int indent
,
466 const wxTextAttr
& paraStyle
,
467 wxRichTextStyleSheet
* styleSheet
= NULL
);
470 This function finds the level (from 0 to 9) whose indentation attribute mostly
471 closely matches @a indent (expressed in tenths of a millimetre).
473 int FindLevelForIndent(int indent
) const;
476 This function combines the list style's base attributes and the level style
477 matching the given indent, returning the combined attributes.
479 If @a styleSheet is specified, the base style for this definition will also be
480 included in the result.
482 wxTextAttr
GetCombinedStyle(int indent
,
483 wxRichTextStyleSheet
* styleSheet
= NULL
) const;
486 This function combines the list style's base attributes and the style for the
487 specified level, returning the combined attributes.
489 If @a styleSheet is specified, the base style for this definition will also be
490 included in the result.
492 wxTextAttr
GetCombinedStyleLevel(int level
,
493 wxRichTextStyleSheet
* styleSheet
= NULL
) const;
496 Returns the style for the given level. @a level is a number between 0 and 9.
498 const wxTextAttr
* GetLevelAttributes(int level
) const;
501 Returns the number of levels. This is hard-wired to 10.
502 Returns the style for the given level. @e level is a number between 0 and 9.
504 int GetLevelCount() const;
507 Returns @true if the given level has numbered list attributes.
509 int IsNumbered(int level
) const;
513 Sets the style for the given level. @a level is a number between 0 and 9.
514 The first and most flexible form uses a wxTextAttr object, while the second
515 form is for convenient setting of the most commonly-used attributes.
517 void SetLevelAttributes(int level
, const wxTextAttr
& attr
);
518 void SetLevelAttributes(int level
, int leftIndent
,
521 const wxString
& bulletSymbol
= wxEmptyString
);
528 @class wxRichTextStyleSheet
530 A style sheet contains named paragraph and character styles that make it
531 easy for a user to apply combinations of attributes to a wxRichTextCtrl.
533 You can use a wxRichTextStyleListBox in your user interface to show available
534 styles to the user, and allow application of styles to the control.
539 class wxRichTextStyleSheet
: public wxObject
545 wxRichTextStyleSheet();
550 virtual ~wxRichTextStyleSheet();
553 Adds a definition to the character style list.
555 bool AddCharacterStyle(wxRichTextCharacterStyleDefinition
* def
);
558 Adds a definition to the list style list.
560 bool AddListStyle(wxRichTextListStyleDefinition
* def
);
563 Adds a definition to the paragraph style list.
565 bool AddParagraphStyle(wxRichTextParagraphStyleDefinition
* def
);
568 Adds a definition to the appropriate style list.
570 bool AddStyle(wxRichTextStyleDefinition
* def
);
578 Finds a character definition by name.
580 wxRichTextCharacterStyleDefinition
* FindCharacterStyle(const wxString
& name
) const;
583 Finds a list definition by name.
585 wxRichTextListStyleDefinition
* FindListStyle(const wxString
& name
) const;
588 Finds a paragraph definition by name.
590 wxRichTextParagraphStyleDefinition
* FindParagraphStyle(const wxString
& name
) const;
593 Finds a style definition by name.
595 wxRichTextStyleDefinition
* FindStyle(const wxString
& name
) const;
598 Returns the @e nth character style.
600 wxRichTextCharacterStyleDefinition
* GetCharacterStyle(size_t n
) const;
603 Returns the number of character styles.
605 size_t GetCharacterStyleCount() const;
608 Returns the style sheet's description.
610 const wxString
GetDescription() const;
613 Returns the @e nth list style.
615 wxRichTextListStyleDefinition
* GetListStyle(size_t n
) const;
618 Returns the number of list styles.
620 size_t GetListStyleCount() const;
623 Returns the style sheet's name.
625 const wxString
GetName() const;
628 Returns the @e nth paragraph style.
630 wxRichTextParagraphStyleDefinition
* GetParagraphStyle(size_t n
) const;
633 Returns the number of paragraph styles.
635 size_t GetParagraphStyleCount() const;
638 Removes a character style.
640 bool RemoveCharacterStyle(wxRichTextStyleDefinition
* def
,
641 bool deleteStyle
= false);
644 Removes a list style.
646 bool RemoveListStyle(wxRichTextStyleDefinition
* def
,
647 bool deleteStyle
= false);
650 Removes a paragraph style.
652 bool RemoveParagraphStyle(wxRichTextStyleDefinition
* def
,
653 bool deleteStyle
= false);
658 bool RemoveStyle(wxRichTextStyleDefinition
* def
,
659 bool deleteStyle
= false);
662 Sets the style sheet's description.
664 void SetDescription(const wxString
& descr
);
667 Sets the style sheet's name.
669 void SetName(const wxString
& name
);