class WXDLLIMPEXP_HTML wxHtmlListBoxCache;
class WXDLLIMPEXP_HTML wxHtmlListBoxStyle;
-extern WXDLLEXPORT_DATA(const wxChar) wxHtmlListBoxNameStr[];
-extern WXDLLEXPORT_DATA(const wxChar) wxSimpleHtmlListBoxNameStr[];
+extern WXDLLIMPEXP_DATA_HTML(const wxChar) wxHtmlListBoxNameStr[];
+extern WXDLLIMPEXP_DATA_HTML(const wxChar) wxSimpleHtmlListBoxNameStr[];
// ----------------------------------------------------------------------------
// wxHtmlListBox
// This method may be overriden to handle clicking on a link in
// the listbox. By default, clicking links is ignored.
- virtual void OnLinkClicked(size_t WXUNUSED(n),
- const wxHtmlLinkInfo& WXUNUSED(link)) { }
+ virtual void OnLinkClicked(size_t n, const wxHtmlLinkInfo& link);
// event handlers
void OnSize(wxSizeEvent& event);
long style = wxHLB_DEFAULT_STYLE,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxSimpleHtmlListBoxNameStr);
-
+
virtual ~wxSimpleHtmlListBox();
// these must be overloaded otherwise the compiler will complain
// about wxItemContainerImmutable::[G|S]etSelection being pure virtuals...
void SetSelection(int n)
- { return wxVListBox::SetSelection(n); }
+ { wxVListBox::SetSelection(n); }
int GetSelection() const
{ return wxVListBox::GetSelection(); }
virtual int DoInsert(const wxString& item, unsigned int pos);
virtual void DoSetItemClientData(unsigned int n, void *clientData)
- { m_clientData[n] = clientData; }
+ { m_HTMLclientData[n] = clientData; }
virtual void *DoGetItemClientData(unsigned int n) const
- { return m_clientData[n]; }
+ { return m_HTMLclientData[n]; }
virtual void DoSetItemClientObject(unsigned int n, wxClientData *clientData)
- { m_clientData[n] = (void *)clientData; }
+ { m_HTMLclientData[n] = (void *)clientData; }
virtual wxClientData *DoGetItemClientObject(unsigned int n) const
- { return (wxClientData *)m_clientData[n]; }
+ { return (wxClientData *)m_HTMLclientData[n]; }
// calls wxHtmlListBox::SetItemCount() and RefreshAll()
void UpdateCount();
// overload these functions just to change their visibility: users of
// wxSimpleHtmlListBox shouldn't be allowed to call them directly!
virtual void SetItemCount(size_t count)
- { return wxHtmlListBox::SetItemCount(count); }
+ { wxHtmlListBox::SetItemCount(count); }
virtual void SetLineCount(size_t count)
- { return wxHtmlListBox::SetLineCount(count); }
+ { wxHtmlListBox::SetLineCount(count); }
virtual wxString OnGetItem(size_t n) const
{ return m_items[n]; }
wxArrayString m_items;
- wxArrayPtrVoid m_clientData;
+ wxArrayPtrVoid m_HTMLclientData;
+ // Note: For the benefit of old compilers (like gcc-2.8) this should
+ // not be named m_clientdata as that clashes with the name of an
+ // anonymous struct member in wxEvtHandler, which we derive from.
DECLARE_NO_COPY_CLASS(wxSimpleHtmlListBox)
};