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
28 DECLARE_ABSTRACT_CLASS(wxHtmlListBox
)
30 // constructors and such
31 // ---------------------
33 // default constructor, you must call Create() later
34 wxHtmlListBox() { Init(); }
36 // normal constructor which calls Create() internally
37 wxHtmlListBox(wxWindow
*parent
,
38 wxWindowID id
= wxID_ANY
,
39 const wxPoint
& pos
= wxDefaultPosition
,
40 const wxSize
& size
= wxDefaultSize
,
42 const wxString
& name
= wxVListBoxNameStr
)
46 (void)Create(parent
, id
, pos
, size
, style
, name
);
49 // really creates the control and sets the initial number of items in it
50 // (which may be changed later with SetItemCount())
52 // the only special style which may be specified here is wxLB_MULTIPLE
54 // returns true on success or false if the control couldn't be created
55 bool Create(wxWindow
*parent
,
56 wxWindowID id
= wxID_ANY
,
57 const wxPoint
& pos
= wxDefaultPosition
,
58 const wxSize
& size
= wxDefaultSize
,
60 const wxString
& name
= wxVListBoxNameStr
);
62 // destructor cleans up whatever resources we use
63 virtual ~wxHtmlListBox();
65 // override some base class virtuals
66 virtual void RefreshAll();
67 virtual void SetItemCount(size_t count
);
70 // this method must be implemented in the derived class and should return
71 // the body (i.e. without <html>) of the HTML for the given item
72 virtual wxString
OnGetItem(size_t n
) const = 0;
74 // this function may be overridden to decorate HTML returned by OnGetItem()
75 virtual wxString
OnGetItemMarkup(size_t n
) const;
78 // this method allows to customize the selection appearance: it may be used
79 // to specify the colour of the text which normally has the given colour
80 // colFg when it is inside the selection
82 // by default, the original colour is not used at all and all text has the
83 // same (default for this system) colour inside selection
84 virtual wxColour
GetSelectedTextColour(const wxColour
& colFg
) const;
86 // this is the same as GetSelectedTextColour() but allows to customize the
87 // background colour -- this is even more rarely used as you can change it
88 // globally using SetSelectionBackground()
89 virtual wxColour
GetSelectedTextBgColour(const wxColour
& colBg
) const;
92 // we implement both of these functions in terms of OnGetItem(), they are
93 // not supposed to be overridden by our descendants
94 virtual void OnDrawItem(wxDC
& dc
, const wxRect
& rect
, size_t n
) const;
95 virtual wxCoord
OnMeasureItem(size_t n
) const;
99 void OnSize(wxSizeEvent
& event
);
102 // common part of all ctors
105 // ensure that the given item is cached
106 void CacheItem(size_t n
) const;
109 // this class caches the pre-parsed HTML to speed up display
110 wxHtmlListBoxCache
*m_cache
;
112 // HTML parser we use
113 wxHtmlWinParser
*m_htmlParser
;
115 // rendering style for the parser which allows us to customize our colours
116 wxHtmlListBoxStyle
*m_htmlRendStyle
;
119 // it calls our GetSelectedTextColour() and GetSelectedTextBgColour()
120 friend class wxHtmlListBoxStyle
;
123 DECLARE_EVENT_TABLE()
124 DECLARE_NO_COPY_CLASS(wxHtmlListBox
)
127 #endif // _WX_HTMLLBOX_H_