1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: generic/htmllbox.cpp
3 // Purpose: implementation of wxHtmlListBox
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // License: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/dcclient.h"
31 #include "wx/htmllbox.h"
33 #include "wx/html/htmlcell.h"
34 #include "wx/html/winpars.h"
36 // this hack forces the linker to always link in m_* files
37 #include "wx/html/forcelnk.h"
38 FORCE_WXHTML_MODULES()
40 // ============================================================================
42 // ============================================================================
44 // ----------------------------------------------------------------------------
46 // ----------------------------------------------------------------------------
48 // this class is used by wxHtmlListBox to cache the parsed representation of
49 // the items to avoid doing it anew each time an item must be drawn
50 class wxHtmlListBoxCache
55 for ( size_t n
= 0; n
< SIZE
; n
++ )
57 m_items
[n
] = (size_t)-1;
66 for ( size_t n
= 0; n
< SIZE
; n
++ )
72 // completely invalidate the cache
75 for ( size_t n
= 0; n
< SIZE
; n
++ )
77 m_items
[n
] = (size_t)-1;
83 // return the cached cell for this index or NULL if none
84 wxHtmlCell
*Get(size_t item
) const
86 for ( size_t n
= 0; n
< SIZE
; n
++ )
88 if ( m_items
[n
] == item
)
95 // returns true if we already have this item cached
96 bool Has(size_t item
) const { return Get(item
) != NULL
; }
98 // ensure that the item is cached
99 void Store(size_t item
, wxHtmlCell
*cell
)
101 delete m_cells
[m_next
];
102 m_cells
[m_next
] = cell
;
103 m_items
[m_next
] = item
;
105 // advance to the next item wrapping around if there are no more
106 if ( ++m_next
== SIZE
)
111 // the max number of the items we cache
114 // the index of the LRU (oldest) cell
117 // the parsed representation of the cached item or NULL
118 wxHtmlCell
*m_cells
[SIZE
];
120 // the index of the currently cached item (only valid if m_cells != NULL)
121 size_t m_items
[SIZE
];
124 // ----------------------------------------------------------------------------
125 // wxHtmlListBoxStyle
126 // ----------------------------------------------------------------------------
128 // just forward wxDefaultHtmlRenderingStyle callbacks to the main class so that
129 // they could be overridden by the user code
130 class wxHtmlListBoxStyle
: public wxDefaultHtmlRenderingStyle
133 wxHtmlListBoxStyle(wxHtmlListBox
& hlbox
) : m_hlbox(hlbox
) { }
135 virtual wxColour
GetSelectedTextColour(const wxColour
& colFg
)
137 return m_hlbox
.GetSelectedTextColour(colFg
);
140 virtual wxColour
GetSelectedTextBgColour(const wxColour
& colBg
)
142 return m_hlbox
.GetSelectedTextBgColour(colBg
);
146 const wxHtmlListBox
& m_hlbox
;
150 // ----------------------------------------------------------------------------
152 // ----------------------------------------------------------------------------
154 BEGIN_EVENT_TABLE(wxHtmlListBox
, wxVListBox
)
155 EVT_SIZE(wxHtmlListBox::OnSize
)
158 // ============================================================================
160 // ============================================================================
162 // ----------------------------------------------------------------------------
163 // wxHtmlListBox creation
164 // ----------------------------------------------------------------------------
166 void wxHtmlListBox::Init()
169 m_htmlRendStyle
= new wxHtmlListBoxStyle(*this);
170 m_cache
= new wxHtmlListBoxCache
;
173 bool wxHtmlListBox::Create(wxWindow
*parent
,
178 const wxString
& name
)
180 return wxVListBox::Create(parent
, id
, pos
, size
, style
, name
);
183 wxHtmlListBox::~wxHtmlListBox()
189 delete m_htmlParser
->GetDC();
193 delete m_htmlRendStyle
;
196 // ----------------------------------------------------------------------------
197 // wxHtmlListBox appearance
198 // ----------------------------------------------------------------------------
200 wxColour
wxHtmlListBox::GetSelectedTextColour(const wxColour
& colFg
) const
202 return m_htmlRendStyle
->
203 wxDefaultHtmlRenderingStyle::GetSelectedTextColour(colFg
);
207 wxHtmlListBox::GetSelectedTextBgColour(const wxColour
& WXUNUSED(colBg
)) const
209 return GetSelectionBackground();
212 // ----------------------------------------------------------------------------
213 // wxHtmlListBox items markup
214 // ----------------------------------------------------------------------------
216 wxString
wxHtmlListBox::OnGetItemMarkup(size_t n
) const
218 // we don't even need to wrap the value returned by OnGetItem() inside
219 // "<html><body>" and "</body></html>" because wxHTML can parse it even
220 // without these tags
224 // ----------------------------------------------------------------------------
225 // wxHtmlListBox cache handling
226 // ----------------------------------------------------------------------------
228 void wxHtmlListBox::CacheItem(size_t n
) const
230 if ( !m_cache
->Has(n
) )
234 wxHtmlListBox
*self
= wxConstCast(this, wxHtmlListBox
);
236 self
->m_htmlParser
= new wxHtmlWinParser
;
237 m_htmlParser
->SetDC(new wxClientDC(self
));
240 wxHtmlContainerCell
*cell
= (wxHtmlContainerCell
*)m_htmlParser
->
241 Parse(OnGetItemMarkup(n
));
242 wxCHECK_RET( cell
, _T("wxHtmlParser::Parse() returned NULL?") );
244 cell
->Layout(GetClientSize().x
- 2*GetMargins().x
);
246 m_cache
->Store(n
, cell
);
250 void wxHtmlListBox::OnSize(wxSizeEvent
& event
)
252 // we need to relayout all the cached cells
258 void wxHtmlListBox::RefreshAll()
262 wxVListBox::RefreshAll();
265 void wxHtmlListBox::SetItemCount(size_t count
)
267 // the items are going to change, forget the old ones
270 wxVListBox::SetItemCount(count
);
273 // ----------------------------------------------------------------------------
274 // wxHtmlListBox implementation of wxVListBox pure virtuals
275 // ----------------------------------------------------------------------------
277 void wxHtmlListBox::OnDrawItem(wxDC
& dc
, const wxRect
& rect
, size_t n
) const
281 wxHtmlCell
*cell
= m_cache
->Get(n
);
282 wxCHECK_RET( cell
, _T("this cell should be cached!") );
284 wxHtmlRenderingInfo htmlRendInfo
;
286 // draw the selected cell in selected state
289 wxHtmlSelection htmlSel
;
290 htmlSel
.Set(wxPoint(0, 0), cell
, wxPoint(INT_MAX
, INT_MAX
), cell
);
291 htmlRendInfo
.SetSelection(&htmlSel
);
292 if ( m_htmlRendStyle
)
293 htmlRendInfo
.SetStyle(m_htmlRendStyle
);
294 htmlRendInfo
.GetState().SetSelectionState(wxHTML_SEL_IN
);
297 // note that we can't stop drawing exactly at the window boundary as then
298 // even the visible cells part could be not drawn, so always draw the
300 cell
->Draw(dc
, rect
.x
, rect
.y
, 0, INT_MAX
, htmlRendInfo
);
303 wxCoord
wxHtmlListBox::OnMeasureItem(size_t n
) const
307 wxHtmlCell
*cell
= m_cache
->Get(n
);
308 wxCHECK_MSG( cell
, 0, _T("this cell should be cached!") );
310 return cell
->GetHeight() + cell
->GetDescent();