]>
Commit | Line | Data |
---|---|---|
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 | ||
22 | class WXDLLIMPEXP_CORE wxDataViewCtrl; | |
23 | ||
6842a71a | 24 | // --------------------------------------------------------- |
baa9ebc4 | 25 | // wxDataViewRenderer |
6842a71a RR |
26 | // --------------------------------------------------------- |
27 | ||
baa9ebc4 | 28 | class wxDataViewRenderer: public wxDataViewRendererBase |
6842a71a RR |
29 | { |
30 | public: | |
baa9ebc4 | 31 | wxDataViewRenderer( const wxString &varianttype, wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT ); |
6842a71a RR |
32 | |
33 | // implementation | |
34 | void* GetGtkHandle() { return m_renderer; } | |
35 | ||
36 | protected: | |
37 | // holds the GTK handle | |
38 | void* m_renderer; | |
39 | ||
40 | protected: | |
baa9ebc4 | 41 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRenderer) |
6842a71a RR |
42 | }; |
43 | ||
44 | // --------------------------------------------------------- | |
baa9ebc4 | 45 | // wxDataViewTextRenderer |
6842a71a RR |
46 | // --------------------------------------------------------- |
47 | ||
baa9ebc4 | 48 | class wxDataViewTextRenderer: public wxDataViewRenderer |
6842a71a RR |
49 | { |
50 | public: | |
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 | 57 | protected: |
baa9ebc4 | 58 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRenderer) |
6842a71a RR |
59 | }; |
60 | ||
cbc9145c | 61 | // --------------------------------------------------------- |
baa9ebc4 | 62 | // wxDataViewBitmapRenderer |
cbc9145c RR |
63 | // --------------------------------------------------------- |
64 | ||
baa9ebc4 | 65 | class wxDataViewBitmapRenderer: public wxDataViewRenderer |
cbc9145c RR |
66 | { |
67 | public: | |
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 | ||
74 | protected: | |
baa9ebc4 | 75 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapRenderer) |
cbc9145c RR |
76 | }; |
77 | ||
605c2c4a | 78 | // --------------------------------------------------------- |
baa9ebc4 | 79 | // wxDataViewToggleRenderer |
605c2c4a RR |
80 | // --------------------------------------------------------- |
81 | ||
baa9ebc4 | 82 | class wxDataViewToggleRenderer: public wxDataViewRenderer |
605c2c4a RR |
83 | { |
84 | public: | |
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 | ||
91 | protected: | |
baa9ebc4 | 92 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewToggleRenderer) |
605c2c4a RR |
93 | }; |
94 | ||
e152afc3 | 95 | // --------------------------------------------------------- |
baa9ebc4 | 96 | // wxDataViewCustomRenderer |
e152afc3 RR |
97 | // --------------------------------------------------------- |
98 | ||
baa9ebc4 | 99 | class wxDataViewCustomRenderer: public wxDataViewRenderer |
e152afc3 RR |
100 | { |
101 | public: | |
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 | ||
128 | private: | |
129 | wxDC *m_dc; | |
130 | ||
131 | protected: | |
baa9ebc4 | 132 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCustomRenderer) |
e152afc3 RR |
133 | }; |
134 | ||
ad63bf41 | 135 | // --------------------------------------------------------- |
baa9ebc4 | 136 | // wxDataViewProgressRenderer |
ad63bf41 RR |
137 | // --------------------------------------------------------- |
138 | ||
baa9ebc4 | 139 | class wxDataViewProgressRenderer: public wxDataViewCustomRenderer |
ad63bf41 RR |
140 | { |
141 | public: | |
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 | ||
152 | private: | |
153 | wxString m_label; | |
154 | int m_value; | |
155 | ||
156 | protected: | |
baa9ebc4 | 157 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewProgressRenderer) |
ad63bf41 RR |
158 | }; |
159 | ||
4d496ecb | 160 | // --------------------------------------------------------- |
baa9ebc4 | 161 | // wxDataViewDateRenderer |
4d496ecb RR |
162 | // --------------------------------------------------------- |
163 | ||
baa9ebc4 | 164 | class wxDataViewDateRenderer: public wxDataViewCustomRenderer |
4d496ecb RR |
165 | { |
166 | public: | |
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 | |
177 | private: | |
178 | wxDateTime m_date; | |
179 | ||
180 | protected: | |
baa9ebc4 | 181 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer) |
4d496ecb RR |
182 | }; |
183 | ||
fa28826d RR |
184 | // --------------------------------------------------------- |
185 | // wxDataViewColumn | |
186 | // --------------------------------------------------------- | |
187 | ||
188 | class WXDLLIMPEXP_CORE wxDataViewColumn: public wxDataViewColumnBase | |
189 | { | |
190 | public: | |
baa9ebc4 | 191 | wxDataViewColumn( const wxString &title, wxDataViewRenderer *renderer, unsigned int model_column, |
008b5a66 | 192 | int width = 80, int flags = wxDATAVIEW_COL_RESIZABLE ); |
fa28826d RR |
193 | virtual ~wxDataViewColumn(); |
194 | ||
195 | virtual void SetTitle( const wxString &title ); | |
196 | ||
533544f2 RR |
197 | virtual int GetWidth(); |
198 | ||
199 | virtual void SetFixedWidth( int width ); | |
200 | virtual int GetFixedWidth(); | |
201 | ||
fa28826d RR |
202 | // implementation |
203 | void* GetGtkHandle() { return m_column; } | |
204 | ||
205 | private: | |
6842a71a | 206 | // holds the GTK handle |
fa28826d RR |
207 | void* m_column; |
208 | ||
209 | protected: | |
210 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumn) | |
211 | }; | |
212 | ||
239eaa41 RR |
213 | // --------------------------------------------------------- |
214 | // wxDataViewCtrl | |
215 | // --------------------------------------------------------- | |
216 | ||
217 | class WXDLLIMPEXP_CORE wxDataViewCtrl: public wxDataViewCtrlBase | |
218 | { | |
219 | public: | |
220 | wxDataViewCtrl() | |
221 | { | |
222 | Init(); | |
223 | } | |
224 | ||
225 | wxDataViewCtrl( wxWindow *parent, wxWindowID id, | |
226 | const wxPoint& pos = wxDefaultPosition, | |
227 | const wxSize& size = wxDefaultSize, long style = 0, | |
228 | const wxValidator& validator = wxDefaultValidator ) | |
229 | { | |
230 | Create(parent, id, pos, size, style, validator ); | |
231 | } | |
232 | ||
233 | virtual ~wxDataViewCtrl(); | |
234 | ||
235 | void Init(); | |
236 | ||
237 | bool Create(wxWindow *parent, wxWindowID id, | |
238 | const wxPoint& pos = wxDefaultPosition, | |
239 | const wxSize& size = wxDefaultSize, long style = 0, | |
240 | const wxValidator& validator = wxDefaultValidator ); | |
241 | ||
6e2e590f | 242 | virtual bool AssociateModel( wxDataViewListModel *model ); |
1a367564 RR |
243 | virtual bool AppendColumn( wxDataViewColumn *col ); |
244 | ||
6ff7eee7 RR |
245 | virtual void SetSelection( int row ); // -1 for unselect |
246 | virtual void SetSelectionRange( unsigned int from, unsigned int to ); | |
247 | virtual void SetSelections( const wxArrayInt& aSelections); | |
248 | ||
249 | virtual bool IsSelected( unsigned int row ) const; | |
250 | virtual int GetSelection() const; | |
251 | virtual int GetSelections(wxArrayInt& aSelections) const; | |
252 | ||
253 | ||
1a367564 RR |
254 | private: |
255 | friend class wxDataViewCtrlDC; | |
5d605a69 | 256 | friend class wxGtkDataViewListModelNotifier; |
8f850e28 RR |
257 | GtkWidget *m_treeview; |
258 | wxDataViewListModelNotifier *m_notifier; | |
239eaa41 RR |
259 | |
260 | private: | |
261 | DECLARE_DYNAMIC_CLASS(wxDataViewCtrl) | |
262 | DECLARE_NO_COPY_CLASS(wxDataViewCtrl) | |
263 | }; | |
264 | ||
265 | ||
266 | #endif // __GTKDATAVIEWCTRLH__ |