Fixed a few Doxygen syntax errors.

This commit is contained in:
Bryan Petty
2015-10-31 14:35:30 -06:00
parent 98176fd7ac
commit 18b4bc7dd3
6 changed files with 38 additions and 35 deletions

View File

@@ -124,7 +124,7 @@ And if you have any questions, you can join wxWidgets community using
- Web-based <a href="https://forums.wxwidgets.org/">wxForum</a>
- <a href="https://www.wxwidgets.org/support/mailing-lists/">Mailing lists</a>
- <a href="https://www.wxwidgets.org/support/irc/">#wxwidgets IRC Channel</a>
- <a href="https://www.wxwidgets.org/support/irc/">IRC Channel</a>
- Or asking questions with @c wxwidgets tag on Stack Overflow:
https://stackoverflow.com/questions/tagged/wxwidgets

View File

@@ -24,13 +24,13 @@ developing native cross-platform GUI applications in C++!
@n
If you are new to wxWidgets, please start with the @subpage page_introduction
"introduction" and follow with the @subpage page_topics "programming guides",
with maybe a look at @subpage page_samples "the samples" as you go. If you are
already familiar with wxWidgets, please read about @subpage
overview_changes_since28 "the changes" in the latest version compared to 2.8
series. And you can also follow the links in the reference section or jump
directly to the <a href="classes.html">alphabetical list of classes</a>
to find out more about the topic you are interested in.
and follow with the @subpage page_topics, with maybe a look at
@subpage page_samples as you go. If you are already familiar with wxWidgets,
please read about @subpage overview_changes_since28 "the changes" in the latest
version compared to 2.8 series. And you can also follow the links in the
reference section or jump directly to the
<a href="classes.html">alphabetical list of classes</a> to find out more about
the topic you are interested in.
@section manual_user User Manual

View File

@@ -33,7 +33,8 @@
This window is rather plain by default but can be customized by passing
wxBusyInfo constructor an object of wxBusyInfoFlags class instead of a
simple message. Here is an example from the @ref page_samples_dialogs:
simple message. Here is an example from the dialogs sample:
@code
wxBusyInfo info
(
@@ -48,7 +49,8 @@
.Transparency(4*wxALPHA_OPAQUE/5)
);
@endcode
showing that separate title and text can be set, and that simple markup
This shows that separate title and text can be set, and that simple markup
(@ref wxControl::SetLabelMarkup()) can be used in them, and that it's also
possible to add an icon and customize the colours and transparency of the
window.

View File

@@ -110,22 +110,20 @@ public:
/**
@class wxHtmlWindow
wxHtmlWindow is probably the only class you will directly use unless you want
to do something special (like adding new tag handlers or MIME filters).
wxHtmlWindow is probably the only class you will directly use unless you
want to do something special (like adding new tag handlers or MIME filters).
The purpose of this class is to display rich content pages (either local file or
downloaded via HTTP protocol) in a window based on a subset of the HTML standard.
The width of the window is constant - given in the constructor - and virtual height
is changed dynamically depending on page size.
Once the window is created you can set its content by calling SetPage() with raw HTML,
LoadPage() with a wxFileSystem location or LoadFile() with a filename.
The purpose of this class is to display rich content pages (either local
file or downloaded via HTTP protocol) in a window based on a subset of the
HTML standard. The width of the window is constant, given in the constructor
and virtual height is changed dynamically depending on page size. Once the
window is created you can set its content by calling SetPage() with raw
HTML, LoadPage() with a wxFileSystem location or LoadFile() with a filename.
@note
If you want complete HTML/CSS support as well as a Javascript engine, see instead
wxWebView.
@note If you want complete HTML/CSS support as well as a Javascript engine,
consider using wxWebView instead.
@note
wxHtmlWindow uses the wxImage class for displaying images, as such you need to
wxHtmlWindow uses the wxImage class for displaying images, so you need to
initialize the handlers for any image formats you use before loading a page.
See ::wxInitAllImageHandlers and wxImage::AddHandler.
@@ -139,7 +137,6 @@ public:
Don't allow the user to select text.
@endStyleTable
@beginEventEmissionTable{wxHtmlCellEvent, wxHtmlLinkEvent}
@event{EVT_HTML_CELL_CLICKED(id, func)}
A wxHtmlCell was clicked.
@@ -164,6 +161,7 @@ public:
/**
Constructor.
The parameters are the same as wxScrolled::wxScrolled() constructor.
*/
wxHtmlWindow(wxWindow *parent, wxWindowID id = wxID_ANY,
@@ -173,11 +171,16 @@ public:
const wxString& name = "htmlWindow");
/**
Adds @ref overview_html_filters "input filter" to the static list of available
filters. These filters are present by default:
- @c text/html MIME type
- @c image/* MIME types
- Plain Text filter (this filter is used if no other filter matches)
Adds an @ref overview_html_filters "input filter" to the static list of
available filters. These filters are present by default:
@code
text/html
text/plain
image/*
@endcode
The plain text filter will be used if no other filter matches.
*/
static void AddFilter(wxHtmlFilter* filter);
@@ -622,4 +625,3 @@ public:
*/
void SetLinkClicked(bool linkclicked);
};

View File

@@ -37,7 +37,7 @@
@since 3.1.0
@library{core}
@library{wxcore}
@category{ctrl}
*/
class wxNativeWindow : public wxWindow

View File

@@ -58,7 +58,7 @@ enum wxXmlNodeType
If @c wxUSE_UNICODE is 0, all strings are encoded in the encoding given to
wxXmlDocument::Load (default is UTF-8).
@Note
@note
Once a wxXmlNode has been added to a wxXmlDocument it becomes owned by the
document and this has two implications. Firstly, the wxXmlDocument takes
responsibility for deleting the node so the user should not @c delete it;
@@ -908,4 +908,3 @@ public:
*/
static wxVersionInfo GetLibraryVersionInfo();
};