]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/dataview.h
First update patch for GTK+ print
[wxWidgets.git] / include / wx / gtk / dataview.h
CommitLineData
239eaa41
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/gtk/dataview.h
3// Purpose: wxDataViewCtrl GTK+2 implementation header
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef __GTKDATAVIEWCTRLH__
11#define __GTKDATAVIEWCTRLH__
12
13#include "wx/defs.h"
14#include "wx/object.h"
15#include "wx/list.h"
16#include "wx/control.h"
17
18// ---------------------------------------------------------
19// classes
20// ---------------------------------------------------------
21
b5dbe15d 22class WXDLLIMPEXP_FWD_CORE wxDataViewCtrl;
55fbde12 23class WXDLLIMPEXP_FWD_CORE wxDataViewCtrlInternal;
239eaa41 24
87f0efe2 25
6842a71a 26// ---------------------------------------------------------
baa9ebc4 27// wxDataViewRenderer
6842a71a
RR
28// ---------------------------------------------------------
29
baa9ebc4 30class wxDataViewRenderer: public wxDataViewRendererBase
6842a71a
RR
31{
32public:
87f0efe2 33 wxDataViewRenderer( const wxString &varianttype,
9861f022
RR
34 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
35 int align = wxDVR_DEFAULT_ALIGNMENT );
6842a71a 36
9861f022
RR
37 virtual void SetMode( wxDataViewCellMode mode );
38 virtual wxDataViewCellMode GetMode() const;
39
40 virtual void SetAlignment( int align );
41 virtual int GetAlignment() const;
6842a71a 42
f71d3ba4
RR
43 // implementation
44 GtkCellRenderer* GetGtkHandle() { return m_renderer; }
45 void GtkInitHandlers();
46
6842a71a 47protected:
ed38aa55 48 GtkCellRenderer *m_renderer;
6842a71a
RR
49
50protected:
baa9ebc4 51 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRenderer)
6842a71a 52};
9861f022 53
6842a71a 54// ---------------------------------------------------------
baa9ebc4 55// wxDataViewTextRenderer
6842a71a
RR
56// ---------------------------------------------------------
57
baa9ebc4 58class wxDataViewTextRenderer: public wxDataViewRenderer
6842a71a
RR
59{
60public:
baa9ebc4 61 wxDataViewTextRenderer( const wxString &varianttype = wxT("string"),
9861f022
RR
62 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
63 int align = wxDVR_DEFAULT_ALIGNMENT );
6842a71a 64
7b4fde82 65 bool SetValue( const wxVariant &value );
9861f022
RR
66 bool GetValue( wxVariant &value ) const;
67
68 void SetAlignment( int align );
69
6842a71a 70protected:
baa9ebc4 71 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRenderer)
6842a71a
RR
72};
73
cbc9145c 74// ---------------------------------------------------------
baa9ebc4 75// wxDataViewBitmapRenderer
cbc9145c
RR
76// ---------------------------------------------------------
77
baa9ebc4 78class wxDataViewBitmapRenderer: public wxDataViewRenderer
cbc9145c
RR
79{
80public:
baa9ebc4 81 wxDataViewBitmapRenderer( const wxString &varianttype = wxT("wxBitmap"),
9861f022
RR
82 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
83 int align = wxDVR_DEFAULT_ALIGNMENT );
cbc9145c
RR
84
85 bool SetValue( const wxVariant &value );
9861f022 86 bool GetValue( wxVariant &value ) const;
cbc9145c
RR
87
88protected:
baa9ebc4 89 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapRenderer)
cbc9145c
RR
90};
91
605c2c4a 92// ---------------------------------------------------------
baa9ebc4 93// wxDataViewToggleRenderer
605c2c4a
RR
94// ---------------------------------------------------------
95
baa9ebc4 96class wxDataViewToggleRenderer: public wxDataViewRenderer
605c2c4a
RR
97{
98public:
baa9ebc4 99 wxDataViewToggleRenderer( const wxString &varianttype = wxT("bool"),
9861f022
RR
100 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
101 int align = wxDVR_DEFAULT_ALIGNMENT );
605c2c4a
RR
102
103 bool SetValue( const wxVariant &value );
9861f022 104 bool GetValue( wxVariant &value ) const;
605c2c4a
RR
105
106protected:
baa9ebc4 107 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewToggleRenderer)
605c2c4a
RR
108};
109
e152afc3 110// ---------------------------------------------------------
baa9ebc4 111// wxDataViewCustomRenderer
e152afc3
RR
112// ---------------------------------------------------------
113
baa9ebc4 114class wxDataViewCustomRenderer: public wxDataViewRenderer
e152afc3
RR
115{
116public:
baa9ebc4
RR
117 wxDataViewCustomRenderer( const wxString &varianttype = wxT("string"),
118 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
9861f022 119 int align = wxDVR_DEFAULT_ALIGNMENT,
baa9ebc4
RR
120 bool no_init = false );
121 virtual ~wxDataViewCustomRenderer();
9861f022
RR
122
123
e152afc3 124 virtual bool Render( wxRect cell, wxDC *dc, int state ) = 0;
9861f022
RR
125 virtual wxSize GetSize() const = 0;
126
4d496ecb 127 virtual bool Activate( wxRect cell,
e0062c04 128 wxDataViewModel *model, const wxDataViewItem &item, unsigned int col )
4d496ecb 129 { return false; }
9861f022 130
4d496ecb 131 virtual bool LeftClick( wxPoint cursor, wxRect cell,
e0062c04 132 wxDataViewModel *model, const wxDataViewItem &item, unsigned int col )
4d496ecb
RR
133 { return false; }
134 virtual bool RightClick( wxPoint cursor, wxRect cell,
e0062c04 135 wxDataViewModel *model, const wxDataViewItem &item, unsigned int col )
4d496ecb
RR
136 { return false; }
137 virtual bool StartDrag( wxPoint cursor, wxRect cell,
e0062c04 138 wxDataViewModel *model, const wxDataViewItem &item, unsigned int col )
4d496ecb 139 { return false; }
e152afc3
RR
140
141 // Create DC on request
142 virtual wxDC *GetDC();
143
9861f022
RR
144
145protected:
146
147 bool Init(wxDataViewCellMode mode, int align);
148
e152afc3
RR
149private:
150 wxDC *m_dc;
151
152protected:
baa9ebc4 153 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCustomRenderer)
e152afc3
RR
154};
155
ad63bf41 156// ---------------------------------------------------------
baa9ebc4 157// wxDataViewProgressRenderer
ad63bf41
RR
158// ---------------------------------------------------------
159
baa9ebc4 160class wxDataViewProgressRenderer: public wxDataViewCustomRenderer
ad63bf41
RR
161{
162public:
baa9ebc4
RR
163 wxDataViewProgressRenderer( const wxString &label = wxEmptyString,
164 const wxString &varianttype = wxT("long"),
9861f022
RR
165 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
166 int align = wxDVR_DEFAULT_ALIGNMENT );
baa9ebc4 167 virtual ~wxDataViewProgressRenderer();
ad63bf41
RR
168
169 bool SetValue( const wxVariant &value );
9861f022 170 bool GetValue( wxVariant &value ) const;
ad63bf41
RR
171
172 virtual bool Render( wxRect cell, wxDC *dc, int state );
9861f022 173 virtual wxSize GetSize() const;
ad63bf41
RR
174
175private:
176 wxString m_label;
177 int m_value;
178
179protected:
baa9ebc4 180 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewProgressRenderer)
ad63bf41
RR
181};
182
c9c13e70
RR
183// ---------------------------------------------------------
184// wxDataViewIconTextRenderer
185// ---------------------------------------------------------
186
187class wxDataViewIconTextRenderer: public wxDataViewCustomRenderer
188{
189public:
190 wxDataViewIconTextRenderer( const wxString &varianttype = wxT("wxDataViewIconText"),
191 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
192 int align = wxDVR_DEFAULT_ALIGNMENT );
193 virtual ~wxDataViewIconTextRenderer();
194
195 bool SetValue( const wxVariant &value );
196 bool GetValue( wxVariant &value ) const;
197
198 virtual bool Render( wxRect cell, wxDC *dc, int state );
199 virtual wxSize GetSize() const;
200
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 );
204
205private:
206 wxDataViewIconText m_value;
207
208protected:
209 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewIconTextRenderer)
210};
211
4d496ecb 212// ---------------------------------------------------------
baa9ebc4 213// wxDataViewDateRenderer
4d496ecb
RR
214// ---------------------------------------------------------
215
baa9ebc4 216class wxDataViewDateRenderer: public wxDataViewCustomRenderer
4d496ecb
RR
217{
218public:
baa9ebc4 219 wxDataViewDateRenderer( const wxString &varianttype = wxT("datetime"),
9861f022
RR
220 wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE,
221 int align = wxDVR_DEFAULT_ALIGNMENT );
4d496ecb
RR
222
223 bool SetValue( const wxVariant &value );
9861f022 224 bool GetValue( wxVariant &value ) const;
4d496ecb
RR
225
226 virtual bool Render( wxRect cell, wxDC *dc, int state );
9861f022 227 virtual wxSize GetSize() const;
4d496ecb 228 virtual bool Activate( wxRect cell,
e0062c04 229 wxDataViewModel *model, const wxDataViewItem &item, unsigned int col );
4d496ecb
RR
230
231private:
232 wxDateTime m_date;
233
234protected:
baa9ebc4 235 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer)
4d496ecb
RR
236};
237
fa28826d
RR
238// ---------------------------------------------------------
239// wxDataViewColumn
240// ---------------------------------------------------------
241
242class WXDLLIMPEXP_CORE wxDataViewColumn: public wxDataViewColumnBase
243{
244public:
87f0efe2
RR
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 );
253
fa28826d
RR
254 virtual ~wxDataViewColumn();
255
9861f022
RR
256
257 // setters:
258
fa28826d 259 virtual void SetTitle( const wxString &title );
07a84e7b 260 virtual void SetBitmap( const wxBitmap &bitmap );
47cef10f 261
b94db696
RR
262 virtual void SetOwner( wxDataViewCtrl *owner );
263
47cef10f 264 virtual void SetAlignment( wxAlignment align );
31fb32e1
RR
265
266 virtual void SetSortable( bool sortable );
47cef10f
RR
267 virtual void SetSortOrder( bool ascending );
268
9861f022
RR
269 virtual void SetResizeable( bool resizeable );
270 virtual void SetHidden( bool hidden );
271
272 virtual void SetMinWidth( int minWidth );
273 virtual void SetWidth( int width );
274
275
276 // getters:
277
278 virtual wxString GetTitle() const;
279 virtual wxAlignment GetAlignment() const;
280
87f0efe2
RR
281 virtual bool IsSortable() const;
282 virtual bool IsSortOrderAscending() const;
9861f022
RR
283 virtual bool IsResizeable() const;
284 virtual bool IsHidden() const;
87f0efe2
RR
285
286 virtual int GetWidth() const;
9861f022
RR
287 virtual int GetMinWidth() const;
288
fa28826d 289 // implementation
9861f022 290 GtkWidget* GetGtkHandle() { return m_column; }
fa28826d
RR
291
292private:
6842a71a 293 // holds the GTK handle
9861f022 294 GtkWidget *m_column;
31fb32e1
RR
295
296 // delayed connection to mouse events
297 friend class wxDataViewCtrl;
298 void OnInternalIdle();
9861f022
RR
299 bool m_isConnected;
300
301 void Init(wxAlignment align, int flags, int width);
302
fa28826d
RR
303protected:
304 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumn)
305};
306
91a6c655
RR
307WX_DECLARE_LIST(wxDataViewColumn, wxDataViewColumnList );
308
239eaa41
RR
309// ---------------------------------------------------------
310// wxDataViewCtrl
311// ---------------------------------------------------------
312
313class WXDLLIMPEXP_CORE wxDataViewCtrl: public wxDataViewCtrlBase
314{
315public:
316 wxDataViewCtrl()
317 {
318 Init();
319 }
320
321 wxDataViewCtrl( wxWindow *parent, wxWindowID id,
322 const wxPoint& pos = wxDefaultPosition,
323 const wxSize& size = wxDefaultSize, long style = 0,
324 const wxValidator& validator = wxDefaultValidator )
325 {
326 Create(parent, id, pos, size, style, validator );
327 }
328
329 virtual ~wxDataViewCtrl();
330
331 void Init();
332
333 bool Create(wxWindow *parent, wxWindowID id,
334 const wxPoint& pos = wxDefaultPosition,
335 const wxSize& size = wxDefaultSize, long style = 0,
336 const wxValidator& validator = wxDefaultValidator );
337
e0062c04 338 virtual bool AssociateModel( wxDataViewModel *model );
91a6c655 339
1a367564 340 virtual bool AppendColumn( wxDataViewColumn *col );
91a6c655
RR
341 virtual unsigned int GetColumnCount() const;
342 virtual wxDataViewColumn* GetColumn( unsigned int pos ) const;
343 virtual bool DeleteColumn( wxDataViewColumn *column );
344 virtual bool ClearColumns();
1e08ad10 345
fbda518c 346 virtual wxDataViewItem GetSelection() const;
e98351ec
RR
347 virtual int GetSelections( wxDataViewItemArray & sel ) const;
348 virtual void SetSelections( const wxDataViewItemArray & sel );
349 virtual void Select( const wxDataViewItem & item );
350 virtual void Unselect( const wxDataViewItem & item );
351 virtual bool IsSelected( const wxDataViewItem & item ) const;
352 virtual void SelectAll();
353 virtual void UnselectAll();
354
fbda518c
RR
355 virtual void EnsureVisible( const wxDataViewItem& item,
356 const wxDataViewColumn *column = NULL );
66e09788 357 virtual void HitTest( const wxPoint &point,
fbda518c 358 wxDataViewItem &item,
a87b466d 359 wxDataViewColumn *&column ) const;
66e09788 360 virtual wxRect GetItemRect( const wxDataViewItem &item,
fbda518c 361 const wxDataViewColumn *column = NULL ) const;
66e09788 362
f71d3ba4
RR
363 virtual void Expand( const wxDataViewItem & item );
364 virtual void Collapse( const wxDataViewItem & item );
66e09788 365
b94db696
RR
366 static wxVisualAttributes
367 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
6ff7eee7 368
1e510b1e 369 wxWindow *GetMainWindow() { return (wxWindow*) this; }
55fbde12
RR
370
371 GtkWidget *GtkGetTreeView() { return m_treeview; }
372 wxDataViewCtrlInternal* GtkGetInternal() { return m_internal; }
3b6280be
RR
373
374protected:
375 virtual void DoSetExpanderColumn();
376 virtual void DoSetIndent();
377
1a367564
RR
378private:
379 friend class wxDataViewCtrlDC;
31fb32e1 380 friend class wxDataViewColumn;
e0062c04
RR
381 friend class wxGtkDataViewModelNotifier;
382 GtkWidget *m_treeview;
383 wxDataViewModelNotifier *m_notifier;
55fbde12 384 wxDataViewCtrlInternal *m_internal;
91a6c655 385 wxDataViewColumnList m_cols;
3b6280be 386
239eaa41 387
31fb32e1
RR
388 virtual void OnInternalIdle();
389
b086d55f
RR
390 void GtkEnableSelectionEvents();
391 void GtkDisableSelectionEvents();
392
239eaa41
RR
393private:
394 DECLARE_DYNAMIC_CLASS(wxDataViewCtrl)
395 DECLARE_NO_COPY_CLASS(wxDataViewCtrl)
396};
397
398
399#endif // __GTKDATAVIEWCTRLH__