Add documentation for some additional cell types so they can be seen in Phoenix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-04-24 02:40:21 +00:00
parent c0d87687f3
commit a75faeac69

View File

@@ -713,3 +713,53 @@ public:
*/
wxHtmlWidgetCell(wxWindow* wnd, int w = 0);
};
/**
@class wxHtmlWordCell
This html cell represents a single word or text fragment in the document stream.
@library{wxhtml}
@category{html}
*/
class wxHtmlWordCell : public wxHtmlCell
{
public:
wxHtmlWordCell(const wxString& word, const wxDC& dc);
};
/**
@class wxHtmlWordWithTabsCell
wxHtmlWordCell is a specialization for storing text fragments with
embedded tab characters.
@library{wxhtml}
@category{html}
*/
class wxHtmlWordWithTabsCell : public wxHtmlWordCell
{
public:
wxHtmlWordWithTabsCell(const wxString& word,
const wxString& wordOrig,
size_t linepos,
const wxDC& dc);
};
/**
@class wxHtmlFontCell
This cell represents a font change in the document stream.
@library{wxhtml}
@category{html}
*/
class wxHtmlFontCell : public wxHtmlCell
{
public:
wxHtmlFontCell(wxFont *font);
};