1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/dataview.h
3 // Purpose: wxDataViewCtrl generic implementation header
4 // Author: Robert Roebling
5 // Modified By: Bo Yang
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GENERICDATAVIEWCTRLH__
12 #define __GENERICDATAVIEWCTRLH__
15 #include "wx/object.h"
17 #include "wx/control.h"
18 #include "wx/scrolwin.h"
21 // ---------------------------------------------------------
23 // ---------------------------------------------------------
25 class WXDLLIMPEXP_FWD_ADV wxDataViewCtrl
;
26 class WXDLLIMPEXP_FWD_ADV wxDataViewMainWindow
;
27 class WXDLLIMPEXP_FWD_ADV wxDataViewHeaderWindow
;
29 // ---------------------------------------------------------
31 // ---------------------------------------------------------
33 class WXDLLIMPEXP_ADV wxDataViewRenderer
: public wxDataViewRendererBase
36 wxDataViewRenderer( const wxString
&varianttype
,
37 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
38 int align
= wxDVR_DEFAULT_ALIGNMENT
);
39 virtual ~wxDataViewRenderer();
41 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
) = 0;
42 virtual wxSize
GetSize() const = 0;
44 virtual void SetAlignment( int align
);
45 virtual int GetAlignment() const;
47 virtual void SetMode( wxDataViewCellMode mode
)
49 virtual wxDataViewCellMode
GetMode() const
52 virtual bool Activate( wxRect
WXUNUSED(cell
),
53 wxDataViewModel
*WXUNUSED(model
),
54 const wxDataViewItem
& WXUNUSED(item
),
55 unsigned int WXUNUSED(col
) )
58 virtual bool LeftClick( wxPoint
WXUNUSED(cursor
),
59 wxRect
WXUNUSED(cell
),
60 wxDataViewModel
*WXUNUSED(model
),
61 const wxDataViewItem
& WXUNUSED(item
),
62 unsigned int WXUNUSED(col
) )
64 virtual bool RightClick( wxPoint
WXUNUSED(cursor
),
65 wxRect
WXUNUSED(cell
),
66 wxDataViewModel
*WXUNUSED(model
),
67 const wxDataViewItem
& WXUNUSED(item
),
68 unsigned int WXUNUSED(col
) )
70 virtual bool StartDrag( wxPoint
WXUNUSED(cursor
),
71 wxRect
WXUNUSED(cell
),
72 wxDataViewModel
*WXUNUSED(model
),
73 const wxDataViewItem
& WXUNUSED(item
),
74 unsigned int WXUNUSED(col
) )
77 // Create DC on request
78 virtual wxDC
*GetDC();
80 void SetHasAttr( bool set
) { m_hasAttr
= set
; }
81 void SetAttr( const wxDataViewItemAttr
&attr
) { m_attr
= attr
; }
82 bool GetWantsAttr() { return m_wantsAttr
; }
85 int CalculateAlignment() const;
90 wxDataViewCellMode m_mode
;
95 wxDataViewItemAttr m_attr
;
98 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRenderer
)
101 // ---------------------------------------------------------
102 // wxDataViewCustomRenderer
103 // ---------------------------------------------------------
105 class WXDLLIMPEXP_ADV wxDataViewCustomRenderer
: public wxDataViewRenderer
108 wxDataViewCustomRenderer( const wxString
&varianttype
= wxT("string"),
109 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
110 int align
= wxDVR_DEFAULT_ALIGNMENT
);
112 void RenderText( const wxString
&text
, int xoffset
, wxRect cell
, wxDC
*dc
, int state
);
115 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCustomRenderer
)
119 // ---------------------------------------------------------
120 // wxDataViewTextRenderer
121 // ---------------------------------------------------------
123 class WXDLLIMPEXP_ADV wxDataViewTextRenderer
: public wxDataViewCustomRenderer
126 wxDataViewTextRenderer( const wxString
&varianttype
= wxT("string"),
127 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
128 int align
= wxDVR_DEFAULT_ALIGNMENT
);
130 bool SetValue( const wxVariant
&value
);
131 bool GetValue( wxVariant
&value
) const;
133 bool Render( wxRect cell
, wxDC
*dc
, int state
);
134 wxSize
GetSize() const;
137 virtual bool HasEditorCtrl();
138 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
, const wxVariant
&value
);
139 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
145 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRenderer
)
148 // ---------------------------------------------------------
149 // wxDataViewTextRendererAttr
150 // ---------------------------------------------------------
152 class WXDLLIMPEXP_ADV wxDataViewTextRendererAttr
: public wxDataViewTextRenderer
155 wxDataViewTextRendererAttr( const wxString
&varianttype
= wxT("string"),
156 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
157 int align
= wxDVR_DEFAULT_ALIGNMENT
);
159 bool Render( wxRect cell
, wxDC
*dc
, int state
);
162 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRendererAttr
)
165 // ---------------------------------------------------------
166 // wxDataViewBitmapRenderer
167 // ---------------------------------------------------------
169 class WXDLLIMPEXP_ADV wxDataViewBitmapRenderer
: public wxDataViewCustomRenderer
172 wxDataViewBitmapRenderer( const wxString
&varianttype
= wxT("wxBitmap"),
173 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
174 int align
= wxDVR_DEFAULT_ALIGNMENT
);
176 bool SetValue( const wxVariant
&value
);
177 bool GetValue( wxVariant
&value
) const;
179 bool Render( wxRect cell
, wxDC
*dc
, int state
);
180 wxSize
GetSize() const;
187 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapRenderer
)
190 // ---------------------------------------------------------
191 // wxDataViewToggleRenderer
192 // ---------------------------------------------------------
194 class WXDLLIMPEXP_ADV wxDataViewToggleRenderer
: public wxDataViewCustomRenderer
197 wxDataViewToggleRenderer( const wxString
&varianttype
= wxT("bool"),
198 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
199 int align
= wxDVR_DEFAULT_ALIGNMENT
);
201 bool SetValue( const wxVariant
&value
);
202 bool GetValue( wxVariant
&value
) const;
204 bool Render( wxRect cell
, wxDC
*dc
, int state
);
205 bool Activate( wxRect cell
, wxDataViewModel
*model
, const wxDataViewItem
& item
,
207 wxSize
GetSize() const;
213 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewToggleRenderer
)
216 // ---------------------------------------------------------
217 // wxDataViewProgressRenderer
218 // ---------------------------------------------------------
220 class WXDLLIMPEXP_ADV wxDataViewProgressRenderer
: public wxDataViewCustomRenderer
223 wxDataViewProgressRenderer( const wxString
&label
= wxEmptyString
,
224 const wxString
&varianttype
= wxT("long"),
225 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
226 int align
= wxDVR_DEFAULT_ALIGNMENT
);
227 virtual ~wxDataViewProgressRenderer();
229 bool SetValue( const wxVariant
&value
);
230 bool GetValue( wxVariant
& value
) const;
232 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
);
233 virtual wxSize
GetSize() const;
240 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewProgressRenderer
)
243 // ---------------------------------------------------------
244 // wxDataViewIconTextRenderer
245 // ---------------------------------------------------------
247 class WXDLLIMPEXP_ADV wxDataViewIconTextRenderer
: public wxDataViewCustomRenderer
250 wxDataViewIconTextRenderer( const wxString
&varianttype
= wxT("wxDataViewIconText"),
251 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
252 int align
= wxDVR_DEFAULT_ALIGNMENT
);
253 virtual ~wxDataViewIconTextRenderer();
255 bool SetValue( const wxVariant
&value
);
256 bool GetValue( wxVariant
&value
) const;
258 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
);
259 virtual wxSize
GetSize() const;
261 virtual bool HasEditorCtrl() { return true; }
262 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
, const wxVariant
&value
);
263 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
266 wxDataViewIconText m_value
;
269 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewIconTextRenderer
)
272 // ---------------------------------------------------------
273 // wxDataViewDateRenderer
274 // ---------------------------------------------------------
276 class WXDLLIMPEXP_ADV wxDataViewDateRenderer
: public wxDataViewCustomRenderer
279 wxDataViewDateRenderer( const wxString
&varianttype
= wxT("datetime"),
280 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
281 int align
= wxDVR_DEFAULT_ALIGNMENT
);
283 bool SetValue( const wxVariant
&value
);
284 bool GetValue( wxVariant
& value
) const;
286 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
);
287 virtual wxSize
GetSize() const;
288 virtual bool Activate( wxRect cell
,
289 wxDataViewModel
*model
, const wxDataViewItem
& item
, unsigned int col
);
295 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer
)
298 // ---------------------------------------------------------
300 // ---------------------------------------------------------
302 class WXDLLIMPEXP_ADV wxDataViewColumn
: public wxDataViewColumnBase
305 wxDataViewColumn(const wxString
& title
,
306 wxDataViewRenderer
*renderer
,
307 unsigned int model_column
,
308 int width
= wxDVC_DEFAULT_WIDTH
,
309 wxAlignment align
= wxALIGN_CENTER
,
310 int flags
= wxDATAVIEW_COL_RESIZABLE
)
311 : wxDataViewColumnBase(renderer
, model_column
),
314 Init(width
, align
, flags
);
317 wxDataViewColumn(const wxBitmap
& bitmap
,
318 wxDataViewRenderer
*renderer
,
319 unsigned int model_column
,
320 int width
= wxDVC_DEFAULT_WIDTH
,
321 wxAlignment align
= wxALIGN_CENTER
,
322 int flags
= wxDATAVIEW_COL_RESIZABLE
)
323 : wxDataViewColumnBase(bitmap
, renderer
, model_column
)
325 Init(width
, align
, flags
);
328 // implement wxHeaderColumnBase methods
329 virtual void SetTitle(const wxString
& title
) { m_title
= title
; }
330 virtual wxString
GetTitle() const { return m_title
; }
332 virtual void SetWidth(int width
) { m_width
= width
; }
333 virtual int GetWidth() const { return m_width
; }
335 virtual void SetMinWidth(int minWidth
) { m_minWidth
= minWidth
; }
336 virtual int GetMinWidth() const { return m_minWidth
; }
338 virtual void SetAlignment(wxAlignment align
) { m_align
= align
; }
339 virtual wxAlignment
GetAlignment() const { return m_align
; }
341 virtual void SetFlags(int flags
) { m_flags
= flags
; }
342 virtual int GetFlags() const { return m_flags
; }
344 virtual void SetAsSortKey(bool sort
= true) { m_sort
= sort
; }
345 virtual bool IsSortKey() const { return m_sort
; }
347 virtual void SetSortOrder(bool ascending
) { m_sortAscending
= ascending
; }
348 virtual bool IsSortOrderAscending() const { return m_sortAscending
; }
351 // common part of all ctors
352 void Init(int width
, wxAlignment align
, int flags
)
354 m_width
= width
== wxCOL_WIDTH_DEFAULT
? wxDVC_DEFAULT_WIDTH
: width
;
359 m_sortAscending
= true;
370 friend class wxDataViewHeaderWindowBase
;
371 friend class wxDataViewHeaderWindow
;
372 friend class wxDataViewHeaderWindowMSW
;
375 // ---------------------------------------------------------
377 // ---------------------------------------------------------
379 WX_DECLARE_LIST_WITH_DECL(wxDataViewColumn
, wxDataViewColumnList
,
380 class WXDLLIMPEXP_ADV
);
382 class WXDLLIMPEXP_ADV wxDataViewCtrl
: public wxDataViewCtrlBase
,
383 public wxScrollHelper
385 friend class wxDataViewMainWindow
;
386 friend class wxDataViewHeaderWindowBase
;
387 friend class wxDataViewHeaderWindow
;
388 friend class wxDataViewHeaderWindowMSW
;
389 friend class wxDataViewColumn
;
392 wxDataViewCtrl() : wxScrollHelper(this)
397 wxDataViewCtrl( wxWindow
*parent
, wxWindowID id
,
398 const wxPoint
& pos
= wxDefaultPosition
,
399 const wxSize
& size
= wxDefaultSize
, long style
= 0,
400 const wxValidator
& validator
= wxDefaultValidator
)
401 : wxScrollHelper(this)
403 Create(parent
, id
, pos
, size
, style
, validator
);
406 virtual ~wxDataViewCtrl();
410 bool Create(wxWindow
*parent
, wxWindowID id
,
411 const wxPoint
& pos
= wxDefaultPosition
,
412 const wxSize
& size
= wxDefaultSize
, long style
= 0,
413 const wxValidator
& validator
= wxDefaultValidator
);
415 virtual bool AssociateModel( wxDataViewModel
*model
);
417 virtual bool AppendColumn( wxDataViewColumn
*col
);
418 virtual bool PrependColumn( wxDataViewColumn
*col
);
419 virtual bool InsertColumn( unsigned int pos
, wxDataViewColumn
*col
);
421 virtual void DoSetExpanderColumn();
422 virtual void DoSetIndent();
424 virtual unsigned int GetColumnCount() const;
425 virtual wxDataViewColumn
* GetColumn( unsigned int pos
) const;
426 virtual bool DeleteColumn( wxDataViewColumn
*column
);
427 virtual bool ClearColumns();
428 virtual int GetColumnPosition( const wxDataViewColumn
*column
) const;
430 virtual wxDataViewColumn
*GetSortingColumn() const;
432 virtual wxDataViewItem
GetSelection() const;
433 virtual int GetSelections( wxDataViewItemArray
& sel
) const;
434 virtual void SetSelections( const wxDataViewItemArray
& sel
);
435 virtual void Select( const wxDataViewItem
& item
);
436 virtual void Unselect( const wxDataViewItem
& item
);
437 virtual bool IsSelected( const wxDataViewItem
& item
) const;
439 virtual void SelectAll();
440 virtual void UnselectAll();
442 virtual void EnsureVisible( const wxDataViewItem
& item
,
443 const wxDataViewColumn
*column
= NULL
);
444 virtual void HitTest( const wxPoint
& point
, wxDataViewItem
& item
, wxDataViewColumn
* &column
) const;
445 virtual wxRect
GetItemRect( const wxDataViewItem
& item
, const wxDataViewColumn
*column
= NULL
) const;
447 virtual void Expand( const wxDataViewItem
& item
);
448 virtual void Collapse( const wxDataViewItem
& item
);
449 virtual bool IsExpanded( const wxDataViewItem
& item
) const;
451 virtual void SetFocus();
454 virtual int GetSelections( wxArrayInt
& sel
) const;
455 virtual void SetSelections( const wxArrayInt
& sel
);
456 virtual void Select( int row
);
457 virtual void Unselect( int row
);
458 virtual bool IsSelected( int row
) const;
459 virtual void SelectRange( int from
, int to
);
460 virtual void UnselectRange( int from
, int to
);
462 virtual void EnsureVisible( int row
, int column
);
464 virtual wxDataViewItem
GetItemByRow( unsigned int row
) const;
465 virtual int GetRowByItem( const wxDataViewItem
& item
) const;
467 int GetSortingColumnIndex() const { return m_sortingColumnIdx
; }
468 void SetSortingColumnIndex(int idx
) { m_sortingColumnIdx
= idx
; }
470 public: // utility functions not part of the API
472 // returns the "best" width for the idx-th column
473 unsigned int GetBestColumnWidth(int WXUNUSED(idx
)) const
475 return GetClientSize().GetWidth() / GetColumnCount();
478 // called by header window after reorder
479 void ColumnMoved( wxDataViewColumn
* col
, unsigned int new_pos
);
481 // update the display after a change to an individual column
482 void OnColumnChange(unsigned int idx
);
484 // update after a change to the number of columns
485 void OnColumnsCountChanged();
487 wxWindow
*GetMainWindow() { return (wxWindow
*) m_clientArea
; }
489 // return the index of the given column in m_cols
490 int GetColumnIndex(const wxDataViewColumn
*column
) const;
492 // return the column displayed at the given position in the control
493 wxDataViewColumn
*GetColumnAt(unsigned int pos
) const;
496 wxDataViewColumnList m_cols
;
497 wxDataViewModelNotifier
*m_notifier
;
498 wxDataViewMainWindow
*m_clientArea
;
499 wxDataViewHeaderWindow
*m_headerArea
;
501 // the index of the column currently used for sorting or -1
502 int m_sortingColumnIdx
;
505 void OnSize( wxSizeEvent
&event
);
506 virtual wxSize
GetSizeAvailableForScrollTarget(const wxSize
& size
);
508 // we need to return a special WM_GETDLGCODE value to process just the
509 // arrows but let the other navigation characters through
511 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
514 WX_FORWARD_TO_SCROLL_HELPER()
517 DECLARE_DYNAMIC_CLASS(wxDataViewCtrl
)
518 DECLARE_NO_COPY_CLASS(wxDataViewCtrl
)
519 DECLARE_EVENT_TABLE()
523 #endif // __GENERICDATAVIEWCTRLH__