]>
Commit | Line | Data |
---|---|---|
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> | |
0a53b9b8 | 9 | // License: wxWindows license |
e0c6027b VZ |
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 | ||
461dae94 VZ |
31 | #if wxUSE_HTML |
32 | ||
e0c6027b VZ |
33 | #include "wx/htmllbox.h" |
34 | ||
35 | #include "wx/html/htmlcell.h" | |
36 | #include "wx/html/winpars.h" | |
37 | ||
5ecdc7ab VZ |
38 | // this hack forces the linker to always link in m_* files |
39 | #include "wx/html/forcelnk.h" | |
40 | FORCE_WXHTML_MODULES() | |
41 | ||
bc55e31b VS |
42 | // ---------------------------------------------------------------------------- |
43 | // constants | |
44 | // ---------------------------------------------------------------------------- | |
45 | ||
46 | // small border always added to the cells: | |
47 | static const wxCoord CELL_BORDER = 2; | |
48 | ||
9ebb7cad VZ |
49 | const wxChar wxHtmlListBoxNameStr[] = wxT("htmlListBox"); |
50 | const wxChar wxSimpleHtmlListBoxNameStr[] = wxT("simpleHtmlListBox"); | |
51 | ||
9a9b4940 | 52 | // ============================================================================ |
e0c6027b | 53 | // private classes |
9a9b4940 VZ |
54 | // ============================================================================ |
55 | ||
56 | // ---------------------------------------------------------------------------- | |
57 | // wxHtmlListBoxCache | |
e0c6027b VZ |
58 | // ---------------------------------------------------------------------------- |
59 | ||
60 | // this class is used by wxHtmlListBox to cache the parsed representation of | |
61 | // the items to avoid doing it anew each time an item must be drawn | |
e0c6027b VZ |
62 | class wxHtmlListBoxCache |
63 | { | |
aead8a4e VZ |
64 | private: |
65 | // invalidate a single item, used by Clear() and InvalidateRange() | |
66 | void InvalidateItem(size_t n) | |
67 | { | |
68 | m_items[n] = (size_t)-1; | |
69 | delete m_cells[n]; | |
70 | m_cells[n] = NULL; | |
71 | } | |
72 | ||
e0c6027b | 73 | public: |
5ecdc7ab VZ |
74 | wxHtmlListBoxCache() |
75 | { | |
76 | for ( size_t n = 0; n < SIZE; n++ ) | |
77 | { | |
78 | m_items[n] = (size_t)-1; | |
79 | m_cells[n] = NULL; | |
80 | } | |
e0c6027b | 81 | |
5ecdc7ab VZ |
82 | m_next = 0; |
83 | } | |
e0c6027b | 84 | |
5ecdc7ab | 85 | ~wxHtmlListBoxCache() |
e0c6027b | 86 | { |
5ecdc7ab VZ |
87 | for ( size_t n = 0; n < SIZE; n++ ) |
88 | { | |
89 | delete m_cells[n]; | |
90 | } | |
91 | } | |
e0c6027b | 92 | |
5ecdc7ab VZ |
93 | // completely invalidate the cache |
94 | void Clear() | |
95 | { | |
96 | for ( size_t n = 0; n < SIZE; n++ ) | |
97 | { | |
aead8a4e | 98 | InvalidateItem(n); |
5ecdc7ab | 99 | } |
e0c6027b VZ |
100 | } |
101 | ||
102 | // return the cached cell for this index or NULL if none | |
5ecdc7ab VZ |
103 | wxHtmlCell *Get(size_t item) const |
104 | { | |
105 | for ( size_t n = 0; n < SIZE; n++ ) | |
106 | { | |
107 | if ( m_items[n] == item ) | |
108 | return m_cells[n]; | |
109 | } | |
110 | ||
111 | return NULL; | |
112 | } | |
113 | ||
114 | // returns true if we already have this item cached | |
115 | bool Has(size_t item) const { return Get(item) != NULL; } | |
116 | ||
117 | // ensure that the item is cached | |
118 | void Store(size_t item, wxHtmlCell *cell) | |
e0c6027b | 119 | { |
5ecdc7ab VZ |
120 | delete m_cells[m_next]; |
121 | m_cells[m_next] = cell; | |
122 | m_items[m_next] = item; | |
123 | ||
124 | // advance to the next item wrapping around if there are no more | |
125 | if ( ++m_next == SIZE ) | |
126 | m_next = 0; | |
e0c6027b VZ |
127 | } |
128 | ||
aead8a4e VZ |
129 | // forget the cached value of the item(s) between the given ones (inclusive) |
130 | void InvalidateRange(size_t from, size_t to) | |
131 | { | |
132 | for ( size_t n = 0; n < SIZE; n++ ) | |
133 | { | |
134 | if ( m_items[n] >= from && m_items[n] <= to ) | |
135 | { | |
136 | InvalidateItem(n); | |
137 | } | |
138 | } | |
139 | } | |
140 | ||
e0c6027b | 141 | private: |
5ecdc7ab VZ |
142 | // the max number of the items we cache |
143 | enum { SIZE = 50 }; | |
144 | ||
145 | // the index of the LRU (oldest) cell | |
146 | size_t m_next; | |
147 | ||
e0c6027b | 148 | // the parsed representation of the cached item or NULL |
5ecdc7ab | 149 | wxHtmlCell *m_cells[SIZE]; |
e0c6027b | 150 | |
5ecdc7ab VZ |
151 | // the index of the currently cached item (only valid if m_cells != NULL) |
152 | size_t m_items[SIZE]; | |
e0c6027b VZ |
153 | }; |
154 | ||
9a9b4940 VZ |
155 | // ---------------------------------------------------------------------------- |
156 | // wxHtmlListBoxStyle | |
157 | // ---------------------------------------------------------------------------- | |
158 | ||
159 | // just forward wxDefaultHtmlRenderingStyle callbacks to the main class so that | |
160 | // they could be overridden by the user code | |
161 | class wxHtmlListBoxStyle : public wxDefaultHtmlRenderingStyle | |
162 | { | |
163 | public: | |
fbfb8bcc | 164 | wxHtmlListBoxStyle(const wxHtmlListBox& hlbox) : m_hlbox(hlbox) { } |
9a9b4940 VZ |
165 | |
166 | virtual wxColour GetSelectedTextColour(const wxColour& colFg) | |
167 | { | |
168 | return m_hlbox.GetSelectedTextColour(colFg); | |
169 | } | |
170 | ||
171 | virtual wxColour GetSelectedTextBgColour(const wxColour& colBg) | |
172 | { | |
173 | return m_hlbox.GetSelectedTextBgColour(colBg); | |
174 | } | |
175 | ||
176 | private: | |
177 | const wxHtmlListBox& m_hlbox; | |
27d0dcd0 VZ |
178 | |
179 | DECLARE_NO_COPY_CLASS(wxHtmlListBoxStyle) | |
9a9b4940 VZ |
180 | }; |
181 | ||
5ecdc7ab VZ |
182 | // ---------------------------------------------------------------------------- |
183 | // event tables | |
184 | // ---------------------------------------------------------------------------- | |
185 | ||
186 | BEGIN_EVENT_TABLE(wxHtmlListBox, wxVListBox) | |
187 | EVT_SIZE(wxHtmlListBox::OnSize) | |
bc55e31b VS |
188 | EVT_MOTION(wxHtmlListBox::OnMouseMove) |
189 | EVT_LEFT_DOWN(wxHtmlListBox::OnLeftDown) | |
5ecdc7ab VZ |
190 | END_EVENT_TABLE() |
191 | ||
e0c6027b VZ |
192 | // ============================================================================ |
193 | // implementation | |
194 | // ============================================================================ | |
195 | ||
0c8392ca RD |
196 | IMPLEMENT_ABSTRACT_CLASS(wxHtmlListBox, wxVListBox) |
197 | ||
198 | ||
e0c6027b VZ |
199 | // ---------------------------------------------------------------------------- |
200 | // wxHtmlListBox creation | |
201 | // ---------------------------------------------------------------------------- | |
202 | ||
bc55e31b VS |
203 | wxHtmlListBox::wxHtmlListBox() |
204 | : wxHtmlWindowMouseHelper(this) | |
205 | { | |
206 | Init(); | |
207 | } | |
208 | ||
209 | // normal constructor which calls Create() internally | |
210 | wxHtmlListBox::wxHtmlListBox(wxWindow *parent, | |
211 | wxWindowID id, | |
212 | const wxPoint& pos, | |
213 | const wxSize& size, | |
214 | long style, | |
215 | const wxString& name) | |
216 | : wxHtmlWindowMouseHelper(this) | |
217 | { | |
218 | Init(); | |
219 | ||
220 | (void)Create(parent, id, pos, size, style, name); | |
221 | } | |
222 | ||
e0c6027b VZ |
223 | void wxHtmlListBox::Init() |
224 | { | |
225 | m_htmlParser = NULL; | |
9a9b4940 | 226 | m_htmlRendStyle = new wxHtmlListBoxStyle(*this); |
e0c6027b VZ |
227 | m_cache = new wxHtmlListBoxCache; |
228 | } | |
229 | ||
230 | bool wxHtmlListBox::Create(wxWindow *parent, | |
231 | wxWindowID id, | |
232 | const wxPoint& pos, | |
233 | const wxSize& size, | |
e0c6027b VZ |
234 | long style, |
235 | const wxString& name) | |
236 | { | |
43e319a3 | 237 | return wxVListBox::Create(parent, id, pos, size, style, name); |
e0c6027b VZ |
238 | } |
239 | ||
240 | wxHtmlListBox::~wxHtmlListBox() | |
241 | { | |
242 | delete m_cache; | |
9a9b4940 | 243 | |
e0c6027b VZ |
244 | if ( m_htmlParser ) |
245 | { | |
246 | delete m_htmlParser->GetDC(); | |
247 | delete m_htmlParser; | |
248 | } | |
9a9b4940 VZ |
249 | |
250 | delete m_htmlRendStyle; | |
251 | } | |
252 | ||
253 | // ---------------------------------------------------------------------------- | |
254 | // wxHtmlListBox appearance | |
255 | // ---------------------------------------------------------------------------- | |
256 | ||
257 | wxColour wxHtmlListBox::GetSelectedTextColour(const wxColour& colFg) const | |
258 | { | |
259 | return m_htmlRendStyle-> | |
260 | wxDefaultHtmlRenderingStyle::GetSelectedTextColour(colFg); | |
261 | } | |
262 | ||
263 | wxColour | |
264 | wxHtmlListBox::GetSelectedTextBgColour(const wxColour& WXUNUSED(colBg)) const | |
265 | { | |
266 | return GetSelectionBackground(); | |
e0c6027b VZ |
267 | } |
268 | ||
269 | // ---------------------------------------------------------------------------- | |
270 | // wxHtmlListBox items markup | |
271 | // ---------------------------------------------------------------------------- | |
272 | ||
273 | wxString wxHtmlListBox::OnGetItemMarkup(size_t n) const | |
274 | { | |
275 | // we don't even need to wrap the value returned by OnGetItem() inside | |
276 | // "<html><body>" and "</body></html>" because wxHTML can parse it even | |
277 | // without these tags | |
278 | return OnGetItem(n); | |
279 | } | |
280 | ||
5ecdc7ab VZ |
281 | // ---------------------------------------------------------------------------- |
282 | // wxHtmlListBox cache handling | |
283 | // ---------------------------------------------------------------------------- | |
284 | ||
e0c6027b VZ |
285 | void wxHtmlListBox::CacheItem(size_t n) const |
286 | { | |
287 | if ( !m_cache->Has(n) ) | |
288 | { | |
289 | if ( !m_htmlParser ) | |
290 | { | |
291 | wxHtmlListBox *self = wxConstCast(this, wxHtmlListBox); | |
292 | ||
bc55e31b | 293 | self->m_htmlParser = new wxHtmlWinParser(self); |
e0c6027b | 294 | m_htmlParser->SetDC(new wxClientDC(self)); |
2d814c19 | 295 | m_htmlParser->SetFS(&self->m_filesystem); |
f987cbb1 VS |
296 | |
297 | // use system's default GUI font by default: | |
298 | m_htmlParser->SetStandardFonts(); | |
e0c6027b VZ |
299 | } |
300 | ||
301 | wxHtmlContainerCell *cell = (wxHtmlContainerCell *)m_htmlParser-> | |
302 | Parse(OnGetItemMarkup(n)); | |
303 | wxCHECK_RET( cell, _T("wxHtmlParser::Parse() returned NULL?") ); | |
304 | ||
bc55e31b VS |
305 | // set the cell's ID to item's index so that CellCoordsToPhysical() |
306 | // can quickly find the item: | |
f1560fa6 | 307 | cell->SetId(wxString::Format(_T("%lu"), (unsigned long)n)); |
bc55e31b | 308 | |
5ecdc7ab | 309 | cell->Layout(GetClientSize().x - 2*GetMargins().x); |
e0c6027b VZ |
310 | |
311 | m_cache->Store(n, cell); | |
312 | } | |
313 | } | |
314 | ||
5ecdc7ab VZ |
315 | void wxHtmlListBox::OnSize(wxSizeEvent& event) |
316 | { | |
317 | // we need to relayout all the cached cells | |
318 | m_cache->Clear(); | |
319 | ||
320 | event.Skip(); | |
321 | } | |
322 | ||
aead8a4e VZ |
323 | void wxHtmlListBox::RefreshLine(size_t line) |
324 | { | |
325 | m_cache->InvalidateRange(line, line); | |
326 | ||
327 | wxVListBox::RefreshLine(line); | |
328 | } | |
329 | ||
330 | void wxHtmlListBox::RefreshLines(size_t from, size_t to) | |
331 | { | |
332 | m_cache->InvalidateRange(from, to); | |
333 | ||
334 | wxVListBox::RefreshLines(from, to); | |
335 | } | |
336 | ||
5ecdc7ab VZ |
337 | void wxHtmlListBox::RefreshAll() |
338 | { | |
339 | m_cache->Clear(); | |
340 | ||
341 | wxVListBox::RefreshAll(); | |
342 | } | |
343 | ||
03495767 VZ |
344 | void wxHtmlListBox::SetItemCount(size_t count) |
345 | { | |
346 | // the items are going to change, forget the old ones | |
347 | m_cache->Clear(); | |
348 | ||
349 | wxVListBox::SetItemCount(count); | |
350 | } | |
351 | ||
e0c6027b VZ |
352 | // ---------------------------------------------------------------------------- |
353 | // wxHtmlListBox implementation of wxVListBox pure virtuals | |
354 | // ---------------------------------------------------------------------------- | |
355 | ||
356 | void wxHtmlListBox::OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const | |
357 | { | |
358 | CacheItem(n); | |
359 | ||
360 | wxHtmlCell *cell = m_cache->Get(n); | |
361 | wxCHECK_RET( cell, _T("this cell should be cached!") ); | |
362 | ||
901b583c | 363 | wxHtmlRenderingInfo htmlRendInfo; |
5ecdc7ab | 364 | |
e0c6027b VZ |
365 | // draw the selected cell in selected state |
366 | if ( IsSelected(n) ) | |
367 | { | |
368 | wxHtmlSelection htmlSel; | |
c47addef | 369 | htmlSel.Set(wxPoint(0,0), cell, wxPoint(INT_MAX, INT_MAX), cell); |
901b583c | 370 | htmlRendInfo.SetSelection(&htmlSel); |
9a9b4940 VZ |
371 | if ( m_htmlRendStyle ) |
372 | htmlRendInfo.SetStyle(m_htmlRendStyle); | |
373 | htmlRendInfo.GetState().SetSelectionState(wxHTML_SEL_IN); | |
e0c6027b | 374 | } |
5ecdc7ab VZ |
375 | |
376 | // note that we can't stop drawing exactly at the window boundary as then | |
377 | // even the visible cells part could be not drawn, so always draw the | |
378 | // entire cell | |
bc55e31b VS |
379 | cell->Draw(dc, |
380 | rect.x + CELL_BORDER, rect.y + CELL_BORDER, | |
381 | 0, INT_MAX, htmlRendInfo); | |
e0c6027b VZ |
382 | } |
383 | ||
384 | wxCoord wxHtmlListBox::OnMeasureItem(size_t n) const | |
385 | { | |
386 | CacheItem(n); | |
387 | ||
388 | wxHtmlCell *cell = m_cache->Get(n); | |
389 | wxCHECK_MSG( cell, 0, _T("this cell should be cached!") ); | |
390 | ||
d3017584 | 391 | return cell->GetHeight() + cell->GetDescent() + 4; |
e0c6027b VZ |
392 | } |
393 | ||
bc55e31b VS |
394 | // ---------------------------------------------------------------------------- |
395 | // wxHtmlListBox implementation of wxHtmlListBoxWinInterface | |
396 | // ---------------------------------------------------------------------------- | |
397 | ||
398 | void wxHtmlListBox::SetHTMLWindowTitle(const wxString& WXUNUSED(title)) | |
399 | { | |
400 | // nothing to do | |
401 | } | |
402 | ||
403 | void wxHtmlListBox::OnHTMLLinkClicked(const wxHtmlLinkInfo& link) | |
404 | { | |
405 | OnLinkClicked(GetItemForCell(link.GetHtmlCell()), link); | |
406 | } | |
407 | ||
a3b5cead VS |
408 | void wxHtmlListBox::OnLinkClicked(size_t WXUNUSED(n), |
409 | const wxHtmlLinkInfo& link) | |
410 | { | |
411 | wxHtmlLinkEvent event(GetId(), link); | |
412 | GetEventHandler()->ProcessEvent(event); | |
413 | } | |
414 | ||
bc55e31b VS |
415 | wxHtmlOpeningStatus |
416 | wxHtmlListBox::OnHTMLOpeningURL(wxHtmlURLType WXUNUSED(type), | |
417 | const wxString& WXUNUSED(url), | |
418 | wxString *WXUNUSED(redirect)) const | |
419 | { | |
420 | return wxHTML_OPEN; | |
421 | } | |
422 | ||
423 | wxPoint wxHtmlListBox::HTMLCoordsToWindow(wxHtmlCell *cell, | |
424 | const wxPoint& pos) const | |
425 | { | |
426 | return CellCoordsToPhysical(pos, cell); | |
427 | } | |
428 | ||
429 | wxWindow* wxHtmlListBox::GetHTMLWindow() { return this; } | |
430 | ||
431 | wxColour wxHtmlListBox::GetHTMLBackgroundColour() const | |
432 | { | |
433 | return GetBackgroundColour(); | |
434 | } | |
435 | ||
436 | void wxHtmlListBox::SetHTMLBackgroundColour(const wxColour& WXUNUSED(clr)) | |
437 | { | |
438 | // nothing to do | |
439 | } | |
440 | ||
441 | void wxHtmlListBox::SetHTMLBackgroundImage(const wxBitmap& WXUNUSED(bmpBg)) | |
442 | { | |
443 | // nothing to do | |
444 | } | |
445 | ||
446 | void wxHtmlListBox::SetHTMLStatusText(const wxString& WXUNUSED(text)) | |
447 | { | |
448 | // nothing to do | |
449 | } | |
450 | ||
88a1b648 VS |
451 | wxCursor wxHtmlListBox::GetHTMLCursor(HTMLCursor type) const |
452 | { | |
453 | // we don't want to show text selection cursor in listboxes | |
454 | if (type == HTMLCursor_Text) | |
455 | return wxHtmlWindow::GetDefaultHTMLCursor(HTMLCursor_Default); | |
456 | ||
457 | // in all other cases, use the same cursor as wxHtmlWindow: | |
458 | return wxHtmlWindow::GetDefaultHTMLCursor(type); | |
459 | } | |
460 | ||
bc55e31b VS |
461 | // ---------------------------------------------------------------------------- |
462 | // wxHtmlListBox handling of HTML links | |
463 | // ---------------------------------------------------------------------------- | |
aead8a4e | 464 | |
bc55e31b VS |
465 | wxPoint wxHtmlListBox::GetRootCellCoords(size_t n) const |
466 | { | |
467 | wxPoint pos(CELL_BORDER, CELL_BORDER); | |
468 | pos += GetMargins(); | |
469 | pos.y += GetLinesHeight(GetFirstVisibleLine(), n); | |
470 | return pos; | |
471 | } | |
472 | ||
473 | bool wxHtmlListBox::PhysicalCoordsToCell(wxPoint& pos, wxHtmlCell*& cell) const | |
474 | { | |
475 | int n = HitTest(pos); | |
476 | if ( n == wxNOT_FOUND ) | |
477 | return false; | |
478 | ||
479 | // convert mouse coordinates to coords relative to item's wxHtmlCell: | |
480 | pos -= GetRootCellCoords(n); | |
481 | ||
482 | CacheItem(n); | |
483 | cell = m_cache->Get(n); | |
484 | ||
485 | return true; | |
486 | } | |
487 | ||
488 | size_t wxHtmlListBox::GetItemForCell(const wxHtmlCell *cell) const | |
489 | { | |
490 | wxCHECK_MSG( cell, 0, _T("no cell") ); | |
491 | ||
492 | cell = cell->GetRootCell(); | |
493 | ||
494 | wxCHECK_MSG( cell, 0, _T("no root cell") ); | |
495 | ||
496 | // the cell's ID contains item index, see CacheItem(): | |
497 | unsigned long n; | |
498 | if ( !cell->GetId().ToULong(&n) ) | |
499 | { | |
500 | wxFAIL_MSG( _T("unexpected root cell's ID") ); | |
501 | return 0; | |
502 | } | |
503 | ||
504 | return n; | |
505 | } | |
506 | ||
507 | wxPoint | |
508 | wxHtmlListBox::CellCoordsToPhysical(const wxPoint& pos, wxHtmlCell *cell) const | |
509 | { | |
510 | return pos + GetRootCellCoords(GetItemForCell(cell)); | |
511 | } | |
512 | ||
513 | void wxHtmlListBox::OnInternalIdle() | |
514 | { | |
515 | wxVListBox::OnInternalIdle(); | |
516 | ||
517 | if ( wxHtmlWindowMouseHelper::DidMouseMove() ) | |
518 | { | |
519 | wxPoint pos = ScreenToClient(wxGetMousePosition()); | |
520 | wxHtmlCell *cell; | |
521 | ||
522 | if ( !PhysicalCoordsToCell(pos, cell) ) | |
523 | return; | |
524 | ||
525 | wxHtmlWindowMouseHelper::HandleIdle(cell, pos); | |
526 | } | |
527 | } | |
528 | ||
529 | void wxHtmlListBox::OnMouseMove(wxMouseEvent& event) | |
530 | { | |
531 | wxHtmlWindowMouseHelper::HandleMouseMoved(); | |
532 | event.Skip(); | |
533 | } | |
534 | ||
535 | void wxHtmlListBox::OnLeftDown(wxMouseEvent& event) | |
536 | { | |
537 | wxPoint pos = event.GetPosition(); | |
538 | wxHtmlCell *cell; | |
539 | ||
540 | if ( !PhysicalCoordsToCell(pos, cell) ) | |
541 | { | |
542 | event.Skip(); | |
543 | return; | |
544 | } | |
545 | ||
546 | if ( !wxHtmlWindowMouseHelper::HandleMouseClick(cell, pos, event) ) | |
547 | { | |
548 | // no link was clicked, so let the listbox code handle the click (e.g. | |
549 | // by selecting another item in the list): | |
550 | event.Skip(); | |
551 | } | |
552 | } | |
553 | ||
9ebb7cad VZ |
554 | |
555 | // ---------------------------------------------------------------------------- | |
556 | // wxSimpleHtmlListBox | |
557 | // ---------------------------------------------------------------------------- | |
558 | ||
559 | bool wxSimpleHtmlListBox::Create(wxWindow *parent, wxWindowID id, | |
560 | const wxPoint& pos, | |
561 | const wxSize& size, | |
562 | int n, const wxString choices[], | |
563 | long style, | |
564 | const wxValidator& validator, | |
565 | const wxString& name) | |
566 | { | |
567 | if (!wxHtmlListBox::Create(parent, id, pos, size, style, name)) | |
568 | return false; | |
569 | ||
570 | SetValidator(validator); | |
571 | for (int i=0; i<n; i++) | |
572 | Append(choices[i]); | |
573 | ||
574 | return true; | |
575 | } | |
576 | ||
577 | bool wxSimpleHtmlListBox::Create(wxWindow *parent, wxWindowID id, | |
578 | const wxPoint& pos, | |
579 | const wxSize& size, | |
580 | const wxArrayString& choices, | |
581 | long style, | |
582 | const wxValidator& validator, | |
583 | const wxString& name) | |
584 | { | |
585 | if (!wxHtmlListBox::Create(parent, id, pos, size, style, name)) | |
586 | return false; | |
587 | ||
588 | SetValidator(validator); | |
589 | Append(choices); | |
590 | ||
591 | return true; | |
592 | } | |
593 | ||
594 | wxSimpleHtmlListBox::~wxSimpleHtmlListBox() | |
595 | { | |
9d8f8138 | 596 | wxASSERT(m_items.GetCount() == m_HTMLclientData.GetCount()); |
9ebb7cad VZ |
597 | if (HasClientObjectData()) |
598 | { | |
599 | // clear the array of client data objects | |
600 | for (size_t i=0; i<m_items.GetCount(); i++) | |
601 | delete DoGetItemClientObject(i); | |
602 | } | |
603 | ||
604 | m_items.Clear(); | |
9d8f8138 | 605 | m_HTMLclientData.Clear(); |
9ebb7cad VZ |
606 | } |
607 | ||
608 | void wxSimpleHtmlListBox::Clear() | |
609 | { | |
610 | m_items.Clear(); | |
9d8f8138 | 611 | m_HTMLclientData.Clear(); |
9ebb7cad VZ |
612 | UpdateCount(); |
613 | } | |
614 | ||
615 | void wxSimpleHtmlListBox::Delete(unsigned int n) | |
616 | { | |
617 | m_items.RemoveAt(n); | |
9d8f8138 | 618 | m_HTMLclientData.RemoveAt(n); |
9ebb7cad VZ |
619 | UpdateCount(); |
620 | } | |
621 | ||
622 | void wxSimpleHtmlListBox::Append(const wxArrayString& strings) | |
623 | { | |
9ebb7cad VZ |
624 | // append all given items at once |
625 | WX_APPEND_ARRAY(m_items, strings); | |
9d8f8138 | 626 | m_HTMLclientData.Add(NULL, strings.GetCount()); |
9ebb7cad VZ |
627 | UpdateCount(); |
628 | } | |
629 | ||
630 | int wxSimpleHtmlListBox::DoAppend(const wxString& item) | |
631 | { | |
632 | m_items.Add(item); | |
9d8f8138 | 633 | m_HTMLclientData.Add(NULL); |
9ebb7cad VZ |
634 | UpdateCount(); |
635 | return GetCount()-1; | |
636 | } | |
637 | ||
638 | int wxSimpleHtmlListBox::DoInsert(const wxString& item, unsigned int pos) | |
639 | { | |
640 | m_items.Insert(item, pos); | |
9d8f8138 | 641 | m_HTMLclientData.Insert(NULL, pos); |
9ebb7cad VZ |
642 | UpdateCount(); |
643 | return pos; | |
644 | } | |
645 | ||
646 | void wxSimpleHtmlListBox::SetString(unsigned int n, const wxString& s) | |
647 | { | |
648 | wxCHECK_RET( IsValid(n), | |
649 | wxT("invalid index in wxSimpleHtmlListBox::SetString") ); | |
650 | ||
651 | m_items[n]=s; | |
652 | RefreshLine(n); | |
653 | } | |
654 | ||
655 | wxString wxSimpleHtmlListBox::GetString(unsigned int n) const | |
656 | { | |
657 | wxCHECK_MSG( IsValid(n), wxEmptyString, | |
658 | wxT("invalid index in wxSimpleHtmlListBox::GetString") ); | |
659 | ||
660 | return m_items[n]; | |
661 | } | |
662 | ||
663 | void wxSimpleHtmlListBox::UpdateCount() | |
664 | { | |
9d8f8138 | 665 | wxASSERT(m_items.GetCount() == m_HTMLclientData.GetCount()); |
9ebb7cad VZ |
666 | wxHtmlListBox::SetItemCount(m_items.GetCount()); |
667 | ||
668 | // very small optimization: if you need to add lot of items to | |
669 | // a wxSimpleHtmlListBox be sure to use the | |
670 | // wxSimpleHtmlListBox::Append(const wxArrayString&) method instead! | |
671 | if (!this->IsFrozen()) | |
672 | RefreshAll(); | |
673 | } | |
674 | ||
bc55e31b | 675 | #endif // wxUSE_HTML |