/**
wxChar is defined to be
- - @c char when <tt>wxUSE_UNICODE==0</tt>
- - @c wchar_t when <tt>wxUSE_UNICODE==1</tt> (the default).
+ \- @c char when <tt>wxUSE_UNICODE==0</tt>
+ \- @c wchar_t when <tt>wxUSE_UNICODE==1</tt> (the default).
*/
typedef wxUSE_UNICODE_dependent wxChar;
/**
wxSChar is defined to be
- - <tt>signed char</tt> when <tt>wxUSE_UNICODE==0</tt>
- - @c wchar_t when <tt>wxUSE_UNICODE==1</tt> (the default).
+ \- <tt>signed char</tt> when <tt>wxUSE_UNICODE==0</tt>
+ \- @c wchar_t when <tt>wxUSE_UNICODE==1</tt> (the default).
*/
typedef wxUSE_UNICODE_dependent wxSChar;
/**
wxUChar is defined to be
- - <tt>unsigned char</tt> when <tt>wxUSE_UNICODE==0</tt>
- - @c wchar_t when <tt>wxUSE_UNICODE==1</tt> (the default).
+ \- <tt>unsigned char</tt> when <tt>wxUSE_UNICODE==0</tt>
+ \- @c wchar_t when <tt>wxUSE_UNICODE==1</tt> (the default).
*/
typedef wxUSE_UNICODE_dependent wxUChar;
/**
wxStringCharType is defined to be:
- - @c char when <tt>wxUSE_UNICODE==0</tt>
- - @c char when <tt>wxUSE_UNICODE_WCHAR==0</tt> and <tt>wxUSE_UNICODE==1</tt>
- - @c wchar_t when <tt>wxUSE_UNICODE_WCHAR==1</tt> and <tt>wxUSE_UNICODE==1</tt>
+ \- @c char when <tt>wxUSE_UNICODE==0</tt>
+ \- @c char when <tt>wxUSE_UNICODE_WCHAR==0</tt> and <tt>wxUSE_UNICODE==1</tt>
+ \- @c wchar_t when <tt>wxUSE_UNICODE_WCHAR==1</tt> and <tt>wxUSE_UNICODE==1</tt>
The @c wxUSE_UNICODE_WCHAR symbol is defined to @c 1 when building on
Windows while it's defined to @c 0 when building on Unix, Linux or OS X.
First global option is the support for long (also known as GNU-style)
options. The long options are the ones which start with two dashes and look
- like "--verbose", i.e. they generally are complete words and not some
+ like "\--verbose", i.e. they generally are complete words and not some
abbreviations of them. As long options are used by more and more
applications, they are enabled by default, but may be disabled with
DisableLongOptions().
size_t GetParamCount() const;
/**
- Parse the command line, return 0 if ok, -1 if @c "-h" or @c "--help"
+ Parse the command line, return 0 if ok, -1 if @c "-h" or @c "\--help"
option was encountered and the help message was given or a positive
value if a syntax error occurred.
virtual bool FindPosition(wxDC& dc, wxRichTextDrawingContext& context, long index, wxPoint& pt, int* height, bool forceLineStart);
/**
- Returns the best size, i.e. the ideal starting size for this object irrespective
+ 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 wxString GetPropertiesMenuLabel() const { return wxEmptyString; }
/**
- Returns @true if objects of this class can accept the focus, i.e. a call to SetFocusObject
+ 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).
*/
wxString GetName() const { return m_properties.GetPropertyString(wxT("name")); }
/**
- Returns @true if this object is top-level, i.e. contains 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; }
virtual bool UpdateField(wxRichTextBuffer* buffer, wxRichTextField* obj) { return false; }
/**
- Returns @true if this object is top-level, i.e. contains 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(wxRichTextField* obj) const { return true; }
virtual void PaintBackground(wxDC& dc);
/**
- Other user defined painting after everything else (i.e. all text) is painted.
+ Other user defined painting after everything else (i.e.\ all text) is painted.
@since 2.9.1
*/