1 /////////////////////////////////////////////////////////////////////////////
2 // Name: richtext/richtextstyles.h
3 // Purpose: interface of wxRichTextStyleListCtrl
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
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 virtual wxTextAttr
GetStyleMergedWithBase(const 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 Implements left click behaviour, applying the clicked style to the
296 void OnLeftDown(wxMouseEvent
& event
);
299 If @a applyOnSelection is @true, clicking on a style name in the list will
300 immediately apply the style to the associated rich text control.
302 void SetApplyOnSelection(bool applyOnSelection
);
305 Associates the listbox with a wxRichTextCtrl.
307 void SetRichTextCtrl(wxRichTextCtrl
* ctrl
);
310 Associates the control with a style sheet.
312 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
);
315 Sets the style type to display. One of
316 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_ALL,
317 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_PARAGRAPH,
318 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_CHARACTER
319 - wxRichTextStyleListBox::wxRICHTEXT_STYLE_LIST.
321 void SetStyleType(wxRichTextStyleListBox::wxRichTextStyleType styleType
);
324 Updates the list from the associated style sheet.
331 Returns the HTML for this item.
333 virtual wxString
OnGetItem(size_t n
) const;
339 @class wxRichTextStyleComboCtrl
341 This is a combo control that can display the styles in a wxRichTextStyleSheet,
342 and apply the selection to an associated wxRichTextCtrl.
344 See @c samples/richtext for an example of how to use it.
349 @see wxRichTextStyleListBox, @ref overview_richtextctrl
351 class wxRichTextStyleComboCtrl
: public wxComboCtrl
357 wxRichTextStyleComboCtrl(wxWindow
* parent
,
358 wxWindowID id
= wxID_ANY
,
359 const wxPoint
& pos
= wxDefaultPosition
,
360 const wxSize
& size
= wxDefaultSize
,
366 virtual ~wxRichTextStyleComboCtrl();
369 Returns the wxRichTextCtrl associated with this control.
371 wxRichTextCtrl
* GetRichTextCtrl() const;
374 Returns the style sheet associated with this control.
376 wxRichTextStyleSheet
* GetStyleSheet() const;
379 Associates the control with a wxRichTextCtrl.
381 void SetRichTextCtrl(wxRichTextCtrl
* ctrl
);
384 Associates the control with a style sheet.
386 void SetStyleSheet(wxRichTextStyleSheet
* styleSheet
);
389 Updates the combo control from the associated style sheet.
397 @class wxRichTextCharacterStyleDefinition
399 This class represents a character style definition, usually added to a
400 wxRichTextStyleSheet.
405 class wxRichTextCharacterStyleDefinition
: public wxRichTextStyleDefinition
411 wxRichTextCharacterStyleDefinition(const wxString
& name
= wxEmptyString
);
416 virtual ~wxRichTextCharacterStyleDefinition();
422 @class wxRichTextListStyleDefinition
424 This class represents a list style definition, usually added to a
425 wxRichTextStyleSheet.
427 The class inherits paragraph attributes from wxRichTextStyleParagraphDefinition,
428 and adds 10 further attribute objects, one for each level of a list.
429 When applying a list style to a paragraph, the list style's base and
430 appropriate level attributes are merged with the paragraph's existing attributes.
432 You can apply a list style to one or more paragraphs using wxRichTextCtrl::SetListStyle.
433 You can also use the functions wxRichTextCtrl::NumberList, wxRichTextCtrl::PromoteList and
434 wxRichTextCtrl::ClearListStyle.
436 As usual, there are wxRichTextBuffer versions of these functions
437 so that you can apply them directly to a buffer without requiring a control.
442 class wxRichTextListStyleDefinition
: public wxRichTextParagraphStyleDefinition
448 wxRichTextListStyleDefinition(const wxString
& name
= wxEmptyString
);
453 virtual ~wxRichTextListStyleDefinition();
456 This function combines the given paragraph style with the list style's base
457 attributes and level style matching the given indent, returning the combined attributes.
459 If @a styleSheet is specified, the base style for this definition will also be
460 included in the result.
462 wxTextAttr
CombineWithParagraphStyle(int indent
,
463 const wxTextAttr
& paraStyle
,
464 wxRichTextStyleSheet
* styleSheet
= NULL
);
467 This function finds the level (from 0 to 9) whose indentation attribute mostly
468 closely matches @a indent (expressed in tenths of a millimetre).
470 int FindLevelForIndent(int indent
) const;
473 This function combines the list style's base attributes and the level style
474 matching the given indent, returning the combined attributes.
476 If @a styleSheet is specified, the base style for this definition will also be
477 included in the result.
479 wxTextAttr
GetCombinedStyle(int indent
,
480 wxRichTextStyleSheet
* styleSheet
= NULL
);
483 This function combines the list style's base attributes and the style for the
484 specified level, returning the combined attributes.
486 If @a styleSheet is specified, the base style for this definition will also be
487 included in the result.
490 wxTextAttr
GetCombinedStyleForLevel(int level
,
491 wxRichTextStyleSheet
* styleSheet
= NULL
) const;
494 Returns the style for the given level. @a level is a number between 0 and 9.
496 const wxTextAttr
* GetLevelAttributes(int level
) const;
499 Returns the number of levels. This is hard-wired to 10.
500 Returns the style for the given level. @e level is a number between 0 and 9.
502 int GetLevelCount() const;
505 Returns @true if the given level has numbered list attributes.
507 bool IsNumbered(int level
) const;
510 Sets the style for the given level. @a level is a number between 0 and 9.
511 The first and most flexible form uses a wxTextAttr object, while the second
512 form is for convenient setting of the most commonly-used attributes.
514 void SetLevelAttributes(int level
, const wxTextAttr
& attr
);
520 @class wxRichTextStyleSheet
522 A style sheet contains named paragraph and character styles that make it
523 easy for a user to apply combinations of attributes to a wxRichTextCtrl.
525 You can use a wxRichTextStyleListBox in your user interface to show available
526 styles to the user, and allow application of styles to the control.
531 class wxRichTextStyleSheet
: public wxObject
537 wxRichTextStyleSheet();
542 virtual ~wxRichTextStyleSheet();
545 Adds a definition to the character style list.
547 bool AddCharacterStyle(wxRichTextCharacterStyleDefinition
* def
);
550 Adds a definition to the list style list.
552 bool AddListStyle(wxRichTextListStyleDefinition
* def
);
555 Adds a definition to the paragraph style list.
557 bool AddParagraphStyle(wxRichTextParagraphStyleDefinition
* def
);
560 Adds a definition to the appropriate style list.
562 bool AddStyle(wxRichTextStyleDefinition
* def
);
570 Finds a character definition by name.
572 wxRichTextCharacterStyleDefinition
* FindCharacterStyle(const wxString
& name
,
573 bool recurse
= true) const;
576 Finds a list definition by name.
578 wxRichTextListStyleDefinition
* FindListStyle(const wxString
& name
,
579 bool recurse
= true) const;
582 Finds a paragraph definition by name.
584 wxRichTextParagraphStyleDefinition
* FindParagraphStyle(const wxString
& name
,
585 bool recurse
= true) const;
588 Finds a style definition by name.
590 wxRichTextStyleDefinition
* FindStyle(const wxString
& name
) const;
593 Returns the @e nth character style.
595 wxRichTextCharacterStyleDefinition
* GetCharacterStyle(size_t n
) const;
598 Returns the number of character styles.
600 size_t GetCharacterStyleCount() const;
603 Returns the style sheet's description.
605 const wxString
& GetDescription() const;
608 Returns the @e nth list style.
610 wxRichTextListStyleDefinition
* GetListStyle(size_t n
) const;
613 Returns the number of list styles.
615 size_t GetListStyleCount() const;
618 Returns the style sheet's name.
620 const wxString
& GetName() const;
623 Returns the @e nth paragraph style.
625 wxRichTextParagraphStyleDefinition
* GetParagraphStyle(size_t n
) const;
628 Returns the number of paragraph styles.
630 size_t GetParagraphStyleCount() const;
633 Removes a character style.
635 bool RemoveCharacterStyle(wxRichTextStyleDefinition
* def
,
636 bool deleteStyle
= false);
639 Removes a list style.
641 bool RemoveListStyle(wxRichTextStyleDefinition
* def
,
642 bool deleteStyle
= false);
645 Removes a paragraph style.
647 bool RemoveParagraphStyle(wxRichTextStyleDefinition
* def
,
648 bool deleteStyle
= false);
653 bool RemoveStyle(wxRichTextStyleDefinition
* def
,
654 bool deleteStyle
= false);
657 Sets the style sheet's description.
659 void SetDescription(const wxString
& descr
);
662 Sets the style sheet's name.
664 void SetName(const wxString
& name
);