Add missing methods

This commit is contained in:
Robin Dunn 2016-08-10 19:22:34 -07:00
parent cbbf8fe9d8
commit a5fe9de656
2 changed files with 10 additions and 0 deletions

View File

@ -90,6 +90,9 @@ public:
*/
static void AddFile(const wxString& filename, wxImage& image, wxBitmapType type);
static void AddFile(const wxString& filename, const wxBitmap& bitmap, wxBitmapType type);
static void AddFile(const wxString& filename, const wxString& textdata);
static void AddFile(const wxString& filename, const void *binarydata, size_t size);
//@}
//@{

View File

@ -435,6 +435,13 @@ public:
Sets the cell's position within parent container.
*/
virtual void SetPos(int x, int y);
/**
Converts the cell into text representation. If sel != NULL then
only part of the cell inside the selection is converted.
*/
virtual wxString ConvertToText(wxHtmlSelection* sel) const;
};