1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/dataview.h
3 // Purpose: wxDataViewCtrl GTK+2 implementation header
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef __GTKDATAVIEWCTRLH__
11 #define __GTKDATAVIEWCTRLH__
14 #include "wx/object.h"
16 #include "wx/control.h"
18 // ---------------------------------------------------------
20 // ---------------------------------------------------------
22 class WXDLLIMPEXP_FWD_ADV wxDataViewCtrl
;
23 class WXDLLIMPEXP_FWD_ADV wxDataViewCtrlInternal
;
26 // ---------------------------------------------------------
28 // ---------------------------------------------------------
30 class WXDLLIMPEXP_ADV wxDataViewRenderer
: public wxDataViewRendererBase
33 wxDataViewRenderer( const wxString
&varianttype
,
34 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
35 int align
= wxDVR_DEFAULT_ALIGNMENT
);
37 virtual void SetMode( wxDataViewCellMode mode
);
38 virtual wxDataViewCellMode
GetMode() const;
40 virtual void SetAlignment( int align
);
41 virtual int GetAlignment() const;
44 GtkCellRenderer
* GetGtkHandle() { return m_renderer
; }
45 void GtkInitHandlers();
48 GtkCellRenderer
*m_renderer
;
51 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRenderer
)
54 // ---------------------------------------------------------
55 // wxDataViewTextRenderer
56 // ---------------------------------------------------------
58 class WXDLLIMPEXP_ADV wxDataViewTextRenderer
: public wxDataViewRenderer
61 wxDataViewTextRenderer( const wxString
&varianttype
= wxT("string"),
62 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
63 int align
= wxDVR_DEFAULT_ALIGNMENT
);
65 bool SetValue( const wxVariant
&value
);
66 bool GetValue( wxVariant
&value
) const;
68 void SetAlignment( int align
);
71 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRenderer
)
74 // ---------------------------------------------------------
75 // wxDataViewBitmapRenderer
76 // ---------------------------------------------------------
78 class WXDLLIMPEXP_ADV wxDataViewBitmapRenderer
: public wxDataViewRenderer
81 wxDataViewBitmapRenderer( const wxString
&varianttype
= wxT("wxBitmap"),
82 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
83 int align
= wxDVR_DEFAULT_ALIGNMENT
);
85 bool SetValue( const wxVariant
&value
);
86 bool GetValue( wxVariant
&value
) const;
89 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapRenderer
)
92 // ---------------------------------------------------------
93 // wxDataViewToggleRenderer
94 // ---------------------------------------------------------
96 class WXDLLIMPEXP_ADV wxDataViewToggleRenderer
: public wxDataViewRenderer
99 wxDataViewToggleRenderer( const wxString
&varianttype
= wxT("bool"),
100 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
101 int align
= wxDVR_DEFAULT_ALIGNMENT
);
103 bool SetValue( const wxVariant
&value
);
104 bool GetValue( wxVariant
&value
) const;
107 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewToggleRenderer
)
110 // ---------------------------------------------------------
111 // wxDataViewCustomRenderer
112 // ---------------------------------------------------------
114 class WXDLLIMPEXP_ADV wxDataViewCustomRenderer
: public wxDataViewRenderer
117 wxDataViewCustomRenderer( const wxString
&varianttype
= wxT("string"),
118 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
119 int align
= wxDVR_DEFAULT_ALIGNMENT
,
120 bool no_init
= false );
121 virtual ~wxDataViewCustomRenderer();
124 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
) = 0;
125 virtual wxSize
GetSize() const = 0;
127 virtual bool Activate( wxRect cell
,
128 wxDataViewModel
*model
, const wxDataViewItem
&item
, unsigned int col
)
131 virtual bool LeftClick( wxPoint cursor
, wxRect cell
,
132 wxDataViewModel
*model
, const wxDataViewItem
&item
, unsigned int col
)
134 virtual bool RightClick( wxPoint cursor
, wxRect cell
,
135 wxDataViewModel
*model
, const wxDataViewItem
&item
, unsigned int col
)
137 virtual bool StartDrag( wxPoint cursor
, wxRect cell
,
138 wxDataViewModel
*model
, const wxDataViewItem
&item
, unsigned int col
)
141 // Create DC on request
142 virtual wxDC
*GetDC();
147 bool Init(wxDataViewCellMode mode
, int align
);
153 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCustomRenderer
)
156 // ---------------------------------------------------------
157 // wxDataViewProgressRenderer
158 // ---------------------------------------------------------
160 class WXDLLIMPEXP_ADV wxDataViewProgressRenderer
: public wxDataViewCustomRenderer
163 wxDataViewProgressRenderer( const wxString
&label
= wxEmptyString
,
164 const wxString
&varianttype
= wxT("long"),
165 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
166 int align
= wxDVR_DEFAULT_ALIGNMENT
);
167 virtual ~wxDataViewProgressRenderer();
169 bool SetValue( const wxVariant
&value
);
170 bool GetValue( wxVariant
&value
) const;
172 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
);
173 virtual wxSize
GetSize() const;
180 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewProgressRenderer
)
183 // ---------------------------------------------------------
184 // wxDataViewIconTextRenderer
185 // ---------------------------------------------------------
187 class WXDLLIMPEXP_ADV wxDataViewIconTextRenderer
: public wxDataViewCustomRenderer
190 wxDataViewIconTextRenderer( const wxString
&varianttype
= wxT("wxDataViewIconText"),
191 wxDataViewCellMode mode
= wxDATAVIEW_CELL_INERT
,
192 int align
= wxDVR_DEFAULT_ALIGNMENT
);
193 virtual ~wxDataViewIconTextRenderer();
195 bool SetValue( const wxVariant
&value
);
196 bool GetValue( wxVariant
&value
) const;
198 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
);
199 virtual wxSize
GetSize() const;
201 virtual bool HasEditorCtrl() { return true; }
202 virtual wxControl
* CreateEditorCtrl( wxWindow
*parent
, wxRect labelRect
, const wxVariant
&value
);
203 virtual bool GetValueFromEditorCtrl( wxControl
* editor
, wxVariant
&value
);
206 wxDataViewIconText m_value
;
209 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewIconTextRenderer
)
212 // ---------------------------------------------------------
213 // wxDataViewDateRenderer
214 // ---------------------------------------------------------
216 class WXDLLIMPEXP_ADV wxDataViewDateRenderer
: public wxDataViewCustomRenderer
219 wxDataViewDateRenderer( const wxString
&varianttype
= wxT("datetime"),
220 wxDataViewCellMode mode
= wxDATAVIEW_CELL_ACTIVATABLE
,
221 int align
= wxDVR_DEFAULT_ALIGNMENT
);
223 bool SetValue( const wxVariant
&value
);
224 bool GetValue( wxVariant
&value
) const;
226 virtual bool Render( wxRect cell
, wxDC
*dc
, int state
);
227 virtual wxSize
GetSize() const;
228 virtual bool Activate( wxRect cell
,
229 wxDataViewModel
*model
, const wxDataViewItem
&item
, unsigned int col
);
235 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer
)
238 // ---------------------------------------------------------
240 // ---------------------------------------------------------
242 class WXDLLIMPEXP_ADV wxDataViewColumn
: public wxDataViewColumnBase
245 wxDataViewColumn( const wxString
&title
, wxDataViewRenderer
*renderer
,
246 unsigned int model_column
, int width
= wxDVC_DEFAULT_WIDTH
,
247 wxAlignment align
= wxALIGN_CENTER
,
248 int flags
= wxDATAVIEW_COL_RESIZABLE
);
249 wxDataViewColumn( const wxBitmap
&bitmap
, wxDataViewRenderer
*renderer
,
250 unsigned int model_column
, int width
= wxDVC_DEFAULT_WIDTH
,
251 wxAlignment align
= wxALIGN_CENTER
,
252 int flags
= wxDATAVIEW_COL_RESIZABLE
);
254 virtual ~wxDataViewColumn();
259 virtual void SetTitle( const wxString
&title
);
260 virtual void SetBitmap( const wxBitmap
&bitmap
);
262 virtual void SetOwner( wxDataViewCtrl
*owner
);
264 virtual void SetAlignment( wxAlignment align
);
266 virtual void SetSortable( bool sortable
);
267 virtual void SetSortOrder( bool ascending
);
269 virtual void SetResizeable( bool resizeable
);
270 virtual void SetHidden( bool hidden
);
272 virtual void SetMinWidth( int minWidth
);
273 virtual void SetWidth( int width
);
278 virtual wxString
GetTitle() const;
279 virtual wxAlignment
GetAlignment() const;
281 virtual bool IsSortable() const;
282 virtual bool IsSortOrderAscending() const;
283 virtual bool IsResizeable() const;
284 virtual bool IsHidden() const;
286 virtual int GetWidth() const;
287 virtual int GetMinWidth() const;
290 GtkWidget
* GetGtkHandle() { return m_column
; }
291 GtkWidget
* GetConstGtkHandle() const { return m_column
; }
294 // holds the GTK handle
297 // delayed connection to mouse events
298 friend class wxDataViewCtrl
;
299 void OnInternalIdle();
302 void Init(wxAlignment align
, int flags
, int width
);
305 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumn
)
308 WX_DECLARE_LIST_WITH_DECL(wxDataViewColumn
, wxDataViewColumnList
,
309 class WXDLLIMPEXP_ADV
);
311 // ---------------------------------------------------------
313 // ---------------------------------------------------------
315 class WXDLLIMPEXP_ADV wxDataViewCtrl
: public wxDataViewCtrlBase
323 wxDataViewCtrl( wxWindow
*parent
, wxWindowID id
,
324 const wxPoint
& pos
= wxDefaultPosition
,
325 const wxSize
& size
= wxDefaultSize
, long style
= 0,
326 const wxValidator
& validator
= wxDefaultValidator
)
328 Create(parent
, id
, pos
, size
, style
, validator
);
331 virtual ~wxDataViewCtrl();
335 bool Create(wxWindow
*parent
, wxWindowID id
,
336 const wxPoint
& pos
= wxDefaultPosition
,
337 const wxSize
& size
= wxDefaultSize
, long style
= 0,
338 const wxValidator
& validator
= wxDefaultValidator
);
340 virtual bool AssociateModel( wxDataViewModel
*model
);
342 virtual bool PrependColumn( wxDataViewColumn
*col
);
343 virtual bool AppendColumn( wxDataViewColumn
*col
);
344 virtual unsigned int GetColumnCount() const;
345 virtual wxDataViewColumn
* GetColumn( unsigned int pos
) const;
346 virtual bool DeleteColumn( wxDataViewColumn
*column
);
347 virtual bool ClearColumns();
348 virtual int GetColumnPosition( const wxDataViewColumn
*column
) const;
350 virtual wxDataViewColumn
*GetSortingColumn() const;
352 virtual wxDataViewItem
GetSelection() const;
353 virtual int GetSelections( wxDataViewItemArray
& sel
) const;
354 virtual void SetSelections( const wxDataViewItemArray
& sel
);
355 virtual void Select( const wxDataViewItem
& item
);
356 virtual void Unselect( const wxDataViewItem
& item
);
357 virtual bool IsSelected( const wxDataViewItem
& item
) const;
358 virtual void SelectAll();
359 virtual void UnselectAll();
361 virtual void EnsureVisible( const wxDataViewItem
& item
,
362 const wxDataViewColumn
*column
= NULL
);
363 virtual void HitTest( const wxPoint
&point
,
364 wxDataViewItem
&item
,
365 wxDataViewColumn
*&column
) const;
366 virtual wxRect
GetItemRect( const wxDataViewItem
&item
,
367 const wxDataViewColumn
*column
= NULL
) const;
369 virtual void Expand( const wxDataViewItem
& item
);
370 virtual void Collapse( const wxDataViewItem
& item
);
372 static wxVisualAttributes
373 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
375 wxWindow
*GetMainWindow() { return (wxWindow
*) this; }
377 GtkWidget
*GtkGetTreeView() { return m_treeview
; }
378 wxDataViewCtrlInternal
* GtkGetInternal() { return m_internal
; }
381 virtual void DoSetExpanderColumn();
382 virtual void DoSetIndent();
385 friend class wxDataViewCtrlDC
;
386 friend class wxDataViewColumn
;
387 friend class wxGtkDataViewModelNotifier
;
388 GtkWidget
*m_treeview
;
389 wxDataViewModelNotifier
*m_notifier
;
390 wxDataViewCtrlInternal
*m_internal
;
391 wxDataViewColumnList m_cols
;
394 virtual void OnInternalIdle();
396 void GtkEnableSelectionEvents();
397 void GtkDisableSelectionEvents();
400 DECLARE_DYNAMIC_CLASS(wxDataViewCtrl
)
401 DECLARE_NO_COPY_CLASS(wxDataViewCtrl
)
405 #endif // __GTKDATAVIEWCTRLH__