]> git.saurik.com Git - wxWidgets.git/blame - src/generic/htmllbox.cpp
added VC++ projects
[wxWidgets.git] / src / generic / htmllbox.cpp
CommitLineData
e0c6027b
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: generic/htmllbox.cpp
3// Purpose: implementation of wxHtmlListBox
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 31.05.03
7// RCS-ID: $Id$
8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9// License: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#ifndef WX_PRECOMP
bb178b29 28 #include "wx/dcclient.h"
e0c6027b
VZ
29#endif //WX_PRECOMP
30
31#include "wx/htmllbox.h"
32
33#include "wx/html/htmlcell.h"
34#include "wx/html/winpars.h"
35
5ecdc7ab
VZ
36// this hack forces the linker to always link in m_* files
37#include "wx/html/forcelnk.h"
38FORCE_WXHTML_MODULES()
39
9a9b4940 40// ============================================================================
e0c6027b 41// private classes
9a9b4940
VZ
42// ============================================================================
43
44// ----------------------------------------------------------------------------
45// wxHtmlListBoxCache
e0c6027b
VZ
46// ----------------------------------------------------------------------------
47
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
e0c6027b
VZ
50class wxHtmlListBoxCache
51{
52public:
5ecdc7ab
VZ
53 wxHtmlListBoxCache()
54 {
55 for ( size_t n = 0; n < SIZE; n++ )
56 {
57 m_items[n] = (size_t)-1;
58 m_cells[n] = NULL;
59 }
e0c6027b 60
5ecdc7ab
VZ
61 m_next = 0;
62 }
e0c6027b 63
5ecdc7ab 64 ~wxHtmlListBoxCache()
e0c6027b 65 {
5ecdc7ab
VZ
66 for ( size_t n = 0; n < SIZE; n++ )
67 {
68 delete m_cells[n];
69 }
70 }
e0c6027b 71
5ecdc7ab
VZ
72 // completely invalidate the cache
73 void Clear()
74 {
75 for ( size_t n = 0; n < SIZE; n++ )
76 {
77 m_items[n] = (size_t)-1;
78 delete m_cells[n];
79 m_cells[n] = NULL;
80 }
e0c6027b
VZ
81 }
82
83 // return the cached cell for this index or NULL if none
5ecdc7ab
VZ
84 wxHtmlCell *Get(size_t item) const
85 {
86 for ( size_t n = 0; n < SIZE; n++ )
87 {
88 if ( m_items[n] == item )
89 return m_cells[n];
90 }
91
92 return NULL;
93 }
94
95 // returns true if we already have this item cached
96 bool Has(size_t item) const { return Get(item) != NULL; }
97
98 // ensure that the item is cached
99 void Store(size_t item, wxHtmlCell *cell)
e0c6027b 100 {
5ecdc7ab
VZ
101 delete m_cells[m_next];
102 m_cells[m_next] = cell;
103 m_items[m_next] = item;
104
105 // advance to the next item wrapping around if there are no more
106 if ( ++m_next == SIZE )
107 m_next = 0;
e0c6027b
VZ
108 }
109
110private:
5ecdc7ab
VZ
111 // the max number of the items we cache
112 enum { SIZE = 50 };
113
114 // the index of the LRU (oldest) cell
115 size_t m_next;
116
e0c6027b 117 // the parsed representation of the cached item or NULL
5ecdc7ab 118 wxHtmlCell *m_cells[SIZE];
e0c6027b 119
5ecdc7ab
VZ
120 // the index of the currently cached item (only valid if m_cells != NULL)
121 size_t m_items[SIZE];
e0c6027b
VZ
122};
123
9a9b4940
VZ
124// ----------------------------------------------------------------------------
125// wxHtmlListBoxStyle
126// ----------------------------------------------------------------------------
127
128// just forward wxDefaultHtmlRenderingStyle callbacks to the main class so that
129// they could be overridden by the user code
130class wxHtmlListBoxStyle : public wxDefaultHtmlRenderingStyle
131{
132public:
133 wxHtmlListBoxStyle(wxHtmlListBox& hlbox) : m_hlbox(hlbox) { }
134
135 virtual wxColour GetSelectedTextColour(const wxColour& colFg)
136 {
137 return m_hlbox.GetSelectedTextColour(colFg);
138 }
139
140 virtual wxColour GetSelectedTextBgColour(const wxColour& colBg)
141 {
142 return m_hlbox.GetSelectedTextBgColour(colBg);
143 }
144
145private:
146 const wxHtmlListBox& m_hlbox;
147};
148
149
5ecdc7ab
VZ
150// ----------------------------------------------------------------------------
151// event tables
152// ----------------------------------------------------------------------------
153
154BEGIN_EVENT_TABLE(wxHtmlListBox, wxVListBox)
155 EVT_SIZE(wxHtmlListBox::OnSize)
156END_EVENT_TABLE()
157
e0c6027b
VZ
158// ============================================================================
159// implementation
160// ============================================================================
161
162// ----------------------------------------------------------------------------
163// wxHtmlListBox creation
164// ----------------------------------------------------------------------------
165
166void wxHtmlListBox::Init()
167{
168 m_htmlParser = NULL;
9a9b4940 169 m_htmlRendStyle = new wxHtmlListBoxStyle(*this);
e0c6027b
VZ
170 m_cache = new wxHtmlListBoxCache;
171}
172
173bool wxHtmlListBox::Create(wxWindow *parent,
174 wxWindowID id,
175 const wxPoint& pos,
176 const wxSize& size,
e0c6027b
VZ
177 long style,
178 const wxString& name)
179{
43e319a3 180 return wxVListBox::Create(parent, id, pos, size, style, name);
e0c6027b
VZ
181}
182
183wxHtmlListBox::~wxHtmlListBox()
184{
185 delete m_cache;
9a9b4940 186
e0c6027b
VZ
187 if ( m_htmlParser )
188 {
189 delete m_htmlParser->GetDC();
190 delete m_htmlParser;
191 }
9a9b4940
VZ
192
193 delete m_htmlRendStyle;
194}
195
196// ----------------------------------------------------------------------------
197// wxHtmlListBox appearance
198// ----------------------------------------------------------------------------
199
200wxColour wxHtmlListBox::GetSelectedTextColour(const wxColour& colFg) const
201{
202 return m_htmlRendStyle->
203 wxDefaultHtmlRenderingStyle::GetSelectedTextColour(colFg);
204}
205
206wxColour
207wxHtmlListBox::GetSelectedTextBgColour(const wxColour& WXUNUSED(colBg)) const
208{
209 return GetSelectionBackground();
e0c6027b
VZ
210}
211
212// ----------------------------------------------------------------------------
213// wxHtmlListBox items markup
214// ----------------------------------------------------------------------------
215
216wxString wxHtmlListBox::OnGetItemMarkup(size_t n) const
217{
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
221 return OnGetItem(n);
222}
223
5ecdc7ab
VZ
224// ----------------------------------------------------------------------------
225// wxHtmlListBox cache handling
226// ----------------------------------------------------------------------------
227
e0c6027b
VZ
228void wxHtmlListBox::CacheItem(size_t n) const
229{
230 if ( !m_cache->Has(n) )
231 {
232 if ( !m_htmlParser )
233 {
234 wxHtmlListBox *self = wxConstCast(this, wxHtmlListBox);
235
236 self->m_htmlParser = new wxHtmlWinParser;
237 m_htmlParser->SetDC(new wxClientDC(self));
238 }
239
240 wxHtmlContainerCell *cell = (wxHtmlContainerCell *)m_htmlParser->
241 Parse(OnGetItemMarkup(n));
242 wxCHECK_RET( cell, _T("wxHtmlParser::Parse() returned NULL?") );
243
5ecdc7ab 244 cell->Layout(GetClientSize().x - 2*GetMargins().x);
e0c6027b
VZ
245
246 m_cache->Store(n, cell);
247 }
248}
249
5ecdc7ab
VZ
250void wxHtmlListBox::OnSize(wxSizeEvent& event)
251{
252 // we need to relayout all the cached cells
253 m_cache->Clear();
254
255 event.Skip();
256}
257
258void wxHtmlListBox::RefreshAll()
259{
260 m_cache->Clear();
261
262 wxVListBox::RefreshAll();
263}
264
03495767
VZ
265void wxHtmlListBox::SetItemCount(size_t count)
266{
267 // the items are going to change, forget the old ones
268 m_cache->Clear();
269
270 wxVListBox::SetItemCount(count);
271}
272
e0c6027b
VZ
273// ----------------------------------------------------------------------------
274// wxHtmlListBox implementation of wxVListBox pure virtuals
275// ----------------------------------------------------------------------------
276
277void wxHtmlListBox::OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const
278{
279 CacheItem(n);
280
281 wxHtmlCell *cell = m_cache->Get(n);
282 wxCHECK_RET( cell, _T("this cell should be cached!") );
283
901b583c 284 wxHtmlRenderingInfo htmlRendInfo;
5ecdc7ab 285
e0c6027b
VZ
286 // draw the selected cell in selected state
287 if ( IsSelected(n) )
288 {
289 wxHtmlSelection htmlSel;
290 htmlSel.Set(wxPoint(0, 0), cell, wxPoint(INT_MAX, INT_MAX), cell);
901b583c 291 htmlRendInfo.SetSelection(&htmlSel);
9a9b4940
VZ
292 if ( m_htmlRendStyle )
293 htmlRendInfo.SetStyle(m_htmlRendStyle);
294 htmlRendInfo.GetState().SetSelectionState(wxHTML_SEL_IN);
e0c6027b 295 }
5ecdc7ab
VZ
296
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
299 // entire cell
901b583c 300 cell->Draw(dc, rect.x, rect.y, 0, INT_MAX, htmlRendInfo);
e0c6027b
VZ
301}
302
303wxCoord wxHtmlListBox::OnMeasureItem(size_t n) const
304{
305 CacheItem(n);
306
307 wxHtmlCell *cell = m_cache->Get(n);
308 wxCHECK_MSG( cell, 0, _T("this cell should be cached!") );
309
310 return cell->GetHeight() + cell->GetDescent();
311}
312