Added URL support to attribute objects and to wxRichTextCtrl,
generating a wxTextUrlEvent as appropriate. Added outline list support and updated previews. Added alignment support for bullets. Added single right parenthesis support. Added XML stylesheet reading/writing. Changed SetBulletSymbol to SetBulletText so it can support bullet text more generally (e.g. for cached outline list numbering) Added wxRichTextRenderer to isolate e.g. bullet drawing and make it customisable. Added event handler support to wxRichTextBuffer. Updated documentation. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42431 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -46,6 +46,23 @@ class WXDLLIMPEXP_CORE wxImageList;
|
||||
|
||||
#define wxRICHTEXT_FORMAT_HELP_BUTTON 0x0100
|
||||
|
||||
/*!
|
||||
* Indices for bullet styles in list control
|
||||
*/
|
||||
|
||||
enum {
|
||||
wxRICHTEXT_BULLETINDEX_NONE = 0,
|
||||
wxRICHTEXT_BULLETINDEX_ARABIC,
|
||||
wxRICHTEXT_BULLETINDEX_UPPER_CASE,
|
||||
wxRICHTEXT_BULLETINDEX_LOWER_CASE,
|
||||
wxRICHTEXT_BULLETINDEX_UPPER_CASE_ROMAN,
|
||||
wxRICHTEXT_BULLETINDEX_LOWER_CASE_ROMAN,
|
||||
wxRICHTEXT_BULLETINDEX_OUTLINE,
|
||||
wxRICHTEXT_BULLETINDEX_SYMBOL,
|
||||
wxRICHTEXT_BULLETINDEX_BITMAP,
|
||||
wxRICHTEXT_BULLETINDEX_STANDARD
|
||||
};
|
||||
|
||||
/*!
|
||||
* Shorthand for common combinations of pages
|
||||
*/
|
||||
|
Reference in New Issue
Block a user