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 // these methods are used to draw the cell contents, Render() doesn't care
42 // about the attributes while RenderWithAttr() does -- override it if you
43 // want to take the attributes defined for this cell into account, otherwise
44 // overriding Render() is enough
45 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
) = 0;
47 // NB: RenderWithAttr() also has more standard parameter order and types
49 RenderWithAttr(wxDC
& dc
,
51 int align
, // combination of horizontal and vertical
52 const wxDataViewItemAttr
*attr
, // may be NULL if none
55 virtual wxSize
GetSize() const = 0;
57 virtual void SetAlignment( int align
);
58 virtual int GetAlignment() const;
60 virtual void SetMode( wxDataViewCellMode mode
)
62 virtual wxDataViewCellMode
GetMode() const
65 virtual bool Activate( wxRect
WXUNUSED(cell
),
66 wxDataViewModel
*WXUNUSED(model
),
67 const wxDataViewItem
& WXUNUSED(item
),
68 unsigned int WXUNUSED(col
) )
71 virtual bool LeftClick( wxPoint
WXUNUSED(cursor
),
72 wxRect
WXUNUSED(cell
),
73 wxDataViewModel
*WXUNUSED(model
),
74 const wxDataViewItem
& WXUNUSED(item
),
75 unsigned int WXUNUSED(col
) )
77 virtual bool RightClick( wxPoint
WXUNUSED(cursor
),
78 wxRect
WXUNUSED(cell
),
79 wxDataViewModel
*WXUNUSED(model
),
80 const wxDataViewItem
& WXUNUSED(item
),
81 unsigned int WXUNUSED(col
) )
83 virtual bool StartDrag( wxPoint
WXUNUSED(cursor
),
84 wxRect
WXUNUSED(cell
),
85 wxDataViewModel
*WXUNUSED(model
),
86 const wxDataViewItem
& WXUNUSED(item
),
87 unsigned int WXUNUSED(col
) )
90 // Create DC on request
91 virtual wxDC
*GetDC();
94 int CalculateAlignment() const;
97 // This is just a convenience for the derived classes overriding
98 // RenderWithAttr() to avoid repeating the same wxFAIL_MSG() in all of them
99 bool DummyRender(wxRect
WXUNUSED(cell
),
103 wxFAIL_MSG("shouldn't be called at all, use RenderWithAttr() instead");
111 wxDataViewCellMode m_mode
;
113 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRenderer
)
116 // ---------------------------------------------------------
117 // wxDataViewCustomRenderer
118 // ---------------------------------------------------------
120 class WXDLLIMPEXP_ADV wxDataViewCustomRenderer
: public wxDataViewRenderer
123 wxDataViewCustomRenderer( const wxString
&varianttype
= wxT("string"),
124 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
125 int align
= wxDVR_DEFAULT_ALIGNMENT
);
127 // Draw the text using the provided attributes
128 void RenderText(wxDC
& dc
,
131 const wxString
& text
,
132 const wxDataViewItemAttr
*attr
, // may be NULL if none
136 // Overload using standard attributes
137 void RenderText( const wxString
&text
, int xoffset
, wxRect cell
, wxDC
*dc
, int state
);
140 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCustomRenderer
)
144 // ---------------------------------------------------------
145 // wxDataViewTextRenderer
146 // ---------------------------------------------------------
148 class WXDLLIMPEXP_ADV wxDataViewTextRenderer
: public wxDataViewCustomRenderer
151 wxDataViewTextRenderer( const wxString
&varianttype
= wxT("string"),
152 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
153 int align
= wxDVR_DEFAULT_ALIGNMENT
);
155 bool SetValue( const wxVariant
&value
);
156 bool GetValue( wxVariant
&value
) const;
158 virtual bool RenderWithAttr(wxDC
& dc
,
161 const wxDataViewItemAttr
*attr
,
163 virtual bool Render(wxRect cell
, wxDC
*dc
, int state
)
165 return DummyRender(cell
, dc
, state
);
168 wxSize
GetSize() const;
171 virtual bool HasEditorCtrl() const;
172 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
,
173 const wxVariant
&value
);
174 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
180 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRenderer
)
183 // ---------------------------------------------------------
184 // wxDataViewBitmapRenderer
185 // ---------------------------------------------------------
187 class WXDLLIMPEXP_ADV wxDataViewBitmapRenderer
: public wxDataViewCustomRenderer
190 wxDataViewBitmapRenderer( const wxString
&varianttype
= wxT("wxBitmap"),
191 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
192 int align
= wxDVR_DEFAULT_ALIGNMENT
);
194 bool SetValue( const wxVariant
&value
);
195 bool GetValue( wxVariant
&value
) const;
197 bool Render( wxRect cell
, wxDC
*dc
, int state
);
198 wxSize
GetSize() const;
205 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapRenderer
)
208 // ---------------------------------------------------------
209 // wxDataViewToggleRenderer
210 // ---------------------------------------------------------
212 class WXDLLIMPEXP_ADV wxDataViewToggleRenderer
: public wxDataViewCustomRenderer
215 wxDataViewToggleRenderer( const wxString
&varianttype
= wxT("bool"),
216 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
217 int align
= wxDVR_DEFAULT_ALIGNMENT
);
219 bool SetValue( const wxVariant
&value
);
220 bool GetValue( wxVariant
&value
) const;
222 bool Render( wxRect cell
, wxDC
*dc
, int state
);
223 bool Activate( wxRect cell
, wxDataViewModel
*model
, const wxDataViewItem
& item
,
225 wxSize
GetSize() const;
231 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewToggleRenderer
)
234 // ---------------------------------------------------------
235 // wxDataViewProgressRenderer
236 // ---------------------------------------------------------
238 class WXDLLIMPEXP_ADV wxDataViewProgressRenderer
: public wxDataViewCustomRenderer
241 wxDataViewProgressRenderer( const wxString
&label
= wxEmptyString
,
242 const wxString
&varianttype
= wxT("long"),
243 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
244 int align
= wxDVR_DEFAULT_ALIGNMENT
);
246 bool SetValue( const wxVariant
&value
);
247 bool GetValue( wxVariant
& value
) const;
249 virtual bool RenderWithAttr(wxDC
& dc
,
252 const wxDataViewItemAttr
*attr
,
254 virtual bool Render(wxRect cell
, wxDC
*dc
, int state
)
256 return DummyRender(cell
, dc
, state
);
258 virtual wxSize
GetSize() const;
265 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewProgressRenderer
)
268 // ---------------------------------------------------------
269 // wxDataViewIconTextRenderer
270 // ---------------------------------------------------------
272 class WXDLLIMPEXP_ADV wxDataViewIconTextRenderer
: public wxDataViewCustomRenderer
275 wxDataViewIconTextRenderer( const wxString
&varianttype
= wxT("wxDataViewIconText"),
276 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
277 int align
= wxDVR_DEFAULT_ALIGNMENT
);
279 bool SetValue( const wxVariant
&value
);
280 bool GetValue( wxVariant
&value
) const;
282 virtual bool RenderWithAttr(wxDC
& dc
,
285 const wxDataViewItemAttr
*attr
,
287 virtual bool Render(wxRect cell
, wxDC
*dc
, int state
)
289 return DummyRender(cell
, dc
, state
);
291 virtual wxSize
GetSize() const;
293 virtual bool HasEditorCtrl() const { return true; }
294 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
,
295 const wxVariant
&value
);
296 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
299 wxDataViewIconText m_value
;
302 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewIconTextRenderer
)
305 // ---------------------------------------------------------
306 // wxDataViewDateRenderer
307 // ---------------------------------------------------------
309 class WXDLLIMPEXP_ADV wxDataViewDateRenderer
: public wxDataViewCustomRenderer
312 wxDataViewDateRenderer( const wxString
&varianttype
= wxT("datetime"),
313 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
314 int align
= wxDVR_DEFAULT_ALIGNMENT
);
316 bool SetValue( const wxVariant
&value
);
317 bool GetValue( wxVariant
& value
) const;
319 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
);
320 virtual wxSize
GetSize() const;
321 virtual bool Activate( wxRect cell
,
322 wxDataViewModel
*model
,
323 const wxDataViewItem
& item
,
330 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer
)
333 // ---------------------------------------------------------
335 // ---------------------------------------------------------
337 class WXDLLIMPEXP_ADV wxDataViewColumn
: public wxDataViewColumnBase
340 wxDataViewColumn(const wxString
& title
,
341 wxDataViewRenderer
*renderer
,
342 unsigned int model_column
,
343 int width
= wxDVC_DEFAULT_WIDTH
,
344 wxAlignment align
= wxALIGN_CENTER
,
345 int flags
= wxDATAVIEW_COL_RESIZABLE
)
346 : wxDataViewColumnBase(renderer
, model_column
),
349 Init(width
, align
, flags
);
352 wxDataViewColumn(const wxBitmap
& bitmap
,
353 wxDataViewRenderer
*renderer
,
354 unsigned int model_column
,
355 int width
= wxDVC_DEFAULT_WIDTH
,
356 wxAlignment align
= wxALIGN_CENTER
,
357 int flags
= wxDATAVIEW_COL_RESIZABLE
)
358 : wxDataViewColumnBase(bitmap
, renderer
, model_column
)
360 Init(width
, align
, flags
);
363 // implement wxHeaderColumnBase methods
364 virtual void SetTitle(const wxString
& title
) { m_title
= title
; }
365 virtual wxString
GetTitle() const { return m_title
; }
367 virtual void SetWidth(int width
) { m_width
= width
; }
368 virtual int GetWidth() const { return m_width
; }
370 virtual void SetMinWidth(int minWidth
) { m_minWidth
= minWidth
; }
371 virtual int GetMinWidth() const { return m_minWidth
; }
373 virtual void SetAlignment(wxAlignment align
) { m_align
= align
; }
374 virtual wxAlignment
GetAlignment() const { return m_align
; }
376 virtual void SetFlags(int flags
) { m_flags
= flags
; }
377 virtual int GetFlags() const { return m_flags
; }
379 virtual void SetAsSortKey(bool sort
= true) { m_sort
= sort
; }
380 virtual bool IsSortKey() const { return m_sort
; }
382 virtual void SetSortOrder(bool ascending
) { m_sortAscending
= ascending
; }
383 virtual bool IsSortOrderAscending() const { return m_sortAscending
; }
386 // common part of all ctors
387 void Init(int width
, wxAlignment align
, int flags
)
389 m_width
= width
== wxCOL_WIDTH_DEFAULT
? wxDVC_DEFAULT_WIDTH
: width
;
394 m_sortAscending
= true;
405 friend class wxDataViewHeaderWindowBase
;
406 friend class wxDataViewHeaderWindow
;
407 friend class wxDataViewHeaderWindowMSW
;
410 // ---------------------------------------------------------
412 // ---------------------------------------------------------
414 WX_DECLARE_LIST_WITH_DECL(wxDataViewColumn
, wxDataViewColumnList
,
415 class WXDLLIMPEXP_ADV
);
417 class WXDLLIMPEXP_ADV wxDataViewCtrl
: public wxDataViewCtrlBase
,
418 public wxScrollHelper
420 friend class wxDataViewMainWindow
;
421 friend class wxDataViewHeaderWindowBase
;
422 friend class wxDataViewHeaderWindow
;
423 friend class wxDataViewHeaderWindowMSW
;
424 friend class wxDataViewColumn
;
427 wxDataViewCtrl() : wxScrollHelper(this)
432 wxDataViewCtrl( wxWindow
*parent
, wxWindowID id
,
433 const wxPoint
& pos
= wxDefaultPosition
,
434 const wxSize
& size
= wxDefaultSize
, long style
= 0,
435 const wxValidator
& validator
= wxDefaultValidator
)
436 : wxScrollHelper(this)
438 Create(parent
, id
, pos
, size
, style
, validator
);
441 virtual ~wxDataViewCtrl();
445 bool Create(wxWindow
*parent
, wxWindowID id
,
446 const wxPoint
& pos
= wxDefaultPosition
,
447 const wxSize
& size
= wxDefaultSize
, long style
= 0,
448 const wxValidator
& validator
= wxDefaultValidator
);
450 virtual bool AssociateModel( wxDataViewModel
*model
);
452 virtual bool AppendColumn( wxDataViewColumn
*col
);
453 virtual bool PrependColumn( wxDataViewColumn
*col
);
454 virtual bool InsertColumn( unsigned int pos
, wxDataViewColumn
*col
);
456 virtual void DoSetExpanderColumn();
457 virtual void DoSetIndent();
459 virtual unsigned int GetColumnCount() const;
460 virtual wxDataViewColumn
* GetColumn( unsigned int pos
) const;
461 virtual bool DeleteColumn( wxDataViewColumn
*column
);
462 virtual bool ClearColumns();
463 virtual int GetColumnPosition( const wxDataViewColumn
*column
) const;
465 virtual wxDataViewColumn
*GetSortingColumn() const;
467 virtual wxDataViewItem
GetSelection() const;
468 virtual int GetSelections( wxDataViewItemArray
& sel
) const;
469 virtual void SetSelections( const wxDataViewItemArray
& sel
);
470 virtual void Select( const wxDataViewItem
& item
);
471 virtual void Unselect( const wxDataViewItem
& item
);
472 virtual bool IsSelected( const wxDataViewItem
& item
) const;
474 virtual void SelectAll();
475 virtual void UnselectAll();
477 virtual void EnsureVisible( const wxDataViewItem
& item
,
478 const wxDataViewColumn
*column
= NULL
);
479 virtual void HitTest( const wxPoint
& point
, wxDataViewItem
& item
,
480 wxDataViewColumn
* &column
) const;
481 virtual wxRect
GetItemRect( const wxDataViewItem
& item
,
482 const wxDataViewColumn
*column
= NULL
) const;
484 virtual void Expand( const wxDataViewItem
& item
);
485 virtual void Collapse( const wxDataViewItem
& item
);
486 virtual bool IsExpanded( const wxDataViewItem
& item
) const;
488 virtual void SetFocus();
490 #if wxUSE_DRAG_AND_DROP
491 virtual bool EnableDragSource( const wxDataFormat
&format
);
492 virtual bool EnableDropTarget( const wxDataFormat
&format
);
493 #endif // wxUSE_DRAG_AND_DROP
495 virtual wxBorder
GetDefaultBorder() const;
497 void StartEditor( const wxDataViewItem
& item
, unsigned int column
);
500 virtual int GetSelections( wxArrayInt
& sel
) const;
501 virtual void SetSelections( const wxArrayInt
& sel
);
502 virtual void Select( int row
);
503 virtual void Unselect( int row
);
504 virtual bool IsSelected( int row
) const;
505 virtual void SelectRange( int from
, int to
);
506 virtual void UnselectRange( int from
, int to
);
508 virtual void EnsureVisible( int row
, int column
);
510 virtual wxDataViewItem
GetItemByRow( unsigned int row
) const;
511 virtual int GetRowByItem( const wxDataViewItem
& item
) const;
513 int GetSortingColumnIndex() const { return m_sortingColumnIdx
; }
514 void SetSortingColumnIndex(int idx
) { m_sortingColumnIdx
= idx
; }
516 public: // utility functions not part of the API
518 // returns the "best" width for the idx-th column
519 unsigned int GetBestColumnWidth(int WXUNUSED(idx
)) const
521 return GetClientSize().GetWidth() / GetColumnCount();
524 // called by header window after reorder
525 void ColumnMoved( wxDataViewColumn
* col
, unsigned int new_pos
);
527 // update the display after a change to an individual column
528 void OnColumnChange(unsigned int idx
);
530 // update after a change to the number of columns
531 void OnColumnsCountChanged();
533 wxWindow
*GetMainWindow() { return (wxWindow
*) m_clientArea
; }
535 // return the index of the given column in m_cols
536 int GetColumnIndex(const wxDataViewColumn
*column
) const;
538 // return the column displayed at the given position in the control
539 wxDataViewColumn
*GetColumnAt(unsigned int pos
) const;
542 wxDataViewColumnList m_cols
;
543 wxDataViewModelNotifier
*m_notifier
;
544 wxDataViewMainWindow
*m_clientArea
;
545 wxDataViewHeaderWindow
*m_headerArea
;
547 // the index of the column currently used for sorting or -1
548 int m_sortingColumnIdx
;
551 void OnSize( wxSizeEvent
&event
);
552 virtual wxSize
GetSizeAvailableForScrollTarget(const wxSize
& size
);
554 // we need to return a special WM_GETDLGCODE value to process just the
555 // arrows but let the other navigation characters through
557 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
560 WX_FORWARD_TO_SCROLL_HELPER()
563 DECLARE_DYNAMIC_CLASS(wxDataViewCtrl
)
564 wxDECLARE_NO_COPY_CLASS(wxDataViewCtrl
);
565 DECLARE_EVENT_TABLE()
569 #endif // __GENERICDATAVIEWCTRLH__