/**
Lay the item out at the specified position with the given size constraint.
- Layout must set the cached size. @rect is the available space for the object,
+ Layout must set the cached size. @a rect is the available space for the object,
and @a parentRect is the container that is used to determine a relative size
or position (for example if a text box must be 50% of the parent text box).
*/
/**
Lay the item out at the specified position with the given size constraint.
- Layout must set the cached size. @rect is the available space for the object,
+ Layout must set the cached size. @a rect is the available space for the object,
and @a parentRect is the container that is used to determine a relative size
or position (for example if a text box must be 50% of the parent text box).
*/
/**
Constructor, creating a field type definition with a text label.
- @param parent
+ @param name
The name of the type definition. This must be unique, and is the type
name used when adding a field to a control.
@param label
/**
Constructor, creating a field type definition with a bitmap label.
- @param parent
+ @param name
The name of the type definition. This must be unique, and is the type
name used when adding a field to a control.
- @param label
+ @param bitmap
The bitmap label to be shown on the field.
@param displayStyle
The display style: one of wxRICHTEXT_FIELD_STYLE_RECTANGLE,
/**
Lay the item out at the specified position with the given size constraint.
- Layout must set the cached size. @rect is the available space for the object,
+ Layout must set the cached size. @a rect is the available space for the object,
and @a parentRect is the container that is used to determine a relative size
or position (for example if a text box must be 50% of the parent text box).
*/
/**
Sets the wxRichTextObject object that currently has the editing focus.
+ @param obj
+ The wxRichTextObject to set focus on.
@param setCaretPosition
Optionally set the caret position.
*/
@param commandType
The type of the event.
- @param id
+ @param winid
Window identifier. The value @c wxID_ANY indicates a default value.
*/
wxRichTextEvent(wxEventType commandType = wxEVT_NULL, int winid = 0);
/**
Prints the given buffer. The function takes its own copy of @a buffer.
- @showPrintDialog can be @true to show the print dialog, or @false to print quietly.
+ @a showPrintDialog can be @true to show the print dialog, or @false to print quietly.
*/
bool PrintBuffer(const wxRichTextBuffer& buffer, bool showPrintDialog = true);
/**
Prints the given file. @a richTextFile can be a text file or XML file,
- or other file depending on the available file handlers. @showPrintDialog
+ or other file depending on the available file handlers. @a showPrintDialog
can be @true to show the print dialog, or @false to print quietly.
*/
bool PrintFile(const wxString& richTextFile, bool showPrintDialog = true);