1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxDataViewCtrl base classes
4 // Author: Robert Roebling
5 // Modified by: Bo Yang
8 // Copyright: (c) Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DATAVIEW_H_BASE_
13 #define _WX_DATAVIEW_H_BASE_
17 #if wxUSE_DATAVIEWCTRL
19 #include "wx/control.h"
20 #include "wx/textctrl.h"
21 #include "wx/bitmap.h"
22 #include "wx/variant.h"
23 #include "wx/dynarray.h"
25 #include "wx/imaglist.h"
27 class WXDLLIMPEXP_FWD_CORE wxDataFormat
;
29 #if defined(__WXGTK20__)
31 // #define wxUSE_GENERICDATAVIEWCTRL 1
32 #elif defined(__WXMAC__)
34 #define wxUSE_GENERICDATAVIEWCTRL 1
37 // ----------------------------------------------------------------------------
38 // wxDataViewCtrl flags
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
42 // wxDataViewCtrl globals
43 // ----------------------------------------------------------------------------
45 class WXDLLIMPEXP_FWD_ADV wxDataViewItem
;
46 class WXDLLIMPEXP_FWD_ADV wxDataViewModel
;
47 class WXDLLIMPEXP_FWD_ADV wxDataViewCtrl
;
48 class WXDLLIMPEXP_FWD_ADV wxDataViewColumn
;
49 class WXDLLIMPEXP_FWD_ADV wxDataViewRenderer
;
50 class WXDLLIMPEXP_FWD_ADV wxDataViewModelNotifier
;
52 extern WXDLLIMPEXP_DATA_ADV(const wxChar
) wxDataViewCtrlNameStr
[];
54 // the default width of new (text) columns:
55 #define wxDVC_DEFAULT_WIDTH 80
57 // the default width of new toggle columns:
58 #define wxDVC_TOGGLE_DEFAULT_WIDTH 30
60 // the default minimal width of the columns:
61 #define wxDVC_DEFAULT_MINWIDTH 30
63 // the default alignment of wxDataViewRenderers:
64 #define wxDVR_DEFAULT_ALIGNMENT (wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL)
67 // ---------------------------------------------------------
69 // ---------------------------------------------------------
71 class WXDLLIMPEXP_ADV wxDataViewItem
74 wxDataViewItem( void* id
= NULL
)
76 wxDataViewItem( const wxDataViewItem
&item
)
78 bool IsOk() const { return m_id
!= NULL
; }
79 void* GetID() const { return m_id
; }
80 operator const void* () const { return m_id
; }
83 void Print( const wxString
&text
) const;
90 bool operator == (const wxDataViewItem
&left
, const wxDataViewItem
&right
);
92 WX_DEFINE_ARRAY(wxDataViewItem
, wxDataViewItemArray
);
94 // ---------------------------------------------------------
95 // wxDataViewModelNotifier
96 // ---------------------------------------------------------
98 class WXDLLIMPEXP_ADV wxDataViewModelNotifier
101 wxDataViewModelNotifier() { m_owner
= NULL
; }
102 virtual ~wxDataViewModelNotifier() { m_owner
= NULL
; }
104 virtual bool ItemAdded( const wxDataViewItem
&parent
, const wxDataViewItem
&item
) = 0;
105 virtual bool ItemDeleted( const wxDataViewItem
&parent
, const wxDataViewItem
&item
) = 0;
106 virtual bool ItemChanged( const wxDataViewItem
&item
) = 0;
107 virtual bool ItemsAdded( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
108 virtual bool ItemsDeleted( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
109 virtual bool ItemsChanged( const wxDataViewItemArray
&items
);
110 virtual bool ValueChanged( const wxDataViewItem
&item
, unsigned int col
) = 0;
111 virtual bool Cleared() = 0;
113 virtual void Resort() = 0;
115 void SetOwner( wxDataViewModel
*owner
) { m_owner
= owner
; }
116 wxDataViewModel
*GetOwner() { return m_owner
; }
119 wxDataViewModel
*m_owner
;
124 // ----------------------------------------------------------------------------
125 // wxDataViewItemAttr: a structure containing the visual attributes of an item
126 // ----------------------------------------------------------------------------
128 // TODO: this should be renamed to wxItemAttr or something general like this
130 class WXDLLIMPEXP_ADV wxDataViewItemAttr
141 void SetColour(const wxColour
& colour
) { m_colour
= colour
; }
142 void SetBold( bool set
) { m_bold
= set
; }
143 void SetItalic( bool set
) { m_italic
= set
; }
146 bool HasColour() const { return m_colour
.Ok(); }
147 const wxColour
& GetColour() const { return m_colour
; }
149 bool GetBold() const { return m_bold
; }
150 bool GetItalic() const { return m_italic
; }
159 // ---------------------------------------------------------
161 // ---------------------------------------------------------
163 WX_DECLARE_LIST_WITH_DECL(wxDataViewModelNotifier
, wxDataViewModelNotifiers
,
164 class WXDLLIMPEXP_ADV
);
166 class WXDLLIMPEXP_ADV wxDataViewModel
: public wxObjectRefData
171 virtual unsigned int GetColumnCount() const = 0;
173 // return type as reported by wxVariant
174 virtual wxString
GetColumnType( unsigned int col
) const = 0;
176 // get value into a wxVariant
177 virtual void GetValue( wxVariant
&variant
,
178 const wxDataViewItem
&item
, unsigned int col
) const = 0;
180 // set value, call ValueChanged() afterwards!
181 virtual bool SetValue( const wxVariant
&variant
,
182 const wxDataViewItem
&item
, unsigned int col
) = 0;
184 // Get text attribute, return false of default attributes should be used
185 virtual bool GetAttr( const wxDataViewItem
&WXUNUSED(item
), unsigned int WXUNUSED(col
), wxDataViewItemAttr
&WXUNUSED(attr
) )
189 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const = 0;
190 virtual bool IsContainer( const wxDataViewItem
&item
) const = 0;
191 // Is the container just a header or an item with all columns
192 virtual bool HasContainerColumns(const wxDataViewItem
& WXUNUSED(item
)) const
194 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const = 0;
196 // define DnD capabilities
197 virtual bool IsDraggable( const wxDataViewItem
&WXUNUSED(item
) )
199 virtual size_t GetDragDataSize( const wxDataViewItem
&WXUNUSED(item
), const wxDataFormat
&WXUNUSED(format
) )
201 virtual bool GetDragData( const wxDataViewItem
&WXUNUSED(item
), const wxDataFormat
&WXUNUSED(format
),
202 void* WXUNUSED(data
), size_t WXUNUSED(size
) )
205 // delegated notifiers
206 virtual bool ItemAdded( const wxDataViewItem
&parent
, const wxDataViewItem
&item
);
207 virtual bool ItemsAdded( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
208 virtual bool ItemDeleted( const wxDataViewItem
&parent
, const wxDataViewItem
&item
);
209 virtual bool ItemsDeleted( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
210 virtual bool ItemChanged( const wxDataViewItem
&item
);
211 virtual bool ItemsChanged( const wxDataViewItemArray
&items
);
212 virtual bool ValueChanged( const wxDataViewItem
&item
, unsigned int col
);
213 virtual bool Cleared();
216 virtual void Resort();
218 void AddNotifier( wxDataViewModelNotifier
*notifier
);
219 void RemoveNotifier( wxDataViewModelNotifier
*notifier
);
221 // default compare function
222 virtual int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
223 unsigned int column
, bool ascending
);
224 virtual bool HasDefaultCompare() const { return false; }
227 virtual bool IsIndexListModel() const { return false; }
230 // the user should not delete this class directly: he should use DecRef() instead!
231 virtual ~wxDataViewModel() { }
233 wxDataViewModelNotifiers m_notifiers
;
236 // ---------------------------------------------------------
237 // wxDataViewIndexListModel
238 // ---------------------------------------------------------
240 class WXDLLIMPEXP_ADV wxDataViewIndexListModel
: public wxDataViewModel
243 wxDataViewIndexListModel( unsigned int initial_size
= 0 );
244 ~wxDataViewIndexListModel();
246 virtual void GetValue( wxVariant
&variant
,
247 unsigned int row
, unsigned int col
) const = 0;
249 virtual bool SetValue( const wxVariant
&variant
,
250 unsigned int row
, unsigned int col
) = 0;
252 virtual bool GetAttr( unsigned int WXUNUSED(row
), unsigned int WXUNUSED(col
), wxDataViewItemAttr
&WXUNUSED(attr
) )
256 void RowInserted( unsigned int before
);
258 void RowDeleted( unsigned int row
);
259 void RowsDeleted( const wxArrayInt
&rows
);
260 void RowChanged( unsigned int row
);
261 void RowValueChanged( unsigned int row
, unsigned int col
);
262 void Reset( unsigned int new_size
);
264 // convert to/from row/wxDataViewItem
266 unsigned int GetRow( const wxDataViewItem
&item
) const;
267 wxDataViewItem
GetItem( unsigned int row
) const;
269 // compare based on index
271 virtual int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
272 unsigned int column
, bool ascending
);
273 virtual bool HasDefaultCompare() const;
275 // implement base methods
277 virtual void GetValue( wxVariant
&variant
,
278 const wxDataViewItem
&item
, unsigned int col
) const;
279 virtual bool SetValue( const wxVariant
&variant
,
280 const wxDataViewItem
&item
, unsigned int col
);
281 virtual bool GetAttr( const wxDataViewItem
&item
, unsigned int col
, wxDataViewItemAttr
&attr
);
282 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const;
283 virtual bool IsContainer( const wxDataViewItem
&item
) const;
284 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const;
287 virtual bool IsIndexListModel() const { return true; }
288 unsigned int GetLastIndex() const { return m_lastIndex
; }
291 wxDataViewItemArray m_hash
;
292 unsigned int m_lastIndex
;
298 //-----------------------------------------------------------------------------
299 // wxDataViewEditorCtrlEvtHandler
300 //-----------------------------------------------------------------------------
302 class wxDataViewEditorCtrlEvtHandler
: public wxEvtHandler
305 wxDataViewEditorCtrlEvtHandler( wxControl
*editor
, wxDataViewRenderer
*owner
);
307 void AcceptChangesAndFinish();
308 void SetFocusOnIdle( bool focus
= true ) { m_focusOnIdle
= focus
; }
311 void OnChar( wxKeyEvent
&event
);
312 void OnKillFocus( wxFocusEvent
&event
);
313 void OnIdle( wxIdleEvent
&event
);
316 wxDataViewRenderer
*m_owner
;
317 wxControl
*m_editorCtrl
;
322 DECLARE_EVENT_TABLE()
325 // ---------------------------------------------------------
326 // wxDataViewRendererBase
327 // ---------------------------------------------------------
329 enum wxDataViewCellMode
331 wxDATAVIEW_CELL_INERT
,
332 wxDATAVIEW_CELL_ACTIVATABLE
,
333 wxDATAVIEW_CELL_EDITABLE
336 enum wxDataViewCellRenderState
338 wxDATAVIEW_CELL_SELECTED
= 1,
339 wxDATAVIEW_CELL_PRELIT
= 2,
340 wxDATAVIEW_CELL_INSENSITIVE
= 4,
341 wxDATAVIEW_CELL_FOCUSED
= 8
344 class WXDLLIMPEXP_ADV wxDataViewRendererBase
: public wxObject
347 wxDataViewRendererBase( const wxString
&varianttype
,
348 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
349 int alignment
= wxDVR_DEFAULT_ALIGNMENT
);
351 virtual bool Validate( wxVariant
& WXUNUSED(value
) )
354 void SetOwner( wxDataViewColumn
*owner
) { m_owner
= owner
; }
355 wxDataViewColumn
* GetOwner() { return m_owner
; }
357 // renderer properties:
359 virtual bool SetValue( const wxVariant
& WXUNUSED(value
) ) = 0;
360 virtual bool GetValue( wxVariant
& WXUNUSED(value
) ) const = 0;
362 wxString
GetVariantType() const { return m_variantType
; }
364 virtual void SetMode( wxDataViewCellMode mode
) = 0;
365 virtual wxDataViewCellMode
GetMode() const = 0;
367 // NOTE: Set/GetAlignment do not take/return a wxAlignment enum but
368 // rather an "int"; that's because for rendering cells it's allowed
369 // to combine alignment flags (e.g. wxALIGN_LEFT|wxALIGN_BOTTOM)
370 virtual void SetAlignment( int align
) = 0;
371 virtual int GetAlignment() const = 0;
374 virtual bool HasEditorCtrl()
376 virtual wxControl
* CreateEditorCtrl(wxWindow
* WXUNUSED(parent
),
377 wxRect
WXUNUSED(labelRect
),
378 const wxVariant
& WXUNUSED(value
))
380 virtual bool GetValueFromEditorCtrl(wxControl
* WXUNUSED(editor
),
381 wxVariant
& WXUNUSED(value
))
384 virtual bool StartEditing( const wxDataViewItem
&item
, wxRect labelRect
);
385 virtual void CancelEditing();
386 virtual bool FinishEditing();
388 wxControl
*GetEditorCtrl() { return m_editorCtrl
; }
391 wxString m_variantType
;
392 wxDataViewColumn
*m_owner
;
393 wxControl
*m_editorCtrl
;
394 wxDataViewItem m_item
; // for m_editorCtrl
397 const wxDataViewCtrl
* GetView() const;
400 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRendererBase
)
403 //-----------------------------------------------------------------------------
404 // wxDataViewIconText
405 //-----------------------------------------------------------------------------
407 class WXDLLIMPEXP_ADV wxDataViewIconText
: public wxObject
410 wxDataViewIconText( const wxString
&text
= wxEmptyString
, const wxIcon
& icon
= wxNullIcon
)
411 : m_text(text
), m_icon(icon
)
413 wxDataViewIconText( const wxDataViewIconText
&other
)
414 { m_icon
= other
.m_icon
; m_text
= other
.m_text
; }
416 void SetText( const wxString
&text
) { m_text
= text
; }
417 wxString
GetText() const { return m_text
; }
418 void SetIcon( const wxIcon
&icon
) { m_icon
= icon
; }
419 const wxIcon
&GetIcon() const { return m_icon
; }
426 DECLARE_DYNAMIC_CLASS(wxDataViewIconText
)
429 bool operator == (const wxDataViewIconText
&one
, const wxDataViewIconText
&two
);
431 DECLARE_VARIANT_OBJECT_EXPORTED(wxDataViewIconText
, WXDLLIMPEXP_ADV
)
433 // ---------------------------------------------------------
434 // wxDataViewColumnBase
435 // ---------------------------------------------------------
437 enum wxDataViewColumnFlags
439 wxDATAVIEW_COL_RESIZABLE
= 1,
440 wxDATAVIEW_COL_SORTABLE
= 2,
441 wxDATAVIEW_COL_REORDERABLE
= 4,
442 wxDATAVIEW_COL_HIDDEN
= 8
445 class WXDLLIMPEXP_ADV wxDataViewColumnBase
: public wxObject
448 wxDataViewColumnBase( const wxString
&title
, wxDataViewRenderer
*renderer
,
449 unsigned int model_column
, int width
= wxDVC_DEFAULT_WIDTH
,
450 wxAlignment align
= wxALIGN_CENTER
,
451 int flags
= wxDATAVIEW_COL_RESIZABLE
);
452 wxDataViewColumnBase( const wxBitmap
&bitmap
, wxDataViewRenderer
*renderer
,
453 unsigned int model_column
, int width
= wxDVC_DEFAULT_WIDTH
,
454 wxAlignment align
= wxALIGN_CENTER
,
455 int flags
= wxDATAVIEW_COL_RESIZABLE
);
456 virtual ~wxDataViewColumnBase();
460 virtual void SetTitle( const wxString
&title
) = 0;
461 virtual void SetAlignment( wxAlignment align
) = 0;
462 virtual void SetSortable( bool sortable
) = 0;
463 virtual void SetReorderable(bool reorderable
) = 0;
464 virtual void SetResizeable( bool resizeable
) = 0;
465 virtual void SetHidden( bool hidden
) = 0;
466 virtual void SetSortOrder( bool ascending
) = 0;
467 virtual void SetFlags( int flags
);
468 virtual void SetOwner( wxDataViewCtrl
*owner
)
470 virtual void SetBitmap( const wxBitmap
&bitmap
)
473 virtual void SetMinWidth( int minWidth
) = 0;
474 virtual void SetWidth( int width
) = 0;
479 virtual wxString
GetTitle() const = 0;
480 virtual wxAlignment
GetAlignment() const = 0;
481 virtual int GetWidth() const = 0;
482 virtual int GetMinWidth() const = 0;
484 virtual int GetFlags() const;
486 virtual bool IsHidden() const = 0;
487 virtual bool IsReorderable() const = 0;
488 virtual bool IsResizeable() const = 0;
489 virtual bool IsSortable() const = 0;
490 virtual bool IsSortOrderAscending() const = 0;
492 const wxBitmap
&GetBitmap() const { return m_bitmap
; }
493 unsigned int GetModelColumn() const { return static_cast<unsigned int>(m_model_column
); }
495 wxDataViewCtrl
*GetOwner() const { return m_owner
; }
496 wxDataViewRenderer
* GetRenderer() const { return m_renderer
; }
499 wxDataViewRenderer
*m_renderer
;
502 wxDataViewCtrl
*m_owner
;
505 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumnBase
)
508 // ---------------------------------------------------------
509 // wxDataViewCtrlBase
510 // ---------------------------------------------------------
512 #define wxDV_SINGLE 0x0000 // for convenience
513 #define wxDV_MULTIPLE 0x0001 // can select multiple items
515 #define wxDV_NO_HEADER 0x0002 // column titles not visible
516 #define wxDV_HORIZ_RULES 0x0004 // light horizontal rules between rows
517 #define wxDV_VERT_RULES 0x0008 // light vertical rules between columns
519 #define wxDV_ROW_LINES 0x0010 // alternating colour in rows
521 class WXDLLIMPEXP_ADV wxDataViewCtrlBase
: public wxControl
524 wxDataViewCtrlBase();
525 virtual ~wxDataViewCtrlBase();
527 virtual bool AssociateModel( wxDataViewModel
*model
);
528 wxDataViewModel
* GetModel();
529 const wxDataViewModel
* GetModel() const;
532 wxDataViewColumn
*PrependTextColumn( const wxString
&label
, unsigned int model_column
,
533 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
534 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
535 int flags
= wxDATAVIEW_COL_RESIZABLE
);
536 wxDataViewColumn
*PrependIconTextColumn( const wxString
&label
, unsigned int model_column
,
537 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
538 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
539 int flags
= wxDATAVIEW_COL_RESIZABLE
);
540 wxDataViewColumn
*PrependToggleColumn( const wxString
&label
, unsigned int model_column
,
541 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
542 wxAlignment align
= wxALIGN_CENTER
,
543 int flags
= wxDATAVIEW_COL_RESIZABLE
);
544 wxDataViewColumn
*PrependProgressColumn( const wxString
&label
, unsigned int model_column
,
545 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
546 wxAlignment align
= wxALIGN_CENTER
,
547 int flags
= wxDATAVIEW_COL_RESIZABLE
);
548 wxDataViewColumn
*PrependDateColumn( const wxString
&label
, unsigned int model_column
,
549 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
550 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
551 int flags
= wxDATAVIEW_COL_RESIZABLE
);
552 wxDataViewColumn
*PrependBitmapColumn( const wxString
&label
, unsigned int model_column
,
553 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
554 wxAlignment align
= wxALIGN_CENTER
,
555 int flags
= wxDATAVIEW_COL_RESIZABLE
);
556 wxDataViewColumn
*PrependTextColumn( const wxBitmap
&label
, unsigned int model_column
,
557 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
558 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
559 int flags
= wxDATAVIEW_COL_RESIZABLE
);
560 wxDataViewColumn
*PrependIconTextColumn( const wxBitmap
&label
, unsigned int model_column
,
561 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
562 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
563 int flags
= wxDATAVIEW_COL_RESIZABLE
);
564 wxDataViewColumn
*PrependToggleColumn( const wxBitmap
&label
, unsigned int model_column
,
565 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
566 wxAlignment align
= wxALIGN_CENTER
,
567 int flags
= wxDATAVIEW_COL_RESIZABLE
);
568 wxDataViewColumn
*PrependProgressColumn( const wxBitmap
&label
, unsigned int model_column
,
569 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
570 wxAlignment align
= wxALIGN_CENTER
,
571 int flags
= wxDATAVIEW_COL_RESIZABLE
);
572 wxDataViewColumn
*PrependDateColumn( const wxBitmap
&label
, unsigned int model_column
,
573 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
574 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
575 int flags
= wxDATAVIEW_COL_RESIZABLE
);
576 wxDataViewColumn
*PrependBitmapColumn( const wxBitmap
&label
, unsigned int model_column
,
577 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
578 wxAlignment align
= wxALIGN_CENTER
,
579 int flags
= wxDATAVIEW_COL_RESIZABLE
);
581 wxDataViewColumn
*AppendTextColumn( const wxString
&label
, unsigned int model_column
,
582 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
583 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
584 int flags
= wxDATAVIEW_COL_RESIZABLE
);
585 wxDataViewColumn
*AppendIconTextColumn( const wxString
&label
, unsigned int model_column
,
586 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
587 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
588 int flags
= wxDATAVIEW_COL_RESIZABLE
);
589 wxDataViewColumn
*AppendToggleColumn( const wxString
&label
, unsigned int model_column
,
590 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
591 wxAlignment align
= wxALIGN_CENTER
,
592 int flags
= wxDATAVIEW_COL_RESIZABLE
);
593 wxDataViewColumn
*AppendProgressColumn( const wxString
&label
, unsigned int model_column
,
594 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
595 wxAlignment align
= wxALIGN_CENTER
,
596 int flags
= wxDATAVIEW_COL_RESIZABLE
);
597 wxDataViewColumn
*AppendDateColumn( const wxString
&label
, unsigned int model_column
,
598 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
599 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
600 int flags
= wxDATAVIEW_COL_RESIZABLE
);
601 wxDataViewColumn
*AppendBitmapColumn( const wxString
&label
, unsigned int model_column
,
602 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
603 wxAlignment align
= wxALIGN_CENTER
,
604 int flags
= wxDATAVIEW_COL_RESIZABLE
);
605 wxDataViewColumn
*AppendTextColumn( const wxBitmap
&label
, unsigned int model_column
,
606 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
607 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
608 int flags
= wxDATAVIEW_COL_RESIZABLE
);
609 wxDataViewColumn
*AppendIconTextColumn( const wxBitmap
&label
, unsigned int model_column
,
610 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
611 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
612 int flags
= wxDATAVIEW_COL_RESIZABLE
);
613 wxDataViewColumn
*AppendToggleColumn( const wxBitmap
&label
, unsigned int model_column
,
614 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
615 wxAlignment align
= wxALIGN_CENTER
,
616 int flags
= wxDATAVIEW_COL_RESIZABLE
);
617 wxDataViewColumn
*AppendProgressColumn( const wxBitmap
&label
, unsigned int model_column
,
618 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
619 wxAlignment align
= wxALIGN_CENTER
,
620 int flags
= wxDATAVIEW_COL_RESIZABLE
);
621 wxDataViewColumn
*AppendDateColumn( const wxBitmap
&label
, unsigned int model_column
,
622 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
623 wxAlignment align
= (wxAlignment
)(wxALIGN_LEFT
|wxALIGN_CENTRE_VERTICAL
),
624 int flags
= wxDATAVIEW_COL_RESIZABLE
);
625 wxDataViewColumn
*AppendBitmapColumn( const wxBitmap
&label
, unsigned int model_column
,
626 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
627 wxAlignment align
= wxALIGN_CENTER
,
628 int flags
= wxDATAVIEW_COL_RESIZABLE
);
631 virtual bool PrependColumn( wxDataViewColumn
*col
);
632 virtual bool AppendColumn( wxDataViewColumn
*col
);
634 virtual unsigned int GetColumnCount() const = 0;
635 virtual wxDataViewColumn
* GetColumn( unsigned int pos
) const = 0;
636 virtual int GetColumnPosition( const wxDataViewColumn
*column
) const = 0;
638 virtual bool DeleteColumn( wxDataViewColumn
*column
) = 0;
639 virtual bool ClearColumns() = 0;
641 void SetExpanderColumn( wxDataViewColumn
*col
)
642 { m_expander_column
= col
; DoSetExpanderColumn(); }
643 wxDataViewColumn
*GetExpanderColumn() const
644 { return m_expander_column
; }
646 virtual wxDataViewColumn
*GetSortingColumn() const = 0;
648 void SetIndent( int indent
)
649 { m_indent
= indent
; DoSetIndent(); }
650 int GetIndent() const
653 virtual wxDataViewItem
GetSelection() const = 0;
654 virtual int GetSelections( wxDataViewItemArray
& sel
) const = 0;
655 virtual void SetSelections( const wxDataViewItemArray
& sel
) = 0;
656 virtual void Select( const wxDataViewItem
& item
) = 0;
657 virtual void Unselect( const wxDataViewItem
& item
) = 0;
658 virtual bool IsSelected( const wxDataViewItem
& item
) const = 0;
660 virtual void SelectAll() = 0;
661 virtual void UnselectAll() = 0;
663 virtual void Expand( const wxDataViewItem
& item
) = 0;
664 virtual void Collapse( const wxDataViewItem
& item
) = 0;
666 virtual void EnsureVisible( const wxDataViewItem
& item
,
667 const wxDataViewColumn
*column
= NULL
) = 0;
668 virtual void HitTest( const wxPoint
& point
, wxDataViewItem
&item
, wxDataViewColumn
* &column
) const = 0;
669 virtual wxRect
GetItemRect( const wxDataViewItem
& item
, const wxDataViewColumn
*column
= NULL
) const = 0;
672 virtual void DoSetExpanderColumn() = 0 ;
673 virtual void DoSetIndent() = 0;
676 wxDataViewModel
*m_model
;
677 wxDataViewColumn
*m_expander_column
;
681 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCtrlBase
)
684 // ----------------------------------------------------------------------------
685 // wxDataViewEvent - the event class for the wxDataViewCtrl notifications
686 // ----------------------------------------------------------------------------
688 class WXDLLIMPEXP_ADV wxDataViewEvent
: public wxNotifyEvent
691 wxDataViewEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
692 : wxNotifyEvent(commandType
, winid
),
696 m_value(wxNullVariant
),
701 wxDataViewEvent(const wxDataViewEvent
& event
)
702 : wxNotifyEvent(event
),
703 m_item(event
.m_item
),
705 m_model(event
.m_model
),
706 m_value(event
.m_value
),
707 m_column(event
.m_column
),
711 wxDataViewItem
GetItem() const { return m_item
; }
712 void SetItem( const wxDataViewItem
&item
) { m_item
= item
; }
714 int GetColumn() const { return m_col
; }
715 void SetColumn( int col
) { m_col
= col
; }
717 wxDataViewModel
* GetModel() const { return m_model
; }
718 void SetModel( wxDataViewModel
*model
) { m_model
= model
; }
720 const wxVariant
&GetValue() const { return m_value
; }
721 void SetValue( const wxVariant
&value
) { m_value
= value
; }
723 // for wxEVT_DATAVIEW_COLUMN_HEADER_CLICKED only
724 void SetDataViewColumn( wxDataViewColumn
*col
) { m_column
= col
; }
725 wxDataViewColumn
*GetDataViewColumn() const { return m_column
; }
727 // for wxEVT_DATAVIEW_CONTEXT_MENU only
728 wxPoint
GetPosition() const { return m_pos
; }
729 void SetPosition( int x
, int y
) { m_pos
.x
= x
; m_pos
.y
= y
; }
731 virtual wxEvent
*Clone() const { return new wxDataViewEvent(*this); }
734 wxDataViewItem m_item
;
736 wxDataViewModel
*m_model
;
738 wxDataViewColumn
*m_column
;
742 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewEvent
)
745 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED
;
747 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED
;
748 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED
;
749 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED
;
750 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING
;
751 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING
;
752 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED
;
753 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE
;
754 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED
;
756 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU
;
758 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK
;
759 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK
;
760 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED
;
761 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_COLUMN_REORDERED
;
763 typedef void (wxEvtHandler::*wxDataViewEventFunction
)(wxDataViewEvent
&);
765 #define wxDataViewEventHandler(func) \
766 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxDataViewEventFunction, &func)
768 #define wx__DECLARE_DATAVIEWEVT(evt, id, fn) \
769 wx__DECLARE_EVT1(wxEVT_COMMAND_DATAVIEW_ ## evt, id, wxDataViewEventHandler(fn))
771 #define EVT_DATAVIEW_SELECTION_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(SELECTION_CHANGED, id, fn)
773 #define EVT_DATAVIEW_ITEM_ACTIVATED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_ACTIVATED, id, fn)
774 #define EVT_DATAVIEW_ITEM_COLLAPSING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSING, id, fn)
775 #define EVT_DATAVIEW_ITEM_COLLAPSED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSED, id, fn)
776 #define EVT_DATAVIEW_ITEM_EXPANDING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDING, id, fn)
777 #define EVT_DATAVIEW_ITEM_EXPANDED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDED, id, fn)
778 #define EVT_DATAVIEW_ITEM_EDITING_STARTED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_STARTED, id, fn)
779 #define EVT_DATAVIEW_ITEM_EDITING_DONE(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_DONE, id, fn)
780 #define EVT_DATAVIEW_ITEM_VALUE_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_VALUE_CHANGED, id, fn)
782 #define EVT_DATAVIEW_ITEM_CONTEXT_MENU(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_CONTEXT_MENU, id, fn)
784 #define EVT_DATAVIEW_COLUMN_HEADER_CLICK(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_CLICK, id, fn)
785 #define EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_RIGHT_CLICK, id, fn)
786 #define EVT_DATAVIEW_COLUMN_SORTED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_SORTED, id, fn)
787 #define EVT_DATAVIEW_COLUMN_REORDERED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_REORDERED, id, fn)
789 #if defined(wxUSE_GENERICDATAVIEWCTRL)
790 #include "wx/generic/dataview.h"
791 #elif defined(__WXGTK20__)
792 #include "wx/gtk/dataview.h"
793 #elif defined(__WXMAC__)
794 #include "wx/mac/dataview.h"
796 #include "wx/generic/dataview.h"
799 // -------------------------------------
800 // wxDataViewSpinRenderer
801 // -------------------------------------
803 class WXDLLIMPEXP_ADV wxDataViewSpinRenderer
: public wxDataViewCustomRenderer
806 wxDataViewSpinRenderer( int min
, int max
,
807 wxDataViewCellMode mode
= wxDATAVIEW_CELL_EDITABLE
,
808 int alignment
= wxDVR_DEFAULT_ALIGNMENT
);
809 virtual bool HasEditorCtrl() { return true; }
810 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
, const wxVariant
&value
);
811 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
812 virtual bool Render( wxRect rect
, wxDC
*dc
, int state
);
813 virtual wxSize
GetSize() const;
814 virtual bool SetValue( const wxVariant
&value
);
815 virtual bool GetValue( wxVariant
&value
) const;
822 //-----------------------------------------------------------------------------
823 // wxDataViewTreeStore
824 //-----------------------------------------------------------------------------
826 class WXDLLIMPEXP_ADV wxDataViewTreeStoreNode
829 wxDataViewTreeStoreNode( wxDataViewTreeStoreNode
*parent
,
830 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
831 virtual ~wxDataViewTreeStoreNode();
833 void SetText( const wxString
&text
)
835 wxString
GetText() const
837 void SetIcon( const wxIcon
&icon
)
839 const wxIcon
&GetIcon() const
841 void SetData( wxClientData
*data
)
842 { if (m_data
) delete m_data
; m_data
= data
; }
843 wxClientData
*GetData() const
846 wxDataViewItem
GetItem() const
847 { return wxDataViewItem( (void*) this ); }
849 virtual bool IsContainer()
852 wxDataViewTreeStoreNode
*GetParent()
856 wxDataViewTreeStoreNode
*m_parent
;
859 wxClientData
*m_data
;
862 WX_DECLARE_LIST_WITH_DECL(wxDataViewTreeStoreNode
, wxDataViewTreeStoreNodeList
,
863 class WXDLLIMPEXP_ADV
);
865 class WXDLLIMPEXP_ADV wxDataViewTreeStoreContainerNode
: public wxDataViewTreeStoreNode
868 wxDataViewTreeStoreContainerNode( wxDataViewTreeStoreNode
*parent
,
869 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
870 wxClientData
*data
= NULL
);
871 virtual ~wxDataViewTreeStoreContainerNode();
873 const wxDataViewTreeStoreNodeList
&GetChildren() const
874 { return m_children
; }
875 wxDataViewTreeStoreNodeList
&GetChildren()
876 { return m_children
; }
878 void SetExpandedIcon( const wxIcon
&icon
)
879 { m_iconExpanded
= icon
; }
880 const wxIcon
&GetExpandedIcon() const
881 { return m_iconExpanded
; }
883 void SetExpanded( bool expanded
= true )
884 { m_isExpanded
= expanded
; }
885 bool IsExpanded() const
886 { return m_isExpanded
; }
888 virtual bool IsContainer()
892 wxDataViewTreeStoreNodeList m_children
;
893 wxIcon m_iconExpanded
;
897 //-----------------------------------------------------------------------------
899 class WXDLLIMPEXP_ADV wxDataViewTreeStore
: public wxDataViewModel
902 wxDataViewTreeStore();
903 ~wxDataViewTreeStore();
905 wxDataViewItem
AppendItem( const wxDataViewItem
& parent
,
906 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
907 wxDataViewItem
PrependItem( const wxDataViewItem
& parent
,
908 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
909 wxDataViewItem
InsertItem( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
910 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
912 wxDataViewItem
PrependContainer( const wxDataViewItem
& parent
,
913 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
914 wxClientData
*data
= NULL
);
915 wxDataViewItem
AppendContainer( const wxDataViewItem
& parent
,
916 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
917 wxClientData
*data
= NULL
);
918 wxDataViewItem
InsertContainer( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
919 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
920 wxClientData
*data
= NULL
);
922 wxDataViewItem
GetNthChild( const wxDataViewItem
& parent
, unsigned int pos
) const;
923 int GetChildCount( const wxDataViewItem
& parent
) const;
925 void SetItemText( const wxDataViewItem
& item
, const wxString
&text
);
926 wxString
GetItemText( const wxDataViewItem
& item
) const;
927 void SetItemIcon( const wxDataViewItem
& item
, const wxIcon
&icon
);
928 const wxIcon
&GetItemIcon( const wxDataViewItem
& item
) const;
929 void SetItemExpandedIcon( const wxDataViewItem
& item
, const wxIcon
&icon
);
930 const wxIcon
&GetItemExpandedIcon( const wxDataViewItem
& item
) const;
931 void SetItemData( const wxDataViewItem
& item
, wxClientData
*data
);
932 wxClientData
*GetItemData( const wxDataViewItem
& item
) const;
934 void DeleteItem( const wxDataViewItem
& item
);
935 void DeleteChildren( const wxDataViewItem
& item
);
936 void DeleteAllItems();
938 // implement base methods
940 virtual void GetValue( wxVariant
&variant
,
941 const wxDataViewItem
&item
, unsigned int col
) const;
942 virtual bool SetValue( const wxVariant
&variant
,
943 const wxDataViewItem
&item
, unsigned int col
);
944 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const;
945 virtual bool IsContainer( const wxDataViewItem
&item
) const;
946 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const;
948 virtual int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
949 unsigned int column
, bool ascending
);
951 virtual bool HasDefaultCompare() const
953 virtual unsigned int GetColumnCount() const
955 virtual wxString
GetColumnType( unsigned int WXUNUSED(col
) ) const
956 { return wxT("wxDataViewIconText"); }
958 wxDataViewTreeStoreNode
*FindNode( const wxDataViewItem
&item
) const;
959 wxDataViewTreeStoreContainerNode
*FindContainerNode( const wxDataViewItem
&item
) const;
960 wxDataViewTreeStoreNode
*GetRoot() const { return m_root
; }
963 wxDataViewTreeStoreNode
*m_root
;
966 class WXDLLIMPEXP_ADV wxDataViewTreeCtrl
: public wxDataViewCtrl
969 wxDataViewTreeCtrl();
970 wxDataViewTreeCtrl( wxWindow
*parent
, wxWindowID id
,
971 const wxPoint
& pos
= wxDefaultPosition
,
972 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_NO_HEADER
| wxDV_ROW_LINES
,
973 const wxValidator
& validator
= wxDefaultValidator
);
974 ~wxDataViewTreeCtrl();
976 bool Create( wxWindow
*parent
, wxWindowID id
,
977 const wxPoint
& pos
= wxDefaultPosition
,
978 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_NO_HEADER
| wxDV_ROW_LINES
,
979 const wxValidator
& validator
= wxDefaultValidator
);
981 wxDataViewTreeStore
*GetStore()
982 { return (wxDataViewTreeStore
*) GetModel(); }
983 const wxDataViewTreeStore
*GetStore() const
984 { return (const wxDataViewTreeStore
*) GetModel(); }
986 void SetImageList( wxImageList
*imagelist
);
987 wxImageList
* GetImageList() { return m_imageList
; }
989 wxDataViewItem
AppendItem( const wxDataViewItem
& parent
,
990 const wxString
&text
, int icon
= -1, wxClientData
*data
= NULL
);
991 wxDataViewItem
PrependItem( const wxDataViewItem
& parent
,
992 const wxString
&text
, int icon
= -1, wxClientData
*data
= NULL
);
993 wxDataViewItem
InsertItem( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
994 const wxString
&text
, int icon
= -1, wxClientData
*data
= NULL
);
996 wxDataViewItem
PrependContainer( const wxDataViewItem
& parent
,
997 const wxString
&text
, int icon
= -1, int expanded
= -1,
998 wxClientData
*data
= NULL
);
999 wxDataViewItem
AppendContainer( const wxDataViewItem
& parent
,
1000 const wxString
&text
, int icon
= -1, int expanded
= -1,
1001 wxClientData
*data
= NULL
);
1002 wxDataViewItem
InsertContainer( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
1003 const wxString
&text
, int icon
= -1, int expanded
= -1,
1004 wxClientData
*data
= NULL
);
1006 wxDataViewItem
GetNthChild( const wxDataViewItem
& parent
, unsigned int pos
) const
1007 { return GetStore()->GetNthChild(parent
, pos
); }
1008 int GetChildCount( const wxDataViewItem
& parent
) const
1009 { return GetStore()->GetChildCount(parent
); }
1011 void SetItemText( const wxDataViewItem
& item
, const wxString
&text
)
1012 { GetStore()->SetItemText(item
,text
); }
1013 wxString
GetItemText( const wxDataViewItem
& item
) const
1014 { return GetStore()->GetItemText(item
); }
1015 void SetItemIcon( const wxDataViewItem
& item
, const wxIcon
&icon
)
1016 { GetStore()->SetItemIcon(item
,icon
); }
1017 const wxIcon
&GetItemIcon( const wxDataViewItem
& item
) const
1018 { return GetStore()->GetItemIcon(item
); }
1019 void SetItemExpandedIcon( const wxDataViewItem
& item
, const wxIcon
&icon
)
1020 { GetStore()->SetItemExpandedIcon(item
,icon
); }
1021 const wxIcon
&GetItemExpandedIcon( const wxDataViewItem
& item
) const
1022 { return GetStore()->GetItemExpandedIcon(item
); }
1023 void SetItemData( const wxDataViewItem
& item
, wxClientData
*data
)
1024 { GetStore()->SetItemData(item
,data
); }
1025 wxClientData
*GetItemData( const wxDataViewItem
& item
) const
1026 { return GetStore()->GetItemData(item
); }
1028 void DeleteItem( const wxDataViewItem
& item
)
1029 { GetStore()->DeleteItem(item
); }
1030 void DeleteChildren( const wxDataViewItem
& item
)
1031 { GetStore()->DeleteChildren(item
); }
1032 void DeleteAllItems()
1033 { GetStore()->DeleteAllItems(); }
1035 void OnExpanded( wxDataViewEvent
&event
);
1036 void OnCollapsed( wxDataViewEvent
&event
);
1037 void OnSize( wxSizeEvent
&event
);
1040 wxImageList
*m_imageList
;
1043 DECLARE_EVENT_TABLE()
1044 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewTreeCtrl
)
1047 #endif // wxUSE_DATAVIEWCTRL
1050 // _WX_DATAVIEW_H_BASE_