// Include the faster, direct implementation for output
#define wxRICHTEXT_HAVE_DIRECT_OUTPUT 1
-/*
- * Special characters
+/**
+ The line break character that can be embedded in content.
*/
extern WXDLLIMPEXP_RICHTEXT const wxChar wxRichTextLineBreakChar;
-/*!
- * File types in wxRichText context.
+/**
+ File types in wxRichText context.
*/
enum wxRichTextFileType
{
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextImageBlock;
class WXDLLIMPEXP_FWD_XML wxXmlNode;
class wxRichTextFloatCollector;
+class WXDLLIMPEXP_FWD_BASE wxDataInputStream;
+class WXDLLIMPEXP_FWD_BASE wxDataOutputStream;
-/*!
- * Flags determining the available space, passed to Layout
+/**
+ Flags determining the available space, passed to Layout.
*/
#define wxRICHTEXT_FIXED_WIDTH 0x01
// the rect passed to Layout.
#define wxRICHTEXT_LAYOUT_SPECIFIED_RECT 0x10
-/*
- * Flags to pass to Draw
+/**
+ Flags to pass to Draw
*/
// Ignore paragraph cache optimization, e.g. for printing purposes
#define wxRICHTEXT_DRAW_PRINT 0x04
#define wxRICHTEXT_DRAW_GUIDELINES 0x08
-/*
- * Flags returned from hit-testing, or passed to hit-test function.
+/**
+ Flags returned from hit-testing, or passed to hit-test function.
*/
enum wxRichTextHitTestFlags
{
wxRICHTEXT_HITTEST_OUTSIDE = 0x10,
// Only do hit-testing at the current level (don't traverse into top-level objects)
- wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS = 0x20
+ wxRICHTEXT_HITTEST_NO_NESTED_OBJECTS = 0x20,
+
+ // Ignore floating objects
+ wxRICHTEXT_HITTEST_NO_FLOATING_OBJECTS = 0x40
};
-/*!
- * Flags for GetRangeSize
+/**
+ Flags for GetRangeSize.
*/
#define wxRICHTEXT_FORMATTED 0x01
#define wxRICHTEXT_CACHE_SIZE 0x04
#define wxRICHTEXT_HEIGHT_ONLY 0x08
-/*!
- * Flags for SetStyle/SetListStyle
+/**
+ Flags for SetStyle/SetListStyle.
*/
#define wxRICHTEXT_SETSTYLE_NONE 0x00
// Removes the given style instead of applying it
#define wxRICHTEXT_SETSTYLE_REMOVE 0x80
-/*!
- * Flags for object insertion
+/**
+ Flags for object insertion.
*/
#define wxRICHTEXT_INSERT_NONE 0x00
// flag to InsertFragment and DeleteRange to indicate the appropriate mode.
#define wxTEXT_ATTR_KEEP_FIRST_PARA_STYLE 0x10000000
-/*!
- * Default superscript/subscript font multiplication factor
+/**
+ Default superscript/subscript font multiplication factor.
*/
#define wxSCRIPT_MUL_FACTOR 1.5
+/**
+ The type for wxTextAttrDimension flags.
+ */
typedef unsigned short wxTextAttrDimensionFlags;
-// Miscellaneous text box flags
+/**
+ Miscellaneous text box flags
+ */
enum wxTextBoxAttrFlags
{
wxTEXT_BOX_ATTR_FLOAT = 0x00000001,
wxTEXT_BOX_ATTR_CLEAR = 0x00000002,
wxTEXT_BOX_ATTR_COLLAPSE_BORDERS = 0x00000004,
- wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT = 0x00000004
+ wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT = 0x00000008
};
-// Whether a value is present, used in dimension flags
+/**
+ Whether a value is present, used in dimension flags.
+ */
enum wxTextAttrValueFlags
{
wxTEXT_ATTR_VALUE_VALID = 0x1000,
wxTEXT_ATTR_VALUE_VALID_MASK = 0x1000
};
-// Units - included in the dimension value
+/**
+ Units, included in the dimension value.
+ */
enum wxTextAttrUnits
{
wxTEXT_ATTR_UNITS_TENTHS_MM = 0x0001,
wxTEXT_ATTR_UNITS_MASK = 0x000F
};
-// Position - included in the dimension flags
+/**
+ Position alternatives, included in the dimension flags.
+ */
enum wxTextBoxAttrPosition
{
wxTEXT_BOX_ATTR_POSITION_STATIC = 0x0000, // Default is static, i.e. as per normal layout
wxSize m_parentSize;
};
-// Border styles
+/**
+ Border styles, used with wxTextAttrBorder.
+ */
enum wxTextAttrBorderStyle
{
wxTEXT_BOX_ATTR_BORDER_NONE = 0,
wxTEXT_BOX_ATTR_BORDER_OUTSET = 8
};
-// Border style presence flags
+/**
+ Border style presence flags, used with wxTextAttrBorder.
+ */
enum wxTextAttrBorderFlags
{
wxTEXT_BOX_ATTR_BORDER_STYLE = 0x0001,
wxTEXT_BOX_ATTR_BORDER_COLOUR = 0x0002
};
-// Border width symbols for qualitative widths
+/**
+ Border width symbols for qualitative widths, used with wxTextAttrBorder.
+ */
enum wxTextAttrBorderWidth
{
wxTEXT_BOX_ATTR_BORDER_THIN = -1,
wxTEXT_BOX_ATTR_BORDER_THICK = -3
};
-// Float styles
+/**
+ Float styles.
+ */
enum wxTextBoxAttrFloatStyle
{
wxTEXT_BOX_ATTR_FLOAT_NONE = 0,
wxTEXT_BOX_ATTR_FLOAT_RIGHT = 2
};
-// Clear styles
+/**
+ Clear styles.
+ */
enum wxTextBoxAttrClearStyle
{
wxTEXT_BOX_ATTR_CLEAR_NONE = 0,
wxTEXT_BOX_ATTR_CLEAR_BOTH = 3
};
-// Collapse mode styles. TODO: can they be switched on per side?
+/**
+ Collapse mode styles. TODO: can they be switched on per side?
+ */
enum wxTextBoxAttrCollapseMode
{
wxTEXT_BOX_ATTR_COLLAPSE_NONE = 0,
wxTEXT_BOX_ATTR_COLLAPSE_FULL = 1
};
-// Vertical alignment values
+/**
+ Vertical alignment values.
+ */
enum wxTextBoxAttrVerticalAlignment
{
wxTEXT_BOX_ATTR_VERTICAL_ALIGNMENT_NONE = 0,
bool HasFloatMode() const { return HasFlag(wxTEXT_BOX_ATTR_FLOAT); }
/**
- Returns @true if this object is floating?
+ Returns @true if this object is floating.
*/
bool IsFloating() const { return HasFloatMode() && GetFloatMode() != wxTEXT_BOX_ATTR_FLOAT_NONE; }
WX_DECLARE_USER_EXPORTED_OBJARRAY(wxVariant, wxRichTextVariantArray, WXDLLIMPEXP_RICHTEXT);
-// ----------------------------------------------------------------------------
-// wxRichTextProperties - A simple property class using wxVariants
-// ----------------------------------------------------------------------------
+/**
+ @class wxRichTextProperties
+ A simple property class using wxVariants. This is used to give each rich text object the
+ ability to store custom properties that can be used by the application.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextObject, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextProperties: public wxObject
{
DECLARE_DYNAMIC_CLASS(wxRichTextProperties)
public:
+
+ /**
+ Default constructor.
+ */
wxRichTextProperties() {}
+
+ /**
+ Copy constructor.
+ */
wxRichTextProperties(const wxRichTextProperties& props): wxObject() { Copy(props); }
+ /**
+ Assignment operator.
+ */
void operator=(const wxRichTextProperties& props) { Copy(props); }
+
+ /**
+ Equality operator.
+ */
bool operator==(const wxRichTextProperties& props) const;
+
+ /**
+ Copies from @a props.
+ */
void Copy(const wxRichTextProperties& props) { m_properties = props.m_properties; }
+
+ /**
+ Returns the variant at the given index.
+ */
const wxVariant& operator[](size_t idx) const { return m_properties[idx]; }
+
+ /**
+ Returns the variant at the given index.
+ */
wxVariant& operator[](size_t idx) { return m_properties[idx]; }
+
+ /**
+ Clears the properties.
+ */
void Clear() { m_properties.Clear(); }
+ /**
+ Returns the array of variants implementing the properties.
+ */
const wxRichTextVariantArray& GetProperties() const { return m_properties; }
+
+ /**
+ Returns the array of variants implementing the properties.
+ */
wxRichTextVariantArray& GetProperties() { return m_properties; }
+
+ /**
+ Sets the array of variants.
+ */
void SetProperties(const wxRichTextVariantArray& props) { m_properties = props; }
+ /**
+ Returns all the property names.
+ */
wxArrayString GetPropertyNames() const;
+ /**
+ Returns a count of the properties.
+ */
size_t GetCount() const { return m_properties.GetCount(); }
- int HasProperty(const wxString& name) const { return Find(name) != -1; }
+ /**
+ Returns @true if the given property is found.
+ */
+ bool HasProperty(const wxString& name) const { return Find(name) != -1; }
+ /**
+ Finds the given property.
+ */
int Find(const wxString& name) const;
+
+ /**
+ Gets the property variant by name.
+ */
const wxVariant& GetProperty(const wxString& name) const;
+
+ /**
+ Finds or creates a property with the given name, returning a pointer to the variant.
+ */
wxVariant* FindOrCreateProperty(const wxString& name);
+ /**
+ Gets the value of the named property as a string.
+ */
wxString GetPropertyString(const wxString& name) const;
+
+ /**
+ Gets the value of the named property as a long integer.
+ */
long GetPropertyLong(const wxString& name) const;
+
+ /**
+ Gets the value of the named property as a boolean.
+ */
bool GetPropertyBool(const wxString& name) const;
+
+ /**
+ Gets the value of the named property as a double.
+ */
double GetPropertyDouble(const wxString& name) const;
+ /**
+ Sets the property by passing a variant which contains a name and value.
+ */
void SetProperty(const wxVariant& variant);
+
+ /**
+ Sets a property by name and variant.
+ */
void SetProperty(const wxString& name, const wxVariant& variant);
+
+ /**
+ Sets a property by name and string value.
+ */
void SetProperty(const wxString& name, const wxString& value);
+
+ /**
+ Sets property by name and long integer value.
+ */
void SetProperty(const wxString& name, long value);
+
+ /**
+ Sets property by name and double value.
+ */
void SetProperty(const wxString& name, double value);
+
+ /**
+ Sets property by name and boolean value.
+ */
void SetProperty(const wxString& name, bool value);
protected:
};
-/*!
- * wxRichTextFontTable
- * Manages quick access to a pool of fonts for rendering rich text
- */
+/**
+ @class wxRichTextFontTable
+ Manages quick access to a pool of fonts for rendering rich text.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextFontTable: public wxObject
{
public:
+ /**
+ Default constructor.
+ */
wxRichTextFontTable();
+ /**
+ Copy constructor.
+ */
wxRichTextFontTable(const wxRichTextFontTable& table);
virtual ~wxRichTextFontTable();
+ /**
+ Returns @true if the font table is valid.
+ */
bool IsOk() const { return m_refData != NULL; }
+ /**
+ Finds a font for the given attribute object.
+ */
wxFont FindFont(const wxRichTextAttr& fontSpec);
+
+ /**
+ Clears the font table.
+ */
void Clear();
+ /**
+ Assignment operator.
+ */
void operator= (const wxRichTextFontTable& table);
+
+ /**
+ Equality operator.
+ */
bool operator == (const wxRichTextFontTable& table) const;
+
+ /**
+ Inequality operator.
+ */
bool operator != (const wxRichTextFontTable& table) const { return !(*this == table); }
protected:
DECLARE_DYNAMIC_CLASS(wxRichTextFontTable)
};
-/*!
- * wxRichTextRange class declaration
- * This stores beginning and end positions for a range of data.
- * TODO: consider renaming wxTextRange and using for all text controls.
- */
+/**
+ @class wxRichTextRange
+
+ This stores beginning and end positions for a range of data.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextRange
{
public:
// Constructors
+ /**
+ Default constructor.
+ */
wxRichTextRange() { m_start = 0; m_end = 0; }
+
+ /**
+ Constructor taking start and end positions.
+ */
wxRichTextRange(long start, long end) { m_start = start; m_end = end; }
+
+ /**
+ Copy constructor.
+ */
wxRichTextRange(const wxRichTextRange& range) { m_start = range.m_start; m_end = range.m_end; }
~wxRichTextRange() {}
+ /**
+ Assigns @a range to this range.
+ */
void operator =(const wxRichTextRange& range) { m_start = range.m_start; m_end = range.m_end; }
+
+ /**
+ Equality operator. Returns @true if @a range is the same as this range.
+ */
bool operator ==(const wxRichTextRange& range) const { return (m_start == range.m_start && m_end == range.m_end); }
+
+ /**
+ Inequality operator.
+ */
bool operator !=(const wxRichTextRange& range) const { return (m_start != range.m_start || m_end != range.m_end); }
+
+ /**
+ Subtracts a range from this range.
+ */
wxRichTextRange operator -(const wxRichTextRange& range) const { return wxRichTextRange(m_start - range.m_start, m_end - range.m_end); }
+
+ /**
+ Adds a range to this range.
+ */
wxRichTextRange operator +(const wxRichTextRange& range) const { return wxRichTextRange(m_start + range.m_start, m_end + range.m_end); }
+ /**
+ Sets the range start and end positions.
+ */
void SetRange(long start, long end) { m_start = start; m_end = end; }
+ /**
+ Sets the start position.
+ */
void SetStart(long start) { m_start = start; }
+
+ /**
+ Returns the start position.
+ */
long GetStart() const { return m_start; }
+ /**
+ Sets the end position.
+ */
void SetEnd(long end) { m_end = end; }
+
+ /**
+ Gets the end position.
+ */
long GetEnd() const { return m_end; }
- /// Returns true if this range is completely outside 'range'
+ /**
+ Returns true if this range is completely outside @a range.
+ */
bool IsOutside(const wxRichTextRange& range) const { return range.m_start > m_end || range.m_end < m_start; }
- /// Returns true if this range is completely within 'range'
+ /**
+ Returns true if this range is completely within @a range.
+ */
bool IsWithin(const wxRichTextRange& range) const { return m_start >= range.m_start && m_end <= range.m_end; }
- /// Returns true if the given position is within this range. Allow
- /// for the possibility of an empty range - assume the position
- /// is within this empty range. NO, I think we should not match with an empty range.
- // bool Contains(long pos) const { return pos >= m_start && (pos <= m_end || GetLength() == 0); }
+ /**
+ Returns true if @a pos was within the range. Does not match if the range is empty.
+ */
bool Contains(long pos) const { return pos >= m_start && pos <= m_end ; }
- /// Limit this range to be within 'range'
+ /**
+ Limit this range to be within @a range.
+ */
bool LimitTo(const wxRichTextRange& range) ;
- /// Gets the length of the range
+ /**
+ Gets the length of the range.
+ */
long GetLength() const { return m_end - m_start + 1; }
- /// Swaps the start and end
+ /**
+ Swaps the start and end.
+ */
void Swap() { long tmp = m_start; m_start = m_end; m_end = tmp; }
- /// Convert to internal form: (n, n) is the range of a single character.
+ /**
+ Converts the API-standard range, whose end is one past the last character in
+ the range, to the internal form, which uses the first and last character
+ positions of the range. In other words, one is subtracted from the end position.
+ (n, n) is the range of a single character.
+ */
wxRichTextRange ToInternal() const { return wxRichTextRange(m_start, m_end-1); }
- /// Convert from internal to public API form: (n, n+1) is the range of a single character.
+ /**
+ Converts the internal range, which uses the first and last character positions
+ of the range, to the API-standard range, whose end is one past the last
+ character in the range. In other words, one is added to the end position.
+ (n, n+1) is the range of a single character.
+ */
wxRichTextRange FromInternal() const { return wxRichTextRange(m_start, m_end+1); }
protected:
#define wxRICHTEXT_ALL wxRichTextRange(-2, -2)
#define wxRICHTEXT_NONE wxRichTextRange(-1, -1)
-// ----------------------------------------------------------------------------
-// wxRichTextSelection: stores selection information
-// ----------------------------------------------------------------------------
-
#define wxRICHTEXT_NO_SELECTION wxRichTextRange(-2, -2)
+/**
+ @class wxRichTextSelection
+
+ Stores selection information. The selection does not have to be contiguous, though currently non-contiguous
+ selections are only supported for a range of table cells (a geometric block of cells can consist
+ of a set of non-contiguous positions).
+
+ The selection consists of an array of ranges, and the container that is the context for the selection. It
+ follows that a single selection object can only represent ranges with the same parent container.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
+
class WXDLLIMPEXP_RICHTEXT wxRichTextSelection
{
public:
+ /**
+ Copy constructor.
+ */
wxRichTextSelection(const wxRichTextSelection& sel) { Copy(sel); }
+
+ /**
+ Creates a selection from a range and a container.
+ */
wxRichTextSelection(const wxRichTextRange& range, wxRichTextParagraphLayoutBox* container) { m_ranges.Add(range); m_container = container; }
+
+ /**
+ Default constructor.
+ */
wxRichTextSelection() { Reset(); }
- /// Reset the selection
+ /**
+ Resets the selection.
+ */
void Reset() { m_ranges.Clear(); m_container = NULL; }
- /// Set the selection
+ /**
+ Sets the selection.
+ */
+
void Set(const wxRichTextRange& range, wxRichTextParagraphLayoutBox* container)
{ m_ranges.Clear(); m_ranges.Add(range); m_container = container; }
- /// Add a selection
+ /**
+ Adds a range to the selection.
+ */
void Add(const wxRichTextRange& range)
{ m_ranges.Add(range); }
- /// Set the selections
+ /**
+ Sets the selections from an array of ranges and a container object.
+ */
void Set(const wxRichTextRangeArray& ranges, wxRichTextParagraphLayoutBox* container)
{ m_ranges = ranges; m_container = container; }
- /// Copy
+ /**
+ Copies from @a sel.
+ */
void Copy(const wxRichTextSelection& sel)
{ m_ranges = sel.m_ranges; m_container = sel.m_container; }
- /// Assignment
+ /**
+ Assignment operator.
+ */
void operator=(const wxRichTextSelection& sel) { Copy(sel); }
- /// Equality test
+ /**
+ Equality operator.
+ */
bool operator==(const wxRichTextSelection& sel) const;
- /// Index operator
+ /**
+ Index operator.
+ */
wxRichTextRange operator[](size_t i) const { return GetRange(i); }
- /// Get the selection ranges
+ /**
+ Returns the selection ranges.
+ */
wxRichTextRangeArray& GetRanges() { return m_ranges; }
+
+ /**
+ Returns the selection ranges.
+ */
const wxRichTextRangeArray& GetRanges() const { return m_ranges; }
- /// Set the selection ranges
+ /**
+ Sets the selection ranges.
+ */
void SetRanges(const wxRichTextRangeArray& ranges) { m_ranges = ranges; }
- /// Get the number of ranges in the selection
+ /**
+ Returns the number of ranges in the selection.
+ */
size_t GetCount() const { return m_ranges.GetCount(); }
- /// Get the given range
+ /**
+ Returns the range at the given index.
+
+ */
wxRichTextRange GetRange(size_t i) const { return m_ranges[i]; }
- /// Get the first range if there is one, otherwise wxRICHTEXT_NO_SELECTION.
+ /**
+ Returns the first range if there is one, otherwise wxRICHTEXT_NO_SELECTION.
+ */
wxRichTextRange GetRange() const { return (m_ranges.GetCount() > 0) ? (m_ranges[0]) : wxRICHTEXT_NO_SELECTION; }
- /// Set a single range.
+ /**
+ Sets a single range.
+ */
void SetRange(const wxRichTextRange& range) { m_ranges.Clear(); m_ranges.Add(range); }
- /// Get the container for which the selection is valid
+ /**
+ Returns the container for which the selection is valid.
+ */
wxRichTextParagraphLayoutBox* GetContainer() const { return m_container; }
- /// Set the container for which the selection is valid
+ /**
+ Sets the container for which the selection is valid.
+ */
void SetContainer(wxRichTextParagraphLayoutBox* container) { m_container = container; }
- /// Is the selection valid?
+ /**
+ Returns @true if the selection is valid.
+ */
bool IsValid() const { return m_ranges.GetCount() > 0 && GetContainer(); }
- /// Get the selection appropriate to the specified object, if any; returns an empty array if none
- /// at the level of the object's container.
+ /**
+ Returns the selection appropriate to the specified object, if any; returns an empty array if none
+ at the level of the object's container.
+ */
wxRichTextRangeArray GetSelectionForObject(wxRichTextObject* obj) const;
- /// Is the given position within the selection?
+ /**
+ Returns @true if the given position is within the selection.
+ */
bool WithinSelection(long pos, wxRichTextObject* obj) const;
- /// Is the given position within the selection?
+ /**
+ Returns @true if the given position is within the selection.
+
+ */
bool WithinSelection(long pos) const { return WithinSelection(pos, m_ranges); }
- /// Is the given position within the selection range?
+ /**
+ Returns @true if the given position is within the selection range.
+ */
static bool WithinSelection(long pos, const wxRichTextRangeArray& ranges);
- /// Is the given range within the selection range?
+ /**
+ Returns @true if the given range is within the selection range.
+ */
static bool WithinSelection(const wxRichTextRange& range, const wxRichTextRangeArray& ranges);
wxRichTextRangeArray m_ranges;
wxRichTextParagraphLayoutBox* m_container;
};
-/*!
- * wxRichTextObject class declaration
- * This is the base for drawable objects.
- */
+/**
+ @class wxRichTextObject
+
+ This is the base for drawable rich text objects.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextObject: public wxObject
{
DECLARE_CLASS(wxRichTextObject)
public:
-// Constructors
-
+ /**
+ Constructor, taking an optional parent pointer.
+ */
wxRichTextObject(wxRichTextObject* parent = NULL);
+
virtual ~wxRichTextObject();
-// Overrideables
+// Overridables
- /// Draw the item, within the given range. Some objects may ignore the range (for
- /// example paragraphs) while others must obey it (lines, to implement wrapping)
+ /**
+ Draw the item, within the given range. Some objects may ignore the range (for
+ example paragraphs) while others must obey it (lines, to implement wrapping)
+ */
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style) = 0;
- /// Lay the item out at the specified position with the given size constraint.
- /// Layout must set the cached size.
+ /**
+ Lay the item out at the specified position with the given size constraint.
+ Layout must set the cached size.
+ */
virtual bool Layout(wxDC& dc, const wxRect& rect, int style) = 0;
- /// Hit-testing: returns a flag indicating hit test details, plus
- /// information about position. contextObj is returned to specify what object
- /// position is relevant to, since otherwise there's an ambiguity.
- /// obj may not a child of contextObj, since we may be referring to the container itself
- /// if we have no hit on a child - for example if we click outside an object.
+ /**
+ Hit-testing: returns a flag indicating hit test details, plus
+ information about position. contextObj is returned to specify what object
+ position is relevant to, since otherwise there's an ambiguity.
+ obj may not a child of contextObj, since we may be referring to the container itself
+ if we have no hit on a child - for example if we click outside an object.
+ */
virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
- /// Finds the absolute position and row height for the given character position
+ /**
+ Finds the absolute position and row height for the given character position.
+ */
virtual bool FindPosition(wxDC& WXUNUSED(dc), long WXUNUSED(index), wxPoint& WXUNUSED(pt), int* WXUNUSED(height), bool WXUNUSED(forceLineStart)) { return false; }
- /// Get the best size, i.e. the ideal starting size for this object irrespective
- /// of available space. For a short text string, it will be the size that exactly encloses
- /// the text. For a longer string, it might use the parent width for example.
+ /**
+ Returns the best size, i.e. the ideal starting size for this object irrespective
+ of available space. For a short text string, it will be the size that exactly encloses
+ the text. For a longer string, it might use the parent width for example.
+ */
virtual wxSize GetBestSize() const { return m_size; }
/**
- Gets the object size for the given range. Returns false if the range
+ Returns the object size for the given range. Returns @false if the range
is invalid for this object.
*/
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const = 0;
- /// Do a split, returning an object containing the second part, and setting
- /// the first part in 'this'.
+ /**
+ Do a split from @a pos, returning an object containing the second part, and setting
+ the first part in 'this'.
+ */
virtual wxRichTextObject* DoSplit(long WXUNUSED(pos)) { return NULL; }
- /// Calculate range. By default, guess that the object is 1 unit long.
+ /**
+ Calculates the range of the object. By default, guess that the object is 1 unit long.
+ */
virtual void CalculateRange(long start, long& end) { end = start ; m_range.SetRange(start, end); }
- /// Delete range
+ /**
+ Deletes the given range.
+ */
virtual bool DeleteRange(const wxRichTextRange& WXUNUSED(range)) { return false; }
- /// Returns true if the object is empty
+ /**
+ Returns @true if the object is empty.
+ */
virtual bool IsEmpty() const { return false; }
- /// Whether this object floatable
+ /**
+ Returns @true if this class of object is floatable.
+ */
virtual bool IsFloatable() const { return false; }
- /// Whether this object is currently floating
+ /**
+ Returns @true if this object is currently floating.
+ */
virtual bool IsFloating() const { return GetAttributes().GetTextBoxAttr().IsFloating(); }
- /// Whether this object is a place holding one
- // virtual bool IsPlaceHolding() const { return false; }
-
- /// The floating direction
+ /**
+ Returns the floating direction.
+ */
virtual int GetFloatDirection() const { return GetAttributes().GetTextBoxAttr().GetFloatMode(); }
- /// Get any text in this object for the given range
+ /**
+ Returns any text in this object for the given range.
+ */
virtual wxString GetTextForRange(const wxRichTextRange& WXUNUSED(range)) const { return wxEmptyString; }
- /// Returns true if this object can merge itself with the given one.
+ /**
+ Returns @true if this object can merge itself with the given one.
+ */
virtual bool CanMerge(wxRichTextObject* WXUNUSED(object)) const { return false; }
- /// Returns true if this object merged itself with the given one.
- /// The calling code will then delete the given object.
+ /**
+ Returns @true if this object merged itself with the given one.
+ The calling code will then delete the given object.
+ */
virtual bool Merge(wxRichTextObject* WXUNUSED(object)) { return false; }
- /// Dump to output stream for debugging
+ /**
+ Dump object data to the given output stream for debugging.
+ */
virtual void Dump(wxTextOutputStream& stream);
- /// Can we edit properties via a GUI?
+ /**
+ Returns @true if we can edit the object's properties via a GUI.
+ */
virtual bool CanEditProperties() const { return false; }
- /// Edit properties via a GUI
+ /**
+ Edits the object's properties via a GUI.
+ */
virtual bool EditProperties(wxWindow* WXUNUSED(parent), wxRichTextBuffer* WXUNUSED(buffer)) { return false; }
- /// Return the label to be used for the properties context menu item.
+ /**
+ Returns the label to be used for the properties context menu item.
+ */
virtual wxString GetPropertiesMenuLabel() const { return wxEmptyString; }
- /// Returns true if objects of this class can accept the focus, i.e. a call to SetFocusObject
- /// is possible. For example, containers supporting text, such as a text box object, can accept the focus,
- /// but a table can't (set the focus to individual cells instead).
+ /**
+ Returns @true if objects of this class can accept the focus, i.e. a call to SetFocusObject
+ is possible. For example, containers supporting text, such as a text box object, can accept the focus,
+ but a table can't (set the focus to individual cells instead).
+ */
virtual bool AcceptsFocus() const { return false; }
#if wxUSE_XML
- /// Import this object from XML
+ /**
+ Imports this object from XML.
+ */
virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
#endif
#if wxRICHTEXT_HAVE_DIRECT_OUTPUT
- /// Export this object directly to the given stream.
+ /**
+ Exports this object directly to the given stream, bypassing the creation of a wxXmlNode hierarchy.
+ This method is considerably faster than creating a tree first. However, both versions of ExportXML must be
+ implemented so that if the tree method is made efficient in the future, we can deprecate the
+ more verbose direct output method. Compiled only if wxRICHTEXT_HAVE_DIRECT_OUTPUT is defined (on by default).
+ */
virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
#endif
#if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
- /// Export this object to the given parent node, usually creating at least one child node.
+ /**
+ Exports this object to the given parent node, usually creating at least one child node.
+ This method is less efficient than the direct-to-stream method but is retained to allow for
+ switching to this method if we make it more efficient. Compiled only if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT is defined
+ (on by default).
+ */
virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
#endif
- /// Does this object take note of paragraph attributes? Text and image objects don't.
+ /**
+ Returns @true if this object takes note of paragraph attributes (text and image objects don't).
+ */
virtual bool UsesParagraphAttributes() const { return true; }
- /// What is the XML node name of this object?
+ /**
+ Returns the XML node name of this object. This must be overridden for wxXmlNode-base XML export to work.
+ */
virtual wxString GetXMLNodeName() const { return wxT("unknown"); }
- /// Invalidate the buffer. With no argument, invalidates whole buffer.
+ /**
+ Invalidates the object at the given range. With no argument, invalidates the whole object.
+ */
virtual void Invalidate(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
- /// Can this object handle the selections of its children? FOr example, a table.
+ /**
+ Returns @true if this object can handle the selections of its children, fOr example a table.
+ Required for composite selection handling to work.
+ */
virtual bool HandlesChildSelections() const { return false; }
- /// Returns a selection object specifying the selections between start and end character positions.
- /// For example, a table would deduce what cells (of range length 1) are selected when dragging across the table.
+ /**
+ Returns a selection object specifying the selections between start and end character positions.
+ For example, a table would deduce what cells (of range length 1) are selected when dragging across the table.
+ */
virtual wxRichTextSelection GetSelection(long WXUNUSED(start), long WXUNUSED(end)) const { return wxRichTextSelection(); }
// Accessors
- /// Get/set the cached object size as calculated by Layout.
+ /**
+ Gets the cached object size as calculated by Layout.
+ */
virtual wxSize GetCachedSize() const { return m_size; }
+
+ /**
+ Sets the cached object size as calculated by Layout.
+ */
virtual void SetCachedSize(const wxSize& sz) { m_size = sz; }
- /// Get/set the maximum object size as calculated by Layout. This allows
- /// us to fit an object to its contents or allocate extra space if required.
+ /**
+ Gets the maximum object size as calculated by Layout. This allows
+ us to fit an object to its contents or allocate extra space if required.
+ */
virtual wxSize GetMaxSize() const { return m_maxSize; }
+
+ /**
+ Sets the maximum object size as calculated by Layout. This allows
+ us to fit an object to its contents or allocate extra space if required.
+ */
virtual void SetMaxSize(const wxSize& sz) { m_maxSize = sz; }
- /// Get/set the minimum object size as calculated by Layout. This allows
- /// us to constrain an object to its absolute minimum size if necessary.
+ /**
+ Gets the minimum object size as calculated by Layout. This allows
+ us to constrain an object to its absolute minimum size if necessary.
+ */
virtual wxSize GetMinSize() const { return m_minSize; }
+
+ /**
+ Sets the minimum object size as calculated by Layout. This allows
+ us to constrain an object to its absolute minimum size if necessary.
+ */
virtual void SetMinSize(const wxSize& sz) { m_minSize = sz; }
- /// Get the 'natural' size for an object. For an image, it would be the
- /// image size.
+ /**
+ Gets the 'natural' size for an object. For an image, it would be the
+ image size.
+ */
virtual wxTextAttrSize GetNaturalSize() const { return wxTextAttrSize(); }
- /// Get/set the object position
+ /**
+ Returns the object position in pixels.
+ */
virtual wxPoint GetPosition() const { return m_pos; }
+
+ /**
+ Sets the object position in pixels.
+ */
virtual void SetPosition(const wxPoint& pos) { m_pos = pos; }
- /// Get the absolute object position, by traversing up the child/parent hierarchy
- /// TODO: may not be needed, if all object positions are in fact relative to the
- /// top of the coordinate space.
+ /**
+ Returns the absolute object position, by traversing up the child/parent hierarchy.
+ TODO: may not be needed, if all object positions are in fact relative to the
+ top of the coordinate space.
+ */
virtual wxPoint GetAbsolutePosition() const;
- /// Get the rectangle enclosing the object
+ /**
+ Returns the rectangle enclosing the object.
+ */
virtual wxRect GetRect() const { return wxRect(GetPosition(), GetCachedSize()); }
- /// Set the range
+ /**
+ Sets the object's range within its container.
+ */
void SetRange(const wxRichTextRange& range) { m_range = range; }
- /// Get the range
+ /**
+ Returns the object's range.
+ */
const wxRichTextRange& GetRange() const { return m_range; }
+
+ /**
+ Returns the object's range.
+ */
wxRichTextRange& GetRange() { return m_range; }
- /// Set the 'own' range, for a top-level object with its own position space
+ /**
+ Set the object's own range, for a top-level object with its own position space.
+ */
void SetOwnRange(const wxRichTextRange& range) { m_ownRange = range; }
- /// Get own range (valid if top-level)
+ /**
+ Returns the object's own range (valid if top-level).
+ */
const wxRichTextRange& GetOwnRange() const { return m_ownRange; }
+
+ /**
+ Returns the object's own range (valid if top-level).
+ */
wxRichTextRange& GetOwnRange() { return m_ownRange; }
- /// Get own range only if a top-level object
+ /**
+ Returns the object's own range only if a top-level object.
+ */
wxRichTextRange GetOwnRangeIfTopLevel() const { return IsTopLevel() ? m_ownRange : m_range; }
- /// Is this composite?
+ /**
+ Returns @true if this object this composite.
+ */
virtual bool IsComposite() const { return false; }
- /// Get/set the parent.
+ /**
+ Returns a pointer to the parent object.
+ */
virtual wxRichTextObject* GetParent() const { return m_parent; }
+
+ /**
+ Sets the pointer to the parent object.
+ */
virtual void SetParent(wxRichTextObject* parent) { m_parent = parent; }
- /// Get/set the top-level container of this object.
- /// May return itself if it's a container; use GetParentContainer to return
- /// a different container.
+ /**
+ Returns the top-level container of this object.
+ May return itself if it's a container; use GetParentContainer to return
+ a different container.
+ */
virtual wxRichTextParagraphLayoutBox* GetContainer() const;
- /// Get/set the top-level container of this object.
- /// Returns a different container than itself, unless there's no parent, in which case it will return NULL.
+ /**
+ Returns the top-level container of this object.
+ Returns a different container than itself, unless there's no parent, in which case it will return NULL.
+ */
virtual wxRichTextParagraphLayoutBox* GetParentContainer() const { return GetParent() ? GetParent()->GetContainer() : GetContainer(); }
- /// Set the margin around the object, in pixels
+ /**
+ Set the margin around the object, in pixels.
+ */
virtual void SetMargins(int margin);
+
+ /**
+ Set the margin around the object, in pixels.
+ */
virtual void SetMargins(int leftMargin, int rightMargin, int topMargin, int bottomMargin);
+
+ /**
+ Returns the left margin of the object, in pixels.
+ */
virtual int GetLeftMargin() const;
+
+ /**
+ Returns the right margin of the object, in pixels.
+ */
virtual int GetRightMargin() const;
+
+ /**
+ Returns the top margin of the object, in pixels.
+ */
virtual int GetTopMargin() const;
+
+ /**
+ Returns the bottom margin of the object, in pixels.
+ */
virtual int GetBottomMargin() const;
- /// Calculate the available content space in the given rectangle, given the
- /// margins, border and padding specified in the object's attributes.
+ /**
+ Calculates the available content space in the given rectangle, given the
+ margins, border and padding specified in the object's attributes.
+ */
virtual wxRect GetAvailableContentArea(wxDC& dc, const wxRect& outerRect) const;
- /// Lays out the object first with a given amount of space, and then if no width was specified in attr,
- /// lays out the object again using the minimum size
+ /**
+ Lays out the object first with a given amount of space, and then if no width was specified in attr,
+ lays out the object again using the minimum size
+ */
virtual bool LayoutToBestSize(wxDC& dc, wxRichTextBuffer* buffer,
const wxRichTextAttr& parentAttr, const wxRichTextAttr& attr, const wxRect& availableParentSpace, int style);
- /// Set/get attributes object
+ /**
+ Sets the object's attributes.
+ */
void SetAttributes(const wxRichTextAttr& attr) { m_attributes = attr; }
+
+ /**
+ Returns the object's attributes.
+ */
const wxRichTextAttr& GetAttributes() const { return m_attributes; }
+
+ /**
+ Returns the object's attributes.
+ */
wxRichTextAttr& GetAttributes() { return m_attributes; }
- /// Set/get properties
+ /**
+ Sets the object's properties.
+ */
wxRichTextProperties& GetProperties() { return m_properties; }
+
+ /**
+ Returns the object's properties.
+ */
const wxRichTextProperties& GetProperties() const { return m_properties; }
+
+ /**
+ Returns the object's properties.
+ */
void SetProperties(const wxRichTextProperties& props) { m_properties = props; }
- /// Set/get stored descent
+ /**
+ Sets the stored descent value.
+ */
void SetDescent(int descent) { m_descent = descent; }
+
+ /**
+ Returns the stored descent value.
+ */
int GetDescent() const { return m_descent; }
- /// Gets the containing buffer
+ /**
+ Returns the containing buffer.
+ */
wxRichTextBuffer* GetBuffer() const;
- /// Sets the identifying name for this object, as a property.
+ /**
+ Sets the identifying name for this object as a property using the "name" key.
+ */
void SetName(const wxString& name) { m_properties.SetProperty(wxT("name"), name); }
- /// Gets the identifying name for this object.
+ /**
+ Returns the identifying name for this object from the properties, using the "name" key.
+ */
wxString GetName() const { return m_properties.GetPropertyString(wxT("name")); }
- /// Is this object top-level, i.e. with its own paragraphs, such as a text box?
+ /**
+ Returns @true if this object is top-level, i.e. contains its own paragraphs, such as a text box.
+ */
virtual bool IsTopLevel() const { return false; }
- /// Returns @true if the object will be shown, @false otherwise.
+ /**
+ Returns @true if the object will be shown, @false otherwise.
+ */
bool IsShown() const { return m_show; }
// Operations
- /// Call to show or hide this object. This function does not cause the content to be
- /// laid out or redrawn.
+ /**
+ Call to show or hide this object. This function does not cause the content to be
+ laid out or redrawn.
+ */
virtual void Show(bool show) { m_show = show; }
- /// Clone the object
+ /**
+ Clones the object.
+ */
virtual wxRichTextObject* Clone() const { return NULL; }
- /// Copy
+ /**
+ Copies the object.
+ */
void Copy(const wxRichTextObject& obj);
- /// Reference-counting allows us to use the same object in multiple
- /// lists (not yet used)
+ /**
+ Reference-counting allows us to use the same object in multiple
+ lists (not yet used).
+ */
+
void Reference() { m_refCount ++; }
+
+ /**
+ Reference-counting allows us to use the same object in multiple
+ lists (not yet used).
+ */
void Dereference();
- /// Move the object recursively, by adding the offset from old to new
+ /**
+ Moves the object recursively, by adding the offset from old to new.
+ */
virtual void Move(const wxPoint& pt);
- /// Convert units in tenths of a millimetre to device units
+ /**
+ Converts units in tenths of a millimetre to device units.
+ */
int ConvertTenthsMMToPixels(wxDC& dc, int units) const;
+
+ /**
+ Converts units in tenths of a millimetre to device units.
+ */
static int ConvertTenthsMMToPixels(int ppi, int units, double scale = 1.0);
- /// Convert units in pixels to tenths of a millimetre
+ /**
+ Convert units in pixels to tenths of a millimetre.
+ */
int ConvertPixelsToTenthsMM(wxDC& dc, int pixels) const;
+
+ /**
+ Convert units in pixels to tenths of a millimetre.
+ */
static int ConvertPixelsToTenthsMM(int ppi, int pixels, double scale = 1.0);
- /// Draw the borders and background for the given rectangle and attributes.
- /// Width and height are taken to be the outer margin size, not the content.
+ /**
+ Draws the borders and background for the given rectangle and attributes.
+ @a boxRect is taken to be the outer margin box, not the box around the content.
+ */
static bool DrawBoxAttributes(wxDC& dc, wxRichTextBuffer* buffer, const wxRichTextAttr& attr, const wxRect& boxRect, int flags = 0);
- /// Draw a border
+ /**
+ Draws a border.
+ */
static bool DrawBorder(wxDC& dc, wxRichTextBuffer* buffer, const wxTextAttrBorders& attr, const wxRect& rect, int flags = 0);
- /// Get the various rectangles of the box model in pixels. You can either specify contentRect (inner)
- /// or marginRect (outer), and the other must be the default rectangle (no width or height).
- /// Note that the outline doesn't affect the position of the rectangle, it's drawn in whatever space
- /// is available.
+ /**
+ Returns the various rectangles of the box model in pixels. You can either specify @a contentRect (inner)
+ or @a marginRect (outer), and the other must be the default rectangle (no width or height).
+ Note that the outline doesn't affect the position of the rectangle, it's drawn in whatever space
+ is available.
+ */
static bool GetBoxRects(wxDC& dc, wxRichTextBuffer* buffer, const wxRichTextAttr& attr, wxRect& marginRect, wxRect& borderRect, wxRect& contentRect, wxRect& paddingRect, wxRect& outlineRect);
- /// Get the total margin for the object in pixels, taking into account margin, padding and border size
+ /**
+ Returns the total margin for the object in pixels, taking into account margin, padding and border size.
+ */
static bool GetTotalMargin(wxDC& dc, wxRichTextBuffer* buffer, const wxRichTextAttr& attr, int& leftMargin, int& rightMargin,
int& topMargin, int& bottomMargin);
- /// Returns the rectangle which the child has available to it given restrictions specified in the
- /// child attribute, e.g. 50% width of the parent, 400 pixels, x position 20% of the parent, etc.
+ /**
+ Returns the rectangle which the child has available to it given restrictions specified in the
+ child attribute, e.g. 50% width of the parent, 400 pixels, x position 20% of the parent, etc.
+ */
static wxRect AdjustAvailableSpace(wxDC& dc, wxRichTextBuffer* buffer, const wxRichTextAttr& parentAttr, const wxRichTextAttr& childAttr, const wxRect& availableParentSpace);
protected:
bool m_show;
wxRichTextObject* m_parent;
- /// The range of this object (start position to end position)
+ // The range of this object (start position to end position)
wxRichTextRange m_range;
- /// The internal range of this object, if it's a top-level object with its own range space
+ // The internal range of this object, if it's a top-level object with its own range space
wxRichTextRange m_ownRange;
- /// Attributes
+ // Attributes
wxRichTextAttr m_attributes;
- /// Properties
+ // Properties
wxRichTextProperties m_properties;
};
WX_DECLARE_LIST_WITH_DECL( wxRichTextObject, wxRichTextObjectList, class WXDLLIMPEXP_RICHTEXT );
-/*!
- * wxRichTextCompositeObject class declaration
- * Objects of this class can contain other objects.
- */
+/**
+ @class wxRichTextCompositeObject
+
+ Objects of this class can contain other objects.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextObject, wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextCompositeObject: public wxRichTextObject
{
wxRichTextCompositeObject(wxRichTextObject* parent = NULL);
virtual ~wxRichTextCompositeObject();
-// Overrideables
+// Overridables
- /// Hit-testing: returns a flag indicating hit test details, plus
- /// information about position
virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
- /// Finds the absolute position and row height for the given character position
virtual bool FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart);
- /// Calculate range
virtual void CalculateRange(long start, long& end);
- /// Delete range
virtual bool DeleteRange(const wxRichTextRange& range);
- /// Get any text in this object for the given range
virtual wxString GetTextForRange(const wxRichTextRange& range) const;
- /// Gets the object size for the given range. Returns false if the range
- /// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
- /// Dump to output stream for debugging
virtual void Dump(wxTextOutputStream& stream);
- /// Invalidate the buffer. With no argument, invalidates whole buffer.
virtual void Invalidate(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
// Accessors
- /// Get the children
+ /**
+ Returns the children.
+ */
wxRichTextObjectList& GetChildren() { return m_children; }
+ /**
+ Returns the children.
+ */
const wxRichTextObjectList& GetChildren() const { return m_children; }
- /// Get the child count
+ /**
+ Returns the number of children.
+ */
size_t GetChildCount() const ;
- /// Get the nth child
+ /**
+ Returns the nth child.
+ */
wxRichTextObject* GetChild(size_t n) const ;
- /// Is this composite?
+ /**
+ Returns @true if this object is composite.
+ */
virtual bool IsComposite() const { return true; }
- /// Returns true if the buffer is empty
+ /**
+ Returns true if the buffer is empty.
+ */
virtual bool IsEmpty() const { return GetChildCount() == 0; }
- /// Get the child object at the given character position
+ /**
+ Returns the child object at the given character position.
+ */
virtual wxRichTextObject* GetChildAtPosition(long pos) const;
// Operations
- /// Copy
void Copy(const wxRichTextCompositeObject& obj);
- /// Assignment
void operator= (const wxRichTextCompositeObject& obj) { Copy(obj); }
- /// Append a child, returning the position
+ /**
+ Appends a child, returning the position.
+ */
size_t AppendChild(wxRichTextObject* child) ;
- /// Insert the child in front of the given object, or at the beginning
+ /**
+ Inserts the child in front of the given object, or at the beginning.
+ */
bool InsertChild(wxRichTextObject* child, wxRichTextObject* inFrontOf) ;
- /// Delete the child
+ /**
+ Removes and optionally deletes the specified child.
+ */
bool RemoveChild(wxRichTextObject* child, bool deleteChild = false) ;
- /// Delete all children
+ /**
+ Deletes all the children.
+ */
bool DeleteChildren() ;
- /// Recursively merge all pieces that can be merged.
+ /**
+ Recursively merges all pieces that can be merged.
+ */
bool Defragment(const wxRichTextRange& range = wxRICHTEXT_ALL);
- /// Move the object recursively, by adding the offset from old to new
+ /**
+ Moves the object recursively, by adding the offset from old to new.
+ */
virtual void Move(const wxPoint& pt);
protected:
wxRichTextObjectList m_children;
};
-/*!
- * wxRichTextParagraphBox class declaration
- * This box knows how to lay out paragraphs.
- */
+/**
+ @class wxRichTextParagraphBox
+
+ This class knows how to lay out paragraphs.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextCompositeObject, wxRichTextObject, wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextParagraphLayoutBox: public wxRichTextCompositeObject
{
wxRichTextParagraphLayoutBox(const wxRichTextParagraphLayoutBox& obj): wxRichTextCompositeObject() { Init(); Copy(obj); }
~wxRichTextParagraphLayoutBox();
-// Overrideables
+// Overridables
- /// Hit-testing: returns a flag indicating hit test details, plus
- /// information about position
virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
- /// Draw the item
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
- /// Lay the item out
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
- /// Gets the object size for the given range. Returns false if the range
- /// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
- /// Delete range
virtual bool DeleteRange(const wxRichTextRange& range);
- /// Get any text in this object for the given range
virtual wxString GetTextForRange(const wxRichTextRange& range) const;
#if wxUSE_XML
- /// Import this object from XML
virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
#endif
#if wxRICHTEXT_HAVE_DIRECT_OUTPUT
- /// Export this object directly to the given stream.
virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
#endif
#if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
- /// Export this object to the given parent node, usually creating at least one child node.
virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
#endif
- /// What is the XML node name of this object?
virtual wxString GetXMLNodeName() const { return wxT("paragraphlayout"); }
- /// Returns true if objects of this class can accept the focus, i.e. a call to SetFocusObject
- /// is possible. For example, containers supporting text, such as a text box object, can accept the focus,
- /// but a table can't (set the focus to individual cells instead).
virtual bool AcceptsFocus() const { return true; }
// Accessors
- /// Associate a control with the buffer, for operations that for example require refreshing the window.
+ /**
+ Associates a control with the buffer, for operations that for example require refreshing the window.
+ */
void SetRichTextCtrl(wxRichTextCtrl* ctrl) { m_ctrl = ctrl; }
- /// Get the associated control.
+ /**
+ Returns the associated control.
+ */
wxRichTextCtrl* GetRichTextCtrl() const { return m_ctrl; }
- /// Get/set whether the last paragraph is partial or complete
+ /**
+ Sets a flag indicating whether the last paragraph is partial or complete.
+ */
void SetPartialParagraph(bool partialPara) { m_partialParagraph = partialPara; }
+
+ /**
+ Returns a flag indicating whether the last paragraph is partial or complete.
+ */
bool GetPartialParagraph() const { return m_partialParagraph; }
- /// Returns the style sheet associated with the overall buffer.
+ /**
+ Returns the style sheet associated with the overall buffer.
+ */
virtual wxRichTextStyleSheet* GetStyleSheet() const;
- /// Is this object top-level, i.e. with its own paragraphs, such as a text box?
virtual bool IsTopLevel() const { return true; }
// Operations
- /// Submit command to insert paragraphs
+ /**
+ Submits a command to insert paragraphs.
+ */
bool InsertParagraphsWithUndo(long pos, const wxRichTextParagraphLayoutBox& paragraphs, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags = 0);
- /// Submit command to insert the given text
+ /**
+ Submits a command to insert the given text.
+ */
bool InsertTextWithUndo(long pos, const wxString& text, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags = 0);
- /// Submit command to insert the given text
+ /**
+ Submits a command to insert the given text.
+ */
bool InsertNewlineWithUndo(long pos, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags = 0);
- /// Submit command to insert the given image
+ /**
+ Submits a command to insert the given image.
+ */
bool InsertImageWithUndo(long pos, const wxRichTextImageBlock& imageBlock,
wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags,
const wxRichTextAttr& textAttr);
- /// Get the style that is appropriate for a new paragraph at this position.
- /// If the previous paragraph has a paragraph style name, look up the next-paragraph
- /// style.
+ /**
+ Returns the style that is appropriate for a new paragraph at this position.
+ If the previous paragraph has a paragraph style name, looks up the next-paragraph
+ style.
+ */
wxRichTextAttr GetStyleForNewParagraph(wxRichTextBuffer* buffer, long pos, bool caretPosition = false, bool lookUpNewParaStyle=false) const;
- /// Insert an object.
+ /**
+ Inserts an object.
+ */
wxRichTextObject* InsertObjectWithUndo(long pos, wxRichTextObject *object, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer, int flags = 0);
- /// Submit command to delete this range
+ /**
+ Submits a command to delete this range.
+ */
bool DeleteRangeWithUndo(const wxRichTextRange& range, wxRichTextCtrl* ctrl, wxRichTextBuffer* buffer);
- /// Draw the floats of this buffer
+ /**
+ Draws the floating objects in this buffer.
+ */
void DrawFloats(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
- /// Move an anchored object to another paragraph
+ /**
+ Moves an anchored object to another paragraph.
+ */
void MoveAnchoredObjectToParagraph(wxRichTextParagraph* from, wxRichTextParagraph* to, wxRichTextObject* obj);
- /// Initialize the object.
+ /**
+ Initializes the object.
+ */
void Init();
- /// Clear all children
+ /**
+ Clears all the children.
+ */
virtual void Clear();
- /// Clear and initialize with one blank paragraph
+ /**
+ Clears and initializes with one blank paragraph.
+ */
virtual void Reset();
- /// Convenience function to add a paragraph of text
+ /**
+ Convenience function to add a paragraph of text.
+ */
virtual wxRichTextRange AddParagraph(const wxString& text, wxRichTextAttr* paraStyle = NULL);
- /// Convenience function to add an image
+ /**
+ Convenience function to add an image.
+ */
virtual wxRichTextRange AddImage(const wxImage& image, wxRichTextAttr* paraStyle = NULL);
- /// Adds multiple paragraphs, based on newlines.
+ /**
+ Adds multiple paragraphs, based on newlines.
+ */
virtual wxRichTextRange AddParagraphs(const wxString& text, wxRichTextAttr* paraStyle = NULL);
- /// Get the line at the given position. If caretPosition is true, the position is
- /// a caret position, which is normally a smaller number.
+ /**
+ Returns the line at the given position. If @a caretPosition is true, the position is
+ a caret position, which is normally a smaller number.
+ */
virtual wxRichTextLine* GetLineAtPosition(long pos, bool caretPosition = false) const;
- /// Get the line at the given y pixel position, or the last line.
+ /**
+ Returns the line at the given y pixel position, or the last line.
+ */
virtual wxRichTextLine* GetLineAtYPosition(int y) const;
- /// Get the paragraph at the given character or caret position
+ /**
+ Returns the paragraph at the given character or caret position.
+ */
virtual wxRichTextParagraph* GetParagraphAtPosition(long pos, bool caretPosition = false) const;
- /// Get the line size at the given position
+ /**
+ Returns the line size at the given position.
+ */
virtual wxSize GetLineSizeAtPosition(long pos, bool caretPosition = false) const;
- /// Given a position, get the number of the visible line (potentially many to a paragraph),
- /// starting from zero at the start of the buffer. We also have to pass a bool (startOfLine)
- /// that indicates whether the caret is being shown at the end of the previous line or at the start
- /// of the next, since the caret can be shown at 2 visible positions for the same underlying
- /// position.
+ /**
+ Given a position, returns the number of the visible line (potentially many to a paragraph),
+ starting from zero at the start of the buffer. We also have to pass a bool (@a startOfLine)
+ that indicates whether the caret is being shown at the end of the previous line or at the start
+ of the next, since the caret can be shown at two visible positions for the same underlying
+ position.
+ */
virtual long GetVisibleLineNumber(long pos, bool caretPosition = false, bool startOfLine = false) const;
- /// Given a line number, get the corresponding wxRichTextLine object.
+ /**
+ Given a line number, returns the corresponding wxRichTextLine object.
+ */
virtual wxRichTextLine* GetLineForVisibleLineNumber(long lineNumber) const;
- /// Get the leaf object in a paragraph at this position.
- /// Given a position, get the corresponding wxRichTextLine object.
+ /**
+ Returns the leaf object in a paragraph at this position.
+ */
virtual wxRichTextObject* GetLeafObjectAtPosition(long position) const;
- /// Get the paragraph by number
+ /**
+ Returns the paragraph by number.
+ */
virtual wxRichTextParagraph* GetParagraphAtLine(long paragraphNumber) const;
- /// Get the paragraph for a given line
+ /**
+ Returns the paragraph for a given line.
+ */
virtual wxRichTextParagraph* GetParagraphForLine(wxRichTextLine* line) const;
- /// Get the length of the paragraph
+ /**
+ Returns the length of the paragraph.
+ */
virtual int GetParagraphLength(long paragraphNumber) const;
- /// Get the number of paragraphs
+ /**
+ Returns the number of paragraphs.
+ */
virtual int GetParagraphCount() const { return static_cast<int>(GetChildCount()); }
- /// Get the number of visible lines
+ /**
+ Returns the number of visible lines.
+ */
virtual int GetLineCount() const;
- /// Get the text of the paragraph
+ /**
+ Returns the text of the paragraph.
+ */
virtual wxString GetParagraphText(long paragraphNumber) const;
- /// Convert zero-based line column and paragraph number to a position.
+ /**
+ Converts zero-based line column and paragraph number to a position.
+ */
virtual long XYToPosition(long x, long y) const;
- /// Convert zero-based position to line column and paragraph number
+ /**
+ Converts a zero-based position to line column and paragraph number.
+ */
virtual bool PositionToXY(long pos, long* x, long* y) const;
- /// Set text attributes: character and/or paragraph styles.
+ /**
+ Sets text attributes: character and/or paragraph styles.
+ */
virtual bool SetStyle(const wxRichTextRange& range, const wxRichTextAttr& style, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
- /// Set the attributes for the given object only, for example the box attributes for a text box.
+ /**
+ Sets the attributes for the given object only, for example the box attributes for a text box.
+ */
virtual void SetStyle(wxRichTextObject *obj, const wxRichTextAttr& textAttr, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
- /// Get the combined text attributes for this position.
+ /**
+ Returns the combined text attributes for this position.
+ */
virtual bool GetStyle(long position, wxRichTextAttr& style);
- /// Get the content (uncombined) attributes for this position.
+ /**
+ Returns the content (uncombined) attributes for this position.
+ */
virtual bool GetUncombinedStyle(long position, wxRichTextAttr& style);
- /// Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
- /// context attributes.
+ /**
+ Implementation helper for GetStyle. If combineStyles is true, combine base, paragraph and
+ context attributes.
+ */
virtual bool DoGetStyle(long position, wxRichTextAttr& style, bool combineStyles = true);
- /// Get the combined style for a range - if any attribute is different within the range,
- /// that attribute is not present within the flags
+ /**
+ Returns the combined style for a range - if any attribute is different within the range,
+ that attribute is not present within the flags.
+ */
virtual bool GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style);
- /// Combines 'style' with 'currentStyle' for the purpose of summarising the attributes of a range of
- /// content.
+ /**
+ Combines @a style with @a currentStyle for the purpose of summarising the attributes of a range of
+ content.
+ */
bool CollectStyle(wxRichTextAttr& currentStyle, const wxRichTextAttr& style, wxRichTextAttr& clashingAttr, wxRichTextAttr& absentAttr);
- /// Set list style
+ /**
+ Set the list style.
+ */
virtual bool SetListStyle(const wxRichTextRange& range, wxRichTextListStyleDefinition* def, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
+
+ /**
+ Set the list style.
+ */
virtual bool SetListStyle(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
- /// Clear list for given range
+ /**
+ Clear the list for the given range.
+ */
virtual bool ClearListStyle(const wxRichTextRange& range, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO);
- /// Number/renumber any list elements in the given range.
- /// def/defName can be NULL/empty to indicate that the existing list style should be used.
+ /**
+ Number/renumber any list elements in the given range.
+ @a def can be NULL to indicate that the existing list style should be used.
+ */
virtual bool NumberList(const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
+
+ /**
+ Number/renumber any list elements in the given range.
+ @a defName can be empty to indicate that the existing list style should be used.
+ */
virtual bool NumberList(const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
- /// Promote the list items within the given range. promoteBy can be a positive or negative number, e.g. 1 or -1
- /// def/defName can be NULL/empty to indicate that the existing list style should be used.
+ /**
+ Promotes the list items within the given range. @a promoteBy can be a positive or negative number, e.g. 1 or -1.
+ */
virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, wxRichTextListStyleDefinition* def = NULL, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1);
+
+ /**
+ Promotes the list items within the given range. @a promoteBy can be a positive or negative number, e.g. 1 or -1.
+ */
virtual bool PromoteList(int promoteBy, const wxRichTextRange& range, const wxString& defName, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int specifiedLevel = -1);
- /// Helper for NumberList and PromoteList, that does renumbering and promotion simultaneously
- /// def/defName can be NULL/empty to indicate that the existing list style should be used.
+ /**
+ Helper for NumberList and PromoteList, that does renumbering and promotion simultaneously
+ @a def can be NULL/empty to indicate that the existing list style should be used.
+ */
virtual bool DoNumberList(const wxRichTextRange& range, const wxRichTextRange& promotionRange, int promoteBy, wxRichTextListStyleDefinition* def, int flags = wxRICHTEXT_SETSTYLE_WITH_UNDO, int startFrom = 1, int specifiedLevel = -1);
- /// Fills in the attributes for numbering a paragraph after previousParagraph.
+ /**
+ Fills in the attributes for numbering a paragraph after previousParagraph.
+ */
virtual bool FindNextParagraphNumber(wxRichTextParagraph* previousParagraph, wxRichTextAttr& attr) const;
- /// Test if this whole range has character attributes of the specified kind. If any
- /// of the attributes are different within the range, the test fails. You
- /// can use this to implement, for example, bold button updating. style must have
- /// flags indicating which attributes are of interest.
+ /**
+ Test if this whole range has character attributes of the specified kind. If any
+ of the attributes are different within the range, the test fails. You
+ can use this to implement, for example, bold button updating. style must have
+ flags indicating which attributes are of interest.
+ */
virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const;
- /// Test if this whole range has paragraph attributes of the specified kind. If any
- /// of the attributes are different within the range, the test fails. You
- /// can use this to implement, for example, centering button updating. style must have
- /// flags indicating which attributes are of interest.
+ /**
+ Test if this whole range has paragraph attributes of the specified kind. If any
+ of the attributes are different within the range, the test fails. You
+ can use this to implement, for example, centering button updating. style must have
+ flags indicating which attributes are of interest.
+ */
virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const;
- /// Clone
virtual wxRichTextObject* Clone() const { return new wxRichTextParagraphLayoutBox(*this); }
- /// Insert fragment into this box at the given position. If partialParagraph is true,
- /// it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
- /// marker.
+ /**
+ Insert fragment into this box at the given position. If partialParagraph is true,
+ it is assumed that the last (or only) paragraph is just a piece of data with no paragraph
+ marker.
+ */
virtual bool InsertFragment(long position, wxRichTextParagraphLayoutBox& fragment);
- /// Make a copy of the fragment corresponding to the given range, putting it in 'fragment'.
+ /**
+ Make a copy of the fragment corresponding to the given range, putting it in @a fragment.
+ */
virtual bool CopyFragment(const wxRichTextRange& range, wxRichTextParagraphLayoutBox& fragment);
- /// Apply the style sheet to the buffer, for example if the styles have changed.
+ /**
+ Apply the style sheet to the buffer, for example if the styles have changed.
+ */
virtual bool ApplyStyleSheet(wxRichTextStyleSheet* styleSheet);
- /// Copy
void Copy(const wxRichTextParagraphLayoutBox& obj);
- /// Assignment
void operator= (const wxRichTextParagraphLayoutBox& obj) { Copy(obj); }
- /// Calculate ranges
+ /**
+ Calculate ranges.
+ */
virtual void UpdateRanges();
- /// Get all the text
+ /**
+ Get all the text.
+ */
virtual wxString GetText() const;
- /// Set default style for new content. Setting it to a default attribute
- /// makes new content take on the 'basic' style.
+ /**
+ Sets the default style for new content. Setting it to a default attribute
+ makes new content take on the 'basic' style.
+ */
virtual bool SetDefaultStyle(const wxRichTextAttr& style);
- /// Get default style
+ /**
+ Returns the default style.
+ */
virtual const wxRichTextAttr& GetDefaultStyle() const { return m_defaultAttributes; }
- /// Set basic (overall) style
+ /**
+ Sets the basic (overall) style.
+ */
virtual void SetBasicStyle(const wxRichTextAttr& style) { m_attributes = style; }
- /// Get basic (overall) style
+ /**
+ Returns the basic (overall) style.
+ */
virtual const wxRichTextAttr& GetBasicStyle() const { return m_attributes; }
- /// Invalidate the buffer. With no argument, invalidates whole buffer.
+ /**
+ Invalidates the buffer. With no argument, invalidates whole buffer.
+ */
virtual void Invalidate(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
- /// Do the (in)validation for this object only
+ /**
+ Do the (in)validation for this object only.
+ */
virtual void DoInvalidate(const wxRichTextRange& invalidRange);
- /// Do the (in)validation both up and down the hierarchy
+ /**
+ Do the (in)validation both up and down the hierarchy.
+ */
virtual void InvalidateHierarchy(const wxRichTextRange& invalidRange = wxRICHTEXT_ALL);
- /// Gather information about floating objects. If untilObj is non-NULL,
- /// will stop getting information if the current object is this, since we
- /// will collect the rest later.
+ /**
+ Gather information about floating objects. If untilObj is non-NULL,
+ will stop getting information if the current object is this, since we
+ will collect the rest later.
+ */
virtual bool UpdateFloatingObjects(const wxRect& availableRect, wxRichTextObject* untilObj = NULL);
- /// Get invalid range, rounding to entire paragraphs if argument is true.
+ /**
+ Get invalid range, rounding to entire paragraphs if argument is true.
+ */
wxRichTextRange GetInvalidRange(bool wholeParagraphs = false) const;
- /// Does this object need layout?
+ /**
+ Returns @true if this object needs layout.
+ */
bool IsDirty() const { return m_invalidRange != wxRICHTEXT_NONE; }
- /// Get the wxRichTextFloatCollector of this object
+ /**
+ Returns the wxRichTextFloatCollector of this object.
+ */
wxRichTextFloatCollector* GetFloatCollector() { return m_floatCollector; }
- /// Get the number of floating objects at this level
+ /**
+ Returns the number of floating objects at this level.
+ */
int GetFloatingObjectCount() const;
- /// Get a list of floating objects
+ /**
+ Returns a list of floating objects.
+ */
bool GetFloatingObjects(wxRichTextObjectList& objects) const;
protected:
wxRichTextCtrl* m_ctrl;
wxRichTextAttr m_defaultAttributes;
- /// The invalidated range that will need full layout
+ // The invalidated range that will need full layout
wxRichTextRange m_invalidRange;
// Is the last paragraph partial or complete?
/**
@class wxRichTextBox
- wxRichTextBox is a floating or inline text box, containing paragraphs.
- */
+ This class implements a floating or inline text box, containing paragraphs.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextParagraphLayoutBox, wxRichTextObject, wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextBox: public wxRichTextParagraphLayoutBox
{
wxRichTextBox(const wxRichTextBox& obj): wxRichTextParagraphLayoutBox() { Copy(obj); }
-// Overrideables
-
- /**
- Draws the item.
- */
+// Overridables
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
- /**
- Returns the XML node name of this object.
- */
-
virtual wxString GetXMLNodeName() const { return wxT("textbox"); }
- /// Can we edit properties via a GUI?
virtual bool CanEditProperties() const { return true; }
- /// Edit properties via a GUI
virtual bool EditProperties(wxWindow* parent, wxRichTextBuffer* buffer);
- /// Return the label to be used for the properties context menu item.
virtual wxString GetPropertiesMenuLabel() const { return _("&Box"); }
// Accessors
// Operations
- /**
- Makes a clone of this object.
- */
virtual wxRichTextObject* Clone() const { return new wxRichTextBox(*this); }
- /**
- Copies this object.
- */
void Copy(const wxRichTextBox& obj);
protected:
};
-/*!
- * wxRichTextLine class declaration
- * This object represents a line in a paragraph, and stores
- * offsets from the start of the paragraph representing the
- * start and end positions of the line.
- */
+/**
+ @class wxRichTextLine
+
+ This object represents a line in a paragraph, and stores
+ offsets from the start of the paragraph representing the
+ start and end positions of the line.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextLine
{
wxRichTextLine(const wxRichTextLine& obj) { Init( NULL); Copy(obj); }
virtual ~wxRichTextLine() {}
-// Overrideables
+// Overridables
// Accessors
- /// Set the range
+ /**
+ Sets the range associated with this line.
+ */
void SetRange(const wxRichTextRange& range) { m_range = range; }
+ /**
+ Sets the range associated with this line.
+ */
void SetRange(long from, long to) { m_range = wxRichTextRange(from, to); }
- /// Get the parent paragraph
+ /**
+ Returns the parent paragraph.
+ */
wxRichTextParagraph* GetParent() { return m_parent; }
- /// Get the range
+ /**
+ Returns the range.
+ */
const wxRichTextRange& GetRange() const { return m_range; }
+ /**
+ Returns the range.
+ */
wxRichTextRange& GetRange() { return m_range; }
- /// Get the absolute range
+ /**
+ Returns the absolute range.
+ */
wxRichTextRange GetAbsoluteRange() const;
- /// Get/set the line size as calculated by Layout.
+ /**
+ Returns the line size as calculated by Layout.
+ */
virtual wxSize GetSize() const { return m_size; }
+
+ /**
+ Sets the line size as calculated by Layout.
+ */
virtual void SetSize(const wxSize& sz) { m_size = sz; }
- /// Get/set the object position relative to the parent
+ /**
+ Returns the object position relative to the parent.
+ */
virtual wxPoint GetPosition() const { return m_pos; }
+
+ /**
+ Sets the object position relative to the parent.
+ */
virtual void SetPosition(const wxPoint& pos) { m_pos = pos; }
- /// Get the absolute object position
+ /**
+ Returns the absolute object position.
+ */
virtual wxPoint GetAbsolutePosition() const;
- /// Get the rectangle enclosing the line
+ /**
+ Returns the rectangle enclosing the line.
+ */
virtual wxRect GetRect() const { return wxRect(GetAbsolutePosition(), GetSize()); }
- /// Set/get stored descent
+ /**
+ Sets the stored descent.
+ */
void SetDescent(int descent) { m_descent = descent; }
+
+ /**
+ Returns the stored descent.
+ */
int GetDescent() const { return m_descent; }
#if wxRICHTEXT_USE_OPTIMIZED_LINE_DRAWING
// Operations
- /// Initialisation
+ /**
+ Initialises the object.
+ */
void Init(wxRichTextParagraph* parent);
- /// Copy
+ /**
+ Copies from @a obj.
+ */
void Copy(const wxRichTextLine& obj);
- /// Clone
virtual wxRichTextLine* Clone() const { return new wxRichTextLine(*this); }
protected:
- /// The range of the line (start position to end position)
- /// This is relative to the parent paragraph.
+ // The range of the line (start position to end position)
+ // This is relative to the parent paragraph.
wxRichTextRange m_range;
- /// Size and position measured relative to top of paragraph
+ // Size and position measured relative to top of paragraph
wxPoint m_pos;
wxSize m_size;
- /// Maximum descent for this line (location of text baseline)
+ // Maximum descent for this line (location of text baseline)
int m_descent;
// The parent object
WX_DECLARE_LIST_WITH_DECL( wxRichTextLine, wxRichTextLineList , class WXDLLIMPEXP_RICHTEXT );
-/*!
- * wxRichTextParagraph class declaration
- * This object represents a single paragraph (or in a straight text editor, a line).
- */
+/**
+ @class wxRichTextParagraph
+
+ This object represents a single paragraph containing various objects such as text content, images, and further paragraph layout objects.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextParagraph: public wxRichTextCompositeObject
{
public:
// Constructors
+ /**
+ Constructor taking a parent and style.
+ */
wxRichTextParagraph(wxRichTextObject* parent = NULL, wxRichTextAttr* style = NULL);
+ /**
+ Constructor taking a text string, a parent and paragraph and character attributes.
+ */
wxRichTextParagraph(const wxString& text, wxRichTextObject* parent = NULL, wxRichTextAttr* paraStyle = NULL, wxRichTextAttr* charStyle = NULL);
virtual ~wxRichTextParagraph();
wxRichTextParagraph(const wxRichTextParagraph& obj): wxRichTextCompositeObject() { Copy(obj); }
-// Overrideables
+// Overridables
- /// Draw the item
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
- /// Lay the item out
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
- /// Gets the object size for the given range. Returns false if the range
- /// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
- /// Finds the absolute position and row height for the given character position
virtual bool FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart);
- /// Hit-testing: returns a flag indicating hit test details, plus
- /// information about position and the object that was found.
virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
- /// Calculate range
virtual void CalculateRange(long start, long& end);
- /// What is the XML node name of this object?
virtual wxString GetXMLNodeName() const { return wxT("paragraph"); }
// Accessors
- /// Get the cached lines
+ /**
+ Returns the cached lines.
+ */
wxRichTextLineList& GetLines() { return m_cachedLines; }
// Operations
- /// Copy
+ /**
+ Copies the object.
+ */
void Copy(const wxRichTextParagraph& obj);
- /// Clone
virtual wxRichTextObject* Clone() const { return new wxRichTextParagraph(*this); }
- /// Clear the cached lines
+ /**
+ Clears the cached lines.
+ */
void ClearLines();
// Implementation
- /// Apply paragraph styles such as centering to the wrapped lines
+ /**
+ Applies paragraph styles such as centering to the wrapped lines.
+ */
virtual void ApplyParagraphStyle(wxRichTextLine* line, const wxRichTextAttr& attr, const wxRect& rect, wxDC& dc);
- /// Insert text at the given position
+ /**
+ Inserts text at the given position.
+ */
virtual bool InsertText(long pos, const wxString& text);
- /// Split an object at this position if necessary, and return
- /// the previous object, or NULL if inserting at beginning.
+ /**
+ Splits an object at this position if necessary, and returns
+ the previous object, or NULL if inserting at the beginning.
+ */
virtual wxRichTextObject* SplitAt(long pos, wxRichTextObject** previousObject = NULL);
- /// Move content to a list from this point
+ /**
+ Moves content to a list from this point.
+ */
virtual void MoveToList(wxRichTextObject* obj, wxList& list);
- /// Add content back from list
+ /**
+ Adds content back from a list.
+ */
virtual void MoveFromList(wxList& list);
- /// Get the plain text searching from the start or end of the range.
- /// The resulting string may be shorter than the range given.
+ /**
+ Returns the plain text searching from the start or end of the range.
+ The resulting string may be shorter than the range given.
+ */
bool GetContiguousPlainText(wxString& text, const wxRichTextRange& range, bool fromStart = true);
- /// Find a suitable wrap position. wrapPosition is the last position in the line to the left
- /// of the split.
+ /**
+ Finds a suitable wrap position. @a wrapPosition is the last position in the line to the left
+ of the split.
+ */
bool FindWrapPosition(const wxRichTextRange& range, wxDC& dc, int availableSpace, long& wrapPosition, wxArrayInt* partialExtents);
- /// Find the object at the given position
+ /**
+ Finds the object at the given position.
+ */
wxRichTextObject* FindObjectAtPosition(long position);
- /// Get the bullet text for this paragraph.
+ /**
+ Returns the bullet text for this paragraph.
+ */
wxString GetBulletText();
- /// Allocate or reuse a line object
+ /**
+ Allocates or reuses a line object.
+ */
wxRichTextLine* AllocateLine(int pos);
- /// Clear remaining unused line objects, if any
+ /**
+ Clears remaining unused line objects, if any.
+ */
bool ClearUnusedLines(int lineCount);
- /// Get combined attributes of the base style, paragraph style and character style. We use this to dynamically
- /// retrieve the actual style.
+ /**
+ Returns combined attributes of the base style, paragraph style and character style. We use this to dynamically
+ retrieve the actual style.
+ */
wxRichTextAttr GetCombinedAttributes(const wxRichTextAttr& contentStyle, bool includingBoxAttr = false) const;
- /// Get combined attributes of the base style and paragraph style.
+ /**
+ Returns the combined attributes of the base style and paragraph style.
+ */
wxRichTextAttr GetCombinedAttributes(bool includingBoxAttr = false) const;
- /// Get the first position from pos that has a line break character.
+ /**
+ Returns the first position from pos that has a line break character.
+ */
long GetFirstLineBreakPosition(long pos);
- /// Create default tabstop array
+ /**
+ Creates a default tabstop array.
+ */
static void InitDefaultTabs();
- /// Clear default tabstop array
+ /**
+ Clears the default tabstop array.
+ */
static void ClearDefaultTabs();
- /// Get default tabstop array
+ /**
+ Returns the default tabstop array.
+ */
static const wxArrayInt& GetDefaultTabs() { return sm_defaultTabs; }
- /// Layout the floats object
+ /**
+ Lays out the floating objects.
+ */
void LayoutFloat(wxDC& dc, const wxRect& rect, int style, wxRichTextFloatCollector* floatCollector);
protected:
- /// The lines that make up the wrapped paragraph
+
+ // The lines that make up the wrapped paragraph
wxRichTextLineList m_cachedLines;
- /// Default tabstops
+ // Default tabstops
static wxArrayInt sm_defaultTabs;
friend class wxRichTextFloatCollector;
};
-/*!
- * wxRichTextPlainText class declaration
- * This object represents a single piece of text.
- */
+/**
+ @class wxRichTextPlainText
+
+ This object represents a single piece of text.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextPlainText: public wxRichTextObject
{
wxRichTextPlainText(const wxString& text = wxEmptyString, wxRichTextObject* parent = NULL, wxRichTextAttr* style = NULL);
wxRichTextPlainText(const wxRichTextPlainText& obj): wxRichTextObject() { Copy(obj); }
-// Overrideables
+// Overridables
- /// Draw the item
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
- /// Lay the item out
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
- /// Gets the object size for the given range. Returns false if the range
- /// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
- /// Get any text in this object for the given range
virtual wxString GetTextForRange(const wxRichTextRange& range) const;
- /// Do a split, returning an object containing the second part, and setting
- /// the first part in 'this'.
virtual wxRichTextObject* DoSplit(long pos);
- /// Calculate range
virtual void CalculateRange(long start, long& end);
- /// Delete range
virtual bool DeleteRange(const wxRichTextRange& range);
- /// Returns true if the object is empty
virtual bool IsEmpty() const { return m_text.empty(); }
- /// Returns true if this object can merge itself with the given one.
virtual bool CanMerge(wxRichTextObject* object) const;
- /// Returns true if this object merged itself with the given one.
- /// The calling code will then delete the given object.
virtual bool Merge(wxRichTextObject* object);
- /// Dump to output stream for debugging
virtual void Dump(wxTextOutputStream& stream);
/// Get the first position from pos that has a line break character.
virtual bool UsesParagraphAttributes() const { return false; }
#if wxUSE_XML
- /// Import this object from XML
virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
#endif
#if wxRICHTEXT_HAVE_DIRECT_OUTPUT
- /// Export this object directly to the given stream.
virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
#endif
#if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
- /// Export this object to the given parent node, usually creating at least one child node.
virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
#endif
- /// What is the XML node name of this object?
virtual wxString GetXMLNodeName() const { return wxT("text"); }
// Accessors
wxString m_text;
};
-/*!
- * wxRichTextImageBlock stores information about an image, in binary in-memory form
- */
+/**
+ @class wxRichTextImageBlock
-class WXDLLIMPEXP_FWD_BASE wxDataInputStream;
-class WXDLLIMPEXP_FWD_BASE wxDataOutputStream;
+ This class stores information about an image, in binary in-memory form.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextImageBlock: public wxObject
{
wxBitmapType m_imageType;
};
-/*!
- * wxRichTextImage class declaration
- * This object represents an image.
- */
+/**
+ @class wxRichTextImage
+
+ This class implements a graphic object.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl, wxRichTextImageBlock
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextImage: public wxRichTextObject
{
wxRichTextImage(const wxRichTextImageBlock& imageBlock, wxRichTextObject* parent = NULL, wxRichTextAttr* charStyle = NULL);
wxRichTextImage(const wxRichTextImage& obj): wxRichTextObject(obj) { Copy(obj); }
-// Overrideables
+// Overridables
- /// Draw the item
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
- /// Lay the item out
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
- /// Get the object size for the given range. Returns false if the range
- /// is invalid for this object.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
/// Get the 'natural' size for an object. For an image, it would be the
/// image size.
virtual wxTextAttrSize GetNaturalSize() const;
- /// Returns true if the object is empty. An image is never empty; if the image is broken, that's not the same thing as empty.
virtual bool IsEmpty() const { return false; /* !m_imageBlock.Ok(); */ }
- /// Can we edit properties via a GUI?
virtual bool CanEditProperties() const { return true; }
- /// Edit properties via a GUI
virtual bool EditProperties(wxWindow* parent, wxRichTextBuffer* buffer);
- /// Return the label to be used for the properties context menu item.
virtual wxString GetPropertiesMenuLabel() const { return _("&Picture"); }
- /// Does this object take note of paragraph attributes? Text and image objects don't.
virtual bool UsesParagraphAttributes() const { return false; }
#if wxUSE_XML
- /// Import this object from XML
virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
#endif
#if wxRICHTEXT_HAVE_DIRECT_OUTPUT
- /// Export this object directly to the given stream.
virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
#endif
#if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
- /// Export this object to the given parent node, usually creating at least one child node.
virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
#endif
// Images can be floatable (optionally).
virtual bool IsFloatable() const { return true; }
- /// What is the XML node name of this object?
virtual wxString GetXMLNodeName() const { return wxT("image"); }
// Accessors
wxBitmap m_imageCache;
};
-
-/*!
- * wxRichTextBuffer class declaration
- * This is a kind of box, used to represent the whole buffer
- */
-
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextCommand;
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextAction;
+/**
+ @class wxRichTextBuffer
+
+ This is a kind of paragraph layout box, used to represent the whole buffer.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextParagraphLayoutBox, wxRichTextCtrl
+*/
+
class WXDLLIMPEXP_RICHTEXT wxRichTextBuffer: public wxRichTextParagraphLayoutBox
{
DECLARE_DYNAMIC_CLASS(wxRichTextBuffer)
// Implementation
- /// Hit-testing: returns a flag indicating hit test details, plus
- /// information about position
virtual int HitTest(wxDC& dc, const wxPoint& pt, long& textPosition, wxRichTextObject** obj, wxRichTextObject** contextObj, int flags = 0);
/// Copy
wxRichTextCell(const wxRichTextCell& obj): wxRichTextBox() { Copy(obj); }
-// Overrideables
-
- /**
- Draws the item.
- */
+// Overridables
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
- /**
- Returns the XML node name of this object.
- */
-
virtual wxString GetXMLNodeName() const { return wxT("cell"); }
- /// Can we edit properties via a GUI?
virtual bool CanEditProperties() const { return true; }
- /// Edit properties via a GUI
virtual bool EditProperties(wxWindow* parent, wxRichTextBuffer* buffer);
- /// Return the label to be used for the properties context menu item.
virtual wxString GetPropertiesMenuLabel() const { return _("&Cell"); }
// Accessors
// Operations
- /**
- Makes a clone of this object.
- */
virtual wxRichTextObject* Clone() const { return new wxRichTextCell(*this); }
- /**
- Copies this object.
- */
void Copy(const wxRichTextCell& obj);
protected:
wxRichTextTable(const wxRichTextTable& obj): wxRichTextBox() { Copy(obj); }
-// Overrideables
+// Overridables
- // Draws the object.
virtual bool Draw(wxDC& dc, const wxRichTextRange& range, const wxRichTextSelection& selection, const wxRect& rect, int descent, int style);
- // Returns the XML node name of this object.
virtual wxString GetXMLNodeName() const { return wxT("table"); }
- // Lays the object out.
virtual bool Layout(wxDC& dc, const wxRect& rect, int style);
- // Gets the range size.
virtual bool GetRangeSize(const wxRichTextRange& range, wxSize& size, int& descent, wxDC& dc, int flags, wxPoint position = wxPoint(0,0), wxArrayInt* partialExtents = NULL) const;
- // Deletes content in the given range.
virtual bool DeleteRange(const wxRichTextRange& range);
- // Gets any text in this object for the given range.
virtual wxString GetTextForRange(const wxRichTextRange& range) const;
#if wxUSE_XML
- // Import this object from XML
virtual bool ImportFromXML(wxRichTextBuffer* buffer, wxXmlNode* node, wxRichTextXMLHandler* handler, bool* recurse);
#endif
#if wxRICHTEXT_HAVE_DIRECT_OUTPUT
- // Export this object directly to the given stream.
virtual bool ExportXML(wxOutputStream& stream, int indent, wxRichTextXMLHandler* handler);
#endif
#if wxRICHTEXT_HAVE_XMLDOCUMENT_OUTPUT
- // Export this object to the given parent node, usually creating at least one child node.
virtual bool ExportXML(wxXmlNode* parent, wxRichTextXMLHandler* handler);
#endif
- /// Finds the absolute position and row height for the given character position
virtual bool FindPosition(wxDC& dc, long index, wxPoint& pt, int* height, bool forceLineStart);
- /// Calculate range
virtual void CalculateRange(long start, long& end);
- /// Can this object handle the selections of its children? FOr example, a table.
+ // Can this object handle the selections of its children? FOr example, a table.
virtual bool HandlesChildSelections() const { return true; }
/// Returns a selection object specifying the selections between start and end character positions.
/// For example, a table would deduce what cells (of range length 1) are selected when dragging across the table.
virtual wxRichTextSelection GetSelection(long start, long end) const;
- /// Can we edit properties via a GUI?
virtual bool CanEditProperties() const { return true; }
- /// Edit properties via a GUI
virtual bool EditProperties(wxWindow* parent, wxRichTextBuffer* buffer);
- /// Return the label to be used for the properties context menu item.
virtual wxString GetPropertiesMenuLabel() const { return _("&Table"); }
- /// Returns true if objects of this class can accept the focus, i.e. a call to SetFocusObject
- /// is possible. For example, containers supporting text, such as a text box object, can accept the focus,
- /// but a table can't (set the focus to individual cells instead).
+ // Returns true if objects of this class can accept the focus, i.e. a call to SetFocusObject
+ // is possible. For example, containers supporting text, such as a text box object, can accept the focus,
+ // but a table can't (set the focus to individual cells instead).
virtual bool AcceptsFocus() const { return false; }
// Accessors
// Problem: if boxes are immediate children of a box, this will cause problems
// with wxRichTextParagraphLayoutBox functions (and functions elsewhere) that
// expect to find just paragraphs. May have to adjust the way we handle the
- // hierarchy to accept non-paragraph objects in a a paragraph layout box.
+ // hierarchy to accept non-paragraph objects in a paragraph layout box.
// We'll be overriding much wxRichTextParagraphLayoutBox functionality so this
// may not be such a problem. Perhaps the table should derive from a different
// class?
wxRICHTEXT_CHANGE_OBJECT
};
-/*!
- * A class for specifying an object anywhere in an object hierarchy,
- * without using a pointer, necessary since wxRTC commands may delete
- * and recreate sub-objects so physical object addresses change. An array
- * of positions (one per hierarchy level) is used.
- *
- */
+/**
+ @class wxRichTextObjectAddress
+
+ A class for specifying an object anywhere in an object hierarchy,
+ without using a pointer, necessary since wxRTC commands may delete
+ and recreate sub-objects so physical object addresses change. An array
+ of positions (one per hierarchy level) is used.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextCommand
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextObjectAddress
{
wxArrayInt m_address;
};
-/*!
- * Command classes for undo/redo
- *
- */
-
class WXDLLIMPEXP_FWD_RICHTEXT wxRichTextAction;
+
+/**
+ @class wxRichTextCommand
+
+ Implements a command on the undo/redo stack. A wxRichTextCommand object contains one or more wxRichTextAction
+ objects, allowing aggregation of a number of operations into one command.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextAction
+*/
+
class WXDLLIMPEXP_RICHTEXT wxRichTextCommand: public wxCommand
{
public:
wxList m_actions;
};
-/*!
- * wxRichTextAction class declaration
- * There can be more than one action in a command.
- */
+/**
+ @class wxRichTextAction
+
+ Implements a part of a command.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextCommand
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextAction: public wxObject
{
// in a larger document
#define wxRICHTEXT_HANDLER_CONVERT_FACENAMES 0x0100
-/*!
- * wxRichTextFileHandler
- * Base class for file handlers
- */
+/**
+ @class wxRichTextFileHandler
+
+ The base class for file handlers.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextFileHandler: public wxObject
{
bool m_visible;
};
-/*!
- * wxRichTextPlainTextHandler
- * Plain text handler
- */
+/**
+ @class wxRichTextPlainTextHandler
+
+ Implements saving a buffer to plain text.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextFileHandler, wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextPlainTextHandler: public wxRichTextFileHandler
{
#if wxUSE_DATAOBJ
-/*!
- * The data object for a wxRichTextBuffer
- */
+/**
+ @class wxRichTextBufferDataObject
+
+ Implements a rich text data object for clipboard transfer.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxDataObjectSimple, wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextBufferDataObject: public wxDataObjectSimple
{
#endif
-/*!
- * wxRichTextRenderer isolates common drawing functionality
- */
+/**
+ @class wxRichTextRenderer
+
+ This class isolates some common drawing functionality.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextRenderer: public wxObject
{
virtual bool EnumerateStandardBulletNames(wxArrayString& bulletNames) = 0;
};
-/*!
- * wxRichTextStdRenderer: standard renderer
- */
+/**
+ @class wxRichTextStdRenderer
+
+ The standard renderer for drawing bullets.
+
+ @library{wxrichtext}
+ @category{richtext}
+
+ @see wxRichTextRenderer, wxRichTextBuffer, wxRichTextCtrl
+*/
class WXDLLIMPEXP_RICHTEXT wxRichTextStdRenderer: public wxRichTextRenderer
{