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/headercol.h"
22 #include "wx/variant.h"
23 #include "wx/dynarray.h"
25 #include "wx/imaglist.h"
26 #include "wx/weakref.h"
28 #if !(defined(__WXGTK20__) || defined(__WXMAC__)) || defined(__WXUNIVERSAL__)
29 // #if !(defined(__WXMAC__)) || defined(__WXUNIVERSAL__)
30 #define wxHAS_GENERIC_DATAVIEWCTRL
33 class WXDLLIMPEXP_FWD_CORE wxDataFormat
;
35 // ----------------------------------------------------------------------------
36 // wxDataViewCtrl flags
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
40 // wxDataViewCtrl globals
41 // ----------------------------------------------------------------------------
43 class WXDLLIMPEXP_FWD_ADV wxDataViewItem
;
44 class WXDLLIMPEXP_FWD_ADV wxDataViewModel
;
45 class WXDLLIMPEXP_FWD_ADV wxDataViewCtrl
;
46 class WXDLLIMPEXP_FWD_ADV wxDataViewColumn
;
47 class WXDLLIMPEXP_FWD_ADV wxDataViewRenderer
;
48 class WXDLLIMPEXP_FWD_ADV wxDataViewModelNotifier
;
50 extern WXDLLIMPEXP_DATA_ADV(const char) wxDataViewCtrlNameStr
[];
52 // the default width of new (text) columns:
53 #define wxDVC_DEFAULT_WIDTH 80
55 // the default width of new toggle columns:
56 #define wxDVC_TOGGLE_DEFAULT_WIDTH 30
58 // the default minimal width of the columns:
59 #define wxDVC_DEFAULT_MINWIDTH 30
61 // The default alignment of wxDataViewRenderers is to take
62 // the alignment from the column it owns.
63 #define wxDVR_DEFAULT_ALIGNMENT -1
66 // ---------------------------------------------------------
68 // ---------------------------------------------------------
70 class WXDLLIMPEXP_ADV wxDataViewItem
73 wxDataViewItem( void* id
= NULL
)
75 wxDataViewItem( const wxDataViewItem
&item
)
77 bool IsOk() const { return m_id
!= NULL
; }
78 void* GetID() const { return m_id
; }
79 operator const void* () const { return m_id
; }
82 void Print( const wxString
&text
) const;
89 bool operator == (const wxDataViewItem
&left
, const wxDataViewItem
&right
);
91 WX_DEFINE_ARRAY(wxDataViewItem
, wxDataViewItemArray
);
93 // ---------------------------------------------------------
94 // wxDataViewModelNotifier
95 // ---------------------------------------------------------
97 class WXDLLIMPEXP_ADV wxDataViewModelNotifier
100 wxDataViewModelNotifier() { m_owner
= NULL
; }
101 virtual ~wxDataViewModelNotifier() { m_owner
= NULL
; }
103 virtual bool ItemAdded( const wxDataViewItem
&parent
, const wxDataViewItem
&item
) = 0;
104 virtual bool ItemDeleted( const wxDataViewItem
&parent
, const wxDataViewItem
&item
) = 0;
105 virtual bool ItemChanged( const wxDataViewItem
&item
) = 0;
106 virtual bool ItemsAdded( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
107 virtual bool ItemsDeleted( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
108 virtual bool ItemsChanged( const wxDataViewItemArray
&items
);
109 virtual bool ValueChanged( const wxDataViewItem
&item
, unsigned int col
) = 0;
110 virtual bool Cleared() = 0;
112 virtual void Resort() = 0;
114 void SetOwner( wxDataViewModel
*owner
) { m_owner
= owner
; }
115 wxDataViewModel
*GetOwner() const { return m_owner
; }
118 wxDataViewModel
*m_owner
;
123 // ----------------------------------------------------------------------------
124 // wxDataViewItemAttr: a structure containing the visual attributes of an item
125 // ----------------------------------------------------------------------------
127 // TODO: this should be renamed to wxItemAttr or something general like this
129 class WXDLLIMPEXP_ADV wxDataViewItemAttr
140 void SetColour(const wxColour
& colour
) { m_colour
= colour
; }
141 void SetBold( bool set
) { m_bold
= set
; }
142 void SetItalic( bool set
) { m_italic
= set
; }
145 bool HasColour() const { return m_colour
.Ok(); }
146 const wxColour
& GetColour() const { return m_colour
; }
148 bool GetBold() const { return m_bold
; }
149 bool GetItalic() const { return m_italic
; }
158 // ---------------------------------------------------------
160 // ---------------------------------------------------------
162 WX_DECLARE_LIST_WITH_DECL(wxDataViewModelNotifier
, wxDataViewModelNotifiers
,
163 class WXDLLIMPEXP_ADV
);
165 class WXDLLIMPEXP_ADV wxDataViewModel
: public wxObjectRefData
170 virtual unsigned int GetColumnCount() const = 0;
172 // return type as reported by wxVariant
173 virtual wxString
GetColumnType( unsigned int col
) const = 0;
175 // get value into a wxVariant
176 virtual void GetValue( wxVariant
&variant
,
177 const wxDataViewItem
&item
, unsigned int col
) const = 0;
179 // set value, call ValueChanged() afterwards!
180 virtual bool SetValue( const wxVariant
&variant
,
181 const wxDataViewItem
&item
, unsigned int col
) = 0;
183 // Get text attribute, return false of default attributes should be used
184 virtual bool GetAttr( const wxDataViewItem
&WXUNUSED(item
), unsigned int WXUNUSED(col
), wxDataViewItemAttr
&WXUNUSED(attr
) )
188 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const = 0;
189 virtual bool IsContainer( const wxDataViewItem
&item
) const = 0;
190 // Is the container just a header or an item with all columns
191 virtual bool HasContainerColumns(const wxDataViewItem
& WXUNUSED(item
)) const
193 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const = 0;
195 // define DnD capabilities
196 virtual bool IsDraggable( const wxDataViewItem
&WXUNUSED(item
) )
198 virtual size_t GetDragDataSize( const wxDataViewItem
&WXUNUSED(item
), const wxDataFormat
&WXUNUSED(format
) )
200 virtual bool GetDragData( const wxDataViewItem
&WXUNUSED(item
), const wxDataFormat
&WXUNUSED(format
),
201 void* WXUNUSED(data
), size_t WXUNUSED(size
) )
204 // delegated notifiers
205 virtual bool ItemAdded( const wxDataViewItem
&parent
, const wxDataViewItem
&item
);
206 virtual bool ItemsAdded( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
207 virtual bool ItemDeleted( const wxDataViewItem
&parent
, const wxDataViewItem
&item
);
208 virtual bool ItemsDeleted( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
209 virtual bool ItemChanged( const wxDataViewItem
&item
);
210 virtual bool ItemsChanged( const wxDataViewItemArray
&items
);
211 virtual bool ValueChanged( const wxDataViewItem
&item
, unsigned int col
);
212 virtual bool Cleared();
215 virtual void Resort();
217 void AddNotifier( wxDataViewModelNotifier
*notifier
);
218 void RemoveNotifier( wxDataViewModelNotifier
*notifier
);
220 // default compare function
221 virtual int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
222 unsigned int column
, bool ascending
);
223 virtual bool HasDefaultCompare() const { return false; }
226 virtual bool IsVirtualListModel() const { return false; }
229 // the user should not delete this class directly: he should use DecRef() instead!
230 virtual ~wxDataViewModel() { }
232 wxDataViewModelNotifiers m_notifiers
;
235 // ---------------------------------------------------------
236 // wxDataViewIndexListModel
237 // ---------------------------------------------------------
239 class WXDLLIMPEXP_ADV wxDataViewIndexListModel
: public wxDataViewModel
242 wxDataViewIndexListModel( unsigned int initial_size
= 0 );
243 ~wxDataViewIndexListModel();
245 virtual void GetValue( wxVariant
&variant
,
246 unsigned int row
, unsigned int col
) const = 0;
248 virtual bool SetValue( const wxVariant
&variant
,
249 unsigned int row
, unsigned int col
) = 0;
251 virtual bool GetAttr( unsigned int WXUNUSED(row
), unsigned int WXUNUSED(col
), wxDataViewItemAttr
&WXUNUSED(attr
) )
255 void RowInserted( unsigned int before
);
257 void RowDeleted( unsigned int row
);
258 void RowsDeleted( const wxArrayInt
&rows
);
259 void RowChanged( unsigned int row
);
260 void RowValueChanged( unsigned int row
, unsigned int col
);
261 void Reset( unsigned int new_size
);
263 // convert to/from row/wxDataViewItem
265 unsigned int GetRow( const wxDataViewItem
&item
) const;
266 wxDataViewItem
GetItem( unsigned int row
) const;
268 // compare based on index
270 virtual int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
271 unsigned int column
, bool ascending
);
272 virtual bool HasDefaultCompare() const;
274 // implement base methods
276 virtual void GetValue( wxVariant
&variant
,
277 const wxDataViewItem
&item
, unsigned int col
) const;
278 virtual bool SetValue( const wxVariant
&variant
,
279 const wxDataViewItem
&item
, unsigned int col
);
280 virtual bool GetAttr( const wxDataViewItem
&item
, unsigned int col
, wxDataViewItemAttr
&attr
);
281 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const;
282 virtual bool IsContainer( const wxDataViewItem
&item
) const;
283 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const;
286 virtual bool IsVirtualListModel() const { return false; }
287 unsigned int GetLastIndex() const { return m_lastIndex
; }
290 wxDataViewItemArray m_hash
;
291 unsigned int m_lastIndex
;
295 // ---------------------------------------------------------
296 // wxDataViewVirtualListModel
297 // ---------------------------------------------------------
300 // better than nothing
301 typedef wxDataViewIndexListModel wxDataViewVirtualListModel
;
304 class WXDLLIMPEXP_ADV wxDataViewVirtualListModel
: public wxDataViewModel
307 wxDataViewVirtualListModel( unsigned int initial_size
= 0 );
308 ~wxDataViewVirtualListModel();
310 virtual void GetValue( wxVariant
&variant
,
311 unsigned int row
, unsigned int col
) const = 0;
313 virtual bool SetValue( const wxVariant
&variant
,
314 unsigned int row
, unsigned int col
) = 0;
316 virtual bool GetAttr( unsigned int WXUNUSED(row
), unsigned int WXUNUSED(col
), wxDataViewItemAttr
&WXUNUSED(attr
) )
320 void RowInserted( unsigned int before
);
322 void RowDeleted( unsigned int row
);
323 void RowsDeleted( const wxArrayInt
&rows
);
324 void RowChanged( unsigned int row
);
325 void RowValueChanged( unsigned int row
, unsigned int col
);
326 void Reset( unsigned int new_size
);
328 // convert to/from row/wxDataViewItem
330 unsigned int GetRow( const wxDataViewItem
&item
) const;
331 wxDataViewItem
GetItem( unsigned int row
) const;
333 // compare based on index
335 virtual int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
336 unsigned int column
, bool ascending
);
337 virtual bool HasDefaultCompare() const;
339 // implement base methods
341 virtual void GetValue( wxVariant
&variant
,
342 const wxDataViewItem
&item
, unsigned int col
) const;
343 virtual bool SetValue( const wxVariant
&variant
,
344 const wxDataViewItem
&item
, unsigned int col
);
345 virtual bool GetAttr( const wxDataViewItem
&item
, unsigned int col
, wxDataViewItemAttr
&attr
);
346 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const;
347 virtual bool IsContainer( const wxDataViewItem
&item
) const;
348 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const;
351 virtual bool IsVirtualListModel() const { return true; }
352 unsigned int GetLastIndex() const { return m_lastIndex
; }
355 wxDataViewItemArray m_hash
;
356 unsigned int m_lastIndex
;
361 //-----------------------------------------------------------------------------
362 // wxDataViewEditorCtrlEvtHandler
363 //-----------------------------------------------------------------------------
365 class wxDataViewEditorCtrlEvtHandler
: public wxEvtHandler
368 wxDataViewEditorCtrlEvtHandler( wxControl
*editor
, wxDataViewRenderer
*owner
);
370 void AcceptChangesAndFinish();
371 void SetFocusOnIdle( bool focus
= true ) { m_focusOnIdle
= focus
; }
374 void OnChar( wxKeyEvent
&event
);
375 void OnTextEnter( wxCommandEvent
&event
);
376 void OnKillFocus( wxFocusEvent
&event
);
377 void OnIdle( wxIdleEvent
&event
);
380 wxDataViewRenderer
*m_owner
;
381 wxControl
*m_editorCtrl
;
386 DECLARE_EVENT_TABLE()
389 // ---------------------------------------------------------
390 // wxDataViewRendererBase
391 // ---------------------------------------------------------
393 enum wxDataViewCellMode
395 wxDATAVIEW_CELL_INERT
,
396 wxDATAVIEW_CELL_ACTIVATABLE
,
397 wxDATAVIEW_CELL_EDITABLE
400 enum wxDataViewCellRenderState
402 wxDATAVIEW_CELL_SELECTED
= 1,
403 wxDATAVIEW_CELL_PRELIT
= 2,
404 wxDATAVIEW_CELL_INSENSITIVE
= 4,
405 wxDATAVIEW_CELL_FOCUSED
= 8
408 class WXDLLIMPEXP_ADV wxDataViewRendererBase
: public wxObject
411 wxDataViewRendererBase( const wxString
&varianttype
,
412 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
413 int alignment
= wxDVR_DEFAULT_ALIGNMENT
);
414 ~wxDataViewRendererBase();
416 virtual bool Validate( wxVariant
& WXUNUSED(value
) )
419 void SetOwner( wxDataViewColumn
*owner
) { m_owner
= owner
; }
420 wxDataViewColumn
* GetOwner() const { return m_owner
; }
422 // renderer properties:
424 virtual bool SetValue( const wxVariant
& WXUNUSED(value
) ) = 0;
425 virtual bool GetValue( wxVariant
& WXUNUSED(value
) ) const = 0;
427 wxString
GetVariantType() const { return m_variantType
; }
429 virtual void SetMode( wxDataViewCellMode mode
) = 0;
430 virtual wxDataViewCellMode
GetMode() const = 0;
432 // NOTE: Set/GetAlignment do not take/return a wxAlignment enum but
433 // rather an "int"; that's because for rendering cells it's allowed
434 // to combine alignment flags (e.g. wxALIGN_LEFT|wxALIGN_BOTTOM)
435 virtual void SetAlignment( int align
) = 0;
436 virtual int GetAlignment() const = 0;
439 virtual bool HasEditorCtrl()
441 virtual wxControl
* CreateEditorCtrl(wxWindow
* WXUNUSED(parent
),
442 wxRect
WXUNUSED(labelRect
),
443 const wxVariant
& WXUNUSED(value
))
445 virtual bool GetValueFromEditorCtrl(wxControl
* WXUNUSED(editor
),
446 wxVariant
& WXUNUSED(value
))
449 virtual bool StartEditing( const wxDataViewItem
&item
, wxRect labelRect
);
450 virtual void CancelEditing();
451 virtual bool FinishEditing();
453 wxControl
*GetEditorCtrl() { return m_editorCtrl
; }
456 wxString m_variantType
;
457 wxDataViewColumn
*m_owner
;
458 wxWeakRef
<wxControl
> m_editorCtrl
;
459 wxDataViewItem m_item
; // for m_editorCtrl
462 const wxDataViewCtrl
* GetView() const;
465 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRendererBase
)
468 //-----------------------------------------------------------------------------
469 // wxDataViewIconText
470 //-----------------------------------------------------------------------------
472 class WXDLLIMPEXP_ADV wxDataViewIconText
: public wxObject
475 wxDataViewIconText( const wxString
&text
= wxEmptyString
, const wxIcon
& icon
= wxNullIcon
)
476 : m_text(text
), m_icon(icon
)
478 wxDataViewIconText( const wxDataViewIconText
&other
)
480 { m_icon
= other
.m_icon
; m_text
= other
.m_text
; }
482 void SetText( const wxString
&text
) { m_text
= text
; }
483 wxString
GetText() const { return m_text
; }
484 void SetIcon( const wxIcon
&icon
) { m_icon
= icon
; }
485 const wxIcon
&GetIcon() const { return m_icon
; }
492 DECLARE_DYNAMIC_CLASS(wxDataViewIconText
)
495 bool operator == (const wxDataViewIconText
&one
, const wxDataViewIconText
&two
);
497 DECLARE_VARIANT_OBJECT_EXPORTED(wxDataViewIconText
, WXDLLIMPEXP_ADV
)
499 // ---------------------------------------------------------
500 // wxDataViewColumnBase
501 // ---------------------------------------------------------
503 // for compatibility only, do not use
504 enum wxDataViewColumnFlags
506 wxDATAVIEW_COL_RESIZABLE
= wxCOL_RESIZABLE
,
507 wxDATAVIEW_COL_SORTABLE
= wxCOL_SORTABLE
,
508 wxDATAVIEW_COL_REORDERABLE
= wxCOL_REORDERABLE
,
509 wxDATAVIEW_COL_HIDDEN
= wxCOL_HIDDEN
512 class WXDLLIMPEXP_ADV wxDataViewColumnBase
: public wxSettableHeaderColumn
515 // ctor for the text columns: takes ownership of renderer
516 wxDataViewColumnBase(wxDataViewRenderer
*renderer
,
517 unsigned int model_column
)
519 Init(renderer
, model_column
);
522 // ctor for the bitmap columns
523 wxDataViewColumnBase(const wxBitmap
& bitmap
,
524 wxDataViewRenderer
*renderer
,
525 unsigned int model_column
)
528 Init(renderer
, model_column
);
531 virtual ~wxDataViewColumnBase();
534 virtual void SetOwner( wxDataViewCtrl
*owner
)
538 unsigned int GetModelColumn() const { return static_cast<unsigned int>(m_model_column
); }
539 wxDataViewCtrl
*GetOwner() const { return m_owner
; }
540 wxDataViewRenderer
* GetRenderer() const { return m_renderer
; }
542 // implement some of base class pure virtuals (the rest is port-dependent
543 // and done differently in generic and native versions)
544 virtual void SetBitmap( const wxBitmap
& bitmap
) { m_bitmap
= bitmap
; }
545 virtual wxBitmap
GetBitmap() const { return m_bitmap
; }
548 wxDataViewRenderer
*m_renderer
;
551 wxDataViewCtrl
*m_owner
;
554 // common part of all ctors
555 void Init(wxDataViewRenderer
*renderer
, unsigned int model_column
);
558 // ---------------------------------------------------------
559 // wxDataViewCtrlBase
560 // ---------------------------------------------------------
562 #define wxDV_SINGLE 0x0000 // for convenience
563 #define wxDV_MULTIPLE 0x0001 // can select multiple items
565 #define wxDV_NO_HEADER 0x0002 // column titles not visible
566 #define wxDV_HORIZ_RULES 0x0004 // light horizontal rules between rows
567 #define wxDV_VERT_RULES 0x0008 // light vertical rules between columns
569 #define wxDV_ROW_LINES 0x0010 // alternating colour in rows
570 #define wxDV_VARIABLE_LINE_HEIGHT 0x0020 // variable line height
572 class WXDLLIMPEXP_ADV wxDataViewCtrlBase
: public wxControl
575 wxDataViewCtrlBase();
576 virtual ~wxDataViewCtrlBase();
578 virtual bool AssociateModel( wxDataViewModel
*model
);
579 wxDataViewModel
* GetModel();
580 const wxDataViewModel
* GetModel() const;
583 wxDataViewColumn
*PrependTextColumn( const wxString
&label
, unsigned int model_column
,
584 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
585 wxAlignment align
= wxALIGN_NOT
,
586 int flags
= wxDATAVIEW_COL_RESIZABLE
);
587 wxDataViewColumn
*PrependIconTextColumn( const wxString
&label
, unsigned int model_column
,
588 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
589 wxAlignment align
= wxALIGN_NOT
,
590 int flags
= wxDATAVIEW_COL_RESIZABLE
);
591 wxDataViewColumn
*PrependToggleColumn( const wxString
&label
, unsigned int model_column
,
592 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
593 wxAlignment align
= wxALIGN_CENTER
,
594 int flags
= wxDATAVIEW_COL_RESIZABLE
);
595 wxDataViewColumn
*PrependProgressColumn( const wxString
&label
, unsigned int model_column
,
596 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
597 wxAlignment align
= wxALIGN_CENTER
,
598 int flags
= wxDATAVIEW_COL_RESIZABLE
);
599 wxDataViewColumn
*PrependDateColumn( const wxString
&label
, unsigned int model_column
,
600 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
601 wxAlignment align
= wxALIGN_NOT
,
602 int flags
= wxDATAVIEW_COL_RESIZABLE
);
603 wxDataViewColumn
*PrependBitmapColumn( const wxString
&label
, unsigned int model_column
,
604 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
605 wxAlignment align
= wxALIGN_CENTER
,
606 int flags
= wxDATAVIEW_COL_RESIZABLE
);
607 wxDataViewColumn
*PrependTextColumn( const wxBitmap
&label
, unsigned int model_column
,
608 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
609 wxAlignment align
= wxALIGN_NOT
,
610 int flags
= wxDATAVIEW_COL_RESIZABLE
);
611 wxDataViewColumn
*PrependIconTextColumn( const wxBitmap
&label
, unsigned int model_column
,
612 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
613 wxAlignment align
= wxALIGN_NOT
,
614 int flags
= wxDATAVIEW_COL_RESIZABLE
);
615 wxDataViewColumn
*PrependToggleColumn( const wxBitmap
&label
, unsigned int model_column
,
616 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
617 wxAlignment align
= wxALIGN_CENTER
,
618 int flags
= wxDATAVIEW_COL_RESIZABLE
);
619 wxDataViewColumn
*PrependProgressColumn( const wxBitmap
&label
, unsigned int model_column
,
620 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
621 wxAlignment align
= wxALIGN_CENTER
,
622 int flags
= wxDATAVIEW_COL_RESIZABLE
);
623 wxDataViewColumn
*PrependDateColumn( const wxBitmap
&label
, unsigned int model_column
,
624 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
625 wxAlignment align
= wxALIGN_NOT
,
626 int flags
= wxDATAVIEW_COL_RESIZABLE
);
627 wxDataViewColumn
*PrependBitmapColumn( const wxBitmap
&label
, unsigned int model_column
,
628 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
629 wxAlignment align
= wxALIGN_CENTER
,
630 int flags
= wxDATAVIEW_COL_RESIZABLE
);
632 wxDataViewColumn
*AppendTextColumn( const wxString
&label
, unsigned int model_column
,
633 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
634 wxAlignment align
= wxALIGN_NOT
,
635 int flags
= wxDATAVIEW_COL_RESIZABLE
);
636 wxDataViewColumn
*AppendIconTextColumn( const wxString
&label
, unsigned int model_column
,
637 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
638 wxAlignment align
= wxALIGN_NOT
,
639 int flags
= wxDATAVIEW_COL_RESIZABLE
);
640 wxDataViewColumn
*AppendToggleColumn( const wxString
&label
, unsigned int model_column
,
641 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
642 wxAlignment align
= wxALIGN_CENTER
,
643 int flags
= wxDATAVIEW_COL_RESIZABLE
);
644 wxDataViewColumn
*AppendProgressColumn( const wxString
&label
, unsigned int model_column
,
645 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
646 wxAlignment align
= wxALIGN_CENTER
,
647 int flags
= wxDATAVIEW_COL_RESIZABLE
);
648 wxDataViewColumn
*AppendDateColumn( const wxString
&label
, unsigned int model_column
,
649 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
650 wxAlignment align
= wxALIGN_NOT
,
651 int flags
= wxDATAVIEW_COL_RESIZABLE
);
652 wxDataViewColumn
*AppendBitmapColumn( const wxString
&label
, unsigned int model_column
,
653 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
654 wxAlignment align
= wxALIGN_CENTER
,
655 int flags
= wxDATAVIEW_COL_RESIZABLE
);
656 wxDataViewColumn
*AppendTextColumn( const wxBitmap
&label
, unsigned int model_column
,
657 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
658 wxAlignment align
= wxALIGN_NOT
,
659 int flags
= wxDATAVIEW_COL_RESIZABLE
);
660 wxDataViewColumn
*AppendIconTextColumn( const wxBitmap
&label
, unsigned int model_column
,
661 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
662 wxAlignment align
= wxALIGN_NOT
,
663 int flags
= wxDATAVIEW_COL_RESIZABLE
);
664 wxDataViewColumn
*AppendToggleColumn( const wxBitmap
&label
, unsigned int model_column
,
665 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
666 wxAlignment align
= wxALIGN_CENTER
,
667 int flags
= wxDATAVIEW_COL_RESIZABLE
);
668 wxDataViewColumn
*AppendProgressColumn( const wxBitmap
&label
, unsigned int model_column
,
669 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
670 wxAlignment align
= wxALIGN_CENTER
,
671 int flags
= wxDATAVIEW_COL_RESIZABLE
);
672 wxDataViewColumn
*AppendDateColumn( const wxBitmap
&label
, unsigned int model_column
,
673 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
674 wxAlignment align
= wxALIGN_NOT
,
675 int flags
= wxDATAVIEW_COL_RESIZABLE
);
676 wxDataViewColumn
*AppendBitmapColumn( const wxBitmap
&label
, unsigned int model_column
,
677 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
678 wxAlignment align
= wxALIGN_CENTER
,
679 int flags
= wxDATAVIEW_COL_RESIZABLE
);
682 virtual bool PrependColumn( wxDataViewColumn
*col
);
683 virtual bool InsertColumn( unsigned int pos
, wxDataViewColumn
*col
);
684 virtual bool AppendColumn( wxDataViewColumn
*col
);
686 virtual unsigned int GetColumnCount() const = 0;
687 virtual wxDataViewColumn
* GetColumn( unsigned int pos
) const = 0;
688 virtual int GetColumnPosition( const wxDataViewColumn
*column
) const = 0;
690 virtual bool DeleteColumn( wxDataViewColumn
*column
) = 0;
691 virtual bool ClearColumns() = 0;
693 void SetExpanderColumn( wxDataViewColumn
*col
)
694 { m_expander_column
= col
; DoSetExpanderColumn(); }
695 wxDataViewColumn
*GetExpanderColumn() const
696 { return m_expander_column
; }
698 virtual wxDataViewColumn
*GetSortingColumn() const = 0;
700 void SetIndent( int indent
)
701 { m_indent
= indent
; DoSetIndent(); }
702 int GetIndent() const
705 virtual wxDataViewItem
GetSelection() const = 0;
706 virtual int GetSelections( wxDataViewItemArray
& sel
) const = 0;
707 virtual void SetSelections( const wxDataViewItemArray
& sel
) = 0;
708 virtual void Select( const wxDataViewItem
& item
) = 0;
709 virtual void Unselect( const wxDataViewItem
& item
) = 0;
710 virtual bool IsSelected( const wxDataViewItem
& item
) const = 0;
712 virtual void SelectAll() = 0;
713 virtual void UnselectAll() = 0;
715 virtual void Expand( const wxDataViewItem
& item
) = 0;
716 virtual void ExpandAncestors( const wxDataViewItem
& item
);
717 virtual void Collapse( const wxDataViewItem
& item
) = 0;
718 virtual bool IsExpanded( const wxDataViewItem
& item
) const = 0;
720 virtual void EnsureVisible( const wxDataViewItem
& item
,
721 const wxDataViewColumn
*column
= NULL
) = 0;
722 virtual void HitTest( const wxPoint
& point
, wxDataViewItem
&item
, wxDataViewColumn
* &column
) const = 0;
723 virtual wxRect
GetItemRect( const wxDataViewItem
& item
, const wxDataViewColumn
*column
= NULL
) const = 0;
726 virtual void DoSetExpanderColumn() = 0 ;
727 virtual void DoSetIndent() = 0;
730 wxDataViewModel
*m_model
;
731 wxDataViewColumn
*m_expander_column
;
735 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCtrlBase
)
738 // ----------------------------------------------------------------------------
739 // wxDataViewEvent - the event class for the wxDataViewCtrl notifications
740 // ----------------------------------------------------------------------------
742 class WXDLLIMPEXP_ADV wxDataViewEvent
: public wxNotifyEvent
745 wxDataViewEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
746 : wxNotifyEvent(commandType
, winid
),
750 m_value(wxNullVariant
),
755 wxDataViewEvent(const wxDataViewEvent
& event
)
756 : wxNotifyEvent(event
),
757 m_item(event
.m_item
),
759 m_model(event
.m_model
),
760 m_value(event
.m_value
),
761 m_column(event
.m_column
),
765 wxDataViewItem
GetItem() const { return m_item
; }
766 void SetItem( const wxDataViewItem
&item
) { m_item
= item
; }
768 int GetColumn() const { return m_col
; }
769 void SetColumn( int col
) { m_col
= col
; }
771 wxDataViewModel
* GetModel() const { return m_model
; }
772 void SetModel( wxDataViewModel
*model
) { m_model
= model
; }
774 const wxVariant
&GetValue() const { return m_value
; }
775 void SetValue( const wxVariant
&value
) { m_value
= value
; }
777 // for wxEVT_DATAVIEW_COLUMN_HEADER_CLICKED only
778 void SetDataViewColumn( wxDataViewColumn
*col
) { m_column
= col
; }
779 wxDataViewColumn
*GetDataViewColumn() const { return m_column
; }
781 // for wxEVT_DATAVIEW_CONTEXT_MENU only
782 wxPoint
GetPosition() const { return m_pos
; }
783 void SetPosition( int x
, int y
) { m_pos
.x
= x
; m_pos
.y
= y
; }
785 virtual wxEvent
*Clone() const { return new wxDataViewEvent(*this); }
788 wxDataViewItem m_item
;
790 wxDataViewModel
*m_model
;
792 wxDataViewColumn
*m_column
;
796 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewEvent
)
799 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED
;
801 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED
;
802 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED
;
803 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED
;
804 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING
;
805 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING
;
806 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED
;
807 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE
;
808 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED
;
810 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU
;
812 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK
;
813 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK
;
814 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED
;
815 extern WXDLLIMPEXP_ADV
const wxEventType wxEVT_COMMAND_DATAVIEW_COLUMN_REORDERED
;
817 typedef void (wxEvtHandler::*wxDataViewEventFunction
)(wxDataViewEvent
&);
819 #define wxDataViewEventHandler(func) \
820 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxDataViewEventFunction, &func)
822 #define wx__DECLARE_DATAVIEWEVT(evt, id, fn) \
823 wx__DECLARE_EVT1(wxEVT_COMMAND_DATAVIEW_ ## evt, id, wxDataViewEventHandler(fn))
825 #define EVT_DATAVIEW_SELECTION_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(SELECTION_CHANGED, id, fn)
827 #define EVT_DATAVIEW_ITEM_ACTIVATED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_ACTIVATED, id, fn)
828 #define EVT_DATAVIEW_ITEM_COLLAPSING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSING, id, fn)
829 #define EVT_DATAVIEW_ITEM_COLLAPSED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSED, id, fn)
830 #define EVT_DATAVIEW_ITEM_EXPANDING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDING, id, fn)
831 #define EVT_DATAVIEW_ITEM_EXPANDED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDED, id, fn)
832 #define EVT_DATAVIEW_ITEM_EDITING_STARTED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_STARTED, id, fn)
833 #define EVT_DATAVIEW_ITEM_EDITING_DONE(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_DONE, id, fn)
834 #define EVT_DATAVIEW_ITEM_VALUE_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_VALUE_CHANGED, id, fn)
836 #define EVT_DATAVIEW_ITEM_CONTEXT_MENU(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_CONTEXT_MENU, id, fn)
838 #define EVT_DATAVIEW_COLUMN_HEADER_CLICK(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_CLICK, id, fn)
839 #define EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_RIGHT_CLICK, id, fn)
840 #define EVT_DATAVIEW_COLUMN_SORTED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_SORTED, id, fn)
841 #define EVT_DATAVIEW_COLUMN_REORDERED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_REORDERED, id, fn)
844 #ifdef wxHAS_GENERIC_DATAVIEWCTRL
845 // this symbol doesn't follow the convention for wxUSE_XXX symbols which
846 // are normally always defined as either 0 or 1, so its use is deprecated
847 // and it only exists for backwards compatibility, don't use it any more
848 // and use wxHAS_GENERIC_DATAVIEWCTRL instead
849 #define wxUSE_GENERICDATAVIEWCTRL
851 #include "wx/generic/dataview.h"
852 #elif defined(__WXGTK20__)
853 #include "wx/gtk/dataview.h"
854 #elif defined(__WXMAC__)
855 #include "wx/osx/dataview.h"
857 #error "unknown native wxDataViewCtrl implementation"
860 // -------------------------------------
861 // wxDataViewSpinRenderer
862 // -------------------------------------
864 class WXDLLIMPEXP_ADV wxDataViewSpinRenderer
: public wxDataViewCustomRenderer
867 wxDataViewSpinRenderer( int min
, int max
,
868 wxDataViewCellMode mode
= wxDATAVIEW_CELL_EDITABLE
,
869 int alignment
= wxDVR_DEFAULT_ALIGNMENT
);
870 virtual bool HasEditorCtrl() { return true; }
871 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
, const wxVariant
&value
);
872 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
873 virtual bool Render( wxRect rect
, wxDC
*dc
, int state
);
874 virtual wxSize
GetSize() const;
875 virtual bool SetValue( const wxVariant
&value
);
876 virtual bool GetValue( wxVariant
&value
) const;
883 #if defined(wxHAS_GENERIC_DATAVIEWCTRL) || defined(__WXMAC__)
885 // -------------------------------------
886 // wxDataViewChoiceRenderer
887 // -------------------------------------
889 class WXDLLIMPEXP_ADV wxDataViewChoiceRenderer
: public wxDataViewCustomRenderer
892 wxDataViewChoiceRenderer( const wxArrayString
&choices
,
893 wxDataViewCellMode mode
= wxDATAVIEW_CELL_EDITABLE
,
894 int alignment
= wxDVR_DEFAULT_ALIGNMENT
);
895 virtual bool HasEditorCtrl() { return true; }
896 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
, const wxVariant
&value
);
897 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
898 virtual bool Render( wxRect rect
, wxDC
*dc
, int state
);
899 virtual wxSize
GetSize() const;
900 virtual bool SetValue( const wxVariant
&value
);
901 virtual bool GetValue( wxVariant
&value
) const;
904 wxArrayString m_choices
;
910 //-----------------------------------------------------------------------------
911 // wxDataViewTreeStore
912 //-----------------------------------------------------------------------------
914 class WXDLLIMPEXP_ADV wxDataViewTreeStoreNode
917 wxDataViewTreeStoreNode( wxDataViewTreeStoreNode
*parent
,
918 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
919 virtual ~wxDataViewTreeStoreNode();
921 void SetText( const wxString
&text
)
923 wxString
GetText() const
925 void SetIcon( const wxIcon
&icon
)
927 const wxIcon
&GetIcon() const
929 void SetData( wxClientData
*data
)
930 { if (m_data
) delete m_data
; m_data
= data
; }
931 wxClientData
*GetData() const
934 wxDataViewItem
GetItem() const
935 { return wxDataViewItem( (void*) this ); }
937 virtual bool IsContainer()
940 wxDataViewTreeStoreNode
*GetParent()
944 wxDataViewTreeStoreNode
*m_parent
;
947 wxClientData
*m_data
;
950 WX_DECLARE_LIST_WITH_DECL(wxDataViewTreeStoreNode
, wxDataViewTreeStoreNodeList
,
951 class WXDLLIMPEXP_ADV
);
953 class WXDLLIMPEXP_ADV wxDataViewTreeStoreContainerNode
: public wxDataViewTreeStoreNode
956 wxDataViewTreeStoreContainerNode( wxDataViewTreeStoreNode
*parent
,
957 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
958 wxClientData
*data
= NULL
);
959 virtual ~wxDataViewTreeStoreContainerNode();
961 const wxDataViewTreeStoreNodeList
&GetChildren() const
962 { return m_children
; }
963 wxDataViewTreeStoreNodeList
&GetChildren()
964 { return m_children
; }
966 void SetExpandedIcon( const wxIcon
&icon
)
967 { m_iconExpanded
= icon
; }
968 const wxIcon
&GetExpandedIcon() const
969 { return m_iconExpanded
; }
971 void SetExpanded( bool expanded
= true )
972 { m_isExpanded
= expanded
; }
973 bool IsExpanded() const
974 { return m_isExpanded
; }
976 virtual bool IsContainer()
980 wxDataViewTreeStoreNodeList m_children
;
981 wxIcon m_iconExpanded
;
985 //-----------------------------------------------------------------------------
987 class WXDLLIMPEXP_ADV wxDataViewTreeStore
: public wxDataViewModel
990 wxDataViewTreeStore();
991 ~wxDataViewTreeStore();
993 wxDataViewItem
AppendItem( const wxDataViewItem
& parent
,
994 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
995 wxDataViewItem
PrependItem( const wxDataViewItem
& parent
,
996 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
997 wxDataViewItem
InsertItem( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
998 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
1000 wxDataViewItem
PrependContainer( const wxDataViewItem
& parent
,
1001 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
1002 wxClientData
*data
= NULL
);
1003 wxDataViewItem
AppendContainer( const wxDataViewItem
& parent
,
1004 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
1005 wxClientData
*data
= NULL
);
1006 wxDataViewItem
InsertContainer( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
1007 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
1008 wxClientData
*data
= NULL
);
1010 wxDataViewItem
GetNthChild( const wxDataViewItem
& parent
, unsigned int pos
) const;
1011 int GetChildCount( const wxDataViewItem
& parent
) const;
1013 void SetItemText( const wxDataViewItem
& item
, const wxString
&text
);
1014 wxString
GetItemText( const wxDataViewItem
& item
) const;
1015 void SetItemIcon( const wxDataViewItem
& item
, const wxIcon
&icon
);
1016 const wxIcon
&GetItemIcon( const wxDataViewItem
& item
) const;
1017 void SetItemExpandedIcon( const wxDataViewItem
& item
, const wxIcon
&icon
);
1018 const wxIcon
&GetItemExpandedIcon( const wxDataViewItem
& item
) const;
1019 void SetItemData( const wxDataViewItem
& item
, wxClientData
*data
);
1020 wxClientData
*GetItemData( const wxDataViewItem
& item
) const;
1022 void DeleteItem( const wxDataViewItem
& item
);
1023 void DeleteChildren( const wxDataViewItem
& item
);
1024 void DeleteAllItems();
1026 // implement base methods
1028 virtual void GetValue( wxVariant
&variant
,
1029 const wxDataViewItem
&item
, unsigned int col
) const;
1030 virtual bool SetValue( const wxVariant
&variant
,
1031 const wxDataViewItem
&item
, unsigned int col
);
1032 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const;
1033 virtual bool IsContainer( const wxDataViewItem
&item
) const;
1034 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const;
1036 virtual int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
1037 unsigned int column
, bool ascending
);
1039 virtual bool HasDefaultCompare() const
1041 virtual unsigned int GetColumnCount() const
1043 virtual wxString
GetColumnType( unsigned int WXUNUSED(col
) ) const
1044 { return wxT("wxDataViewIconText"); }
1046 wxDataViewTreeStoreNode
*FindNode( const wxDataViewItem
&item
) const;
1047 wxDataViewTreeStoreContainerNode
*FindContainerNode( const wxDataViewItem
&item
) const;
1048 wxDataViewTreeStoreNode
*GetRoot() const { return m_root
; }
1051 wxDataViewTreeStoreNode
*m_root
;
1054 class WXDLLIMPEXP_ADV wxDataViewTreeCtrl
: public wxDataViewCtrl
1057 wxDataViewTreeCtrl();
1058 wxDataViewTreeCtrl( wxWindow
*parent
, wxWindowID id
,
1059 const wxPoint
& pos
= wxDefaultPosition
,
1060 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_NO_HEADER
| wxDV_ROW_LINES
,
1061 const wxValidator
& validator
= wxDefaultValidator
);
1062 ~wxDataViewTreeCtrl();
1064 bool Create( wxWindow
*parent
, wxWindowID id
,
1065 const wxPoint
& pos
= wxDefaultPosition
,
1066 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_NO_HEADER
| wxDV_ROW_LINES
,
1067 const wxValidator
& validator
= wxDefaultValidator
);
1069 wxDataViewTreeStore
*GetStore()
1070 { return (wxDataViewTreeStore
*) GetModel(); }
1071 const wxDataViewTreeStore
*GetStore() const
1072 { return (const wxDataViewTreeStore
*) GetModel(); }
1074 void SetImageList( wxImageList
*imagelist
);
1075 wxImageList
* GetImageList() { return m_imageList
; }
1077 wxDataViewItem
AppendItem( const wxDataViewItem
& parent
,
1078 const wxString
&text
, int icon
= -1, wxClientData
*data
= NULL
);
1079 wxDataViewItem
PrependItem( const wxDataViewItem
& parent
,
1080 const wxString
&text
, int icon
= -1, wxClientData
*data
= NULL
);
1081 wxDataViewItem
InsertItem( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
1082 const wxString
&text
, int icon
= -1, wxClientData
*data
= NULL
);
1084 wxDataViewItem
PrependContainer( const wxDataViewItem
& parent
,
1085 const wxString
&text
, int icon
= -1, int expanded
= -1,
1086 wxClientData
*data
= NULL
);
1087 wxDataViewItem
AppendContainer( const wxDataViewItem
& parent
,
1088 const wxString
&text
, int icon
= -1, int expanded
= -1,
1089 wxClientData
*data
= NULL
);
1090 wxDataViewItem
InsertContainer( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
1091 const wxString
&text
, int icon
= -1, int expanded
= -1,
1092 wxClientData
*data
= NULL
);
1094 wxDataViewItem
GetNthChild( const wxDataViewItem
& parent
, unsigned int pos
) const
1095 { return GetStore()->GetNthChild(parent
, pos
); }
1096 int GetChildCount( const wxDataViewItem
& parent
) const
1097 { return GetStore()->GetChildCount(parent
); }
1099 void SetItemText( const wxDataViewItem
& item
, const wxString
&text
)
1100 { GetStore()->SetItemText(item
,text
); }
1101 wxString
GetItemText( const wxDataViewItem
& item
) const
1102 { return GetStore()->GetItemText(item
); }
1103 void SetItemIcon( const wxDataViewItem
& item
, const wxIcon
&icon
)
1104 { GetStore()->SetItemIcon(item
,icon
); }
1105 const wxIcon
&GetItemIcon( const wxDataViewItem
& item
) const
1106 { return GetStore()->GetItemIcon(item
); }
1107 void SetItemExpandedIcon( const wxDataViewItem
& item
, const wxIcon
&icon
)
1108 { GetStore()->SetItemExpandedIcon(item
,icon
); }
1109 const wxIcon
&GetItemExpandedIcon( const wxDataViewItem
& item
) const
1110 { return GetStore()->GetItemExpandedIcon(item
); }
1111 void SetItemData( const wxDataViewItem
& item
, wxClientData
*data
)
1112 { GetStore()->SetItemData(item
,data
); }
1113 wxClientData
*GetItemData( const wxDataViewItem
& item
) const
1114 { return GetStore()->GetItemData(item
); }
1116 void DeleteItem( const wxDataViewItem
& item
)
1117 { GetStore()->DeleteItem(item
); }
1118 void DeleteChildren( const wxDataViewItem
& item
)
1119 { GetStore()->DeleteChildren(item
); }
1120 void DeleteAllItems()
1121 { GetStore()->DeleteAllItems(); }
1123 void OnExpanded( wxDataViewEvent
&event
);
1124 void OnCollapsed( wxDataViewEvent
&event
);
1125 void OnSize( wxSizeEvent
&event
);
1128 wxImageList
*m_imageList
;
1131 DECLARE_EVENT_TABLE()
1132 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewTreeCtrl
)
1135 #endif // wxUSE_DATAVIEWCTRL
1138 // _WX_DATAVIEW_H_BASE_