]>
Commit | Line | Data |
---|---|---|
bcd846ea RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dataview.h | |
3 | // Purpose: wxDataViewCtrl base classes | |
4 | // Author: Robert Roebling | |
b7e9f8b1 | 5 | // Modified by: Bo Yang |
bcd846ea RR |
6 | // Created: 08.01.06 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Robert Roebling | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DATAVIEW_H_BASE_ | |
13 | #define _WX_DATAVIEW_H_BASE_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
17 | #if wxUSE_DATAVIEWCTRL | |
18 | ||
239eaa41 | 19 | #include "wx/textctrl.h" |
56873923 | 20 | #include "wx/headercol.h" |
64ffb888 | 21 | #include "wx/variant.h" |
c04be1a2 | 22 | #include "wx/dnd.h" // For wxDragResult declaration only. |
b7e9f8b1 | 23 | #include "wx/dynarray.h" |
89352653 | 24 | #include "wx/icon.h" |
87df1c87 | 25 | #include "wx/itemid.h" |
c232dfe5 | 26 | #include "wx/weakref.h" |
8eff6c56 | 27 | #include "wx/vector.h" |
8c2654ce | 28 | #include "wx/dataobj.h" |
abfdefed | 29 | #include "wx/withimages.h" |
8c2654ce PC |
30 | |
31 | class WXDLLIMPEXP_FWD_CORE wxImageList; | |
4ed7af08 | 32 | |
e86edab0 | 33 | #if !(defined(__WXGTK20__) || defined(__WXOSX__)) || defined(__WXUNIVERSAL__) |
0a807957 | 34 | // #if !(defined(__WXOSX__)) || defined(__WXUNIVERSAL__) |
56873923 VZ |
35 | #define wxHAS_GENERIC_DATAVIEWCTRL |
36 | #endif | |
37 | ||
6eec70b9 VZ |
38 | #ifdef wxHAS_GENERIC_DATAVIEWCTRL |
39 | // this symbol doesn't follow the convention for wxUSE_XXX symbols which | |
40 | // are normally always defined as either 0 or 1, so its use is deprecated | |
41 | // and it only exists for backwards compatibility, don't use it any more | |
42 | // and use wxHAS_GENERIC_DATAVIEWCTRL instead | |
43 | #define wxUSE_GENERICDATAVIEWCTRL | |
44 | #endif | |
45 | ||
239eaa41 RR |
46 | // ---------------------------------------------------------------------------- |
47 | // wxDataViewCtrl globals | |
48 | // ---------------------------------------------------------------------------- | |
bcd846ea | 49 | |
b5dbe15d VS |
50 | class WXDLLIMPEXP_FWD_ADV wxDataViewModel; |
51 | class WXDLLIMPEXP_FWD_ADV wxDataViewCtrl; | |
52 | class WXDLLIMPEXP_FWD_ADV wxDataViewColumn; | |
53 | class WXDLLIMPEXP_FWD_ADV wxDataViewRenderer; | |
54 | class WXDLLIMPEXP_FWD_ADV wxDataViewModelNotifier; | |
fa28826d | 55 | |
23318a53 | 56 | extern WXDLLIMPEXP_DATA_ADV(const char) wxDataViewCtrlNameStr[]; |
bcd846ea | 57 | |
ce468dc2 FM |
58 | // ---------------------------------------------------------------------------- |
59 | // wxDataViewCtrl flags | |
60 | // ---------------------------------------------------------------------------- | |
61 | ||
62 | // size of a wxDataViewRenderer without contents: | |
63 | #define wxDVC_DEFAULT_RENDERER_SIZE 20 | |
64 | ||
87f0efe2 RR |
65 | // the default width of new (text) columns: |
66 | #define wxDVC_DEFAULT_WIDTH 80 | |
67 | ||
68 | // the default width of new toggle columns: | |
69 | #define wxDVC_TOGGLE_DEFAULT_WIDTH 30 | |
70 | ||
9861f022 RR |
71 | // the default minimal width of the columns: |
72 | #define wxDVC_DEFAULT_MINWIDTH 30 | |
73 | ||
f2b7492a RR |
74 | // The default alignment of wxDataViewRenderers is to take |
75 | // the alignment from the column it owns. | |
76 | #define wxDVR_DEFAULT_ALIGNMENT -1 | |
9861f022 | 77 | |
87f0efe2 | 78 | |
f554a14b | 79 | // --------------------------------------------------------- |
e0062c04 | 80 | // wxDataViewItem |
f554a14b | 81 | // --------------------------------------------------------- |
239eaa41 | 82 | |
87df1c87 VZ |
83 | // Make it a class and not a typedef to allow forward declaring it. |
84 | class wxDataViewItem : public wxItemId<void*> | |
239eaa41 RR |
85 | { |
86 | public: | |
87df1c87 VZ |
87 | wxDataViewItem() : wxItemId<void*>() { } |
88 | wxEXPLICIT wxDataViewItem(void* pItem) : wxItemId<void*>(pItem) { } | |
64ffb888 | 89 | }; |
239eaa41 | 90 | |
cd722937 RR |
91 | WX_DEFINE_ARRAY(wxDataViewItem, wxDataViewItemArray); |
92 | ||
9d8fe14a RR |
93 | // --------------------------------------------------------- |
94 | // wxDataViewModelNotifier | |
95 | // --------------------------------------------------------- | |
96 | ||
97 | class WXDLLIMPEXP_ADV wxDataViewModelNotifier | |
98 | { | |
99 | public: | |
5e6f8927 | 100 | wxDataViewModelNotifier() { m_owner = NULL; } |
9d8fe14a RR |
101 | virtual ~wxDataViewModelNotifier() { m_owner = NULL; } |
102 | ||
103 | virtual bool ItemAdded( const wxDataViewItem &parent, const wxDataViewItem &item ) = 0; | |
104 | virtual bool ItemDeleted( const wxDataViewItem &parent, const wxDataViewItem &item ) = 0; | |
105 | virtual bool ItemChanged( const wxDataViewItem &item ) = 0; | |
854cdb09 RR |
106 | virtual bool ItemsAdded( const wxDataViewItem &parent, const wxDataViewItemArray &items ); |
107 | virtual bool ItemsDeleted( const wxDataViewItem &parent, const wxDataViewItemArray &items ); | |
108 | virtual bool ItemsChanged( const wxDataViewItemArray &items ); | |
9d8fe14a RR |
109 | virtual bool ValueChanged( const wxDataViewItem &item, unsigned int col ) = 0; |
110 | virtual bool Cleared() = 0; | |
ce00f59b | 111 | |
d8090b5e RR |
112 | // some platforms, such as GTK+, may need a two step procedure for ::Reset() |
113 | virtual bool BeforeReset() { return true; } | |
673810ee | 114 | virtual bool AfterReset() { return Cleared(); } |
b5ec7dd6 | 115 | |
d3f00f59 | 116 | virtual void Resort() = 0; |
9d8fe14a RR |
117 | |
118 | void SetOwner( wxDataViewModel *owner ) { m_owner = owner; } | |
e51bf699 | 119 | wxDataViewModel *GetOwner() const { return m_owner; } |
9d8fe14a RR |
120 | |
121 | private: | |
122 | wxDataViewModel *m_owner; | |
123 | }; | |
124 | ||
125 | ||
4264606e RR |
126 | |
127 | // ---------------------------------------------------------------------------- | |
128 | // wxDataViewItemAttr: a structure containing the visual attributes of an item | |
129 | // ---------------------------------------------------------------------------- | |
130 | ||
131 | // TODO: this should be renamed to wxItemAttr or something general like this | |
132 | ||
133 | class WXDLLIMPEXP_ADV wxDataViewItemAttr | |
134 | { | |
135 | public: | |
136 | // ctors | |
c058cafa VZ |
137 | wxDataViewItemAttr() |
138 | { | |
4264606e RR |
139 | m_bold = false; |
140 | m_italic = false; | |
141 | } | |
142 | ||
143 | // setters | |
144 | void SetColour(const wxColour& colour) { m_colour = colour; } | |
145 | void SetBold( bool set ) { m_bold = set; } | |
146 | void SetItalic( bool set ) { m_italic = set; } | |
1c959a62 | 147 | void SetBackgroundColour(const wxColour& colour) { m_bgColour = colour; } |
c058cafa | 148 | |
4264606e | 149 | // accessors |
a1b806b9 | 150 | bool HasColour() const { return m_colour.IsOk(); } |
4264606e | 151 | const wxColour& GetColour() const { return m_colour; } |
c058cafa | 152 | |
2d0d7813 | 153 | bool HasFont() const { return m_bold || m_italic; } |
4264606e RR |
154 | bool GetBold() const { return m_bold; } |
155 | bool GetItalic() const { return m_italic; } | |
156 | ||
1c959a62 VZ |
157 | bool HasBackgroundColour() const { return m_bgColour.IsOk(); } |
158 | const wxColour& GetBackgroundColour() const { return m_bgColour; } | |
159 | ||
160 | bool IsDefault() const { return !(HasColour() || HasFont() || HasBackgroundColour()); } | |
c80cde00 | 161 | |
86755098 VS |
162 | // Return the font based on the given one with this attribute applied to it. |
163 | wxFont GetEffectiveFont(const wxFont& font) const; | |
164 | ||
4264606e RR |
165 | private: |
166 | wxColour m_colour; | |
167 | bool m_bold; | |
168 | bool m_italic; | |
1c959a62 | 169 | wxColour m_bgColour; |
4264606e RR |
170 | }; |
171 | ||
172 | ||
f554a14b | 173 | // --------------------------------------------------------- |
e0062c04 | 174 | // wxDataViewModel |
f554a14b | 175 | // --------------------------------------------------------- |
239eaa41 | 176 | |
d350fbec VS |
177 | WX_DECLARE_LIST_WITH_DECL(wxDataViewModelNotifier, wxDataViewModelNotifiers, |
178 | class WXDLLIMPEXP_ADV); | |
9d8fe14a | 179 | |
e4e83d3a | 180 | class WXDLLIMPEXP_ADV wxDataViewModel: public wxRefCounter |
239eaa41 RR |
181 | { |
182 | public: | |
e0062c04 | 183 | wxDataViewModel(); |
239eaa41 | 184 | |
9861f022 | 185 | virtual unsigned int GetColumnCount() const = 0; |
87f0efe2 | 186 | |
a7f61f76 | 187 | // return type as reported by wxVariant |
9861f022 | 188 | virtual wxString GetColumnType( unsigned int col ) const = 0; |
87f0efe2 | 189 | |
a7f61f76 | 190 | // get value into a wxVariant |
b5ec7dd6 | 191 | virtual void GetValue( wxVariant &variant, |
e0062c04 | 192 | const wxDataViewItem &item, unsigned int col ) const = 0; |
87f0efe2 | 193 | |
b372f20e VZ |
194 | // return true if the given item has a value to display in the given |
195 | // column: this is always true except for container items which by default | |
196 | // only show their label in the first column (but see HasContainerColumns()) | |
197 | bool HasValue(const wxDataViewItem& item, unsigned col) const | |
198 | { | |
199 | return col == 0 || !IsContainer(item) || HasContainerColumns(item); | |
200 | } | |
201 | ||
795dac4c VZ |
202 | // usually ValueChanged() should be called after changing the value in the |
203 | // model to update the control, ChangeValue() does it on its own while | |
204 | // SetValue() does not -- so while you will override SetValue(), you should | |
205 | // be usually calling ChangeValue() | |
206 | virtual bool SetValue(const wxVariant &variant, | |
207 | const wxDataViewItem &item, | |
208 | unsigned int col) = 0; | |
209 | ||
210 | bool ChangeValue(const wxVariant& variant, | |
211 | const wxDataViewItem& item, | |
212 | unsigned int col) | |
213 | { | |
214 | return SetValue(variant, item, col) && ValueChanged(item, col); | |
215 | } | |
239eaa41 | 216 | |
4264606e | 217 | // Get text attribute, return false of default attributes should be used |
7fadac88 VZ |
218 | virtual bool GetAttr(const wxDataViewItem &WXUNUSED(item), |
219 | unsigned int WXUNUSED(col), | |
220 | wxDataViewItemAttr &WXUNUSED(attr)) const | |
221 | { | |
222 | return false; | |
223 | } | |
4264606e | 224 | |
98f8e666 VZ |
225 | // Override this if you want to disable specific items |
226 | virtual bool IsEnabled(const wxDataViewItem &WXUNUSED(item), | |
227 | unsigned int WXUNUSED(col)) const | |
228 | { | |
229 | return true; | |
230 | } | |
231 | ||
1582a1db | 232 | // define hierarchy |
ed903e42 RR |
233 | virtual wxDataViewItem GetParent( const wxDataViewItem &item ) const = 0; |
234 | virtual bool IsContainer( const wxDataViewItem &item ) const = 0; | |
1e40f667 | 235 | // Is the container just a header or an item with all columns |
b5ec7dd6 VZ |
236 | virtual bool HasContainerColumns(const wxDataViewItem& WXUNUSED(item)) const |
237 | { return false; } | |
74fe973b | 238 | virtual unsigned int GetChildren( const wxDataViewItem &item, wxDataViewItemArray &children ) const = 0; |
b9b8b59c | 239 | |
239eaa41 | 240 | // delegated notifiers |
9ca2afd1 RR |
241 | bool ItemAdded( const wxDataViewItem &parent, const wxDataViewItem &item ); |
242 | bool ItemsAdded( const wxDataViewItem &parent, const wxDataViewItemArray &items ); | |
243 | bool ItemDeleted( const wxDataViewItem &parent, const wxDataViewItem &item ); | |
244 | bool ItemsDeleted( const wxDataViewItem &parent, const wxDataViewItemArray &items ); | |
245 | bool ItemChanged( const wxDataViewItem &item ); | |
246 | bool ItemsChanged( const wxDataViewItemArray &items ); | |
247 | bool ValueChanged( const wxDataViewItem &item, unsigned int col ); | |
248 | bool Cleared(); | |
b5d777c7 | 249 | |
d8090b5e RR |
250 | // some platforms, such as GTK+, may need a two step procedure for ::Reset() |
251 | bool BeforeReset(); | |
673810ee RR |
252 | bool AfterReset(); |
253 | ||
254 | ||
255 | // delegated action | |
ef427989 RR |
256 | virtual void Resort(); |
257 | ||
e0062c04 RR |
258 | void AddNotifier( wxDataViewModelNotifier *notifier ); |
259 | void RemoveNotifier( wxDataViewModelNotifier *notifier ); | |
b5ec7dd6 | 260 | |
ef427989 | 261 | // default compare function |
b5ec7dd6 | 262 | virtual int Compare( const wxDataViewItem &item1, const wxDataViewItem &item2, |
862de7b3 | 263 | unsigned int column, bool ascending ) const; |
09711964 | 264 | virtual bool HasDefaultCompare() const { return false; } |
c058cafa | 265 | |
2056dede | 266 | // internal |
ce5abbf9 | 267 | virtual bool IsListModel() const { return false; } |
e39de702 | 268 | virtual bool IsVirtualListModel() const { return false; } |
66e09788 | 269 | |
87f0efe2 RR |
270 | protected: |
271 | // the user should not delete this class directly: he should use DecRef() instead! | |
5debbdcf | 272 | virtual ~wxDataViewModel() { } |
87f0efe2 | 273 | |
9d8fe14a | 274 | wxDataViewModelNotifiers m_notifiers; |
ef427989 RR |
275 | }; |
276 | ||
2feacb6e VZ |
277 | // ---------------------------------------------------------------------------- |
278 | // wxDataViewListModel: a model of a list, i.e. flat data structure without any | |
279 | // branches/containers, used as base class by wxDataViewIndexListModel and | |
280 | // wxDataViewVirtualListModel | |
281 | // ---------------------------------------------------------------------------- | |
282 | ||
283 | class WXDLLIMPEXP_ADV wxDataViewListModel : public wxDataViewModel | |
284 | { | |
285 | public: | |
286 | // derived classes should override these methods instead of | |
287 | // {Get,Set}Value() and GetAttr() inherited from the base class | |
288 | ||
289 | virtual void GetValueByRow(wxVariant &variant, | |
290 | unsigned row, unsigned col) const = 0; | |
291 | ||
292 | virtual bool SetValueByRow(const wxVariant &variant, | |
293 | unsigned row, unsigned col) = 0; | |
294 | ||
295 | virtual bool | |
296 | GetAttrByRow(unsigned WXUNUSED(row), unsigned WXUNUSED(col), | |
7fadac88 | 297 | wxDataViewItemAttr &WXUNUSED(attr)) const |
2feacb6e VZ |
298 | { |
299 | return false; | |
300 | } | |
301 | ||
98f8e666 VZ |
302 | virtual bool IsEnabledByRow(unsigned int WXUNUSED(row), |
303 | unsigned int WXUNUSED(col)) const | |
304 | { | |
305 | return true; | |
306 | } | |
307 | ||
2feacb6e VZ |
308 | |
309 | // helper methods provided by list models only | |
310 | virtual unsigned GetRow( const wxDataViewItem &item ) const = 0; | |
311 | ||
ce00f59b | 312 | // returns the number of rows |
b955766e | 313 | virtual unsigned int GetCount() const = 0; |
2feacb6e VZ |
314 | |
315 | // implement some base class pure virtual directly | |
316 | virtual wxDataViewItem | |
317 | GetParent( const wxDataViewItem & WXUNUSED(item) ) const | |
318 | { | |
319 | // items never have valid parent in this model | |
320 | return wxDataViewItem(); | |
321 | } | |
322 | ||
323 | virtual bool IsContainer( const wxDataViewItem &item ) const | |
324 | { | |
325 | // only the invisible (and invalid) root item has children | |
326 | return !item.IsOk(); | |
327 | } | |
328 | ||
329 | // and implement some others by forwarding them to our own ones | |
330 | virtual void GetValue( wxVariant &variant, | |
331 | const wxDataViewItem &item, unsigned int col ) const | |
332 | { | |
333 | GetValueByRow(variant, GetRow(item), col); | |
334 | } | |
335 | ||
336 | virtual bool SetValue( const wxVariant &variant, | |
337 | const wxDataViewItem &item, unsigned int col ) | |
338 | { | |
339 | return SetValueByRow( variant, GetRow(item), col ); | |
340 | } | |
341 | ||
342 | virtual bool GetAttr(const wxDataViewItem &item, unsigned int col, | |
7fadac88 | 343 | wxDataViewItemAttr &attr) const |
2feacb6e VZ |
344 | { |
345 | return GetAttrByRow( GetRow(item), col, attr ); | |
346 | } | |
ce5abbf9 | 347 | |
98f8e666 VZ |
348 | virtual bool IsEnabled(const wxDataViewItem &item, unsigned int col) const |
349 | { | |
350 | return IsEnabledByRow( GetRow(item), col ); | |
351 | } | |
352 | ||
b955766e | 353 | |
ce5abbf9 | 354 | virtual bool IsListModel() const { return true; } |
2feacb6e VZ |
355 | }; |
356 | ||
ef427989 | 357 | // --------------------------------------------------------- |
c534e696 | 358 | // wxDataViewIndexListModel |
ef427989 RR |
359 | // --------------------------------------------------------- |
360 | ||
2feacb6e | 361 | class WXDLLIMPEXP_ADV wxDataViewIndexListModel: public wxDataViewListModel |
ef427989 RR |
362 | { |
363 | public: | |
c534e696 | 364 | wxDataViewIndexListModel( unsigned int initial_size = 0 ); |
c058cafa | 365 | |
c534e696 RR |
366 | void RowPrepended(); |
367 | void RowInserted( unsigned int before ); | |
368 | void RowAppended(); | |
369 | void RowDeleted( unsigned int row ); | |
8b6cf9bf | 370 | void RowsDeleted( const wxArrayInt &rows ); |
c534e696 RR |
371 | void RowChanged( unsigned int row ); |
372 | void RowValueChanged( unsigned int row, unsigned int col ); | |
33ba5a05 | 373 | void Reset( unsigned int new_size ); |
b5ec7dd6 | 374 | |
c534e696 | 375 | // convert to/from row/wxDataViewItem |
b5ec7dd6 | 376 | |
2feacb6e | 377 | virtual unsigned GetRow( const wxDataViewItem &item ) const; |
c534e696 | 378 | wxDataViewItem GetItem( unsigned int row ) const; |
b5ec7dd6 | 379 | |
c534e696 | 380 | // implement base methods |
74fe973b | 381 | virtual unsigned int GetChildren( const wxDataViewItem &item, wxDataViewItemArray &children ) const; |
b5ec7dd6 | 382 | |
9330d5af | 383 | unsigned int GetCount() const { return m_hash.GetCount(); } |
c058cafa | 384 | |
c534e696 | 385 | private: |
cd722937 | 386 | wxDataViewItemArray m_hash; |
9330d5af | 387 | unsigned int m_nextFreeID; |
517166e6 | 388 | bool m_ordered; |
239eaa41 RR |
389 | }; |
390 | ||
e39de702 RR |
391 | // --------------------------------------------------------- |
392 | // wxDataViewVirtualListModel | |
393 | // --------------------------------------------------------- | |
394 | ||
395 | #ifdef __WXMAC__ | |
396 | // better than nothing | |
f1399150 | 397 | typedef wxDataViewIndexListModel wxDataViewVirtualListModel; |
e39de702 RR |
398 | #else |
399 | ||
2feacb6e | 400 | class WXDLLIMPEXP_ADV wxDataViewVirtualListModel: public wxDataViewListModel |
e39de702 RR |
401 | { |
402 | public: | |
403 | wxDataViewVirtualListModel( unsigned int initial_size = 0 ); | |
e39de702 RR |
404 | |
405 | void RowPrepended(); | |
406 | void RowInserted( unsigned int before ); | |
407 | void RowAppended(); | |
408 | void RowDeleted( unsigned int row ); | |
409 | void RowsDeleted( const wxArrayInt &rows ); | |
410 | void RowChanged( unsigned int row ); | |
411 | void RowValueChanged( unsigned int row, unsigned int col ); | |
412 | void Reset( unsigned int new_size ); | |
413 | ||
414 | // convert to/from row/wxDataViewItem | |
415 | ||
2feacb6e | 416 | virtual unsigned GetRow( const wxDataViewItem &item ) const; |
e39de702 RR |
417 | wxDataViewItem GetItem( unsigned int row ) const; |
418 | ||
419 | // compare based on index | |
420 | ||
421 | virtual int Compare( const wxDataViewItem &item1, const wxDataViewItem &item2, | |
862de7b3 | 422 | unsigned int column, bool ascending ) const; |
e39de702 RR |
423 | virtual bool HasDefaultCompare() const; |
424 | ||
425 | // implement base methods | |
e39de702 RR |
426 | virtual unsigned int GetChildren( const wxDataViewItem &item, wxDataViewItemArray &children ) const; |
427 | ||
74d9b8fb VZ |
428 | unsigned int GetCount() const { return m_size; } |
429 | ||
e39de702 RR |
430 | // internal |
431 | virtual bool IsVirtualListModel() const { return true; } | |
e39de702 RR |
432 | |
433 | private: | |
9330d5af | 434 | unsigned int m_size; |
e39de702 RR |
435 | }; |
436 | #endif | |
c33edc08 | 437 | |
6eec70b9 VZ |
438 | // ---------------------------------------------------------------------------- |
439 | // wxDataViewRenderer and related classes | |
440 | // ---------------------------------------------------------------------------- | |
89352653 | 441 | |
6eec70b9 | 442 | #include "wx/dvrenderers.h" |
89352653 | 443 | |
f554a14b | 444 | // --------------------------------------------------------- |
6842a71a | 445 | // wxDataViewColumnBase |
f554a14b | 446 | // --------------------------------------------------------- |
6842a71a | 447 | |
56873923 | 448 | // for compatibility only, do not use |
fa28826d RR |
449 | enum wxDataViewColumnFlags |
450 | { | |
56873923 VZ |
451 | wxDATAVIEW_COL_RESIZABLE = wxCOL_RESIZABLE, |
452 | wxDATAVIEW_COL_SORTABLE = wxCOL_SORTABLE, | |
453 | wxDATAVIEW_COL_REORDERABLE = wxCOL_REORDERABLE, | |
454 | wxDATAVIEW_COL_HIDDEN = wxCOL_HIDDEN | |
fa28826d RR |
455 | }; |
456 | ||
dcb6cbec | 457 | class WXDLLIMPEXP_ADV wxDataViewColumnBase : public wxSettableHeaderColumn |
fa28826d RR |
458 | { |
459 | public: | |
e2bfe673 VZ |
460 | // ctor for the text columns: takes ownership of renderer |
461 | wxDataViewColumnBase(wxDataViewRenderer *renderer, | |
462 | unsigned int model_column) | |
463 | { | |
464 | Init(renderer, model_column); | |
465 | } | |
466 | ||
467 | // ctor for the bitmap columns | |
468 | wxDataViewColumnBase(const wxBitmap& bitmap, | |
469 | wxDataViewRenderer *renderer, | |
470 | unsigned int model_column) | |
471 | : m_bitmap(bitmap) | |
472 | { | |
473 | Init(renderer, model_column); | |
474 | } | |
475 | ||
d3c7fc99 | 476 | virtual ~wxDataViewColumnBase(); |
fa28826d | 477 | |
9861f022 | 478 | // setters: |
b5ec7dd6 | 479 | virtual void SetOwner( wxDataViewCtrl *owner ) |
9861f022 | 480 | { m_owner = owner; } |
f554a14b | 481 | |
9861f022 | 482 | // getters: |
e86edab0 | 483 | unsigned int GetModelColumn() const { return static_cast<unsigned int>(m_model_column); } |
594d5596 RR |
484 | wxDataViewCtrl *GetOwner() const { return m_owner; } |
485 | wxDataViewRenderer* GetRenderer() const { return m_renderer; } | |
9861f022 | 486 | |
56873923 VZ |
487 | // implement some of base class pure virtuals (the rest is port-dependent |
488 | // and done differently in generic and native versions) | |
489 | virtual void SetBitmap( const wxBitmap& bitmap ) { m_bitmap = bitmap; } | |
490 | virtual wxBitmap GetBitmap() const { return m_bitmap; } | |
56873923 | 491 | |
9861f022 | 492 | protected: |
baa9ebc4 | 493 | wxDataViewRenderer *m_renderer; |
6842a71a | 494 | int m_model_column; |
07a84e7b | 495 | wxBitmap m_bitmap; |
6842a71a | 496 | wxDataViewCtrl *m_owner; |
fa28826d | 497 | |
e2bfe673 VZ |
498 | private: |
499 | // common part of all ctors | |
500 | void Init(wxDataViewRenderer *renderer, unsigned int model_column); | |
fa28826d RR |
501 | }; |
502 | ||
f554a14b | 503 | // --------------------------------------------------------- |
239eaa41 | 504 | // wxDataViewCtrlBase |
f554a14b | 505 | // --------------------------------------------------------- |
239eaa41 | 506 | |
c21f7aa1 | 507 | #define wxDV_SINGLE 0x0000 // for convenience |
9861f022 RR |
508 | #define wxDV_MULTIPLE 0x0001 // can select multiple items |
509 | ||
510 | #define wxDV_NO_HEADER 0x0002 // column titles not visible | |
511 | #define wxDV_HORIZ_RULES 0x0004 // light horizontal rules between rows | |
512 | #define wxDV_VERT_RULES 0x0008 // light vertical rules between columns | |
c21f7aa1 | 513 | |
1a07a730 | 514 | #define wxDV_ROW_LINES 0x0010 // alternating colour in rows |
344ed1f3 | 515 | #define wxDV_VARIABLE_LINE_HEIGHT 0x0020 // variable line height |
1a07a730 | 516 | |
f460c29d | 517 | class WXDLLIMPEXP_ADV wxDataViewCtrlBase: public wxControl |
239eaa41 RR |
518 | { |
519 | public: | |
520 | wxDataViewCtrlBase(); | |
d3c7fc99 | 521 | virtual ~wxDataViewCtrlBase(); |
f554a14b | 522 | |
ce468dc2 FM |
523 | // model |
524 | // ----- | |
525 | ||
e0062c04 RR |
526 | virtual bool AssociateModel( wxDataViewModel *model ); |
527 | wxDataViewModel* GetModel(); | |
a75124d0 | 528 | const wxDataViewModel* GetModel() const; |
f554a14b | 529 | |
ce468dc2 FM |
530 | |
531 | // column management | |
532 | // ----------------- | |
533 | ||
b5ec7dd6 | 534 | wxDataViewColumn *PrependTextColumn( const wxString &label, unsigned int model_column, |
736fe67c | 535 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
56873923 | 536 | wxAlignment align = wxALIGN_NOT, |
736fe67c | 537 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
b5ec7dd6 | 538 | wxDataViewColumn *PrependIconTextColumn( const wxString &label, unsigned int model_column, |
736fe67c | 539 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
56873923 | 540 | wxAlignment align = wxALIGN_NOT, |
736fe67c RR |
541 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
542 | wxDataViewColumn *PrependToggleColumn( const wxString &label, unsigned int model_column, | |
543 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_TOGGLE_DEFAULT_WIDTH, | |
544 | wxAlignment align = wxALIGN_CENTER, | |
545 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
b5ec7dd6 | 546 | wxDataViewColumn *PrependProgressColumn( const wxString &label, unsigned int model_column, |
736fe67c RR |
547 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_DEFAULT_WIDTH, |
548 | wxAlignment align = wxALIGN_CENTER, | |
549 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
550 | wxDataViewColumn *PrependDateColumn( const wxString &label, unsigned int model_column, | |
551 | wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, int width = -1, | |
56873923 | 552 | wxAlignment align = wxALIGN_NOT, |
736fe67c RR |
553 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
554 | wxDataViewColumn *PrependBitmapColumn( const wxString &label, unsigned int model_column, | |
555 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, | |
556 | wxAlignment align = wxALIGN_CENTER, | |
557 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
558 | wxDataViewColumn *PrependTextColumn( const wxBitmap &label, unsigned int model_column, | |
559 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, | |
56873923 | 560 | wxAlignment align = wxALIGN_NOT, |
736fe67c RR |
561 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
562 | wxDataViewColumn *PrependIconTextColumn( const wxBitmap &label, unsigned int model_column, | |
563 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, | |
56873923 | 564 | wxAlignment align = wxALIGN_NOT, |
736fe67c RR |
565 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
566 | wxDataViewColumn *PrependToggleColumn( const wxBitmap &label, unsigned int model_column, | |
567 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_TOGGLE_DEFAULT_WIDTH, | |
568 | wxAlignment align = wxALIGN_CENTER, | |
569 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
570 | wxDataViewColumn *PrependProgressColumn( const wxBitmap &label, unsigned int model_column, | |
571 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_DEFAULT_WIDTH, | |
572 | wxAlignment align = wxALIGN_CENTER, | |
573 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
574 | wxDataViewColumn *PrependDateColumn( const wxBitmap &label, unsigned int model_column, | |
575 | wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, int width = -1, | |
56873923 | 576 | wxAlignment align = wxALIGN_NOT, |
736fe67c RR |
577 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
578 | wxDataViewColumn *PrependBitmapColumn( const wxBitmap &label, unsigned int model_column, | |
579 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, | |
580 | wxAlignment align = wxALIGN_CENTER, | |
581 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
b5ec7dd6 VZ |
582 | |
583 | wxDataViewColumn *AppendTextColumn( const wxString &label, unsigned int model_column, | |
87f0efe2 | 584 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
56873923 | 585 | wxAlignment align = wxALIGN_NOT, |
87f0efe2 | 586 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
b5ec7dd6 | 587 | wxDataViewColumn *AppendIconTextColumn( const wxString &label, unsigned int model_column, |
b04fcede | 588 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
56873923 | 589 | wxAlignment align = wxALIGN_NOT, |
b04fcede | 590 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
c7074d44 | 591 | wxDataViewColumn *AppendToggleColumn( const wxString &label, unsigned int model_column, |
87f0efe2 RR |
592 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_TOGGLE_DEFAULT_WIDTH, |
593 | wxAlignment align = wxALIGN_CENTER, | |
594 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
b5ec7dd6 | 595 | wxDataViewColumn *AppendProgressColumn( const wxString &label, unsigned int model_column, |
87f0efe2 RR |
596 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_DEFAULT_WIDTH, |
597 | wxAlignment align = wxALIGN_CENTER, | |
598 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
c7074d44 | 599 | wxDataViewColumn *AppendDateColumn( const wxString &label, unsigned int model_column, |
87f0efe2 | 600 | wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, int width = -1, |
56873923 | 601 | wxAlignment align = wxALIGN_NOT, |
87f0efe2 | 602 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
c7074d44 | 603 | wxDataViewColumn *AppendBitmapColumn( const wxString &label, unsigned int model_column, |
87f0efe2 RR |
604 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
605 | wxAlignment align = wxALIGN_CENTER, | |
606 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
c7074d44 | 607 | wxDataViewColumn *AppendTextColumn( const wxBitmap &label, unsigned int model_column, |
87f0efe2 | 608 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
56873923 | 609 | wxAlignment align = wxALIGN_NOT, |
87f0efe2 | 610 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
b04fcede RR |
611 | wxDataViewColumn *AppendIconTextColumn( const wxBitmap &label, unsigned int model_column, |
612 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, | |
56873923 | 613 | wxAlignment align = wxALIGN_NOT, |
b04fcede | 614 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
c7074d44 | 615 | wxDataViewColumn *AppendToggleColumn( const wxBitmap &label, unsigned int model_column, |
87f0efe2 RR |
616 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_TOGGLE_DEFAULT_WIDTH, |
617 | wxAlignment align = wxALIGN_CENTER, | |
618 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
c7074d44 | 619 | wxDataViewColumn *AppendProgressColumn( const wxBitmap &label, unsigned int model_column, |
87f0efe2 RR |
620 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_DEFAULT_WIDTH, |
621 | wxAlignment align = wxALIGN_CENTER, | |
622 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
c7074d44 | 623 | wxDataViewColumn *AppendDateColumn( const wxBitmap &label, unsigned int model_column, |
87f0efe2 | 624 | wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, int width = -1, |
56873923 | 625 | wxAlignment align = wxALIGN_NOT, |
87f0efe2 | 626 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
c7074d44 | 627 | wxDataViewColumn *AppendBitmapColumn( const wxBitmap &label, unsigned int model_column, |
87f0efe2 RR |
628 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
629 | wxAlignment align = wxALIGN_CENTER, | |
630 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
736fe67c | 631 | |
736fe67c | 632 | virtual bool PrependColumn( wxDataViewColumn *col ); |
19723525 | 633 | virtual bool InsertColumn( unsigned int pos, wxDataViewColumn *col ); |
f554a14b | 634 | virtual bool AppendColumn( wxDataViewColumn *col ); |
9861f022 | 635 | |
91a6c655 RR |
636 | virtual unsigned int GetColumnCount() const = 0; |
637 | virtual wxDataViewColumn* GetColumn( unsigned int pos ) const = 0; | |
453091c2 | 638 | virtual int GetColumnPosition( const wxDataViewColumn *column ) const = 0; |
b5ec7dd6 | 639 | |
91a6c655 RR |
640 | virtual bool DeleteColumn( wxDataViewColumn *column ) = 0; |
641 | virtual bool ClearColumns() = 0; | |
b5ec7dd6 | 642 | |
1b27b2bd | 643 | void SetExpanderColumn( wxDataViewColumn *col ) |
3b6280be | 644 | { m_expander_column = col ; DoSetExpanderColumn(); } |
b5ec7dd6 | 645 | wxDataViewColumn *GetExpanderColumn() const |
3b6280be | 646 | { return m_expander_column; } |
b5ec7dd6 | 647 | |
21f47fb9 | 648 | virtual wxDataViewColumn *GetSortingColumn() const = 0; |
23318a53 | 649 | |
ce468dc2 FM |
650 | |
651 | // items management | |
652 | // ---------------- | |
653 | ||
3b6280be RR |
654 | void SetIndent( int indent ) |
655 | { m_indent = indent ; DoSetIndent(); } | |
b5ec7dd6 VZ |
656 | int GetIndent() const |
657 | { return m_indent; } | |
3b6280be | 658 | |
80ce465c VZ |
659 | // Current item is the one used by the keyboard navigation, it is the same |
660 | // as the (unique) selected item in single selection mode so these | |
661 | // functions are mostly useful for controls with wxDV_MULTIPLE style. | |
662 | wxDataViewItem GetCurrentItem() const; | |
663 | void SetCurrentItem(const wxDataViewItem& item); | |
664 | ||
ee1377e1 VS |
665 | // Currently focused column of the current item or NULL if no column has focus |
666 | virtual wxDataViewColumn *GetCurrentColumn() const = 0; | |
667 | ||
fa93d732 VZ |
668 | // Selection: both GetSelection() and GetSelections() can be used for the |
669 | // controls both with and without wxDV_MULTIPLE style. For single selection | |
670 | // controls GetSelections() is not very useful however. And for multi | |
671 | // selection controls GetSelection() returns an invalid item if more than | |
672 | // one item is selected. Use GetSelectedItemsCount() or HasSelection() to | |
673 | // check if any items are selected at all. | |
674 | virtual int GetSelectedItemsCount() const = 0; | |
675 | bool HasSelection() const { return GetSelectedItemsCount() != 0; } | |
676 | wxDataViewItem GetSelection() const; | |
b7e9f8b1 RR |
677 | virtual int GetSelections( wxDataViewItemArray & sel ) const = 0; |
678 | virtual void SetSelections( const wxDataViewItemArray & sel ) = 0; | |
679 | virtual void Select( const wxDataViewItem & item ) = 0; | |
680 | virtual void Unselect( const wxDataViewItem & item ) = 0; | |
681 | virtual bool IsSelected( const wxDataViewItem & item ) const = 0; | |
682 | ||
b7e9f8b1 RR |
683 | virtual void SelectAll() = 0; |
684 | virtual void UnselectAll() = 0; | |
685 | ||
f71d3ba4 | 686 | virtual void Expand( const wxDataViewItem & item ) = 0; |
4219d8b0 | 687 | virtual void ExpandAncestors( const wxDataViewItem & item ); |
f71d3ba4 | 688 | virtual void Collapse( const wxDataViewItem & item ) = 0; |
739a8399 | 689 | virtual bool IsExpanded( const wxDataViewItem & item ) const = 0; |
f71d3ba4 | 690 | |
6154212e | 691 | virtual void EnsureVisible( const wxDataViewItem & item, |
4219d8b0 | 692 | const wxDataViewColumn *column = NULL ) = 0; |
a87b466d | 693 | virtual void HitTest( const wxPoint & point, wxDataViewItem &item, wxDataViewColumn* &column ) const = 0; |
fbda518c | 694 | virtual wxRect GetItemRect( const wxDataViewItem & item, const wxDataViewColumn *column = NULL ) const = 0; |
bbfd4548 VZ |
695 | |
696 | virtual bool SetRowHeight( int WXUNUSED(rowHeight) ) { return false; } | |
697 | ||
907f09f4 VS |
698 | virtual void EditItem(const wxDataViewItem& item, const wxDataViewColumn *column) = 0; |
699 | ||
700 | // Use EditItem() instead | |
701 | wxDEPRECATED( void StartEditor(const wxDataViewItem& item, unsigned int column) ); | |
8c2654ce | 702 | |
f54e5c1a VZ |
703 | #if wxUSE_DRAG_AND_DROP |
704 | virtual bool EnableDragSource(const wxDataFormat& WXUNUSED(format)) | |
705 | { return false; } | |
706 | virtual bool EnableDropTarget(const wxDataFormat& WXUNUSED(format)) | |
707 | { return false; } | |
708 | #endif // wxUSE_DRAG_AND_DROP | |
b7e9f8b1 | 709 | |
2fa90e33 VZ |
710 | // define control visual attributes |
711 | // -------------------------------- | |
712 | ||
713 | virtual wxVisualAttributes GetDefaultAttributes() const | |
714 | { | |
715 | return GetClassDefaultAttributes(GetWindowVariant()); | |
716 | } | |
717 | ||
718 | static wxVisualAttributes | |
719 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL) | |
720 | { | |
721 | return wxControl::GetCompositeControlsDefaultAttributes(variant); | |
722 | } | |
723 | ||
3b6280be RR |
724 | protected: |
725 | virtual void DoSetExpanderColumn() = 0 ; | |
726 | virtual void DoSetIndent() = 0; | |
727 | ||
239eaa41 | 728 | private: |
80ce465c VZ |
729 | // Implementation of the public Set/GetCurrentItem() methods which are only |
730 | // called in multi selection case (for single selection controls their | |
731 | // implementation is trivial and is done in the base class itself). | |
732 | virtual wxDataViewItem DoGetCurrentItem() const = 0; | |
733 | virtual void DoSetCurrentItem(const wxDataViewItem& item) = 0; | |
734 | ||
e0062c04 | 735 | wxDataViewModel *m_model; |
1b27b2bd | 736 | wxDataViewColumn *m_expander_column; |
3b6280be | 737 | int m_indent ; |
b5ec7dd6 | 738 | |
239eaa41 | 739 | protected: |
260b9be7 | 740 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCtrlBase) |
239eaa41 | 741 | }; |
bcd846ea | 742 | |
eb7f97f8 RR |
743 | // ---------------------------------------------------------------------------- |
744 | // wxDataViewEvent - the event class for the wxDataViewCtrl notifications | |
745 | // ---------------------------------------------------------------------------- | |
746 | ||
2f799ae8 | 747 | class WXDLLIMPEXP_ADV wxDataViewEvent : public wxNotifyEvent |
eb7f97f8 RR |
748 | { |
749 | public: | |
750 | wxDataViewEvent(wxEventType commandType = wxEVT_NULL, int winid = 0) | |
751 | : wxNotifyEvent(commandType, winid), | |
e0062c04 | 752 | m_item(0), |
eb7f97f8 | 753 | m_col(-1), |
eb7f97f8 RR |
754 | m_model(NULL), |
755 | m_value(wxNullVariant), | |
6af3eec2 | 756 | m_column(NULL), |
47a8b1e1 VZ |
757 | m_pos(-1,-1), |
758 | m_cacheFrom(0), | |
2a648479 VZ |
759 | m_cacheTo(0), |
760 | m_editCancelled(false) | |
6effcb7c FM |
761 | #if wxUSE_DRAG_AND_DROP |
762 | , m_dataObject(NULL), | |
e4de825e | 763 | m_dataBuffer(NULL), |
c04be1a2 VZ |
764 | m_dataSize(0), |
765 | m_dragFlags(0), | |
766 | m_dropEffect(wxDragNone) | |
6effcb7c | 767 | #endif |
eb7f97f8 RR |
768 | { } |
769 | ||
770 | wxDataViewEvent(const wxDataViewEvent& event) | |
771 | : wxNotifyEvent(event), | |
e0062c04 | 772 | m_item(event.m_item), |
eb7f97f8 | 773 | m_col(event.m_col), |
eb7f97f8 RR |
774 | m_model(event.m_model), |
775 | m_value(event.m_value), | |
6af3eec2 | 776 | m_column(event.m_column), |
4bc3adad | 777 | m_pos(event.m_pos), |
47a8b1e1 | 778 | m_cacheFrom(event.m_cacheFrom), |
2a648479 VZ |
779 | m_cacheTo(event.m_cacheTo), |
780 | m_editCancelled(event.m_editCancelled) | |
6effcb7c FM |
781 | #if wxUSE_DRAG_AND_DROP |
782 | , m_dataObject(event.m_dataObject), | |
e4de825e RR |
783 | m_dataFormat(event.m_dataFormat), |
784 | m_dataBuffer(event.m_dataBuffer), | |
c04be1a2 VZ |
785 | m_dataSize(event.m_dataSize), |
786 | m_dragFlags(event.m_dragFlags), | |
787 | m_dropEffect(event.m_dropEffect) | |
6effcb7c | 788 | #endif |
eb7f97f8 RR |
789 | { } |
790 | ||
e0062c04 RR |
791 | wxDataViewItem GetItem() const { return m_item; } |
792 | void SetItem( const wxDataViewItem &item ) { m_item = item; } | |
793 | ||
eb7f97f8 RR |
794 | int GetColumn() const { return m_col; } |
795 | void SetColumn( int col ) { m_col = col; } | |
9861f022 | 796 | |
eb7f97f8 RR |
797 | wxDataViewModel* GetModel() const { return m_model; } |
798 | void SetModel( wxDataViewModel *model ) { m_model = model; } | |
9861f022 | 799 | |
eb7f97f8 RR |
800 | const wxVariant &GetValue() const { return m_value; } |
801 | void SetValue( const wxVariant &value ) { m_value = value; } | |
802 | ||
2a648479 VZ |
803 | // for wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE only |
804 | bool IsEditCancelled() const { return m_editCancelled; } | |
805 | void SetEditCanceled(bool editCancelled) { m_editCancelled = editCancelled; } | |
806 | ||
31fb32e1 RR |
807 | // for wxEVT_DATAVIEW_COLUMN_HEADER_CLICKED only |
808 | void SetDataViewColumn( wxDataViewColumn *col ) { m_column = col; } | |
9861f022 | 809 | wxDataViewColumn *GetDataViewColumn() const { return m_column; } |
c058cafa | 810 | |
6af3eec2 | 811 | // for wxEVT_DATAVIEW_CONTEXT_MENU only |
5cfb6fee | 812 | wxPoint GetPosition() const { return m_pos; } |
6af3eec2 | 813 | void SetPosition( int x, int y ) { m_pos.x = x; m_pos.y = y; } |
31fb32e1 | 814 | |
47a8b1e1 VZ |
815 | // For wxEVT_COMMAND_DATAVIEW_CACHE_HINT |
816 | int GetCacheFrom() const { return m_cacheFrom; } | |
817 | int GetCacheTo() const { return m_cacheTo; } | |
818 | void SetCache(int from, int to) { m_cacheFrom = from; m_cacheTo = to; } | |
819 | ||
820 | ||
62c9b3d7 | 821 | #if wxUSE_DRAG_AND_DROP |
e4de825e | 822 | // For drag operations |
591cc82d | 823 | void SetDataObject( wxDataObject *obj ) { m_dataObject = obj; } |
e4de825e | 824 | wxDataObject *GetDataObject() const { return m_dataObject; } |
8c2654ce | 825 | |
e4de825e RR |
826 | // For drop operations |
827 | void SetDataFormat( const wxDataFormat &format ) { m_dataFormat = format; } | |
828 | wxDataFormat GetDataFormat() const { return m_dataFormat; } | |
829 | void SetDataSize( size_t size ) { m_dataSize = size; } | |
830 | size_t GetDataSize() const { return m_dataSize; } | |
831 | void SetDataBuffer( void* buf ) { m_dataBuffer = buf;} | |
832 | void *GetDataBuffer() const { return m_dataBuffer; } | |
c04be1a2 VZ |
833 | void SetDragFlags( int flags ) { m_dragFlags = flags; } |
834 | int GetDragFlags() const { return m_dragFlags; } | |
835 | void SetDropEffect( wxDragResult effect ) { m_dropEffect = effect; } | |
836 | wxDragResult GetDropEffect() const { return m_dropEffect; } | |
664e1314 | 837 | #endif // wxUSE_DRAG_AND_DROP |
15cac64f | 838 | |
eb7f97f8 RR |
839 | virtual wxEvent *Clone() const { return new wxDataViewEvent(*this); } |
840 | ||
841 | protected: | |
e0062c04 | 842 | wxDataViewItem m_item; |
eb7f97f8 | 843 | int m_col; |
eb7f97f8 RR |
844 | wxDataViewModel *m_model; |
845 | wxVariant m_value; | |
31fb32e1 | 846 | wxDataViewColumn *m_column; |
6af3eec2 | 847 | wxPoint m_pos; |
47a8b1e1 VZ |
848 | int m_cacheFrom; |
849 | int m_cacheTo; | |
2a648479 | 850 | bool m_editCancelled; |
8c2654ce | 851 | |
5e14f15d | 852 | #if wxUSE_DRAG_AND_DROP |
591cc82d | 853 | wxDataObject *m_dataObject; |
8c2654ce | 854 | |
e4de825e RR |
855 | wxDataFormat m_dataFormat; |
856 | void* m_dataBuffer; | |
857 | size_t m_dataSize; | |
c04be1a2 VZ |
858 | |
859 | int m_dragFlags; | |
860 | wxDragResult m_dropEffect; | |
5e14f15d | 861 | #endif // wxUSE_DRAG_AND_DROP |
eb7f97f8 RR |
862 | |
863 | private: | |
864 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewEvent) | |
865 | }; | |
866 | ||
9b11752c VZ |
867 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, wxDataViewEvent ); |
868 | ||
869 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED, wxDataViewEvent ); | |
870 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED, wxDataViewEvent ); | |
871 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED, wxDataViewEvent ); | |
872 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING, wxDataViewEvent ); | |
873 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING, wxDataViewEvent ); | |
3e978cf7 | 874 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_START_EDITING, wxDataViewEvent ); |
9b11752c VZ |
875 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED, wxDataViewEvent ); |
876 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE, wxDataViewEvent ); | |
877 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, wxDataViewEvent ); | |
878 | ||
879 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU, wxDataViewEvent ); | |
880 | ||
881 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, wxDataViewEvent ); | |
882 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK, wxDataViewEvent ); | |
883 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED, wxDataViewEvent ); | |
884 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_COLUMN_REORDERED, wxDataViewEvent ); | |
885 | ||
47a8b1e1 VZ |
886 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_CACHE_HINT, wxDataViewEvent ); |
887 | ||
9b11752c VZ |
888 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_BEGIN_DRAG, wxDataViewEvent ); |
889 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE, wxDataViewEvent ); | |
890 | wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_DROP, wxDataViewEvent ); | |
15cac64f | 891 | |
eb7f97f8 RR |
892 | typedef void (wxEvtHandler::*wxDataViewEventFunction)(wxDataViewEvent&); |
893 | ||
894 | #define wxDataViewEventHandler(func) \ | |
3c778901 | 895 | wxEVENT_HANDLER_CAST(wxDataViewEventFunction, func) |
eb7f97f8 RR |
896 | |
897 | #define wx__DECLARE_DATAVIEWEVT(evt, id, fn) \ | |
898 | wx__DECLARE_EVT1(wxEVT_COMMAND_DATAVIEW_ ## evt, id, wxDataViewEventHandler(fn)) | |
899 | ||
d86c1870 RR |
900 | #define EVT_DATAVIEW_SELECTION_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(SELECTION_CHANGED, id, fn) |
901 | ||
e0062c04 | 902 | #define EVT_DATAVIEW_ITEM_ACTIVATED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_ACTIVATED, id, fn) |
6977c3bf | 903 | #define EVT_DATAVIEW_ITEM_COLLAPSING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSING, id, fn) |
3ecb8a53 | 904 | #define EVT_DATAVIEW_ITEM_COLLAPSED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSED, id, fn) |
6977c3bf | 905 | #define EVT_DATAVIEW_ITEM_EXPANDING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDING, id, fn) |
3ecb8a53 | 906 | #define EVT_DATAVIEW_ITEM_EXPANDED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDED, id, fn) |
3e978cf7 | 907 | #define EVT_DATAVIEW_ITEM_START_EDITING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_START_EDITING, id, fn) |
e0000f94 RR |
908 | #define EVT_DATAVIEW_ITEM_EDITING_STARTED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_STARTED, id, fn) |
909 | #define EVT_DATAVIEW_ITEM_EDITING_DONE(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_DONE, id, fn) | |
6608fdab | 910 | #define EVT_DATAVIEW_ITEM_VALUE_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_VALUE_CHANGED, id, fn) |
e0000f94 | 911 | |
6af3eec2 RR |
912 | #define EVT_DATAVIEW_ITEM_CONTEXT_MENU(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_CONTEXT_MENU, id, fn) |
913 | ||
31fb32e1 RR |
914 | #define EVT_DATAVIEW_COLUMN_HEADER_CLICK(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_CLICK, id, fn) |
915 | #define EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_RIGHT_CLICK, id, fn) | |
c0a66d92 | 916 | #define EVT_DATAVIEW_COLUMN_SORTED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_SORTED, id, fn) |
e483dfcb | 917 | #define EVT_DATAVIEW_COLUMN_REORDERED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_REORDERED, id, fn) |
47a8b1e1 | 918 | #define EVT_DATAVIEW_CACHE_HINT(id, fn) wx__DECLARE_DATAVIEWEVT(CACHE_HINT, id, fn) |
eb7f97f8 | 919 | |
591cc82d | 920 | #define EVT_DATAVIEW_ITEM_BEGIN_DRAG(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_BEGIN_DRAG, id, fn) |
e4de825e RR |
921 | #define EVT_DATAVIEW_ITEM_DROP_POSSIBLE(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_DROP_POSSIBLE, id, fn) |
922 | #define EVT_DATAVIEW_ITEM_DROP(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_DROP, id, fn) | |
fe9fb970 | 923 | |
56873923 | 924 | #ifdef wxHAS_GENERIC_DATAVIEWCTRL |
56873923 VZ |
925 | #include "wx/generic/dataview.h" |
926 | #elif defined(__WXGTK20__) | |
bcd846ea | 927 | #include "wx/gtk/dataview.h" |
56873923 | 928 | #elif defined(__WXMAC__) |
ef0e9220 | 929 | #include "wx/osx/dataview.h" |
bcd846ea | 930 | #else |
56873923 | 931 | #error "unknown native wxDataViewCtrl implementation" |
bcd846ea RR |
932 | #endif |
933 | ||
8eff6c56 RR |
934 | //----------------------------------------------------------------------------- |
935 | // wxDataViewListStore | |
936 | //----------------------------------------------------------------------------- | |
937 | ||
938 | class WXDLLIMPEXP_ADV wxDataViewListStoreLine | |
939 | { | |
940 | public: | |
c0a2b718 | 941 | wxDataViewListStoreLine( wxUIntPtr data = 0 ) |
8eff6c56 RR |
942 | { |
943 | m_data = data; | |
944 | } | |
8eff6c56 | 945 | |
41abc29a VZ |
946 | void SetData( wxUIntPtr data ) |
947 | { m_data = data; } | |
948 | wxUIntPtr GetData() const | |
8eff6c56 | 949 | { return m_data; } |
8c2654ce | 950 | |
8eff6c56 | 951 | wxVector<wxVariant> m_values; |
8c2654ce | 952 | |
8eff6c56 | 953 | private: |
41abc29a | 954 | wxUIntPtr m_data; |
8eff6c56 RR |
955 | }; |
956 | ||
957 | ||
958 | class WXDLLIMPEXP_ADV wxDataViewListStore: public wxDataViewIndexListModel | |
959 | { | |
960 | public: | |
961 | wxDataViewListStore(); | |
962 | ~wxDataViewListStore(); | |
963 | ||
964 | void PrependColumn( const wxString &varianttype ); | |
965 | void InsertColumn( unsigned int pos, const wxString &varianttype ); | |
966 | void AppendColumn( const wxString &varianttype ); | |
8c2654ce | 967 | |
c0a2b718 PC |
968 | void AppendItem( const wxVector<wxVariant> &values, wxUIntPtr data = 0 ); |
969 | void PrependItem( const wxVector<wxVariant> &values, wxUIntPtr data = 0 ); | |
970 | void InsertItem( unsigned int row, const wxVector<wxVariant> &values, wxUIntPtr data = 0 ); | |
8af28fab | 971 | void DeleteItem( unsigned int pos ); |
8eff6c56 RR |
972 | void DeleteAllItems(); |
973 | ||
5fb4b6cd VZ |
974 | unsigned int GetItemCount() const; |
975 | ||
518cef04 VZ |
976 | void SetItemData( const wxDataViewItem& item, wxUIntPtr data ); |
977 | wxUIntPtr GetItemData( const wxDataViewItem& item ) const; | |
978 | ||
8eff6c56 RR |
979 | // override base virtuals |
980 | ||
981 | virtual unsigned int GetColumnCount() const; | |
982 | ||
983 | virtual wxString GetColumnType( unsigned int col ) const; | |
984 | ||
985 | virtual void GetValueByRow( wxVariant &value, | |
986 | unsigned int row, unsigned int col ) const; | |
987 | ||
988 | virtual bool SetValueByRow( const wxVariant &value, | |
989 | unsigned int row, unsigned int col ); | |
990 | ||
8c2654ce | 991 | |
8eff6c56 RR |
992 | public: |
993 | wxVector<wxDataViewListStoreLine*> m_data; | |
994 | wxArrayString m_cols; | |
995 | }; | |
996 | ||
dc813e6c RR |
997 | //----------------------------------------------------------------------------- |
998 | ||
999 | class WXDLLIMPEXP_ADV wxDataViewListCtrl: public wxDataViewCtrl | |
1000 | { | |
1001 | public: | |
1002 | wxDataViewListCtrl(); | |
1003 | wxDataViewListCtrl( wxWindow *parent, wxWindowID id, | |
1004 | const wxPoint& pos = wxDefaultPosition, | |
1005 | const wxSize& size = wxDefaultSize, long style = wxDV_ROW_LINES, | |
1006 | const wxValidator& validator = wxDefaultValidator ); | |
1007 | ~wxDataViewListCtrl(); | |
1008 | ||
1009 | bool Create( wxWindow *parent, wxWindowID id, | |
1010 | const wxPoint& pos = wxDefaultPosition, | |
1011 | const wxSize& size = wxDefaultSize, long style = wxDV_ROW_LINES, | |
1012 | const wxValidator& validator = wxDefaultValidator ); | |
1013 | ||
1014 | wxDataViewListStore *GetStore() | |
1015 | { return (wxDataViewListStore*) GetModel(); } | |
1016 | const wxDataViewListStore *GetStore() const | |
1017 | { return (const wxDataViewListStore*) GetModel(); } | |
1018 | ||
17de95e4 | 1019 | int ItemToRow(const wxDataViewItem &item) const |
780e4fd0 | 1020 | { return item.IsOk() ? (int)GetStore()->GetRow(item) : wxNOT_FOUND; } |
17de95e4 VS |
1021 | wxDataViewItem RowToItem(int row) const |
1022 | { return row == wxNOT_FOUND ? wxDataViewItem() : GetStore()->GetItem(row); } | |
1023 | ||
fa629ada VS |
1024 | int GetSelectedRow() const |
1025 | { return ItemToRow(GetSelection()); } | |
1026 | void SelectRow(unsigned row) | |
1027 | { Select(RowToItem(row)); } | |
1028 | void UnselectRow(unsigned row) | |
1029 | { Unselect(RowToItem(row)); } | |
1030 | bool IsRowSelected(unsigned row) const | |
1031 | { return IsSelected(RowToItem(row)); } | |
1032 | ||
95b20f41 RR |
1033 | bool AppendColumn( wxDataViewColumn *column, const wxString &varianttype ); |
1034 | bool PrependColumn( wxDataViewColumn *column, const wxString &varianttype ); | |
1035 | bool InsertColumn( unsigned int pos, wxDataViewColumn *column, const wxString &varianttype ); | |
8c2654ce | 1036 | |
95b20f41 RR |
1037 | // overridden from base class |
1038 | virtual bool PrependColumn( wxDataViewColumn *col ); | |
1039 | virtual bool InsertColumn( unsigned int pos, wxDataViewColumn *col ); | |
1040 | virtual bool AppendColumn( wxDataViewColumn *col ); | |
1041 | ||
f54e5c1a VZ |
1042 | wxDataViewColumn *AppendTextColumn( const wxString &label, |
1043 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, | |
dc813e6c | 1044 | int width = -1, wxAlignment align = wxALIGN_LEFT, int flags = wxDATAVIEW_COL_RESIZABLE ); |
f54e5c1a VZ |
1045 | wxDataViewColumn *AppendToggleColumn( const wxString &label, |
1046 | wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, | |
dc813e6c | 1047 | int width = -1, wxAlignment align = wxALIGN_LEFT, int flags = wxDATAVIEW_COL_RESIZABLE ); |
f54e5c1a VZ |
1048 | wxDataViewColumn *AppendProgressColumn( const wxString &label, |
1049 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, | |
dc813e6c | 1050 | int width = -1, wxAlignment align = wxALIGN_LEFT, int flags = wxDATAVIEW_COL_RESIZABLE ); |
f54e5c1a VZ |
1051 | wxDataViewColumn *AppendIconTextColumn( const wxString &label, |
1052 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, | |
dc813e6c RR |
1053 | int width = -1, wxAlignment align = wxALIGN_LEFT, int flags = wxDATAVIEW_COL_RESIZABLE ); |
1054 | ||
c0a2b718 | 1055 | void AppendItem( const wxVector<wxVariant> &values, wxUIntPtr data = 0 ) |
dc813e6c | 1056 | { GetStore()->AppendItem( values, data ); } |
c0a2b718 | 1057 | void PrependItem( const wxVector<wxVariant> &values, wxUIntPtr data = 0 ) |
dc813e6c | 1058 | { GetStore()->PrependItem( values, data ); } |
c0a2b718 | 1059 | void InsertItem( unsigned int row, const wxVector<wxVariant> &values, wxUIntPtr data = 0 ) |
dc813e6c RR |
1060 | { GetStore()->InsertItem( row, values, data ); } |
1061 | void DeleteItem( unsigned row ) | |
1062 | { GetStore()->DeleteItem( row ); } | |
1063 | void DeleteAllItems() | |
1064 | { GetStore()->DeleteAllItems(); } | |
1065 | ||
1066 | void SetValue( const wxVariant &value, unsigned int row, unsigned int col ) | |
f54e5c1a | 1067 | { GetStore()->SetValueByRow( value, row, col ); |
832df171 RR |
1068 | GetStore()->RowValueChanged( row, col); } |
1069 | void GetValue( wxVariant &value, unsigned int row, unsigned int col ) | |
1070 | { GetStore()->GetValueByRow( value, row, col ); } | |
dc813e6c RR |
1071 | |
1072 | void SetTextValue( const wxString &value, unsigned int row, unsigned int col ) | |
832df171 RR |
1073 | { GetStore()->SetValueByRow( value, row, col ); |
1074 | GetStore()->RowValueChanged( row, col); } | |
dc813e6c RR |
1075 | wxString GetTextValue( unsigned int row, unsigned int col ) const |
1076 | { wxVariant value; GetStore()->GetValueByRow( value, row, col ); return value.GetString(); } | |
1077 | ||
1078 | void SetToggleValue( bool value, unsigned int row, unsigned int col ) | |
832df171 RR |
1079 | { GetStore()->SetValueByRow( value, row, col ); |
1080 | GetStore()->RowValueChanged( row, col); } | |
dc813e6c RR |
1081 | bool GetToggleValue( unsigned int row, unsigned int col ) const |
1082 | { wxVariant value; GetStore()->GetValueByRow( value, row, col ); return value.GetBool(); } | |
1083 | ||
518cef04 VZ |
1084 | void SetItemData( const wxDataViewItem& item, wxUIntPtr data ) |
1085 | { GetStore()->SetItemData( item, data ); } | |
1086 | wxUIntPtr GetItemData( const wxDataViewItem& item ) const | |
1087 | { return GetStore()->GetItemData( item ); } | |
1088 | ||
5fb4b6cd VZ |
1089 | int GetItemCount() const |
1090 | { return GetStore()->GetItemCount(); } | |
1091 | ||
dc813e6c RR |
1092 | void OnSize( wxSizeEvent &event ); |
1093 | ||
1094 | private: | |
1095 | DECLARE_EVENT_TABLE() | |
1096 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewListCtrl) | |
1097 | }; | |
8eff6c56 | 1098 | |
e94d0c1e RR |
1099 | //----------------------------------------------------------------------------- |
1100 | // wxDataViewTreeStore | |
1101 | //----------------------------------------------------------------------------- | |
1102 | ||
1103 | class WXDLLIMPEXP_ADV wxDataViewTreeStoreNode | |
1104 | { | |
1105 | public: | |
1106 | wxDataViewTreeStoreNode( wxDataViewTreeStoreNode *parent, | |
1107 | const wxString &text, const wxIcon &icon = wxNullIcon, wxClientData *data = NULL ); | |
1108 | virtual ~wxDataViewTreeStoreNode(); | |
b5ec7dd6 VZ |
1109 | |
1110 | void SetText( const wxString &text ) | |
e94d0c1e RR |
1111 | { m_text = text; } |
1112 | wxString GetText() const | |
1113 | { return m_text; } | |
1114 | void SetIcon( const wxIcon &icon ) | |
1115 | { m_icon = icon; } | |
1116 | const wxIcon &GetIcon() const | |
1117 | { return m_icon; } | |
1118 | void SetData( wxClientData *data ) | |
1119 | { if (m_data) delete m_data; m_data = data; } | |
1120 | wxClientData *GetData() const | |
1121 | { return m_data; } | |
b5ec7dd6 | 1122 | |
e94d0c1e RR |
1123 | wxDataViewItem GetItem() const |
1124 | { return wxDataViewItem( (void*) this ); } | |
b5ec7dd6 | 1125 | |
e94d0c1e RR |
1126 | virtual bool IsContainer() |
1127 | { return false; } | |
b5ec7dd6 | 1128 | |
e94d0c1e RR |
1129 | wxDataViewTreeStoreNode *GetParent() |
1130 | { return m_parent; } | |
b5ec7dd6 | 1131 | |
e94d0c1e RR |
1132 | private: |
1133 | wxDataViewTreeStoreNode *m_parent; | |
1134 | wxString m_text; | |
1135 | wxIcon m_icon; | |
1136 | wxClientData *m_data; | |
1137 | }; | |
1138 | ||
1139 | WX_DECLARE_LIST_WITH_DECL(wxDataViewTreeStoreNode, wxDataViewTreeStoreNodeList, | |
1140 | class WXDLLIMPEXP_ADV); | |
1141 | ||
1142 | class WXDLLIMPEXP_ADV wxDataViewTreeStoreContainerNode: public wxDataViewTreeStoreNode | |
1143 | { | |
1144 | public: | |
b5ec7dd6 VZ |
1145 | wxDataViewTreeStoreContainerNode( wxDataViewTreeStoreNode *parent, |
1146 | const wxString &text, const wxIcon &icon = wxNullIcon, const wxIcon &expanded = wxNullIcon, | |
e94d0c1e RR |
1147 | wxClientData *data = NULL ); |
1148 | virtual ~wxDataViewTreeStoreContainerNode(); | |
1149 | ||
b5ec7dd6 | 1150 | const wxDataViewTreeStoreNodeList &GetChildren() const |
e94d0c1e | 1151 | { return m_children; } |
b5ec7dd6 | 1152 | wxDataViewTreeStoreNodeList &GetChildren() |
e94d0c1e RR |
1153 | { return m_children; } |
1154 | ||
1155 | void SetExpandedIcon( const wxIcon &icon ) | |
1156 | { m_iconExpanded = icon; } | |
1157 | const wxIcon &GetExpandedIcon() const | |
1158 | { return m_iconExpanded; } | |
b5ec7dd6 | 1159 | |
a75124d0 RR |
1160 | void SetExpanded( bool expanded = true ) |
1161 | { m_isExpanded = expanded; } | |
1162 | bool IsExpanded() const | |
1163 | { return m_isExpanded; } | |
1164 | ||
e94d0c1e RR |
1165 | virtual bool IsContainer() |
1166 | { return true; } | |
b5ec7dd6 | 1167 | |
e94d0c1e RR |
1168 | private: |
1169 | wxDataViewTreeStoreNodeList m_children; | |
1170 | wxIcon m_iconExpanded; | |
a75124d0 | 1171 | bool m_isExpanded; |
e94d0c1e RR |
1172 | }; |
1173 | ||
1174 | //----------------------------------------------------------------------------- | |
1175 | ||
1176 | class WXDLLIMPEXP_ADV wxDataViewTreeStore: public wxDataViewModel | |
1177 | { | |
1178 | public: | |
1179 | wxDataViewTreeStore(); | |
1180 | ~wxDataViewTreeStore(); | |
1181 | ||
b5ec7dd6 | 1182 | wxDataViewItem AppendItem( const wxDataViewItem& parent, |
e94d0c1e RR |
1183 | const wxString &text, const wxIcon &icon = wxNullIcon, wxClientData *data = NULL ); |
1184 | wxDataViewItem PrependItem( const wxDataViewItem& parent, | |
1185 | const wxString &text, const wxIcon &icon = wxNullIcon, wxClientData *data = NULL ); | |
1186 | wxDataViewItem InsertItem( const wxDataViewItem& parent, const wxDataViewItem& previous, | |
1187 | const wxString &text, const wxIcon &icon = wxNullIcon, wxClientData *data = NULL ); | |
b5ec7dd6 VZ |
1188 | |
1189 | wxDataViewItem PrependContainer( const wxDataViewItem& parent, | |
1190 | const wxString &text, const wxIcon &icon = wxNullIcon, const wxIcon &expanded = wxNullIcon, | |
e94d0c1e RR |
1191 | wxClientData *data = NULL ); |
1192 | wxDataViewItem AppendContainer( const wxDataViewItem& parent, | |
b5ec7dd6 | 1193 | const wxString &text, const wxIcon &icon = wxNullIcon, const wxIcon &expanded = wxNullIcon, |
e94d0c1e RR |
1194 | wxClientData *data = NULL ); |
1195 | wxDataViewItem InsertContainer( const wxDataViewItem& parent, const wxDataViewItem& previous, | |
b5ec7dd6 | 1196 | const wxString &text, const wxIcon &icon = wxNullIcon, const wxIcon &expanded = wxNullIcon, |
e94d0c1e RR |
1197 | wxClientData *data = NULL ); |
1198 | ||
1199 | wxDataViewItem GetNthChild( const wxDataViewItem& parent, unsigned int pos ) const; | |
1200 | int GetChildCount( const wxDataViewItem& parent ) const; | |
ce00f59b | 1201 | |
e94d0c1e RR |
1202 | void SetItemText( const wxDataViewItem& item, const wxString &text ); |
1203 | wxString GetItemText( const wxDataViewItem& item ) const; | |
b5ec7dd6 | 1204 | void SetItemIcon( const wxDataViewItem& item, const wxIcon &icon ); |
e94d0c1e RR |
1205 | const wxIcon &GetItemIcon( const wxDataViewItem& item ) const; |
1206 | void SetItemExpandedIcon( const wxDataViewItem& item, const wxIcon &icon ); | |
1207 | const wxIcon &GetItemExpandedIcon( const wxDataViewItem& item ) const; | |
1208 | void SetItemData( const wxDataViewItem& item, wxClientData *data ); | |
1209 | wxClientData *GetItemData( const wxDataViewItem& item ) const; | |
1210 | ||
1211 | void DeleteItem( const wxDataViewItem& item ); | |
1212 | void DeleteChildren( const wxDataViewItem& item ); | |
1213 | void DeleteAllItems(); | |
b5ec7dd6 | 1214 | |
e94d0c1e RR |
1215 | // implement base methods |
1216 | ||
b5ec7dd6 | 1217 | virtual void GetValue( wxVariant &variant, |
e94d0c1e | 1218 | const wxDataViewItem &item, unsigned int col ) const; |
b5ec7dd6 | 1219 | virtual bool SetValue( const wxVariant &variant, |
e94d0c1e RR |
1220 | const wxDataViewItem &item, unsigned int col ); |
1221 | virtual wxDataViewItem GetParent( const wxDataViewItem &item ) const; | |
1222 | virtual bool IsContainer( const wxDataViewItem &item ) const; | |
1223 | virtual unsigned int GetChildren( const wxDataViewItem &item, wxDataViewItemArray &children ) const; | |
1224 | ||
b5ec7dd6 | 1225 | virtual int Compare( const wxDataViewItem &item1, const wxDataViewItem &item2, |
862de7b3 | 1226 | unsigned int column, bool ascending ) const; |
b5ec7dd6 VZ |
1227 | |
1228 | virtual bool HasDefaultCompare() const | |
e94d0c1e | 1229 | { return true; } |
b5ec7dd6 | 1230 | virtual unsigned int GetColumnCount() const |
6dd0883d | 1231 | { return 1; } |
b5ec7dd6 | 1232 | virtual wxString GetColumnType( unsigned int WXUNUSED(col) ) const |
594d5596 | 1233 | { return wxT("wxDataViewIconText"); } |
b5ec7dd6 | 1234 | |
e94d0c1e RR |
1235 | wxDataViewTreeStoreNode *FindNode( const wxDataViewItem &item ) const; |
1236 | wxDataViewTreeStoreContainerNode *FindContainerNode( const wxDataViewItem &item ) const; | |
1237 | wxDataViewTreeStoreNode *GetRoot() const { return m_root; } | |
b5ec7dd6 | 1238 | |
e94d0c1e RR |
1239 | public: |
1240 | wxDataViewTreeStoreNode *m_root; | |
1241 | }; | |
1242 | ||
dc813e6c RR |
1243 | //----------------------------------------------------------------------------- |
1244 | ||
abfdefed VZ |
1245 | class WXDLLIMPEXP_ADV wxDataViewTreeCtrl: public wxDataViewCtrl, |
1246 | public wxWithImages | |
e94d0c1e RR |
1247 | { |
1248 | public: | |
abfdefed | 1249 | wxDataViewTreeCtrl() { } |
43c64cc6 VZ |
1250 | wxDataViewTreeCtrl(wxWindow *parent, |
1251 | wxWindowID id, | |
1252 | const wxPoint& pos = wxDefaultPosition, | |
1253 | const wxSize& size = wxDefaultSize, | |
1254 | long style = wxDV_NO_HEADER | wxDV_ROW_LINES, | |
1255 | const wxValidator& validator = wxDefaultValidator) | |
1256 | { | |
43c64cc6 VZ |
1257 | Create(parent, id, pos, size, style, validator); |
1258 | } | |
1259 | ||
43c64cc6 VZ |
1260 | bool Create(wxWindow *parent, |
1261 | wxWindowID id, | |
1262 | const wxPoint& pos = wxDefaultPosition, | |
1263 | const wxSize& size = wxDefaultSize, | |
1264 | long style = wxDV_NO_HEADER | wxDV_ROW_LINES, | |
1265 | const wxValidator& validator = wxDefaultValidator); | |
e94d0c1e RR |
1266 | |
1267 | wxDataViewTreeStore *GetStore() | |
1268 | { return (wxDataViewTreeStore*) GetModel(); } | |
a75124d0 RR |
1269 | const wxDataViewTreeStore *GetStore() const |
1270 | { return (const wxDataViewTreeStore*) GetModel(); } | |
b5ec7dd6 | 1271 | |
8ddda15b RR |
1272 | bool IsContainer( const wxDataViewItem& item ) const |
1273 | { return GetStore()->IsContainer(item); } | |
1274 | ||
a75124d0 | 1275 | wxDataViewItem AppendItem( const wxDataViewItem& parent, |
1871b9fa | 1276 | const wxString &text, int icon = NO_IMAGE, wxClientData *data = NULL ); |
a75124d0 | 1277 | wxDataViewItem PrependItem( const wxDataViewItem& parent, |
1871b9fa | 1278 | const wxString &text, int icon = NO_IMAGE, wxClientData *data = NULL ); |
a75124d0 | 1279 | wxDataViewItem InsertItem( const wxDataViewItem& parent, const wxDataViewItem& previous, |
1871b9fa | 1280 | const wxString &text, int icon = NO_IMAGE, wxClientData *data = NULL ); |
a75124d0 RR |
1281 | |
1282 | wxDataViewItem PrependContainer( const wxDataViewItem& parent, | |
1871b9fa | 1283 | const wxString &text, int icon = NO_IMAGE, int expanded = NO_IMAGE, |
a75124d0 RR |
1284 | wxClientData *data = NULL ); |
1285 | wxDataViewItem AppendContainer( const wxDataViewItem& parent, | |
1871b9fa | 1286 | const wxString &text, int icon = NO_IMAGE, int expanded = NO_IMAGE, |
a75124d0 RR |
1287 | wxClientData *data = NULL ); |
1288 | wxDataViewItem InsertContainer( const wxDataViewItem& parent, const wxDataViewItem& previous, | |
1871b9fa | 1289 | const wxString &text, int icon = NO_IMAGE, int expanded = NO_IMAGE, |
a75124d0 RR |
1290 | wxClientData *data = NULL ); |
1291 | ||
1292 | wxDataViewItem GetNthChild( const wxDataViewItem& parent, unsigned int pos ) const | |
1293 | { return GetStore()->GetNthChild(parent, pos); } | |
1294 | int GetChildCount( const wxDataViewItem& parent ) const | |
1295 | { return GetStore()->GetChildCount(parent); } | |
1296 | ||
e700e296 | 1297 | void SetItemText( const wxDataViewItem& item, const wxString &text ); |
a75124d0 RR |
1298 | wxString GetItemText( const wxDataViewItem& item ) const |
1299 | { return GetStore()->GetItemText(item); } | |
e700e296 | 1300 | void SetItemIcon( const wxDataViewItem& item, const wxIcon &icon ); |
a75124d0 RR |
1301 | const wxIcon &GetItemIcon( const wxDataViewItem& item ) const |
1302 | { return GetStore()->GetItemIcon(item); } | |
e700e296 | 1303 | void SetItemExpandedIcon( const wxDataViewItem& item, const wxIcon &icon ); |
a75124d0 RR |
1304 | const wxIcon &GetItemExpandedIcon( const wxDataViewItem& item ) const |
1305 | { return GetStore()->GetItemExpandedIcon(item); } | |
1306 | void SetItemData( const wxDataViewItem& item, wxClientData *data ) | |
1307 | { GetStore()->SetItemData(item,data); } | |
1308 | wxClientData *GetItemData( const wxDataViewItem& item ) const | |
1309 | { return GetStore()->GetItemData(item); } | |
1310 | ||
e700e296 RR |
1311 | void DeleteItem( const wxDataViewItem& item ); |
1312 | void DeleteChildren( const wxDataViewItem& item ); | |
1313 | void DeleteAllItems(); | |
a75124d0 RR |
1314 | |
1315 | void OnExpanded( wxDataViewEvent &event ); | |
1316 | void OnCollapsed( wxDataViewEvent &event ); | |
1a07a730 | 1317 | void OnSize( wxSizeEvent &event ); |
b5ec7dd6 | 1318 | |
a75124d0 RR |
1319 | private: |
1320 | DECLARE_EVENT_TABLE() | |
e94d0c1e RR |
1321 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewTreeCtrl) |
1322 | }; | |
e94d0c1e | 1323 | |
bcd846ea RR |
1324 | #endif // wxUSE_DATAVIEWCTRL |
1325 | ||
1326 | #endif | |
1327 | // _WX_DATAVIEW_H_BASE_ |