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