]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/htmllbox.h
Moved list of subclasses away from 'classes overview' corrected some wxGrid overview...
[wxWidgets.git] / interface / wx / htmllbox.h
CommitLineData
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
23324ae1
FM
12 wxHtmlListBox is an implementation of wxVListBox which
13 shows HTML content in the listbox rows. This is still an abstract base class
14 and you will need to derive your own class from it (see htlbox sample for the
15 example) but you will only need to override a single
16 wxHtmlListBox::OnGetItem function.
7c913512 17
23324ae1
FM
18 @library{wxhtml}
19 @category{ctrl}
0c7fe6f2 20 <!-- @appearance{htmllistbox.png} -->
7c913512 21
e54c96f1 22 @see wxSimpleHtmlListBox
23324ae1
FM
23*/
24class wxHtmlListBox : public wxVListBox
25{
26public:
27 //@{
28 /**
29 Default constructor, you must call Create()
30 later.
31 */
32 wxHtmlListBox(wxWindow* parent, wxWindowID id = wxID_ANY,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 long style = 0,
36 const wxString& name = wxHtmlListBoxNameStr);
7c913512 37 wxHtmlListBox();
23324ae1
FM
38 //@}
39
40 /**
41 Destructor cleans up whatever resources we use.
42 */
adaaa686 43 virtual ~wxHtmlListBox();
23324ae1
FM
44
45 /**
46 Creates the control and optionally sets the initial number of items in it
47 (it may also be set or changed later with
48 wxVListBox::SetItemCount).
23324ae1
FM
49 There are no special styles defined for wxHtmlListBox, in particular the
50 wxListBox styles (with the exception of @c wxLB_MULTIPLE) can not be used here.
23324ae1
FM
51 Returns @true on success or @false if the control couldn't be created
52 */
53 bool Create(wxWindow* parent, wxWindowID id = wxID_ANY,
54 const wxPoint& pos = wxDefaultPosition,
55 const wxSize& size = wxDefaultSize,
56 long style = 0,
57 const wxString& name = wxHtmlListBoxNameStr);
58
59 //@{
60 /**
61 Returns the wxFileSystem used by the HTML parser of
62 this object. The file system object is used to resolve the paths in HTML
63 fragments displayed in the control and you should use
64 wxFileSystem::ChangePathTo if you use
65 relative paths for the images or other resources embedded in your HTML.
66 */
328f5751
FM
67 wxFileSystem GetFileSystem() const;
68 const wxFileSystem GetFileSystem() const;
23324ae1
FM
69 //@}
70
71 /**
72 This virtual function may be overridden to change the appearance of the
73 background of the selected cells in the same way as
74 GetSelectedTextColour().
23324ae1
FM
75 It should be rarely, if ever, used because
76 wxVListBox::SetSelectionBackground allows to
77 change the selection background for all cells at once and doing anything more
78 fancy is probably going to look strangely.
3c4f71cc 79
4cc4bfaf 80 @see GetSelectedTextColour()
23324ae1 81 */
328f5751 82 wxColour GetSelectedTextBgColour(const wxColour& colBg) const;
23324ae1
FM
83
84 /**
85 This virtual function may be overridden to customize the appearance of the
4cc4bfaf 86 selected cells. It is used to determine how the colour @a colFg is going to
23324ae1
FM
87 look inside selection. By default all original colours are completely ignored
88 and the standard, system-dependent, selection colour is used but the program
89 may wish to override this to achieve some custom appearance.
3c4f71cc 90
4cc4bfaf
FM
91 @see GetSelectedTextBgColour(),
92 wxVListBox::SetSelectionBackground, wxSystemSettings::GetColour
23324ae1 93 */
328f5751 94 wxColour GetSelectedTextColour(const wxColour& colFg) const;
23324ae1
FM
95
96 /**
97 This method must be implemented in the derived class and should return
98 the body (i.e. without @c html nor @c body tags) of the HTML fragment
99 for the given item.
4cc4bfaf 100 Note that this function should always return a text fragment for the @a n item
23324ae1
FM
101 which renders with the same height both when it is selected and when it's not:
102 i.e. if you call, inside your OnGetItem() implementation, @c IsSelected(n) to
103 make the items appear differently when they are selected, then you should make
104 sure
105 that the returned HTML fragment will render with the same height or else you'll
106 see some artifacts when the user selects an item.
107 */
328f5751 108 wxString OnGetItem(size_t n) const;
23324ae1
FM
109
110 /**
111 This function may be overridden to decorate HTML returned by
112 OnGetItem().
113 */
328f5751 114 wxString OnGetItemMarkup(size_t n) const;
23324ae1
FM
115
116 /**
117 Called when the user clicks on hypertext link. Does nothing by default.
118 Overloading this method is deprecated; intercept the event instead.
3c4f71cc 119
7c913512 120 @param n
4cc4bfaf 121 Index of the item containing the link.
7c913512 122 @param link
4cc4bfaf 123 Description of the link.
3c4f71cc 124
4cc4bfaf 125 @see See also wxHtmlLinkInfo.
23324ae1
FM
126 */
127 virtual void OnLinkClicked(size_t n, const wxHtmlLinkInfo& link);
128};
129
130
e54c96f1 131
23324ae1
FM
132/**
133 @class wxSimpleHtmlListBox
7c913512 134
23324ae1
FM
135 wxSimpleHtmlListBox is an implementation of wxHtmlListBox which
136 shows HTML content in the listbox rows.
7c913512 137
23324ae1
FM
138 Unlike wxHtmlListBox, this is not an abstract class and thus it
139 has the advantage that you can use it without deriving your own class from it.
140 However, it also has the disadvantage that this is not a virtual control and
141 thus it's not
142 well-suited for those cases where you need to show a huge number of items:
143 every time you
144 add/insert a string, it will be stored internally and thus will take memory.
7c913512 145
23324ae1
FM
146 The interface exposed by wxSimpleHtmlListBox fully implements the
147 wxControlWithItems interface, thus you should refer to
148 wxControlWithItems's documentation for the API reference
149 for adding/removing/retrieving items in the listbox.
150 Also note that the wxVListBox::SetItemCount function is
151 @c protected in wxSimpleHtmlListBox's context so that you cannot call it
152 directly,
153 wxSimpleHtmlListBox will do it for you.
7c913512 154
23324ae1
FM
155 Note: in case you need to append a lot of items to the control at once, make
156 sure to use the
157 @ref wxControlWithItems::append "Append(const wxArrayString )" function.
7c913512 158
23324ae1
FM
159 Thus the only difference between a wxListBox and a wxSimpleHtmlListBox
160 is that the latter stores strings which can contain HTML fragments (see the
161 list of
162 @ref overview_htmltagssupported "tags supported by wxHTML").
7c913512 163
23324ae1 164 Note that the HTML strings you fetch to wxSimpleHtmlListBox should not contain
7c913512 165 the @c html
23324ae1 166 or @c body tags.
7c913512 167
23324ae1 168 @beginStyleTable
8c6791e4 169 @style{wxHLB_DEFAULT_STYLE}
23324ae1 170 The default style: wxBORDER_SUNKEN
8c6791e4 171 @style{wxHLB_MULTIPLE}
23324ae1
FM
172 Multiple-selection list: the user can toggle multiple items on and
173 off.
174 @endStyleTable
7c913512 175
23324ae1
FM
176 @library{wxhtml}
177 @category{ctrl}
0c7fe6f2 178 <!-- @appearance{simplehtmllistbox.png} -->
7c913512 179
e54c96f1 180 @see wxSimpleHtmlListBox::Create
23324ae1
FM
181*/
182class wxSimpleHtmlListBox : public wxHtmlListBox
183{
184public:
185 //@{
186 /**
187 Default constructor, you must call Create()
188 later.
189 */
190 wxHtmlListBox(wxWindow* parent, wxWindowID id,
191 const wxPoint& pos = wxDefaultPosition,
192 const wxSize& size = wxDefaultSize,
193 int n = 0,
4cc4bfaf 194 const wxString choices[] = NULL,
23324ae1
FM
195 long style = wxHLB_DEFAULT_STYLE,
196 const wxValidator& validator = wxDefaultValidator,
197 const wxString& name = "simpleHtmlListBox");
7c913512
FM
198 wxHtmlListBox(wxWindow* parent, wxWindowID id,
199 const wxPoint& pos,
200 const wxSize& size,
201 const wxArrayString& choices,
202 long style = wxHLB_DEFAULT_STYLE,
203 const wxValidator& validator = wxDefaultValidator,
204 const wxString& name = "simpleHtmlListBox");
205 See also
206 wxSimpleHtmlListBox::Create
207
208 wxSimpleHtmlListBox();
23324ae1
FM
209 //@}
210
211 /**
212 Frees the array of stored items and relative client data.
213 */
adaaa686 214 virtual ~wxSimpleHtmlListBox();
23324ae1
FM
215
216 //@{
217 /**
7c913512 218 Creates the HTML listbox for two-step construction.
23324ae1
FM
219 See wxSimpleHtmlListBox() for further details.
220 */
221 bool Create(wxWindow* parent, wxWindowID id,
222 const wxPoint& pos = wxDefaultPosition,
223 const wxSize& size = wxDefaultSize,
224 int n,
4cc4bfaf 225 const wxString choices[] = NULL,
23324ae1
FM
226 long style = wxHLB_DEFAULT_STYLE,
227 const wxValidator& validator = wxDefaultValidator,
228 const wxString& name = "simpleHtmlListBox");
7c913512
FM
229 bool Create(wxWindow* parent, wxWindowID id,
230 const wxPoint& pos,
231 const wxSize& size,
232 const wxArrayString& choices,
233 long style = wxHLB_DEFAULT_STYLE,
234 const wxValidator& validator = wxDefaultValidator,
235 const wxString& name = "simpleHtmlListBox");
23324ae1
FM
236 //@}
237};
e54c96f1 238