wxHtmlListBox is an implementation of wxVListBox which shows HTML content in the listbox rows. This is still an abstract base class and you will need to derive your own class from it (see htlbox sample for the example) but you will only need to override a single OnGetItem() function.
Derived from
Include files
<wx/htmllbox.h>
Members
wxHtmlListBox::wxHtmlListBox
wxHtmlListBox::~wxHtmlListBox
wxHtmlListBox::Create
wxHtmlListBox::GetFileSystem
wxHtmlListBox::GetSelectedTextBgColour
wxHtmlListBox::GetSelectedTextColour
wxHtmlListBox::OnGetItem
wxHtmlListBox::OnGetItemMarkup
wxHtmlListBox(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = wxVListBoxNameStr)
Normal constructor which calls Create() internally.
wxHtmlListBox()
Default constructor, you must call Create() later.
~wxHtmlListBox()
Destructor cleans up whatever resources we use.
bool Create(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, const wxString& name = wxVListBoxNameStr)
Creates the control and optionally sets the initial number of items in it (it may also be set or changed later with SetItemCount()).
There are no special styles defined for wxHtmlListBox, in particular the wxListBox styles can not be used here.
Returns true on success or false if the control couldn't be created
wxFileSystem& GetFileSystem()
const wxFileSystem& GetFileSystem() const
Returns the wxFileSystem used by the HTML parser of this object. The file system object is used to resolve the paths in HTML fragments displayed in the control and you should use wxFileSystem::ChangePathTo if you use relative paths for the images or other resources embedded in your HTML.
wxColour GetSelectedTextBgColour(const wxColour& colBg) const
This virtual function may be overridden to change the appearance of the background of the selected cells in the same way as GetSelectedTextColour.
It should be rarely, if ever, used because SetSelectionBackground allows to change the selection background for all cells at once and doing anything more fancy is probably going to look strangely.
See also
wxColour GetSelectedTextColour(const wxColour& colFg) const
This virtual function may be overridden to customize the appearance of the selected cells. It is used to determine how the colour colFg is going to look inside selection. By default all original colours are completely ignored and the standard, system-dependent, selection colour is used but the program may wish to override this to achieve some custom appearance.
See also
GetSelectedTextBgColour,
SetSelectionBackground,
wxSystemSettings::GetColour
wxString OnGetItem(size_t n) const
This method must be implemented in the derived class and should return the body (i.e. without <html> nor <body> tags) of the HTML fragment for the given item.
wxString OnGetItemMarkup(size_t n) const
This function may be overridden to decorate HTML returned by OnGetItem().