]> git.saurik.com Git - wxWidgets.git/blob - include/wx/htmllbox.h
GetBestFittingSize --> GetEffectiveMinSize
[wxWidgets.git] / include / wx / htmllbox.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/htmllbox.h
3 // Purpose: wxHtmlListBox is a listbox whose items are wxHtmlCells
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 31.05.03
7 // RCS-ID: $Id$
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_HTMLLBOX_H_
13 #define _WX_HTMLLBOX_H_
14
15 #include "wx/vlbox.h" // base class
16 #include "wx/html/htmlwin.h"
17 #include "wx/ctrlsub.h"
18
19 #if wxUSE_FILESYSTEM
20 #include "wx/filesys.h"
21 #endif // wxUSE_FILESYSTEM
22
23 class WXDLLIMPEXP_HTML wxHtmlCell;
24 class WXDLLIMPEXP_HTML wxHtmlWinParser;
25 class WXDLLIMPEXP_HTML wxHtmlListBoxCache;
26 class WXDLLIMPEXP_HTML wxHtmlListBoxStyle;
27
28 extern WXDLLIMPEXP_DATA_HTML(const wxChar) wxHtmlListBoxNameStr[];
29 extern WXDLLIMPEXP_DATA_HTML(const wxChar) wxSimpleHtmlListBoxNameStr[];
30
31 // ----------------------------------------------------------------------------
32 // wxHtmlListBox
33 // ----------------------------------------------------------------------------
34
35 class WXDLLIMPEXP_HTML wxHtmlListBox : public wxVListBox,
36 public wxHtmlWindowInterface,
37 public wxHtmlWindowMouseHelper
38 {
39 DECLARE_ABSTRACT_CLASS(wxHtmlListBox)
40 public:
41 // constructors and such
42 // ---------------------
43
44 // default constructor, you must call Create() later
45 wxHtmlListBox();
46
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,
52 long style = 0,
53 const wxString& name = wxHtmlListBoxNameStr);
54
55 // really creates the control and sets the initial number of items in it
56 // (which may be changed later with SetItemCount())
57 //
58 // the only special style which may be specified here is wxLB_MULTIPLE
59 //
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,
65 long style = 0,
66 const wxString& name = wxHtmlListBoxNameStr);
67
68 // destructor cleans up whatever resources we use
69 virtual ~wxHtmlListBox();
70
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);
76
77
78 #if wxUSE_FILESYSTEM
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
84
85 virtual void OnInternalIdle();
86
87 protected:
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;
91
92 // this function may be overridden to decorate HTML returned by OnGetItem()
93 virtual wxString OnGetItemMarkup(size_t n) const;
94
95
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
99 //
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;
103
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;
108
109
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;
114
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);
118
119 // event handlers
120 void OnSize(wxSizeEvent& event);
121 void OnMouseMove(wxMouseEvent& event);
122 void OnLeftDown(wxMouseEvent& event);
123
124
125 // common part of all ctors
126 void Init();
127
128 // ensure that the given item is cached
129 void CacheItem(size_t n) const;
130
131 private:
132 // wxHtmlWindowInterface methods:
133 virtual void SetHTMLWindowTitle(const wxString& title);
134 virtual void OnHTMLLinkClicked(const wxHtmlLinkInfo& link);
135 virtual wxHtmlOpeningStatus OnHTMLOpeningURL(wxHtmlURLType type,
136 const wxString& url,
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;
146
147 // returns index of item that contains given HTML cell
148 size_t GetItemForCell(const wxHtmlCell *cell) const;
149
150 // return physical coordinates of root wxHtmlCell of n-th item
151 wxPoint GetRootCellCoords(size_t n) const;
152
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;
159
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;
163
164 private:
165 // this class caches the pre-parsed HTML to speed up display
166 wxHtmlListBoxCache *m_cache;
167
168 // HTML parser we use
169 wxHtmlWinParser *m_htmlParser;
170
171 #if wxUSE_FILESYSTEM
172 // file system used by m_htmlParser
173 wxFileSystem m_filesystem;
174 #endif // wxUSE_FILESYSTEM
175
176 // rendering style for the parser which allows us to customize our colours
177 wxHtmlListBoxStyle *m_htmlRendStyle;
178
179
180 // it calls our GetSelectedTextColour() and GetSelectedTextBgColour()
181 friend class wxHtmlListBoxStyle;
182 friend class wxHtmlListBoxWinInterface;
183
184
185 DECLARE_EVENT_TABLE()
186 DECLARE_NO_COPY_CLASS(wxHtmlListBox)
187 };
188
189
190 // ----------------------------------------------------------------------------
191 // wxSimpleHtmlListBox
192 // ----------------------------------------------------------------------------
193
194 #define wxHLB_DEFAULT_STYLE wxBORDER_SUNKEN
195 #define wxHLB_MULTIPLE wxLB_MULTIPLE
196
197 class WXDLLIMPEXP_HTML wxSimpleHtmlListBox : public wxHtmlListBox,
198 public wxItemContainer
199 {
200 public:
201 // wxListbox-compatible constructors
202 // ---------------------------------
203
204 wxSimpleHtmlListBox() { }
205
206 wxSimpleHtmlListBox(wxWindow *parent,
207 wxWindowID id,
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)
214 {
215 Create(parent, id, pos, size, n, choices, style, validator, name);
216 }
217
218 wxSimpleHtmlListBox(wxWindow *parent,
219 wxWindowID id,
220 const wxPoint& pos,
221 const wxSize& size,
222 const wxArrayString& choices,
223 long style = wxHLB_DEFAULT_STYLE,
224 const wxValidator& validator = wxDefaultValidator,
225 const wxString& name = wxSimpleHtmlListBoxNameStr)
226 {
227 Create(parent, id, pos, size, choices, style, validator, name);
228 }
229
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,
238 const wxPoint& pos,
239 const wxSize& size,
240 const wxArrayString& choices,
241 long style = wxHLB_DEFAULT_STYLE,
242 const wxValidator& validator = wxDefaultValidator,
243 const wxString& name = wxSimpleHtmlListBoxNameStr);
244
245 virtual ~wxSimpleHtmlListBox();
246
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(); }
253
254 // see ctrlsub.h for more info about this:
255 wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST
256
257
258 // accessing strings
259 // -----------------
260
261 virtual unsigned int GetCount() const
262 { return m_items.GetCount(); }
263
264 virtual wxString GetString(unsigned int n) const;
265
266 // override default unoptimized wxItemContainer::GetStrings() function
267 wxArrayString GetStrings() const
268 { return m_items; }
269
270 virtual void SetString(unsigned int n, const wxString& s);
271
272 virtual void Clear();
273 virtual void Delete(unsigned int n);
274
275 // override default unoptimized wxItemContainer::Append() function
276 void Append(const wxArrayString& strings);
277
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); }
285
286
287 protected:
288
289 virtual int DoAppend(const wxString& item);
290 virtual int DoInsert(const wxString& item, unsigned int pos);
291
292 virtual void DoSetItemClientData(unsigned int n, void *clientData)
293 { m_HTMLclientData[n] = clientData; }
294
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]; }
301
302 // calls wxHtmlListBox::SetItemCount() and RefreshAll()
303 void UpdateCount();
304
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); }
311
312 virtual wxString OnGetItem(size_t n) const
313 { return m_items[n]; }
314
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.
320
321 DECLARE_NO_COPY_CLASS(wxSimpleHtmlListBox)
322 };
323
324 #endif // _WX_HTMLLBOX_H_
325