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/textctrl.h"
20 #include "wx/headercol.h"
21 #include "wx/variant.h"
22 #include "wx/dynarray.h"
24 #include "wx/weakref.h"
25 #include "wx/vector.h"
26 #include "wx/dataobj.h"
28 class WXDLLIMPEXP_FWD_CORE wxImageList
;
30 #if !(defined(__WXGTK20__) || defined(__WXOSX__)) || defined(__WXUNIVERSAL__)
31 // #if !(defined(__WXOSX__)) || defined(__WXUNIVERSAL__)
32 #define wxHAS_GENERIC_DATAVIEWCTRL
35 // ----------------------------------------------------------------------------
36 // wxDataViewCtrl globals
37 // ----------------------------------------------------------------------------
39 class WXDLLIMPEXP_FWD_ADV wxDataViewItem
;
40 class WXDLLIMPEXP_FWD_ADV wxDataViewModel
;
41 class WXDLLIMPEXP_FWD_ADV wxDataViewCtrl
;
42 class WXDLLIMPEXP_FWD_ADV wxDataViewColumn
;
43 class WXDLLIMPEXP_FWD_ADV wxDataViewRenderer
;
44 class WXDLLIMPEXP_FWD_ADV wxDataViewModelNotifier
;
46 extern WXDLLIMPEXP_DATA_ADV(const char) wxDataViewCtrlNameStr
[];
48 // ----------------------------------------------------------------------------
49 // wxDataViewCtrl flags
50 // ----------------------------------------------------------------------------
52 // size of a wxDataViewRenderer without contents:
53 #define wxDVC_DEFAULT_RENDERER_SIZE 20
55 // the default width of new (text) columns:
56 #define wxDVC_DEFAULT_WIDTH 80
58 // the default width of new toggle columns:
59 #define wxDVC_TOGGLE_DEFAULT_WIDTH 30
61 // the default minimal width of the columns:
62 #define wxDVC_DEFAULT_MINWIDTH 30
64 // The default alignment of wxDataViewRenderers is to take
65 // the alignment from the column it owns.
66 #define wxDVR_DEFAULT_ALIGNMENT -1
69 // ---------------------------------------------------------
71 // ---------------------------------------------------------
73 class WXDLLIMPEXP_ADV wxDataViewItem
76 wxDataViewItem( void* id
= NULL
)
78 wxDataViewItem( const wxDataViewItem
&item
)
80 bool IsOk() const { return m_id
!= NULL
; }
81 void* GetID() const { return m_id
; }
82 operator const void* () const { return m_id
; }
89 bool operator==(const wxDataViewItem
& left
, const wxDataViewItem
& right
)
91 return left
.GetID() == right
.GetID();
95 bool operator!=(const wxDataViewItem
& left
, const wxDataViewItem
& right
)
97 return !(left
== right
);
100 WX_DEFINE_ARRAY(wxDataViewItem
, wxDataViewItemArray
);
102 // ---------------------------------------------------------
103 // wxDataViewModelNotifier
104 // ---------------------------------------------------------
106 class WXDLLIMPEXP_ADV wxDataViewModelNotifier
109 wxDataViewModelNotifier() { m_owner
= NULL
; }
110 virtual ~wxDataViewModelNotifier() { m_owner
= NULL
; }
112 virtual bool ItemAdded( const wxDataViewItem
&parent
, const wxDataViewItem
&item
) = 0;
113 virtual bool ItemDeleted( const wxDataViewItem
&parent
, const wxDataViewItem
&item
) = 0;
114 virtual bool ItemChanged( const wxDataViewItem
&item
) = 0;
115 virtual bool ItemsAdded( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
116 virtual bool ItemsDeleted( const wxDataViewItem
&parent
, const wxDataViewItemArray
&items
);
117 virtual bool ItemsChanged( const wxDataViewItemArray
&items
);
118 virtual bool ValueChanged( const wxDataViewItem
&item
, unsigned int col
) = 0;
119 virtual bool Cleared() = 0;
121 virtual void Resort() = 0;
123 void SetOwner( wxDataViewModel
*owner
) { m_owner
= owner
; }
124 wxDataViewModel
*GetOwner() const { return m_owner
; }
127 wxDataViewModel
*m_owner
;
132 // ----------------------------------------------------------------------------
133 // wxDataViewItemAttr: a structure containing the visual attributes of an item
134 // ----------------------------------------------------------------------------
136 // TODO: this should be renamed to wxItemAttr or something general like this
138 class WXDLLIMPEXP_ADV wxDataViewItemAttr
149 void SetColour(const wxColour
& colour
) { m_colour
= colour
; }
150 void SetBold( bool set
) { m_bold
= set
; }
151 void SetItalic( bool set
) { m_italic
= set
; }
154 bool HasColour() const { return m_colour
.Ok(); }
155 const wxColour
& GetColour() const { return m_colour
; }
157 bool HasFont() const { return m_bold
|| m_italic
; }
158 bool GetBold() const { return m_bold
; }
159 bool GetItalic() const { return m_italic
; }
168 // ---------------------------------------------------------
170 // ---------------------------------------------------------
172 WX_DECLARE_LIST_WITH_DECL(wxDataViewModelNotifier
, wxDataViewModelNotifiers
,
173 class WXDLLIMPEXP_ADV
);
175 class WXDLLIMPEXP_ADV wxDataViewModel
: public wxRefCounter
180 virtual unsigned int GetColumnCount() const = 0;
182 // return type as reported by wxVariant
183 virtual wxString
GetColumnType( unsigned int col
) const = 0;
185 // get value into a wxVariant
186 virtual void GetValue( wxVariant
&variant
,
187 const wxDataViewItem
&item
, unsigned int col
) const = 0;
189 // set value, call ValueChanged() afterwards!
190 virtual bool SetValue( const wxVariant
&variant
,
191 const wxDataViewItem
&item
, unsigned int col
) = 0;
193 // Get text attribute, return false of default attributes should be used
194 virtual bool GetAttr( const wxDataViewItem
&WXUNUSED(item
), unsigned int WXUNUSED(col
), wxDataViewItemAttr
&WXUNUSED(attr
) )
198 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const = 0;
199 virtual bool IsContainer( const wxDataViewItem
&item
) const = 0;
200 // Is the container just a header or an item with all columns
201 virtual bool HasContainerColumns(const wxDataViewItem
& WXUNUSED(item
)) const
203 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const = 0;
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
) const;
224 virtual bool HasDefaultCompare() const { return false; }
227 virtual bool IsVirtualListModel() 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 GetValueByRow( wxVariant
&variant
,
247 unsigned int row
, unsigned int col
) const = 0;
249 virtual bool SetValueByRow( const wxVariant
&variant
,
250 unsigned int row
, unsigned int col
) = 0;
252 virtual bool GetAttrByRow( 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
) const;
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 IsVirtualListModel() const { return false; }
288 unsigned int GetCount() const { return m_hash
.GetCount(); }
291 wxDataViewItemArray m_hash
;
292 unsigned int m_nextFreeID
;
296 // ---------------------------------------------------------
297 // wxDataViewVirtualListModel
298 // ---------------------------------------------------------
301 // better than nothing
302 typedef wxDataViewIndexListModel wxDataViewVirtualListModel
;
305 class WXDLLIMPEXP_ADV wxDataViewVirtualListModel
: public wxDataViewModel
308 wxDataViewVirtualListModel( unsigned int initial_size
= 0 );
309 ~wxDataViewVirtualListModel();
311 virtual void GetValueByRow( wxVariant
&variant
,
312 unsigned int row
, unsigned int col
) const = 0;
314 virtual bool SetValueByRow( const wxVariant
&variant
,
315 unsigned int row
, unsigned int col
) = 0;
317 virtual bool GetAttrByRow( unsigned int WXUNUSED(row
), unsigned int WXUNUSED(col
), wxDataViewItemAttr
&WXUNUSED(attr
) )
321 void RowInserted( unsigned int before
);
323 void RowDeleted( unsigned int row
);
324 void RowsDeleted( const wxArrayInt
&rows
);
325 void RowChanged( unsigned int row
);
326 void RowValueChanged( unsigned int row
, unsigned int col
);
327 void Reset( unsigned int new_size
);
329 // convert to/from row/wxDataViewItem
331 unsigned int GetRow( const wxDataViewItem
&item
) const;
332 wxDataViewItem
GetItem( unsigned int row
) const;
334 // compare based on index
336 virtual int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
337 unsigned int column
, bool ascending
) const;
338 virtual bool HasDefaultCompare() const;
340 // implement base methods
342 virtual void GetValue( wxVariant
&variant
,
343 const wxDataViewItem
&item
, unsigned int col
) const;
344 virtual bool SetValue( const wxVariant
&variant
,
345 const wxDataViewItem
&item
, unsigned int col
);
346 virtual bool GetAttr( const wxDataViewItem
&item
, unsigned int col
, wxDataViewItemAttr
&attr
);
347 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const;
348 virtual bool IsContainer( const wxDataViewItem
&item
) const;
349 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const;
352 virtual bool IsVirtualListModel() const { return true; }
353 unsigned int GetCount() const { return m_size
; }
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 virtual ~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;
438 // enable or disable (if called with wxELLIPSIZE_NONE) replacing parts of
439 // the item text (hence this only makes sense for renderers showing
440 // text...) with ellipsis in order to make it fit the column width
441 virtual void EnableEllipsize(wxEllipsizeMode mode
= wxELLIPSIZE_MIDDLE
) = 0;
442 void DisableEllipsize() { EnableEllipsize(wxELLIPSIZE_NONE
); }
444 virtual wxEllipsizeMode
GetEllipsizeMode() const = 0;
447 virtual bool HasEditorCtrl() const
449 virtual wxControl
* CreateEditorCtrl(wxWindow
* WXUNUSED(parent
),
450 wxRect
WXUNUSED(labelRect
),
451 const wxVariant
& WXUNUSED(value
))
453 virtual bool GetValueFromEditorCtrl(wxControl
* WXUNUSED(editor
),
454 wxVariant
& WXUNUSED(value
))
457 virtual bool StartEditing( const wxDataViewItem
&item
, wxRect labelRect
);
458 virtual void CancelEditing();
459 virtual bool FinishEditing();
461 wxControl
*GetEditorCtrl() { return m_editorCtrl
; }
464 wxString m_variantType
;
465 wxDataViewColumn
*m_owner
;
466 wxWeakRef
<wxControl
> m_editorCtrl
;
467 wxDataViewItem m_item
; // for m_editorCtrl
470 const wxDataViewCtrl
* GetView() const;
473 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRendererBase
)
476 //-----------------------------------------------------------------------------
477 // wxDataViewIconText
478 //-----------------------------------------------------------------------------
480 class WXDLLIMPEXP_ADV wxDataViewIconText
: public wxObject
483 wxDataViewIconText( const wxString
&text
= wxEmptyString
, const wxIcon
& icon
= wxNullIcon
)
484 : m_text(text
), m_icon(icon
)
486 wxDataViewIconText( const wxDataViewIconText
&other
)
488 { m_icon
= other
.m_icon
; m_text
= other
.m_text
; }
490 void SetText( const wxString
&text
) { m_text
= text
; }
491 wxString
GetText() const { return m_text
; }
492 void SetIcon( const wxIcon
&icon
) { m_icon
= icon
; }
493 const wxIcon
&GetIcon() const { return m_icon
; }
500 DECLARE_DYNAMIC_CLASS(wxDataViewIconText
)
504 bool operator==(const wxDataViewIconText
& left
, const wxDataViewIconText
& right
)
506 return left
.GetText() == right
.GetText() &&
507 left
.GetIcon().IsSameAs(right
.GetIcon());
511 bool operator!=(const wxDataViewIconText
& left
, const wxDataViewIconText
& right
)
513 return !(left
== right
);
516 DECLARE_VARIANT_OBJECT_EXPORTED(wxDataViewIconText
, WXDLLIMPEXP_ADV
)
518 // ---------------------------------------------------------
519 // wxDataViewColumnBase
520 // ---------------------------------------------------------
522 // for compatibility only, do not use
523 enum wxDataViewColumnFlags
525 wxDATAVIEW_COL_RESIZABLE
= wxCOL_RESIZABLE
,
526 wxDATAVIEW_COL_SORTABLE
= wxCOL_SORTABLE
,
527 wxDATAVIEW_COL_REORDERABLE
= wxCOL_REORDERABLE
,
528 wxDATAVIEW_COL_HIDDEN
= wxCOL_HIDDEN
531 class WXDLLIMPEXP_ADV wxDataViewColumnBase
: public wxSettableHeaderColumn
534 // ctor for the text columns: takes ownership of renderer
535 wxDataViewColumnBase(wxDataViewRenderer
*renderer
,
536 unsigned int model_column
)
538 Init(renderer
, model_column
);
541 // ctor for the bitmap columns
542 wxDataViewColumnBase(const wxBitmap
& bitmap
,
543 wxDataViewRenderer
*renderer
,
544 unsigned int model_column
)
547 Init(renderer
, model_column
);
550 virtual ~wxDataViewColumnBase();
553 virtual void SetOwner( wxDataViewCtrl
*owner
)
557 unsigned int GetModelColumn() const { return static_cast<unsigned int>(m_model_column
); }
558 wxDataViewCtrl
*GetOwner() const { return m_owner
; }
559 wxDataViewRenderer
* GetRenderer() const { return m_renderer
; }
561 // implement some of base class pure virtuals (the rest is port-dependent
562 // and done differently in generic and native versions)
563 virtual void SetBitmap( const wxBitmap
& bitmap
) { m_bitmap
= bitmap
; }
564 virtual wxBitmap
GetBitmap() const { return m_bitmap
; }
567 wxDataViewRenderer
*m_renderer
;
570 wxDataViewCtrl
*m_owner
;
573 // common part of all ctors
574 void Init(wxDataViewRenderer
*renderer
, unsigned int model_column
);
577 // ---------------------------------------------------------
578 // wxDataViewCtrlBase
579 // ---------------------------------------------------------
581 #define wxDV_SINGLE 0x0000 // for convenience
582 #define wxDV_MULTIPLE 0x0001 // can select multiple items
584 #define wxDV_NO_HEADER 0x0002 // column titles not visible
585 #define wxDV_HORIZ_RULES 0x0004 // light horizontal rules between rows
586 #define wxDV_VERT_RULES 0x0008 // light vertical rules between columns
588 #define wxDV_ROW_LINES 0x0010 // alternating colour in rows
589 #define wxDV_VARIABLE_LINE_HEIGHT 0x0020 // variable line height
591 class WXDLLIMPEXP_ADV wxDataViewCtrlBase
: public wxControl
594 wxDataViewCtrlBase();
595 virtual ~wxDataViewCtrlBase();
600 virtual bool AssociateModel( wxDataViewModel
*model
);
601 wxDataViewModel
* GetModel();
602 const wxDataViewModel
* GetModel() const;
608 wxDataViewColumn
*PrependTextColumn( const wxString
&label
, unsigned int model_column
,
609 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
610 wxAlignment align
= wxALIGN_NOT
,
611 int flags
= wxDATAVIEW_COL_RESIZABLE
);
612 wxDataViewColumn
*PrependIconTextColumn( const wxString
&label
, unsigned int model_column
,
613 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
614 wxAlignment align
= wxALIGN_NOT
,
615 int flags
= wxDATAVIEW_COL_RESIZABLE
);
616 wxDataViewColumn
*PrependToggleColumn( const wxString
&label
, unsigned int model_column
,
617 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
618 wxAlignment align
= wxALIGN_CENTER
,
619 int flags
= wxDATAVIEW_COL_RESIZABLE
);
620 wxDataViewColumn
*PrependProgressColumn( const wxString
&label
, unsigned int model_column
,
621 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
622 wxAlignment align
= wxALIGN_CENTER
,
623 int flags
= wxDATAVIEW_COL_RESIZABLE
);
624 wxDataViewColumn
*PrependDateColumn( const wxString
&label
, unsigned int model_column
,
625 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
626 wxAlignment align
= wxALIGN_NOT
,
627 int flags
= wxDATAVIEW_COL_RESIZABLE
);
628 wxDataViewColumn
*PrependBitmapColumn( const wxString
&label
, unsigned int model_column
,
629 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
630 wxAlignment align
= wxALIGN_CENTER
,
631 int flags
= wxDATAVIEW_COL_RESIZABLE
);
632 wxDataViewColumn
*PrependTextColumn( const wxBitmap
&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
*PrependIconTextColumn( const wxBitmap
&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
*PrependToggleColumn( const wxBitmap
&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
*PrependProgressColumn( const wxBitmap
&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
*PrependDateColumn( const wxBitmap
&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
*PrependBitmapColumn( const wxBitmap
&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
);
657 wxDataViewColumn
*AppendTextColumn( const wxString
&label
, unsigned int model_column
,
658 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
659 wxAlignment align
= wxALIGN_NOT
,
660 int flags
= wxDATAVIEW_COL_RESIZABLE
);
661 wxDataViewColumn
*AppendIconTextColumn( const wxString
&label
, unsigned int model_column
,
662 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
663 wxAlignment align
= wxALIGN_NOT
,
664 int flags
= wxDATAVIEW_COL_RESIZABLE
);
665 wxDataViewColumn
*AppendToggleColumn( const wxString
&label
, unsigned int model_column
,
666 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
667 wxAlignment align
= wxALIGN_CENTER
,
668 int flags
= wxDATAVIEW_COL_RESIZABLE
);
669 wxDataViewColumn
*AppendProgressColumn( const wxString
&label
, unsigned int model_column
,
670 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
671 wxAlignment align
= wxALIGN_CENTER
,
672 int flags
= wxDATAVIEW_COL_RESIZABLE
);
673 wxDataViewColumn
*AppendDateColumn( const wxString
&label
, unsigned int model_column
,
674 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
675 wxAlignment align
= wxALIGN_NOT
,
676 int flags
= wxDATAVIEW_COL_RESIZABLE
);
677 wxDataViewColumn
*AppendBitmapColumn( const wxString
&label
, unsigned int model_column
,
678 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
679 wxAlignment align
= wxALIGN_CENTER
,
680 int flags
= wxDATAVIEW_COL_RESIZABLE
);
681 wxDataViewColumn
*AppendTextColumn( const wxBitmap
&label
, unsigned int model_column
,
682 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
683 wxAlignment align
= wxALIGN_NOT
,
684 int flags
= wxDATAVIEW_COL_RESIZABLE
);
685 wxDataViewColumn
*AppendIconTextColumn( const wxBitmap
&label
, unsigned int model_column
,
686 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
687 wxAlignment align
= wxALIGN_NOT
,
688 int flags
= wxDATAVIEW_COL_RESIZABLE
);
689 wxDataViewColumn
*AppendToggleColumn( const wxBitmap
&label
, unsigned int model_column
,
690 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_TOGGLE_DEFAULT_WIDTH
,
691 wxAlignment align
= wxALIGN_CENTER
,
692 int flags
= wxDATAVIEW_COL_RESIZABLE
);
693 wxDataViewColumn
*AppendProgressColumn( const wxBitmap
&label
, unsigned int model_column
,
694 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= wxDVC_DEFAULT_WIDTH
,
695 wxAlignment align
= wxALIGN_CENTER
,
696 int flags
= wxDATAVIEW_COL_RESIZABLE
);
697 wxDataViewColumn
*AppendDateColumn( const wxBitmap
&label
, unsigned int model_column
,
698 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
, int width
= -1,
699 wxAlignment align
= wxALIGN_NOT
,
700 int flags
= wxDATAVIEW_COL_RESIZABLE
);
701 wxDataViewColumn
*AppendBitmapColumn( const wxBitmap
&label
, unsigned int model_column
,
702 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
, int width
= -1,
703 wxAlignment align
= wxALIGN_CENTER
,
704 int flags
= wxDATAVIEW_COL_RESIZABLE
);
706 virtual bool PrependColumn( wxDataViewColumn
*col
);
707 virtual bool InsertColumn( unsigned int pos
, wxDataViewColumn
*col
);
708 virtual bool AppendColumn( wxDataViewColumn
*col
);
710 virtual unsigned int GetColumnCount() const = 0;
711 virtual wxDataViewColumn
* GetColumn( unsigned int pos
) const = 0;
712 virtual int GetColumnPosition( const wxDataViewColumn
*column
) const = 0;
714 virtual bool DeleteColumn( wxDataViewColumn
*column
) = 0;
715 virtual bool ClearColumns() = 0;
717 void SetExpanderColumn( wxDataViewColumn
*col
)
718 { m_expander_column
= col
; DoSetExpanderColumn(); }
719 wxDataViewColumn
*GetExpanderColumn() const
720 { return m_expander_column
; }
722 virtual wxDataViewColumn
*GetSortingColumn() const = 0;
728 void SetIndent( int indent
)
729 { m_indent
= indent
; DoSetIndent(); }
730 int GetIndent() const
733 virtual wxDataViewItem
GetSelection() const = 0;
734 virtual int GetSelections( wxDataViewItemArray
& sel
) const = 0;
735 virtual void SetSelections( const wxDataViewItemArray
& sel
) = 0;
736 virtual void Select( const wxDataViewItem
& item
) = 0;
737 virtual void Unselect( const wxDataViewItem
& item
) = 0;
738 virtual bool IsSelected( const wxDataViewItem
& item
) const = 0;
740 virtual void SelectAll() = 0;
741 virtual void UnselectAll() = 0;
743 virtual void Expand( const wxDataViewItem
& item
) = 0;
744 virtual void ExpandAncestors( const wxDataViewItem
& item
);
745 virtual void Collapse( const wxDataViewItem
& item
) = 0;
746 virtual bool IsExpanded( const wxDataViewItem
& item
) const = 0;
748 virtual void EnsureVisible( const wxDataViewItem
& item
,
749 const wxDataViewColumn
*column
= NULL
) = 0;
750 virtual void HitTest( const wxPoint
& point
, wxDataViewItem
&item
, wxDataViewColumn
* &column
) const = 0;
751 virtual wxRect
GetItemRect( const wxDataViewItem
& item
, const wxDataViewColumn
*column
= NULL
) const = 0;
753 #if wxUSE_DRAG_AND_DROP
754 virtual bool EnableDragSource(const wxDataFormat
& WXUNUSED(format
))
756 virtual bool EnableDropTarget(const wxDataFormat
& WXUNUSED(format
))
758 #endif // wxUSE_DRAG_AND_DROP
760 // define control visual attributes
761 // --------------------------------
763 virtual wxVisualAttributes
GetDefaultAttributes() const
765 return GetClassDefaultAttributes(GetWindowVariant());
768 static wxVisualAttributes
769 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
)
771 return wxControl::GetCompositeControlsDefaultAttributes(variant
);
775 virtual void DoSetExpanderColumn() = 0 ;
776 virtual void DoSetIndent() = 0;
779 wxDataViewModel
*m_model
;
780 wxDataViewColumn
*m_expander_column
;
784 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCtrlBase
)
787 // ----------------------------------------------------------------------------
788 // wxDataViewEvent - the event class for the wxDataViewCtrl notifications
789 // ----------------------------------------------------------------------------
791 class WXDLLIMPEXP_ADV wxDataViewEvent
: public wxNotifyEvent
794 wxDataViewEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0)
795 : wxNotifyEvent(commandType
, winid
),
799 m_value(wxNullVariant
),
804 #if wxUSE_DRAG_AND_DROP
805 , m_dataObject(NULL
),
811 wxDataViewEvent(const wxDataViewEvent
& event
)
812 : wxNotifyEvent(event
),
813 m_item(event
.m_item
),
815 m_model(event
.m_model
),
816 m_value(event
.m_value
),
817 m_column(event
.m_column
),
819 m_cacheFrom(event
.m_cacheFrom
),
820 m_cacheTo(event
.m_cacheTo
)
821 #if wxUSE_DRAG_AND_DROP
822 , m_dataObject(event
.m_dataObject
),
823 m_dataFormat(event
.m_dataFormat
),
824 m_dataBuffer(event
.m_dataBuffer
),
825 m_dataSize(event
.m_dataSize
)
829 wxDataViewItem
GetItem() const { return m_item
; }
830 void SetItem( const wxDataViewItem
&item
) { m_item
= item
; }
832 int GetColumn() const { return m_col
; }
833 void SetColumn( int col
) { m_col
= col
; }
835 wxDataViewModel
* GetModel() const { return m_model
; }
836 void SetModel( wxDataViewModel
*model
) { m_model
= model
; }
838 const wxVariant
&GetValue() const { return m_value
; }
839 void SetValue( const wxVariant
&value
) { m_value
= value
; }
841 // for wxEVT_DATAVIEW_COLUMN_HEADER_CLICKED only
842 void SetDataViewColumn( wxDataViewColumn
*col
) { m_column
= col
; }
843 wxDataViewColumn
*GetDataViewColumn() const { return m_column
; }
845 // for wxEVT_DATAVIEW_CONTEXT_MENU only
846 wxPoint
GetPosition() const { return m_pos
; }
847 void SetPosition( int x
, int y
) { m_pos
.x
= x
; m_pos
.y
= y
; }
849 // For wxEVT_COMMAND_DATAVIEW_CACHE_HINT
850 int GetCacheFrom() const { return m_cacheFrom
; }
851 int GetCacheTo() const { return m_cacheTo
; }
852 void SetCache(int from
, int to
) { m_cacheFrom
= from
; m_cacheTo
= to
; }
855 #if wxUSE_DRAG_AND_DROP
856 // For drag operations
857 void SetDataObject( wxDataObject
*obj
) { m_dataObject
= obj
; }
858 wxDataObject
*GetDataObject() const { return m_dataObject
; }
860 // For drop operations
861 void SetDataFormat( const wxDataFormat
&format
) { m_dataFormat
= format
; }
862 wxDataFormat
GetDataFormat() const { return m_dataFormat
; }
863 void SetDataSize( size_t size
) { m_dataSize
= size
; }
864 size_t GetDataSize() const { return m_dataSize
; }
865 void SetDataBuffer( void* buf
) { m_dataBuffer
= buf
;}
866 void *GetDataBuffer() const { return m_dataBuffer
; }
867 #endif // wxUSE_DRAG_AND_DROP
869 virtual wxEvent
*Clone() const { return new wxDataViewEvent(*this); }
872 wxDataViewItem m_item
;
874 wxDataViewModel
*m_model
;
876 wxDataViewColumn
*m_column
;
881 #if wxUSE_DRAG_AND_DROP
882 wxDataObject
*m_dataObject
;
884 wxDataFormat m_dataFormat
;
887 #endif // wxUSE_DRAG_AND_DROP
890 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewEvent
)
893 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED
, wxDataViewEvent
);
895 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED
, wxDataViewEvent
);
896 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED
, wxDataViewEvent
);
897 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED
, wxDataViewEvent
);
898 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING
, wxDataViewEvent
);
899 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING
, wxDataViewEvent
);
900 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_START_EDITING
, wxDataViewEvent
);
901 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED
, wxDataViewEvent
);
902 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE
, wxDataViewEvent
);
903 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED
, wxDataViewEvent
);
905 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_CONTEXT_MENU
, wxDataViewEvent
);
907 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK
, wxDataViewEvent
);
908 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK
, wxDataViewEvent
);
909 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED
, wxDataViewEvent
);
910 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_COLUMN_REORDERED
, wxDataViewEvent
);
912 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_CACHE_HINT
, wxDataViewEvent
);
914 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_BEGIN_DRAG
, wxDataViewEvent
);
915 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE
, wxDataViewEvent
);
916 wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_ADV
, wxEVT_COMMAND_DATAVIEW_ITEM_DROP
, wxDataViewEvent
);
918 typedef void (wxEvtHandler::*wxDataViewEventFunction
)(wxDataViewEvent
&);
920 #define wxDataViewEventHandler(func) \
921 wxEVENT_HANDLER_CAST(wxDataViewEventFunction, func)
923 #define wx__DECLARE_DATAVIEWEVT(evt, id, fn) \
924 wx__DECLARE_EVT1(wxEVT_COMMAND_DATAVIEW_ ## evt, id, wxDataViewEventHandler(fn))
926 #define EVT_DATAVIEW_SELECTION_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(SELECTION_CHANGED, id, fn)
928 #define EVT_DATAVIEW_ITEM_ACTIVATED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_ACTIVATED, id, fn)
929 #define EVT_DATAVIEW_ITEM_COLLAPSING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSING, id, fn)
930 #define EVT_DATAVIEW_ITEM_COLLAPSED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSED, id, fn)
931 #define EVT_DATAVIEW_ITEM_EXPANDING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDING, id, fn)
932 #define EVT_DATAVIEW_ITEM_EXPANDED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDED, id, fn)
933 #define EVT_DATAVIEW_ITEM_START_EDITING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_START_EDITING, id, fn)
934 #define EVT_DATAVIEW_ITEM_EDITING_STARTED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_STARTED, id, fn)
935 #define EVT_DATAVIEW_ITEM_EDITING_DONE(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_DONE, id, fn)
936 #define EVT_DATAVIEW_ITEM_VALUE_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_VALUE_CHANGED, id, fn)
938 #define EVT_DATAVIEW_ITEM_CONTEXT_MENU(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_CONTEXT_MENU, id, fn)
940 #define EVT_DATAVIEW_COLUMN_HEADER_CLICK(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_CLICK, id, fn)
941 #define EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_RIGHT_CLICK, id, fn)
942 #define EVT_DATAVIEW_COLUMN_SORTED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_SORTED, id, fn)
943 #define EVT_DATAVIEW_COLUMN_REORDERED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_REORDERED, id, fn)
944 #define EVT_DATAVIEW_CACHE_HINT(id, fn) wx__DECLARE_DATAVIEWEVT(CACHE_HINT, id, fn)
946 #define EVT_DATAVIEW_ITEM_BEGIN_DRAG(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_BEGIN_DRAG, id, fn)
947 #define EVT_DATAVIEW_ITEM_DROP_POSSIBLE(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_DROP_POSSIBLE, id, fn)
948 #define EVT_DATAVIEW_ITEM_DROP(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_DROP, id, fn)
950 #ifdef wxHAS_GENERIC_DATAVIEWCTRL
951 // this symbol doesn't follow the convention for wxUSE_XXX symbols which
952 // are normally always defined as either 0 or 1, so its use is deprecated
953 // and it only exists for backwards compatibility, don't use it any more
954 // and use wxHAS_GENERIC_DATAVIEWCTRL instead
955 #define wxUSE_GENERICDATAVIEWCTRL
957 #include "wx/generic/dataview.h"
958 #elif defined(__WXGTK20__)
959 #include "wx/gtk/dataview.h"
960 #elif defined(__WXMAC__)
961 #include "wx/osx/dataview.h"
963 #error "unknown native wxDataViewCtrl implementation"
966 // -------------------------------------
967 // wxDataViewSpinRenderer
968 // -------------------------------------
970 class WXDLLIMPEXP_ADV wxDataViewSpinRenderer
: public wxDataViewCustomRenderer
973 wxDataViewSpinRenderer( int min
, int max
,
974 wxDataViewCellMode mode
= wxDATAVIEW_CELL_EDITABLE
,
975 int alignment
= wxDVR_DEFAULT_ALIGNMENT
);
976 virtual bool HasEditorCtrl() const { return true; }
977 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
, const wxVariant
&value
);
978 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
979 virtual bool Render( wxRect rect
, wxDC
*dc
, int state
);
980 virtual wxSize
GetSize() const;
981 virtual bool SetValue( const wxVariant
&value
);
982 virtual bool GetValue( wxVariant
&value
) const;
989 #if defined(wxHAS_GENERIC_DATAVIEWCTRL) || defined(__WXOSX_CARBON__)
991 // -------------------------------------
992 // wxDataViewChoiceRenderer
993 // -------------------------------------
995 class WXDLLIMPEXP_ADV wxDataViewChoiceRenderer
: public wxDataViewCustomRenderer
998 wxDataViewChoiceRenderer( const wxArrayString
&choices
,
999 wxDataViewCellMode mode
= wxDATAVIEW_CELL_EDITABLE
,
1000 int alignment
= wxDVR_DEFAULT_ALIGNMENT
);
1001 virtual bool HasEditorCtrl() const { return true; }
1002 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
, const wxVariant
&value
);
1003 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
1004 virtual bool Render( wxRect rect
, wxDC
*dc
, int state
);
1005 virtual wxSize
GetSize() const;
1006 virtual bool SetValue( const wxVariant
&value
);
1007 virtual bool GetValue( wxVariant
&value
) const;
1010 wxArrayString m_choices
;
1016 // this class is obsolete, its functionality was merged in
1017 // wxDataViewTextRenderer itself now, don't use it any more
1018 #define wxDataViewTextRendererAttr wxDataViewTextRenderer
1020 //-----------------------------------------------------------------------------
1021 // wxDataViewListStore
1022 //-----------------------------------------------------------------------------
1024 class WXDLLIMPEXP_ADV wxDataViewListStoreLine
1027 wxDataViewListStoreLine( wxClientData
*data
= NULL
)
1031 virtual ~wxDataViewListStoreLine()
1036 void SetData( wxClientData
*data
)
1037 { if (m_data
) delete m_data
; m_data
= data
; }
1038 wxClientData
*GetData() const
1041 wxVector
<wxVariant
> m_values
;
1044 wxClientData
*m_data
;
1048 class WXDLLIMPEXP_ADV wxDataViewListStore
: public wxDataViewIndexListModel
1051 wxDataViewListStore();
1052 ~wxDataViewListStore();
1054 void PrependColumn( const wxString
&varianttype
);
1055 void InsertColumn( unsigned int pos
, const wxString
&varianttype
);
1056 void AppendColumn( const wxString
&varianttype
);
1058 void AppendItem( const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
);
1059 void PrependItem( const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
);
1060 void InsertItem( unsigned int row
, const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
);
1061 void DeleteItem( unsigned int pos
);
1062 void DeleteAllItems();
1064 // override base virtuals
1066 virtual unsigned int GetColumnCount() const;
1068 virtual wxString
GetColumnType( unsigned int col
) const;
1070 virtual void GetValueByRow( wxVariant
&value
,
1071 unsigned int row
, unsigned int col
) const;
1073 virtual bool SetValueByRow( const wxVariant
&value
,
1074 unsigned int row
, unsigned int col
);
1078 wxVector
<wxDataViewListStoreLine
*> m_data
;
1079 wxArrayString m_cols
;
1082 //-----------------------------------------------------------------------------
1084 class WXDLLIMPEXP_ADV wxDataViewListCtrl
: public wxDataViewCtrl
1087 wxDataViewListCtrl();
1088 wxDataViewListCtrl( wxWindow
*parent
, wxWindowID id
,
1089 const wxPoint
& pos
= wxDefaultPosition
,
1090 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_ROW_LINES
,
1091 const wxValidator
& validator
= wxDefaultValidator
);
1092 ~wxDataViewListCtrl();
1094 bool Create( wxWindow
*parent
, wxWindowID id
,
1095 const wxPoint
& pos
= wxDefaultPosition
,
1096 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_ROW_LINES
,
1097 const wxValidator
& validator
= wxDefaultValidator
);
1099 wxDataViewListStore
*GetStore()
1100 { return (wxDataViewListStore
*) GetModel(); }
1101 const wxDataViewListStore
*GetStore() const
1102 { return (const wxDataViewListStore
*) GetModel(); }
1104 bool AppendColumn( wxDataViewColumn
*column
, const wxString
&varianttype
);
1105 bool PrependColumn( wxDataViewColumn
*column
, const wxString
&varianttype
);
1106 bool InsertColumn( unsigned int pos
, wxDataViewColumn
*column
, const wxString
&varianttype
);
1108 // overridden from base class
1109 virtual bool PrependColumn( wxDataViewColumn
*col
);
1110 virtual bool InsertColumn( unsigned int pos
, wxDataViewColumn
*col
);
1111 virtual bool AppendColumn( wxDataViewColumn
*col
);
1113 wxDataViewColumn
*AppendTextColumn( const wxString
&label
,
1114 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1115 int width
= -1, wxAlignment align
= wxALIGN_LEFT
, int flags
= wxDATAVIEW_COL_RESIZABLE
);
1116 wxDataViewColumn
*AppendToggleColumn( const wxString
&label
,
1117 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
1118 int width
= -1, wxAlignment align
= wxALIGN_LEFT
, int flags
= wxDATAVIEW_COL_RESIZABLE
);
1119 wxDataViewColumn
*AppendProgressColumn( const wxString
&label
,
1120 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1121 int width
= -1, wxAlignment align
= wxALIGN_LEFT
, int flags
= wxDATAVIEW_COL_RESIZABLE
);
1122 wxDataViewColumn
*AppendIconTextColumn( const wxString
&label
,
1123 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
1124 int width
= -1, wxAlignment align
= wxALIGN_LEFT
, int flags
= wxDATAVIEW_COL_RESIZABLE
);
1126 void AppendItem( const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
)
1127 { GetStore()->AppendItem( values
, data
); }
1128 void PrependItem( const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
)
1129 { GetStore()->PrependItem( values
, data
); }
1130 void InsertItem( unsigned int row
, const wxVector
<wxVariant
> &values
, wxClientData
*data
= NULL
)
1131 { GetStore()->InsertItem( row
, values
, data
); }
1132 void DeleteItem( unsigned row
)
1133 { GetStore()->DeleteItem( row
); }
1134 void DeleteAllItems()
1135 { GetStore()->DeleteAllItems(); }
1137 void SetValue( const wxVariant
&value
, unsigned int row
, unsigned int col
)
1138 { GetStore()->SetValueByRow( value
, row
, col
);
1139 GetStore()->RowValueChanged( row
, col
); }
1140 void GetValue( wxVariant
&value
, unsigned int row
, unsigned int col
)
1141 { GetStore()->GetValueByRow( value
, row
, col
); }
1143 void SetTextValue( const wxString
&value
, unsigned int row
, unsigned int col
)
1144 { GetStore()->SetValueByRow( value
, row
, col
);
1145 GetStore()->RowValueChanged( row
, col
); }
1146 wxString
GetTextValue( unsigned int row
, unsigned int col
) const
1147 { wxVariant value
; GetStore()->GetValueByRow( value
, row
, col
); return value
.GetString(); }
1149 void SetToggleValue( bool value
, unsigned int row
, unsigned int col
)
1150 { GetStore()->SetValueByRow( value
, row
, col
);
1151 GetStore()->RowValueChanged( row
, col
); }
1152 bool GetToggleValue( unsigned int row
, unsigned int col
) const
1153 { wxVariant value
; GetStore()->GetValueByRow( value
, row
, col
); return value
.GetBool(); }
1155 void OnSize( wxSizeEvent
&event
);
1158 DECLARE_EVENT_TABLE()
1159 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewListCtrl
)
1162 //-----------------------------------------------------------------------------
1163 // wxDataViewTreeStore
1164 //-----------------------------------------------------------------------------
1166 class WXDLLIMPEXP_ADV wxDataViewTreeStoreNode
1169 wxDataViewTreeStoreNode( wxDataViewTreeStoreNode
*parent
,
1170 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
1171 virtual ~wxDataViewTreeStoreNode();
1173 void SetText( const wxString
&text
)
1175 wxString
GetText() const
1177 void SetIcon( const wxIcon
&icon
)
1179 const wxIcon
&GetIcon() const
1181 void SetData( wxClientData
*data
)
1182 { if (m_data
) delete m_data
; m_data
= data
; }
1183 wxClientData
*GetData() const
1186 wxDataViewItem
GetItem() const
1187 { return wxDataViewItem( (void*) this ); }
1189 virtual bool IsContainer()
1192 wxDataViewTreeStoreNode
*GetParent()
1193 { return m_parent
; }
1196 wxDataViewTreeStoreNode
*m_parent
;
1199 wxClientData
*m_data
;
1202 WX_DECLARE_LIST_WITH_DECL(wxDataViewTreeStoreNode
, wxDataViewTreeStoreNodeList
,
1203 class WXDLLIMPEXP_ADV
);
1205 class WXDLLIMPEXP_ADV wxDataViewTreeStoreContainerNode
: public wxDataViewTreeStoreNode
1208 wxDataViewTreeStoreContainerNode( wxDataViewTreeStoreNode
*parent
,
1209 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
1210 wxClientData
*data
= NULL
);
1211 virtual ~wxDataViewTreeStoreContainerNode();
1213 const wxDataViewTreeStoreNodeList
&GetChildren() const
1214 { return m_children
; }
1215 wxDataViewTreeStoreNodeList
&GetChildren()
1216 { return m_children
; }
1218 void SetExpandedIcon( const wxIcon
&icon
)
1219 { m_iconExpanded
= icon
; }
1220 const wxIcon
&GetExpandedIcon() const
1221 { return m_iconExpanded
; }
1223 void SetExpanded( bool expanded
= true )
1224 { m_isExpanded
= expanded
; }
1225 bool IsExpanded() const
1226 { return m_isExpanded
; }
1228 virtual bool IsContainer()
1232 wxDataViewTreeStoreNodeList m_children
;
1233 wxIcon m_iconExpanded
;
1237 //-----------------------------------------------------------------------------
1239 class WXDLLIMPEXP_ADV wxDataViewTreeStore
: public wxDataViewModel
1242 wxDataViewTreeStore();
1243 ~wxDataViewTreeStore();
1245 wxDataViewItem
AppendItem( const wxDataViewItem
& parent
,
1246 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
1247 wxDataViewItem
PrependItem( const wxDataViewItem
& parent
,
1248 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
1249 wxDataViewItem
InsertItem( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
1250 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, wxClientData
*data
= NULL
);
1252 wxDataViewItem
PrependContainer( const wxDataViewItem
& parent
,
1253 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
1254 wxClientData
*data
= NULL
);
1255 wxDataViewItem
AppendContainer( const wxDataViewItem
& parent
,
1256 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
1257 wxClientData
*data
= NULL
);
1258 wxDataViewItem
InsertContainer( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
1259 const wxString
&text
, const wxIcon
&icon
= wxNullIcon
, const wxIcon
&expanded
= wxNullIcon
,
1260 wxClientData
*data
= NULL
);
1262 wxDataViewItem
GetNthChild( const wxDataViewItem
& parent
, unsigned int pos
) const;
1263 int GetChildCount( const wxDataViewItem
& parent
) const;
1265 void SetItemText( const wxDataViewItem
& item
, const wxString
&text
);
1266 wxString
GetItemText( const wxDataViewItem
& item
) const;
1267 void SetItemIcon( const wxDataViewItem
& item
, const wxIcon
&icon
);
1268 const wxIcon
&GetItemIcon( const wxDataViewItem
& item
) const;
1269 void SetItemExpandedIcon( const wxDataViewItem
& item
, const wxIcon
&icon
);
1270 const wxIcon
&GetItemExpandedIcon( const wxDataViewItem
& item
) const;
1271 void SetItemData( const wxDataViewItem
& item
, wxClientData
*data
);
1272 wxClientData
*GetItemData( const wxDataViewItem
& item
) const;
1274 void DeleteItem( const wxDataViewItem
& item
);
1275 void DeleteChildren( const wxDataViewItem
& item
);
1276 void DeleteAllItems();
1278 // implement base methods
1280 virtual void GetValue( wxVariant
&variant
,
1281 const wxDataViewItem
&item
, unsigned int col
) const;
1282 virtual bool SetValue( const wxVariant
&variant
,
1283 const wxDataViewItem
&item
, unsigned int col
);
1284 virtual wxDataViewItem
GetParent( const wxDataViewItem
&item
) const;
1285 virtual bool IsContainer( const wxDataViewItem
&item
) const;
1286 virtual unsigned int GetChildren( const wxDataViewItem
&item
, wxDataViewItemArray
&children
) const;
1288 virtual int Compare( const wxDataViewItem
&item1
, const wxDataViewItem
&item2
,
1289 unsigned int column
, bool ascending
) const;
1291 virtual bool HasDefaultCompare() const
1293 virtual unsigned int GetColumnCount() const
1295 virtual wxString
GetColumnType( unsigned int WXUNUSED(col
) ) const
1296 { return wxT("wxDataViewIconText"); }
1298 wxDataViewTreeStoreNode
*FindNode( const wxDataViewItem
&item
) const;
1299 wxDataViewTreeStoreContainerNode
*FindContainerNode( const wxDataViewItem
&item
) const;
1300 wxDataViewTreeStoreNode
*GetRoot() const { return m_root
; }
1303 wxDataViewTreeStoreNode
*m_root
;
1306 //-----------------------------------------------------------------------------
1308 class WXDLLIMPEXP_ADV wxDataViewTreeCtrl
: public wxDataViewCtrl
1311 wxDataViewTreeCtrl();
1312 wxDataViewTreeCtrl( wxWindow
*parent
, wxWindowID id
,
1313 const wxPoint
& pos
= wxDefaultPosition
,
1314 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_NO_HEADER
| wxDV_ROW_LINES
,
1315 const wxValidator
& validator
= wxDefaultValidator
);
1316 ~wxDataViewTreeCtrl();
1318 bool Create( wxWindow
*parent
, wxWindowID id
,
1319 const wxPoint
& pos
= wxDefaultPosition
,
1320 const wxSize
& size
= wxDefaultSize
, long style
= wxDV_NO_HEADER
| wxDV_ROW_LINES
,
1321 const wxValidator
& validator
= wxDefaultValidator
);
1323 wxDataViewTreeStore
*GetStore()
1324 { return (wxDataViewTreeStore
*) GetModel(); }
1325 const wxDataViewTreeStore
*GetStore() const
1326 { return (const wxDataViewTreeStore
*) GetModel(); }
1328 void SetImageList( wxImageList
*imagelist
);
1329 wxImageList
* GetImageList() { return m_imageList
; }
1331 wxDataViewItem
AppendItem( const wxDataViewItem
& parent
,
1332 const wxString
&text
, int icon
= -1, wxClientData
*data
= NULL
);
1333 wxDataViewItem
PrependItem( const wxDataViewItem
& parent
,
1334 const wxString
&text
, int icon
= -1, wxClientData
*data
= NULL
);
1335 wxDataViewItem
InsertItem( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
1336 const wxString
&text
, int icon
= -1, wxClientData
*data
= NULL
);
1338 wxDataViewItem
PrependContainer( const wxDataViewItem
& parent
,
1339 const wxString
&text
, int icon
= -1, int expanded
= -1,
1340 wxClientData
*data
= NULL
);
1341 wxDataViewItem
AppendContainer( const wxDataViewItem
& parent
,
1342 const wxString
&text
, int icon
= -1, int expanded
= -1,
1343 wxClientData
*data
= NULL
);
1344 wxDataViewItem
InsertContainer( const wxDataViewItem
& parent
, const wxDataViewItem
& previous
,
1345 const wxString
&text
, int icon
= -1, int expanded
= -1,
1346 wxClientData
*data
= NULL
);
1348 wxDataViewItem
GetNthChild( const wxDataViewItem
& parent
, unsigned int pos
) const
1349 { return GetStore()->GetNthChild(parent
, pos
); }
1350 int GetChildCount( const wxDataViewItem
& parent
) const
1351 { return GetStore()->GetChildCount(parent
); }
1353 void SetItemText( const wxDataViewItem
& item
, const wxString
&text
);
1354 wxString
GetItemText( const wxDataViewItem
& item
) const
1355 { return GetStore()->GetItemText(item
); }
1356 void SetItemIcon( const wxDataViewItem
& item
, const wxIcon
&icon
);
1357 const wxIcon
&GetItemIcon( const wxDataViewItem
& item
) const
1358 { return GetStore()->GetItemIcon(item
); }
1359 void SetItemExpandedIcon( const wxDataViewItem
& item
, const wxIcon
&icon
);
1360 const wxIcon
&GetItemExpandedIcon( const wxDataViewItem
& item
) const
1361 { return GetStore()->GetItemExpandedIcon(item
); }
1362 void SetItemData( const wxDataViewItem
& item
, wxClientData
*data
)
1363 { GetStore()->SetItemData(item
,data
); }
1364 wxClientData
*GetItemData( const wxDataViewItem
& item
) const
1365 { return GetStore()->GetItemData(item
); }
1367 void DeleteItem( const wxDataViewItem
& item
);
1368 void DeleteChildren( const wxDataViewItem
& item
);
1369 void DeleteAllItems();
1371 void OnExpanded( wxDataViewEvent
&event
);
1372 void OnCollapsed( wxDataViewEvent
&event
);
1373 void OnSize( wxSizeEvent
&event
);
1376 wxImageList
*m_imageList
;
1379 DECLARE_EVENT_TABLE()
1380 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewTreeCtrl
)
1383 #endif // wxUSE_DATAVIEWCTRL
1386 // _WX_DATAVIEW_H_BASE_