1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxHtmlListBox is a listbox whose items are wxHtmlCells
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_HTMLLBOX_H_
13 #define _WX_HTMLLBOX_H_
15 #include "wx/vlbox.h" // base class
16 #include "wx/html/htmlwin.h"
17 #include "wx/ctrlsub.h"
20 #include "wx/filesys.h"
21 #endif // wxUSE_FILESYSTEM
23 class WXDLLIMPEXP_HTML wxHtmlCell
;
24 class WXDLLIMPEXP_HTML wxHtmlWinParser
;
25 class WXDLLIMPEXP_HTML wxHtmlListBoxCache
;
26 class WXDLLIMPEXP_HTML wxHtmlListBoxStyle
;
28 extern WXDLLIMPEXP_DATA_HTML(const wxChar
) wxHtmlListBoxNameStr
[];
29 extern WXDLLIMPEXP_DATA_HTML(const wxChar
) wxSimpleHtmlListBoxNameStr
[];
31 // ----------------------------------------------------------------------------
33 // ----------------------------------------------------------------------------
35 class WXDLLIMPEXP_HTML wxHtmlListBox
: public wxVListBox
,
36 public wxHtmlWindowInterface
,
37 public wxHtmlWindowMouseHelper
39 DECLARE_ABSTRACT_CLASS(wxHtmlListBox
)
41 // constructors and such
42 // ---------------------
44 // default constructor, you must call Create() later
47 // normal constructor which calls Create() internally
48 wxHtmlListBox(wxWindow
*parent
,
49 wxWindowID id
= wxID_ANY
,
50 const wxPoint
& pos
= wxDefaultPosition
,
51 const wxSize
& size
= wxDefaultSize
,
53 const wxString
& name
= wxHtmlListBoxNameStr
);
55 // really creates the control and sets the initial number of items in it
56 // (which may be changed later with SetItemCount())
58 // the only special style which may be specified here is wxLB_MULTIPLE
60 // returns true on success or false if the control couldn't be created
61 bool Create(wxWindow
*parent
,
62 wxWindowID id
= wxID_ANY
,
63 const wxPoint
& pos
= wxDefaultPosition
,
64 const wxSize
& size
= wxDefaultSize
,
66 const wxString
& name
= wxHtmlListBoxNameStr
);
68 // destructor cleans up whatever resources we use
69 virtual ~wxHtmlListBox();
71 // override some base class virtuals
72 virtual void RefreshLine(size_t line
);
73 virtual void RefreshLines(size_t from
, size_t to
);
74 virtual void RefreshAll();
75 virtual void SetItemCount(size_t count
);
79 // retrieve the file system used by the wxHtmlWinParser: if you use
80 // relative paths in your HTML, you should use its ChangePathTo() method
81 wxFileSystem
& GetFileSystem() { return m_filesystem
; }
82 const wxFileSystem
& GetFileSystem() const { return m_filesystem
; }
83 #endif // wxUSE_FILESYSTEM
85 virtual void OnInternalIdle();
88 // this method must be implemented in the derived class and should return
89 // the body (i.e. without <html>) of the HTML for the given item
90 virtual wxString
OnGetItem(size_t n
) const = 0;
92 // this function may be overridden to decorate HTML returned by OnGetItem()
93 virtual wxString
OnGetItemMarkup(size_t n
) const;
96 // this method allows to customize the selection appearance: it may be used
97 // to specify the colour of the text which normally has the given colour
98 // colFg when it is inside the selection
100 // by default, the original colour is not used at all and all text has the
101 // same (default for this system) colour inside selection
102 virtual wxColour
GetSelectedTextColour(const wxColour
& colFg
) const;
104 // this is the same as GetSelectedTextColour() but allows to customize the
105 // background colour -- this is even more rarely used as you can change it
106 // globally using SetSelectionBackground()
107 virtual wxColour
GetSelectedTextBgColour(const wxColour
& colBg
) const;
110 // we implement both of these functions in terms of OnGetItem(), they are
111 // not supposed to be overridden by our descendants
112 virtual void OnDrawItem(wxDC
& dc
, const wxRect
& rect
, size_t n
) const;
113 virtual wxCoord
OnMeasureItem(size_t n
) const;
115 // This method may be overriden to handle clicking on a link in
116 // the listbox. By default, clicking links is ignored.
117 virtual void OnLinkClicked(size_t n
, const wxHtmlLinkInfo
& link
);
120 void OnSize(wxSizeEvent
& event
);
121 void OnMouseMove(wxMouseEvent
& event
);
122 void OnLeftDown(wxMouseEvent
& event
);
125 // common part of all ctors
128 // ensure that the given item is cached
129 void CacheItem(size_t n
) const;
132 // wxHtmlWindowInterface methods:
133 virtual void SetHTMLWindowTitle(const wxString
& title
);
134 virtual void OnHTMLLinkClicked(const wxHtmlLinkInfo
& link
);
135 virtual wxHtmlOpeningStatus
OnHTMLOpeningURL(wxHtmlURLType type
,
137 wxString
*redirect
) const;
138 virtual wxPoint
HTMLCoordsToWindow(wxHtmlCell
*cell
,
139 const wxPoint
& pos
) const;
140 virtual wxWindow
* GetHTMLWindow();
141 virtual wxColour
GetHTMLBackgroundColour() const;
142 virtual void SetHTMLBackgroundColour(const wxColour
& clr
);
143 virtual void SetHTMLBackgroundImage(const wxBitmap
& bmpBg
);
144 virtual void SetHTMLStatusText(const wxString
& text
);
145 virtual wxCursor
GetHTMLCursor(HTMLCursor type
) const;
147 // returns index of item that contains given HTML cell
148 size_t GetItemForCell(const wxHtmlCell
*cell
) const;
150 // return physical coordinates of root wxHtmlCell of n-th item
151 wxPoint
GetRootCellCoords(size_t n
) const;
153 // Converts physical coordinates stored in @a pos into coordinates
154 // relative to the root cell of the item under mouse cursor, if any. If no
155 // cell is found under the cursor, returns false. Otherwise stores the new
156 // coordinates back into @a pos and pointer to the cell under cursor into
157 // @a cell and returns true.
158 bool PhysicalCoordsToCell(wxPoint
& pos
, wxHtmlCell
*& cell
) const;
160 // The opposite of PhysicalCoordsToCell: converts coordinates relative to
161 // given cell to physical coordinates in the window
162 wxPoint
CellCoordsToPhysical(const wxPoint
& pos
, wxHtmlCell
*cell
) const;
165 // this class caches the pre-parsed HTML to speed up display
166 wxHtmlListBoxCache
*m_cache
;
168 // HTML parser we use
169 wxHtmlWinParser
*m_htmlParser
;
172 // file system used by m_htmlParser
173 wxFileSystem m_filesystem
;
174 #endif // wxUSE_FILESYSTEM
176 // rendering style for the parser which allows us to customize our colours
177 wxHtmlListBoxStyle
*m_htmlRendStyle
;
180 // it calls our GetSelectedTextColour() and GetSelectedTextBgColour()
181 friend class wxHtmlListBoxStyle
;
182 friend class wxHtmlListBoxWinInterface
;
185 DECLARE_EVENT_TABLE()
186 DECLARE_NO_COPY_CLASS(wxHtmlListBox
)
190 // ----------------------------------------------------------------------------
191 // wxSimpleHtmlListBox
192 // ----------------------------------------------------------------------------
194 #define wxHLB_DEFAULT_STYLE wxBORDER_SUNKEN
195 #define wxHLB_MULTIPLE wxLB_MULTIPLE
197 class WXDLLIMPEXP_HTML wxSimpleHtmlListBox
: public wxHtmlListBox
,
198 public wxItemContainer
201 // wxListbox-compatible constructors
202 // ---------------------------------
204 wxSimpleHtmlListBox() { }
206 wxSimpleHtmlListBox(wxWindow
*parent
,
208 const wxPoint
& pos
= wxDefaultPosition
,
209 const wxSize
& size
= wxDefaultSize
,
210 int n
= 0, const wxString choices
[] = NULL
,
211 long style
= wxHLB_DEFAULT_STYLE
,
212 const wxValidator
& validator
= wxDefaultValidator
,
213 const wxString
& name
= wxSimpleHtmlListBoxNameStr
)
215 Create(parent
, id
, pos
, size
, n
, choices
, style
, validator
, name
);
218 wxSimpleHtmlListBox(wxWindow
*parent
,
222 const wxArrayString
& choices
,
223 long style
= wxHLB_DEFAULT_STYLE
,
224 const wxValidator
& validator
= wxDefaultValidator
,
225 const wxString
& name
= wxSimpleHtmlListBoxNameStr
)
227 Create(parent
, id
, pos
, size
, choices
, style
, validator
, name
);
230 bool Create(wxWindow
*parent
, wxWindowID id
,
231 const wxPoint
& pos
= wxDefaultPosition
,
232 const wxSize
& size
= wxDefaultSize
,
233 int n
= 0, const wxString choices
[] = NULL
,
234 long style
= wxHLB_DEFAULT_STYLE
,
235 const wxValidator
& validator
= wxDefaultValidator
,
236 const wxString
& name
= wxSimpleHtmlListBoxNameStr
);
237 bool Create(wxWindow
*parent
, wxWindowID id
,
240 const wxArrayString
& choices
,
241 long style
= wxHLB_DEFAULT_STYLE
,
242 const wxValidator
& validator
= wxDefaultValidator
,
243 const wxString
& name
= wxSimpleHtmlListBoxNameStr
);
245 virtual ~wxSimpleHtmlListBox();
247 // these must be overloaded otherwise the compiler will complain
248 // about wxItemContainerImmutable::[G|S]etSelection being pure virtuals...
249 void SetSelection(int n
)
250 { wxVListBox::SetSelection(n
); }
251 int GetSelection() const
252 { return wxVListBox::GetSelection(); }
254 // see ctrlsub.h for more info about this:
255 wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST
261 virtual unsigned int GetCount() const
262 { return m_items
.GetCount(); }
264 virtual wxString
GetString(unsigned int n
) const;
266 // override default unoptimized wxItemContainer::GetStrings() function
267 wxArrayString
GetStrings() const
270 virtual void SetString(unsigned int n
, const wxString
& s
);
272 virtual void Clear();
273 virtual void Delete(unsigned int n
);
275 // override default unoptimized wxItemContainer::Append() function
276 void Append(const wxArrayString
& strings
);
278 // since we override one Append() overload, we need to overload all others too
279 int Append(const wxString
& item
)
280 { return wxItemContainer::Append(item
); }
281 int Append(const wxString
& item
, void *clientData
)
282 { return wxItemContainer::Append(item
, clientData
); }
283 int Append(const wxString
& item
, wxClientData
*clientData
)
284 { return wxItemContainer::Append(item
, clientData
); }
289 virtual int DoAppend(const wxString
& item
);
290 virtual int DoInsert(const wxString
& item
, unsigned int pos
);
292 virtual void DoSetItemClientData(unsigned int n
, void *clientData
)
293 { m_HTMLclientData
[n
] = clientData
; }
295 virtual void *DoGetItemClientData(unsigned int n
) const
296 { return m_HTMLclientData
[n
]; }
297 virtual void DoSetItemClientObject(unsigned int n
, wxClientData
*clientData
)
298 { m_HTMLclientData
[n
] = (void *)clientData
; }
299 virtual wxClientData
*DoGetItemClientObject(unsigned int n
) const
300 { return (wxClientData
*)m_HTMLclientData
[n
]; }
302 // calls wxHtmlListBox::SetItemCount() and RefreshAll()
305 // overload these functions just to change their visibility: users of
306 // wxSimpleHtmlListBox shouldn't be allowed to call them directly!
307 virtual void SetItemCount(size_t count
)
308 { wxHtmlListBox::SetItemCount(count
); }
309 virtual void SetLineCount(size_t count
)
310 { wxHtmlListBox::SetLineCount(count
); }
312 virtual wxString
OnGetItem(size_t n
) const
313 { return m_items
[n
]; }
315 wxArrayString m_items
;
316 wxArrayPtrVoid m_HTMLclientData
;
317 // Note: For the benefit of old compilers (like gcc-2.8) this should
318 // not be named m_clientdata as that clashes with the name of an
319 // anonymous struct member in wxEvtHandler, which we derive from.
321 DECLARE_NO_COPY_CLASS(wxSimpleHtmlListBox
)
324 #endif // _WX_HTMLLBOX_H_