/////////////////////////////////////////////////////////////////////////////
// Name: html/winpars.h
-// Purpose: documentation for wxHtmlTagsModule class
+// Purpose: interface of wxHtmlTagsModule
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxhtml}
@category{FIXME}
- @seealso
- @ref overview_handlers "Tag Handlers", wxHtmlTagHandler, wxHtmlWinTagHandler,
+ @see @ref overview_handlers "Tag Handlers", wxHtmlTagHandler,
+ wxHtmlWinTagHandler,
*/
class wxHtmlTagsModule : public wxModule
{
};
+
/**
@class wxHtmlWinTagHandler
@headerfile winpars.h wx/html/winpars.h
};
+
/**
@class wxHtmlWinParser
@headerfile winpars.h wx/html/winpars.h
@library{wxhtml}
@category{html}
- @seealso
- @ref overview_handlers "Handlers overview"
+ @see @ref overview_handlers "Handlers overview"
*/
class wxHtmlWinParser : public wxHtmlParser
{
//@}
/**
- Adds module to the list of wxHtmlWinParser tag handler.
+ Adds module() to the list of wxHtmlWinParser tag handler.
*/
static void AddModule(wxHtmlTagsModule module);
/**
Closes the container, sets actual container to the parent one
- and returns pointer to it (see Overview).
+ and returns pointer to it (see Overview()).
*/
wxHtmlContainerCell* CloseContainer();
int GetCharWidth() const;
/**
- Returns pointer to the currently opened container (see Overview).
+ Returns pointer to the currently opened container (see Overview()).
Common use:
*/
wxHtmlContainerCell* GetContainer() const;
wxHtmlWindow* GetWindow();
/**
- Opens new container and returns pointer to it (see Overview).
+ Opens new container and returns pointer to it (see Overview()).
*/
wxHtmlContainerCell* OpenContainer();
*/
void SetLinkColor(const wxColour& clr);
};
+