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