1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtmlListBox is a listbox whose items are wxHtmlCells
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_HTMLLBOX_H_
13 #define _WX_HTMLLBOX_H_
15 #include "wx/vlbox.h" // base class
17 class WXDLLIMPEXP_HTML wxHtmlCell
;
18 class WXDLLIMPEXP_HTML wxHtmlWinParser
;
19 class WXDLLIMPEXP_HTML wxHtmlListBoxCache
;
20 class WXDLLIMPEXP_HTML wxHtmlListBoxStyle
;
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
26 class WXDLLIMPEXP_HTML wxHtmlListBox
: public wxVListBox
29 // constructors and such
30 // ---------------------
32 // default constructor, you must call Create() later
33 wxHtmlListBox() { Init(); }
35 // normal constructor which calls Create() internally
36 wxHtmlListBox(wxWindow
*parent
,
37 wxWindowID id
= wxID_ANY
,
38 const wxPoint
& pos
= wxDefaultPosition
,
39 const wxSize
& size
= wxDefaultSize
,
41 const wxString
& name
= wxVListBoxNameStr
)
45 (void)Create(parent
, id
, pos
, size
, style
, name
);
48 // really creates the control and sets the initial number of items in it
49 // (which may be changed later with SetItemCount())
51 // the only special style which may be specified here is wxLB_MULTIPLE
53 // returns true on success or false if the control couldn't be created
54 bool Create(wxWindow
*parent
,
55 wxWindowID id
= wxID_ANY
,
56 const wxPoint
& pos
= wxDefaultPosition
,
57 const wxSize
& size
= wxDefaultSize
,
59 const wxString
& name
= wxVListBoxNameStr
);
61 // destructor cleans up whatever resources we use
62 virtual ~wxHtmlListBox();
64 // override some base class virtuals
65 virtual void RefreshAll();
66 virtual void SetItemCount(size_t count
);
69 // this method must be implemented in the derived class and should return
70 // the body (i.e. without <html>) of the HTML for the given item
71 virtual wxString
OnGetItem(size_t n
) const = 0;
73 // this function may be overridden to decorate HTML returned by OnGetItem()
74 virtual wxString
OnGetItemMarkup(size_t n
) const;
77 // this method allows to customize the selection appearance: it may be used
78 // to specify the colour of the text which normally has the given colour
79 // colFg when it is inside the selection
81 // by default, the original colour is not used at all and all text has the
82 // same (default for this system) colour inside selection
83 virtual wxColour
GetSelectedTextColour(const wxColour
& colFg
) const;
85 // this is the same as GetSelectedTextColour() but allows to customize the
86 // background colour -- this is even more rarely used as you can change it
87 // globally using SetSelectionBackground()
88 virtual wxColour
GetSelectedTextBgColour(const wxColour
& colBg
) const;
91 // we implement both of these functions in terms of OnGetItem(), they are
92 // not supposed to be overridden by our descendants
93 virtual void OnDrawItem(wxDC
& dc
, const wxRect
& rect
, size_t n
) const;
94 virtual wxCoord
OnMeasureItem(size_t n
) const;
98 void OnSize(wxSizeEvent
& event
);
101 // common part of all ctors
104 // ensure that the given item is cached
105 void CacheItem(size_t n
) const;
108 // this class caches the pre-parsed HTML to speed up display
109 wxHtmlListBoxCache
*m_cache
;
111 // HTML parser we use
112 wxHtmlWinParser
*m_htmlParser
;
114 // rendering style for the parser which allows us to customize our colours
115 wxHtmlListBoxStyle
*m_htmlRendStyle
;
118 // it calls our GetSelectedTextColour() and GetSelectedTextBgColour()
119 friend class wxHtmlListBoxStyle
;
122 DECLARE_EVENT_TABLE()
125 #endif // _WX_HTMLLBOX_H_