]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: htmllbox.h | |
e54c96f1 | 3 | // Purpose: interface of wxHtmlListBox |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxHtmlListBox | |
7c913512 | 11 | |
9cc56d1f FM |
12 | wxHtmlListBox is an implementation of wxVListBox which shows HTML content in |
13 | the listbox rows. This is still an abstract base class and you will need to | |
14 | derive your own class from it (see htlbox sample for the example) but you will | |
15 | only need to override a single wxHtmlListBox::OnGetItem function. | |
16 | ||
3051a44a | 17 | @beginEventEmissionTable{wxHtmlCellEvent,wxHtmlLinkEvent} |
9cc56d1f FM |
18 | @event{EVT_HTML_CELL_CLICKED(id, func)} |
19 | A wxHtmlCell was clicked. | |
20 | @event{EVT_HTML_CELL_HOVER(id, func)} | |
21 | The mouse passed over a wxHtmlCell. | |
22 | @event{EVT_HTML_LINK_CLICKED(id, func)} | |
23 | A wxHtmlCell which contains an hyperlink was clicked. | |
24 | @endEventTable | |
7c913512 | 25 | |
23324ae1 FM |
26 | @library{wxhtml} |
27 | @category{ctrl} | |
7c913512 | 28 | |
e54c96f1 | 29 | @see wxSimpleHtmlListBox |
23324ae1 FM |
30 | */ |
31 | class wxHtmlListBox : public wxVListBox | |
32 | { | |
33 | public: | |
23324ae1 | 34 | /** |
9cc56d1f | 35 | Normal constructor which calls Create() internally. |
23324ae1 FM |
36 | */ |
37 | wxHtmlListBox(wxWindow* parent, wxWindowID id = wxID_ANY, | |
38 | const wxPoint& pos = wxDefaultPosition, | |
39 | const wxSize& size = wxDefaultSize, | |
40 | long style = 0, | |
41 | const wxString& name = wxHtmlListBoxNameStr); | |
9cc56d1f FM |
42 | |
43 | /** | |
44 | Default constructor, you must call Create() later. | |
45 | */ | |
7c913512 | 46 | wxHtmlListBox(); |
23324ae1 FM |
47 | |
48 | /** | |
49 | Destructor cleans up whatever resources we use. | |
50 | */ | |
adaaa686 | 51 | virtual ~wxHtmlListBox(); |
23324ae1 FM |
52 | |
53 | /** | |
54 | Creates the control and optionally sets the initial number of items in it | |
9cc56d1f FM |
55 | (it may also be set or changed later with wxVListBox::SetItemCount). |
56 | ||
23324ae1 FM |
57 | There are no special styles defined for wxHtmlListBox, in particular the |
58 | wxListBox styles (with the exception of @c wxLB_MULTIPLE) can not be used here. | |
9cc56d1f | 59 | |
23324ae1 FM |
60 | Returns @true on success or @false if the control couldn't be created |
61 | */ | |
62 | bool Create(wxWindow* parent, 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 | //@{ | |
69 | /** | |
9cc56d1f FM |
70 | Returns the wxFileSystem used by the HTML parser of this object. |
71 | ||
72 | The file system object is used to resolve the paths in HTML fragments | |
73 | displayed in the control and you should use wxFileSystem::ChangePathTo | |
74 | if you use relative paths for the images or other resources embedded in | |
75 | your HTML. | |
23324ae1 | 76 | */ |
9cc56d1f FM |
77 | wxFileSystem& GetFileSystem() const; |
78 | const wxFileSystem& GetFileSystem() const; | |
23324ae1 FM |
79 | //@} |
80 | ||
5e6e278d FM |
81 | protected: |
82 | ||
83 | /** | |
84 | Called when the user clicks on hypertext link. Does nothing by default. | |
85 | Overloading this method is deprecated; intercept the event instead. | |
86 | ||
87 | @param n | |
88 | Index of the item containing the link. | |
89 | @param link | |
90 | Description of the link. | |
91 | ||
1bc693a9 | 92 | @see wxHtmlLinkInfo. |
5e6e278d FM |
93 | */ |
94 | virtual void OnLinkClicked(size_t n, const wxHtmlLinkInfo& link); | |
95 | ||
23324ae1 FM |
96 | /** |
97 | This virtual function may be overridden to change the appearance of the | |
9cc56d1f FM |
98 | background of the selected cells in the same way as GetSelectedTextColour(). |
99 | ||
100 | It should be rarely, if ever, used because wxVListBox::SetSelectionBackground | |
101 | allows to change the selection background for all cells at once and doing | |
102 | anything more fancy is probably going to look strangely. | |
3c4f71cc | 103 | |
4cc4bfaf | 104 | @see GetSelectedTextColour() |
23324ae1 | 105 | */ |
0004982c | 106 | virtual wxColour GetSelectedTextBgColour(const wxColour& colBg) const; |
23324ae1 FM |
107 | |
108 | /** | |
109 | This virtual function may be overridden to customize the appearance of the | |
4cc4bfaf | 110 | selected cells. It is used to determine how the colour @a colFg is going to |
23324ae1 FM |
111 | look inside selection. By default all original colours are completely ignored |
112 | and the standard, system-dependent, selection colour is used but the program | |
113 | may wish to override this to achieve some custom appearance. | |
3c4f71cc | 114 | |
4cc4bfaf FM |
115 | @see GetSelectedTextBgColour(), |
116 | wxVListBox::SetSelectionBackground, wxSystemSettings::GetColour | |
23324ae1 | 117 | */ |
0004982c | 118 | virtual wxColour GetSelectedTextColour(const wxColour& colFg) const; |
23324ae1 | 119 | |
23324ae1 | 120 | /** |
5e6e278d | 121 | This function may be overridden to decorate HTML returned by OnGetItem(). |
23324ae1 | 122 | */ |
0004982c | 123 | virtual wxString OnGetItemMarkup(size_t n) const; |
23324ae1 | 124 | |
551266a9 FM |
125 | /** |
126 | This method must be implemented in the derived class and should return | |
127 | the body (i.e. without @c html nor @c body tags) of the HTML fragment | |
128 | for the given item. | |
9cc56d1f | 129 | |
551266a9 FM |
130 | Note that this function should always return a text fragment for the @a n item |
131 | which renders with the same height both when it is selected and when it's not: | |
132 | i.e. if you call, inside your OnGetItem() implementation, @c IsSelected(n) to | |
133 | make the items appear differently when they are selected, then you should make | |
9cc56d1f FM |
134 | sure that the returned HTML fragment will render with the same height or else |
135 | you'll see some artifacts when the user selects an item. | |
551266a9 | 136 | */ |
da1ed74c | 137 | virtual wxString OnGetItem(size_t n) const = 0; |
23324ae1 FM |
138 | }; |
139 | ||
140 | ||
e54c96f1 | 141 | |
23324ae1 FM |
142 | /** |
143 | @class wxSimpleHtmlListBox | |
7c913512 | 144 | |
23324ae1 FM |
145 | wxSimpleHtmlListBox is an implementation of wxHtmlListBox which |
146 | shows HTML content in the listbox rows. | |
7c913512 | 147 | |
9cc56d1f FM |
148 | Unlike wxHtmlListBox, this is not an abstract class and thus it has the |
149 | advantage that you can use it without deriving your own class from it. | |
23324ae1 | 150 | However, it also has the disadvantage that this is not a virtual control and |
9cc56d1f FM |
151 | thus it's not well-suited for those cases where you need to show a huge number |
152 | of items: every time you add/insert a string, it will be stored internally | |
153 | and thus will take memory. | |
7c913512 | 154 | |
23324ae1 | 155 | The interface exposed by wxSimpleHtmlListBox fully implements the |
9cc56d1f FM |
156 | wxControlWithItems interface, thus you should refer to wxControlWithItems's |
157 | documentation for the API reference for adding/removing/retrieving items in | |
158 | the listbox. Also note that the wxVListBox::SetItemCount function is | |
23324ae1 | 159 | @c protected in wxSimpleHtmlListBox's context so that you cannot call it |
9cc56d1f | 160 | directly, wxSimpleHtmlListBox will do it for you. |
7c913512 | 161 | |
23324ae1 FM |
162 | Note: in case you need to append a lot of items to the control at once, make |
163 | sure to use the | |
9cc56d1f | 164 | @ref wxControlWithItems::Append "Append(const wxArrayString&)" function. |
7c913512 | 165 | |
23324ae1 FM |
166 | Thus the only difference between a wxListBox and a wxSimpleHtmlListBox |
167 | is that the latter stores strings which can contain HTML fragments (see the | |
9cc56d1f | 168 | list of @ref overview_html_supptags "tags supported by wxHTML"). |
7c913512 | 169 | |
23324ae1 | 170 | Note that the HTML strings you fetch to wxSimpleHtmlListBox should not contain |
9cc56d1f | 171 | the @c \<html\> or @c \<body\> tags. |
7c913512 | 172 | |
23324ae1 | 173 | @beginStyleTable |
8c6791e4 | 174 | @style{wxHLB_DEFAULT_STYLE} |
23324ae1 | 175 | The default style: wxBORDER_SUNKEN |
8c6791e4 | 176 | @style{wxHLB_MULTIPLE} |
9cc56d1f | 177 | Multiple-selection list: the user can toggle multiple items on and off. |
23324ae1 | 178 | @endStyleTable |
7c913512 | 179 | |
9cc56d1f FM |
180 | |
181 | A wxSimpleHtmlListBox emits the same events used by wxListBox and by wxHtmlListBox. | |
182 | ||
3051a44a | 183 | @beginEventEmissionTable |
9cc56d1f FM |
184 | @event{EVT_LISTBOX(id, func)} |
185 | Process a wxEVT_COMMAND_LISTBOX_SELECTED event, when an item on the list | |
3051a44a | 186 | is selected. See wxCommandEvent. |
9cc56d1f FM |
187 | @event{EVT_LISTBOX_DCLICK(id, func)} |
188 | Process a wxEVT_COMMAND_LISTBOX_DOUBLECLICKED event, when the listbox is | |
3051a44a | 189 | double-clicked. See wxCommandEvent. |
9cc56d1f | 190 | @event{EVT_HTML_CELL_CLICKED(id, func)} |
3051a44a | 191 | A wxHtmlCell was clicked. See wxHtmlCellEvent. |
9cc56d1f | 192 | @event{EVT_HTML_CELL_HOVER(id, func)} |
3051a44a | 193 | The mouse passed over a wxHtmlCell. See wxHtmlCellEvent. |
9cc56d1f | 194 | @event{EVT_HTML_LINK_CLICKED(id, func)} |
3051a44a | 195 | A wxHtmlCell which contains an hyperlink was clicked. See wxHtmlLinkEvent |
9cc56d1f FM |
196 | @endEventTable |
197 | ||
23324ae1 FM |
198 | @library{wxhtml} |
199 | @category{ctrl} | |
7e59b885 | 200 | @appearance{simplehtmllistbox.png} |
7c913512 | 201 | |
e54c96f1 | 202 | @see wxSimpleHtmlListBox::Create |
23324ae1 FM |
203 | */ |
204 | class wxSimpleHtmlListBox : public wxHtmlListBox | |
205 | { | |
206 | public: | |
23324ae1 | 207 | /** |
9cc56d1f FM |
208 | Constructor, creating and showing the HTML list box. |
209 | ||
210 | @param parent | |
211 | Parent window. Must not be NULL. | |
212 | @param id | |
213 | Window identifier. A value of -1 indicates a default value. | |
214 | @param pos | |
215 | Window position. | |
216 | @param size | |
217 | Window size. If wxDefaultSize is specified then the window is sized appropriately. | |
218 | @param n | |
219 | Number of strings with which to initialise the control. | |
220 | @param choices | |
221 | An array of strings with which to initialise the control. | |
222 | @param style | |
223 | Window style. See wxHLB_* flags. | |
224 | @param validator | |
225 | Window validator. | |
226 | @param name | |
227 | Window name. | |
23324ae1 | 228 | */ |
11e3af6e FM |
229 | wxSimpleHtmlListBox(wxWindow* parent, wxWindowID id, |
230 | const wxPoint& pos = wxDefaultPosition, | |
231 | const wxSize& size = wxDefaultSize, | |
232 | int n = 0, | |
233 | const wxString choices[] = NULL, | |
234 | long style = wxHLB_DEFAULT_STYLE, | |
235 | const wxValidator& validator = wxDefaultValidator, | |
236 | const wxString& name = wxSimpleHtmlListBoxNameStr); | |
9cc56d1f FM |
237 | |
238 | /** | |
239 | Constructor, creating and showing the HTML list box. | |
240 | ||
241 | @param parent | |
242 | Parent window. Must not be NULL. | |
243 | @param id | |
244 | Window identifier. A value of -1 indicates a default value. | |
245 | @param pos | |
246 | Window position. | |
247 | @param size | |
248 | Window size. If wxDefaultSize is specified then the window is sized appropriately. | |
249 | @param choices | |
250 | An array of strings with which to initialise the control. | |
251 | @param style | |
252 | Window style. See wxHLB_* flags. | |
253 | @param validator | |
254 | Window validator. | |
255 | @param name | |
256 | Window name. | |
257 | */ | |
11e3af6e FM |
258 | wxSimpleHtmlListBox(wxWindow* parent, wxWindowID id, |
259 | const wxPoint& pos, | |
260 | const wxSize& size, | |
261 | const wxArrayString& choices, | |
262 | long style = wxHLB_DEFAULT_STYLE, | |
263 | const wxValidator& validator = wxDefaultValidator, | |
264 | const wxString& name = wxSimpleHtmlListBoxNameStr); | |
7c913512 | 265 | |
9cc56d1f FM |
266 | /** |
267 | Default constructor, you must call Create() later. | |
268 | */ | |
7c913512 | 269 | wxSimpleHtmlListBox(); |
23324ae1 FM |
270 | |
271 | /** | |
272 | Frees the array of stored items and relative client data. | |
273 | */ | |
adaaa686 | 274 | virtual ~wxSimpleHtmlListBox(); |
23324ae1 FM |
275 | |
276 | //@{ | |
277 | /** | |
7c913512 | 278 | Creates the HTML listbox for two-step construction. |
23324ae1 FM |
279 | See wxSimpleHtmlListBox() for further details. |
280 | */ | |
57bf907d | 281 | bool Create(wxWindow *parent, wxWindowID id, |
23324ae1 FM |
282 | const wxPoint& pos = wxDefaultPosition, |
283 | const wxSize& size = wxDefaultSize, | |
57bf907d | 284 | int n = 0, const wxString choices[] = NULL, |
23324ae1 FM |
285 | long style = wxHLB_DEFAULT_STYLE, |
286 | const wxValidator& validator = wxDefaultValidator, | |
11e3af6e | 287 | const wxString& name = wxSimpleHtmlListBoxNameStr); |
57bf907d | 288 | bool Create(wxWindow *parent, wxWindowID id, |
7c913512 FM |
289 | const wxPoint& pos, |
290 | const wxSize& size, | |
291 | const wxArrayString& choices, | |
292 | long style = wxHLB_DEFAULT_STYLE, | |
293 | const wxValidator& validator = wxDefaultValidator, | |
11e3af6e | 294 | const wxString& name = wxSimpleHtmlListBoxNameStr); |
23324ae1 FM |
295 | //@} |
296 | }; | |
e54c96f1 | 297 |