]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/dataview.h
Compile fixes
[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
22class WXDLLIMPEXP_CORE wxDataViewCtrl;
23
6842a71a 24// ---------------------------------------------------------
baa9ebc4 25// wxDataViewRenderer
6842a71a
RR
26// ---------------------------------------------------------
27
baa9ebc4 28class wxDataViewRenderer: public wxDataViewRendererBase
6842a71a
RR
29{
30public:
baa9ebc4 31 wxDataViewRenderer( const wxString &varianttype, wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT );
6842a71a
RR
32
33 // implementation
34 void* GetGtkHandle() { return m_renderer; }
35
36protected:
37 // holds the GTK handle
38 void* m_renderer;
39
40protected:
baa9ebc4 41 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRenderer)
6842a71a
RR
42};
43
44// ---------------------------------------------------------
baa9ebc4 45// wxDataViewTextRenderer
6842a71a
RR
46// ---------------------------------------------------------
47
baa9ebc4 48class wxDataViewTextRenderer: public wxDataViewRenderer
6842a71a
RR
49{
50public:
baa9ebc4 51 wxDataViewTextRenderer( const wxString &varianttype = wxT("string"),
6842a71a
RR
52 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT );
53
7b4fde82 54 bool SetValue( const wxVariant &value );
a7f61f76 55 bool GetValue( wxVariant &value );
7b4fde82 56
6842a71a 57protected:
baa9ebc4 58 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRenderer)
6842a71a
RR
59};
60
cbc9145c 61// ---------------------------------------------------------
baa9ebc4 62// wxDataViewBitmapRenderer
cbc9145c
RR
63// ---------------------------------------------------------
64
baa9ebc4 65class wxDataViewBitmapRenderer: public wxDataViewRenderer
cbc9145c
RR
66{
67public:
baa9ebc4
RR
68 wxDataViewBitmapRenderer( const wxString &varianttype = wxT("wxBitmap"),
69 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT );
cbc9145c
RR
70
71 bool SetValue( const wxVariant &value );
72 bool GetValue( wxVariant &value );
73
74protected:
baa9ebc4 75 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapRenderer)
cbc9145c
RR
76};
77
605c2c4a 78// ---------------------------------------------------------
baa9ebc4 79// wxDataViewToggleRenderer
605c2c4a
RR
80// ---------------------------------------------------------
81
baa9ebc4 82class wxDataViewToggleRenderer: public wxDataViewRenderer
605c2c4a
RR
83{
84public:
baa9ebc4 85 wxDataViewToggleRenderer( const wxString &varianttype = wxT("bool"),
605c2c4a
RR
86 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT );
87
88 bool SetValue( const wxVariant &value );
89 bool GetValue( wxVariant &value );
90
91protected:
baa9ebc4 92 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewToggleRenderer)
605c2c4a
RR
93};
94
e152afc3 95// ---------------------------------------------------------
baa9ebc4 96// wxDataViewCustomRenderer
e152afc3
RR
97// ---------------------------------------------------------
98
baa9ebc4 99class wxDataViewCustomRenderer: public wxDataViewRenderer
e152afc3
RR
100{
101public:
baa9ebc4
RR
102 wxDataViewCustomRenderer( const wxString &varianttype = wxT("string"),
103 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
104 bool no_init = false );
105 virtual ~wxDataViewCustomRenderer();
ad63bf41 106 bool Init();
e152afc3
RR
107
108 virtual bool Render( wxRect cell, wxDC *dc, int state ) = 0;
109 virtual wxSize GetSize() = 0;
4d496ecb
RR
110
111 virtual bool Activate( wxRect cell,
0a71f9e9 112 wxDataViewListModel *model, unsigned int col, unsigned int row )
4d496ecb
RR
113 { return false; }
114
115 virtual bool LeftClick( wxPoint cursor, wxRect cell,
0a71f9e9 116 wxDataViewListModel *model, unsigned int col, unsigned int row )
4d496ecb
RR
117 { return false; }
118 virtual bool RightClick( wxPoint cursor, wxRect cell,
0a71f9e9 119 wxDataViewListModel *model, unsigned int col, unsigned int row )
4d496ecb
RR
120 { return false; }
121 virtual bool StartDrag( wxPoint cursor, wxRect cell,
0a71f9e9 122 wxDataViewListModel *model, unsigned int col, unsigned int row )
4d496ecb 123 { return false; }
e152afc3
RR
124
125 // Create DC on request
126 virtual wxDC *GetDC();
127
128private:
129 wxDC *m_dc;
130
131protected:
baa9ebc4 132 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCustomRenderer)
e152afc3
RR
133};
134
ad63bf41 135// ---------------------------------------------------------
baa9ebc4 136// wxDataViewProgressRenderer
ad63bf41
RR
137// ---------------------------------------------------------
138
baa9ebc4 139class wxDataViewProgressRenderer: public wxDataViewCustomRenderer
ad63bf41
RR
140{
141public:
baa9ebc4
RR
142 wxDataViewProgressRenderer( const wxString &label = wxEmptyString,
143 const wxString &varianttype = wxT("long"),
144 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT );
145 virtual ~wxDataViewProgressRenderer();
ad63bf41
RR
146
147 bool SetValue( const wxVariant &value );
148
149 virtual bool Render( wxRect cell, wxDC *dc, int state );
150 virtual wxSize GetSize();
151
152private:
153 wxString m_label;
154 int m_value;
155
156protected:
baa9ebc4 157 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewProgressRenderer)
ad63bf41
RR
158};
159
4d496ecb 160// ---------------------------------------------------------
baa9ebc4 161// wxDataViewDateRenderer
4d496ecb
RR
162// ---------------------------------------------------------
163
baa9ebc4 164class wxDataViewDateRenderer: public wxDataViewCustomRenderer
4d496ecb
RR
165{
166public:
baa9ebc4 167 wxDataViewDateRenderer( const wxString &varianttype = wxT("datetime"),
4d496ecb
RR
168 wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE );
169
170 bool SetValue( const wxVariant &value );
171
172 virtual bool Render( wxRect cell, wxDC *dc, int state );
173 virtual wxSize GetSize();
174 virtual bool Activate( wxRect cell,
0a71f9e9 175 wxDataViewListModel *model, unsigned int col, unsigned int row );
4d496ecb
RR
176
177private:
178 wxDateTime m_date;
179
180protected:
baa9ebc4 181 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer)
4d496ecb
RR
182};
183
fa28826d
RR
184// ---------------------------------------------------------
185// wxDataViewColumn
186// ---------------------------------------------------------
187
188class WXDLLIMPEXP_CORE wxDataViewColumn: public wxDataViewColumnBase
189{
190public:
baa9ebc4 191 wxDataViewColumn( const wxString &title, wxDataViewRenderer *renderer, unsigned int model_column,
008b5a66 192 int width = 80, int flags = wxDATAVIEW_COL_RESIZABLE );
07a84e7b
RR
193 wxDataViewColumn( const wxBitmap &bitmap, wxDataViewRenderer *renderer, unsigned int model_column,
194 int width = 80, int flags = wxDATAVIEW_COL_RESIZABLE );
fa28826d
RR
195 virtual ~wxDataViewColumn();
196
197 virtual void SetTitle( const wxString &title );
07a84e7b 198 virtual void SetBitmap( const wxBitmap &bitmap );
47cef10f
RR
199
200 virtual void SetAlignment( wxAlignment align );
31fb32e1
RR
201
202 virtual void SetSortable( bool sortable );
203 virtual bool GetSortable();
47cef10f 204 virtual void SetSortOrder( bool ascending );
31fb32e1 205 virtual bool IsSortOrderAscending();
47cef10f 206
533544f2
RR
207 virtual int GetWidth();
208
209 virtual void SetFixedWidth( int width );
210 virtual int GetFixedWidth();
211
fa28826d
RR
212 // implementation
213 void* GetGtkHandle() { return m_column; }
214
215private:
6842a71a 216 // holds the GTK handle
fa28826d 217 void* m_column;
31fb32e1
RR
218
219 // delayed connection to mouse events
220 friend class wxDataViewCtrl;
221 void OnInternalIdle();
222 bool m_isConnected;
223
fa28826d
RR
224protected:
225 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumn)
226};
227
239eaa41
RR
228// ---------------------------------------------------------
229// wxDataViewCtrl
230// ---------------------------------------------------------
231
232class WXDLLIMPEXP_CORE wxDataViewCtrl: public wxDataViewCtrlBase
233{
234public:
235 wxDataViewCtrl()
236 {
237 Init();
238 }
239
240 wxDataViewCtrl( wxWindow *parent, wxWindowID id,
241 const wxPoint& pos = wxDefaultPosition,
242 const wxSize& size = wxDefaultSize, long style = 0,
243 const wxValidator& validator = wxDefaultValidator )
244 {
245 Create(parent, id, pos, size, style, validator );
246 }
247
248 virtual ~wxDataViewCtrl();
249
250 void Init();
251
252 bool Create(wxWindow *parent, wxWindowID id,
253 const wxPoint& pos = wxDefaultPosition,
254 const wxSize& size = wxDefaultSize, long style = 0,
255 const wxValidator& validator = wxDefaultValidator );
256
6e2e590f 257 virtual bool AssociateModel( wxDataViewListModel *model );
1a367564
RR
258 virtual bool AppendColumn( wxDataViewColumn *col );
259
6ff7eee7
RR
260 virtual void SetSelection( int row ); // -1 for unselect
261 virtual void SetSelectionRange( unsigned int from, unsigned int to );
262 virtual void SetSelections( const wxArrayInt& aSelections);
fc211fe5 263 virtual void Unselect( unsigned int row );
6ff7eee7
RR
264
265 virtual bool IsSelected( unsigned int row ) const;
266 virtual int GetSelection() const;
267 virtual int GetSelections(wxArrayInt& aSelections) const;
268
1a367564
RR
269private:
270 friend class wxDataViewCtrlDC;
31fb32e1 271 friend class wxDataViewColumn;
5d605a69 272 friend class wxGtkDataViewListModelNotifier;
8f850e28
RR
273 GtkWidget *m_treeview;
274 wxDataViewListModelNotifier *m_notifier;
239eaa41 275
31fb32e1
RR
276 virtual void OnInternalIdle();
277
239eaa41
RR
278private:
279 DECLARE_DYNAMIC_CLASS(wxDataViewCtrl)
280 DECLARE_NO_COPY_CLASS(wxDataViewCtrl)
281};
282
283
284#endif // __GTKDATAVIEWCTRLH__