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