]>
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 | ||
901a462f PC |
10 | #ifndef _WX_GTKDATAVIEWCTRL_H_ |
11 | #define _WX_GTKDATAVIEWCTRL_H_ | |
239eaa41 | 12 | |
239eaa41 | 13 | #include "wx/list.h" |
239eaa41 RR |
14 | |
15 | // --------------------------------------------------------- | |
16 | // classes | |
17 | // --------------------------------------------------------- | |
18 | ||
d350fbec VS |
19 | class WXDLLIMPEXP_FWD_ADV wxDataViewCtrl; |
20 | class WXDLLIMPEXP_FWD_ADV wxDataViewCtrlInternal; | |
239eaa41 | 21 | |
87f0efe2 | 22 | |
6842a71a | 23 | // --------------------------------------------------------- |
baa9ebc4 | 24 | // wxDataViewRenderer |
6842a71a RR |
25 | // --------------------------------------------------------- |
26 | ||
d350fbec | 27 | class WXDLLIMPEXP_ADV wxDataViewRenderer: public wxDataViewRendererBase |
6842a71a RR |
28 | { |
29 | public: | |
87f0efe2 | 30 | wxDataViewRenderer( const wxString &varianttype, |
9861f022 RR |
31 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, |
32 | int align = wxDVR_DEFAULT_ALIGNMENT ); | |
6842a71a | 33 | |
9861f022 RR |
34 | virtual void SetMode( wxDataViewCellMode mode ); |
35 | virtual wxDataViewCellMode GetMode() const; | |
36 | ||
37 | virtual void SetAlignment( int align ); | |
38 | virtual int GetAlignment() const; | |
6842a71a | 39 | |
f71d3ba4 RR |
40 | // implementation |
41 | GtkCellRenderer* GetGtkHandle() { return m_renderer; } | |
42 | void GtkInitHandlers(); | |
4264606e | 43 | virtual bool GtkHasAttributes() { return false; } |
f2b7492a | 44 | void GtkUpdateAlignment(); |
f71d3ba4 | 45 | |
6842a71a | 46 | protected: |
ed38aa55 | 47 | GtkCellRenderer *m_renderer; |
f2b7492a | 48 | int m_alignment; |
6842a71a RR |
49 | |
50 | protected: | |
baa9ebc4 | 51 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRenderer) |
6842a71a | 52 | }; |
9861f022 | 53 | |
6842a71a | 54 | // --------------------------------------------------------- |
baa9ebc4 | 55 | // wxDataViewTextRenderer |
6842a71a RR |
56 | // --------------------------------------------------------- |
57 | ||
d350fbec | 58 | class WXDLLIMPEXP_ADV wxDataViewTextRenderer: public wxDataViewRenderer |
6842a71a RR |
59 | { |
60 | public: | |
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 | 70 | protected: |
baa9ebc4 | 71 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRenderer) |
6842a71a RR |
72 | }; |
73 | ||
4264606e RR |
74 | // --------------------------------------------------------- |
75 | // wxDataViewTextRendererAttr | |
76 | // --------------------------------------------------------- | |
77 | ||
78 | class WXDLLIMPEXP_ADV wxDataViewTextRendererAttr: public wxDataViewTextRenderer | |
79 | { | |
80 | public: | |
81 | wxDataViewTextRendererAttr( const wxString &varianttype = wxT("string"), | |
82 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, | |
83 | int align = wxDVR_DEFAULT_ALIGNMENT ); | |
84 | ||
85 | // implementation | |
86 | bool GtkHasAttributes() { return true; } | |
87 | ||
88 | protected: | |
89 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRendererAttr) | |
90 | }; | |
91 | ||
cbc9145c | 92 | // --------------------------------------------------------- |
baa9ebc4 | 93 | // wxDataViewBitmapRenderer |
cbc9145c RR |
94 | // --------------------------------------------------------- |
95 | ||
d350fbec | 96 | class WXDLLIMPEXP_ADV wxDataViewBitmapRenderer: public wxDataViewRenderer |
cbc9145c RR |
97 | { |
98 | public: | |
baa9ebc4 | 99 | wxDataViewBitmapRenderer( const wxString &varianttype = wxT("wxBitmap"), |
9861f022 RR |
100 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, |
101 | int align = wxDVR_DEFAULT_ALIGNMENT ); | |
cbc9145c RR |
102 | |
103 | bool SetValue( const wxVariant &value ); | |
9861f022 | 104 | bool GetValue( wxVariant &value ) const; |
cbc9145c RR |
105 | |
106 | protected: | |
baa9ebc4 | 107 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapRenderer) |
cbc9145c RR |
108 | }; |
109 | ||
605c2c4a | 110 | // --------------------------------------------------------- |
baa9ebc4 | 111 | // wxDataViewToggleRenderer |
605c2c4a RR |
112 | // --------------------------------------------------------- |
113 | ||
d350fbec | 114 | class WXDLLIMPEXP_ADV wxDataViewToggleRenderer: public wxDataViewRenderer |
605c2c4a RR |
115 | { |
116 | public: | |
baa9ebc4 | 117 | wxDataViewToggleRenderer( const wxString &varianttype = wxT("bool"), |
9861f022 RR |
118 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, |
119 | int align = wxDVR_DEFAULT_ALIGNMENT ); | |
605c2c4a RR |
120 | |
121 | bool SetValue( const wxVariant &value ); | |
9861f022 | 122 | bool GetValue( wxVariant &value ) const; |
605c2c4a RR |
123 | |
124 | protected: | |
baa9ebc4 | 125 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewToggleRenderer) |
605c2c4a RR |
126 | }; |
127 | ||
e152afc3 | 128 | // --------------------------------------------------------- |
baa9ebc4 | 129 | // wxDataViewCustomRenderer |
e152afc3 RR |
130 | // --------------------------------------------------------- |
131 | ||
d350fbec | 132 | class WXDLLIMPEXP_ADV wxDataViewCustomRenderer: public wxDataViewRenderer |
e152afc3 RR |
133 | { |
134 | public: | |
baa9ebc4 RR |
135 | wxDataViewCustomRenderer( const wxString &varianttype = wxT("string"), |
136 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, | |
9861f022 | 137 | int align = wxDVR_DEFAULT_ALIGNMENT, |
baa9ebc4 RR |
138 | bool no_init = false ); |
139 | virtual ~wxDataViewCustomRenderer(); | |
9861f022 RR |
140 | |
141 | ||
e152afc3 | 142 | virtual bool Render( wxRect cell, wxDC *dc, int state ) = 0; |
52e750fc RR |
143 | |
144 | void RenderText( const wxString &text, int xoffset, wxRect cell, wxDC *dc, int state ); | |
145 | ||
9861f022 RR |
146 | virtual wxSize GetSize() const = 0; |
147 | ||
0e9cfa51 RR |
148 | virtual bool Activate( wxRect WXUNUSED(cell), |
149 | wxDataViewModel *WXUNUSED(model), const wxDataViewItem &WXUNUSED(item), unsigned int WXUNUSED(col) ) | |
4d496ecb | 150 | { return false; } |
9861f022 | 151 | |
0e9cfa51 RR |
152 | virtual bool LeftClick( wxPoint WXUNUSED(cursor), wxRect WXUNUSED(cell), |
153 | wxDataViewModel *WXUNUSED(model), const wxDataViewItem &WXUNUSED(item), unsigned int WXUNUSED(col) ) | |
4d496ecb | 154 | { return false; } |
0e9cfa51 RR |
155 | virtual bool StartDrag( wxPoint WXUNUSED(cursor), wxRect WXUNUSED(cell), |
156 | wxDataViewModel *WXUNUSED(model), const wxDataViewItem &WXUNUSED(item), unsigned int WXUNUSED(col) ) | |
4d496ecb | 157 | { return false; } |
e152afc3 RR |
158 | |
159 | // Create DC on request | |
160 | virtual wxDC *GetDC(); | |
161 | ||
9861f022 RR |
162 | |
163 | protected: | |
164 | ||
165 | bool Init(wxDataViewCellMode mode, int align); | |
166 | ||
e152afc3 RR |
167 | private: |
168 | wxDC *m_dc; | |
f69c03de RR |
169 | |
170 | public: | |
171 | // Internal, temporay for RenderText. | |
172 | GtkCellRenderer *m_text_renderer; | |
173 | GdkWindow *window; | |
174 | GtkWidget *widget; | |
175 | void *background_area; | |
176 | void *cell_area; | |
177 | void *expose_area; | |
178 | int flags; | |
179 | ||
e152afc3 | 180 | protected: |
baa9ebc4 | 181 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCustomRenderer) |
e152afc3 RR |
182 | }; |
183 | ||
ad63bf41 | 184 | // --------------------------------------------------------- |
baa9ebc4 | 185 | // wxDataViewProgressRenderer |
ad63bf41 RR |
186 | // --------------------------------------------------------- |
187 | ||
d350fbec | 188 | class WXDLLIMPEXP_ADV wxDataViewProgressRenderer: public wxDataViewCustomRenderer |
ad63bf41 RR |
189 | { |
190 | public: | |
baa9ebc4 RR |
191 | wxDataViewProgressRenderer( const wxString &label = wxEmptyString, |
192 | const wxString &varianttype = wxT("long"), | |
9861f022 RR |
193 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, |
194 | int align = wxDVR_DEFAULT_ALIGNMENT ); | |
baa9ebc4 | 195 | virtual ~wxDataViewProgressRenderer(); |
ad63bf41 RR |
196 | |
197 | bool SetValue( const wxVariant &value ); | |
9861f022 | 198 | bool GetValue( wxVariant &value ) const; |
ad63bf41 RR |
199 | |
200 | virtual bool Render( wxRect cell, wxDC *dc, int state ); | |
9861f022 | 201 | virtual wxSize GetSize() const; |
ad63bf41 RR |
202 | |
203 | private: | |
204 | wxString m_label; | |
205 | int m_value; | |
206 | ||
207 | protected: | |
baa9ebc4 | 208 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewProgressRenderer) |
ad63bf41 RR |
209 | }; |
210 | ||
c9c13e70 RR |
211 | // --------------------------------------------------------- |
212 | // wxDataViewIconTextRenderer | |
213 | // --------------------------------------------------------- | |
214 | ||
d350fbec | 215 | class WXDLLIMPEXP_ADV wxDataViewIconTextRenderer: public wxDataViewCustomRenderer |
c9c13e70 RR |
216 | { |
217 | public: | |
218 | wxDataViewIconTextRenderer( const wxString &varianttype = wxT("wxDataViewIconText"), | |
219 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, | |
220 | int align = wxDVR_DEFAULT_ALIGNMENT ); | |
221 | virtual ~wxDataViewIconTextRenderer(); | |
222 | ||
223 | bool SetValue( const wxVariant &value ); | |
224 | bool GetValue( wxVariant &value ) const; | |
225 | ||
226 | virtual bool Render( wxRect cell, wxDC *dc, int state ); | |
227 | virtual wxSize GetSize() const; | |
228 | ||
229 | virtual bool HasEditorCtrl() { return true; } | |
230 | virtual wxControl* CreateEditorCtrl( wxWindow *parent, wxRect labelRect, const wxVariant &value ); | |
231 | virtual bool GetValueFromEditorCtrl( wxControl* editor, wxVariant &value ); | |
232 | ||
233 | private: | |
234 | wxDataViewIconText m_value; | |
235 | ||
236 | protected: | |
237 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewIconTextRenderer) | |
238 | }; | |
239 | ||
4d496ecb | 240 | // --------------------------------------------------------- |
baa9ebc4 | 241 | // wxDataViewDateRenderer |
4d496ecb RR |
242 | // --------------------------------------------------------- |
243 | ||
d350fbec | 244 | class WXDLLIMPEXP_ADV wxDataViewDateRenderer: public wxDataViewCustomRenderer |
4d496ecb RR |
245 | { |
246 | public: | |
baa9ebc4 | 247 | wxDataViewDateRenderer( const wxString &varianttype = wxT("datetime"), |
9861f022 RR |
248 | wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, |
249 | int align = wxDVR_DEFAULT_ALIGNMENT ); | |
4d496ecb RR |
250 | |
251 | bool SetValue( const wxVariant &value ); | |
9861f022 | 252 | bool GetValue( wxVariant &value ) const; |
4d496ecb RR |
253 | |
254 | virtual bool Render( wxRect cell, wxDC *dc, int state ); | |
9861f022 | 255 | virtual wxSize GetSize() const; |
4d496ecb | 256 | virtual bool Activate( wxRect cell, |
e0062c04 | 257 | wxDataViewModel *model, const wxDataViewItem &item, unsigned int col ); |
4d496ecb RR |
258 | |
259 | private: | |
260 | wxDateTime m_date; | |
261 | ||
262 | protected: | |
baa9ebc4 | 263 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer) |
4d496ecb RR |
264 | }; |
265 | ||
fa28826d RR |
266 | // --------------------------------------------------------- |
267 | // wxDataViewColumn | |
268 | // --------------------------------------------------------- | |
269 | ||
d350fbec | 270 | class WXDLLIMPEXP_ADV wxDataViewColumn: public wxDataViewColumnBase |
fa28826d RR |
271 | { |
272 | public: | |
87f0efe2 RR |
273 | wxDataViewColumn( const wxString &title, wxDataViewRenderer *renderer, |
274 | unsigned int model_column, int width = wxDVC_DEFAULT_WIDTH, | |
275 | wxAlignment align = wxALIGN_CENTER, | |
276 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
277 | wxDataViewColumn( const wxBitmap &bitmap, wxDataViewRenderer *renderer, | |
278 | unsigned int model_column, int width = wxDVC_DEFAULT_WIDTH, | |
279 | wxAlignment align = wxALIGN_CENTER, | |
280 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
281 | ||
fa28826d RR |
282 | virtual ~wxDataViewColumn(); |
283 | ||
9861f022 RR |
284 | |
285 | // setters: | |
286 | ||
fa28826d | 287 | virtual void SetTitle( const wxString &title ); |
07a84e7b | 288 | virtual void SetBitmap( const wxBitmap &bitmap ); |
47cef10f | 289 | |
b94db696 RR |
290 | virtual void SetOwner( wxDataViewCtrl *owner ); |
291 | ||
47cef10f | 292 | virtual void SetAlignment( wxAlignment align ); |
31fb32e1 RR |
293 | |
294 | virtual void SetSortable( bool sortable ); | |
47cef10f RR |
295 | virtual void SetSortOrder( bool ascending ); |
296 | ||
9861f022 RR |
297 | virtual void SetResizeable( bool resizeable ); |
298 | virtual void SetHidden( bool hidden ); | |
299 | ||
300 | virtual void SetMinWidth( int minWidth ); | |
301 | virtual void SetWidth( int width ); | |
302 | ||
99c75ebc | 303 | virtual void SetReorderable( bool reorderable ); |
9861f022 RR |
304 | |
305 | // getters: | |
306 | ||
307 | virtual wxString GetTitle() const; | |
308 | virtual wxAlignment GetAlignment() const; | |
309 | ||
87f0efe2 RR |
310 | virtual bool IsSortable() const; |
311 | virtual bool IsSortOrderAscending() const; | |
9861f022 RR |
312 | virtual bool IsResizeable() const; |
313 | virtual bool IsHidden() const; | |
87f0efe2 RR |
314 | |
315 | virtual int GetWidth() const; | |
9861f022 | 316 | virtual int GetMinWidth() const; |
99c75ebc RR |
317 | |
318 | virtual bool IsReorderable() const; | |
9861f022 | 319 | |
fa28826d | 320 | // implementation |
9861f022 | 321 | GtkWidget* GetGtkHandle() { return m_column; } |
aed836f3 | 322 | GtkWidget* GetConstGtkHandle() const { return m_column; } |
fa28826d RR |
323 | |
324 | private: | |
6842a71a | 325 | // holds the GTK handle |
9861f022 | 326 | GtkWidget *m_column; |
31fb32e1 | 327 | |
419a3607 RR |
328 | // holds GTK handles for title/bitmap in the header |
329 | GtkWidget *m_image; | |
330 | GtkWidget *m_label; | |
331 | ||
31fb32e1 RR |
332 | // delayed connection to mouse events |
333 | friend class wxDataViewCtrl; | |
334 | void OnInternalIdle(); | |
9861f022 RR |
335 | bool m_isConnected; |
336 | ||
337 | void Init(wxAlignment align, int flags, int width); | |
338 | ||
fa28826d RR |
339 | protected: |
340 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumn) | |
341 | }; | |
342 | ||
d350fbec VS |
343 | WX_DECLARE_LIST_WITH_DECL(wxDataViewColumn, wxDataViewColumnList, |
344 | class WXDLLIMPEXP_ADV); | |
91a6c655 | 345 | |
239eaa41 RR |
346 | // --------------------------------------------------------- |
347 | // wxDataViewCtrl | |
348 | // --------------------------------------------------------- | |
349 | ||
d350fbec | 350 | class WXDLLIMPEXP_ADV wxDataViewCtrl: public wxDataViewCtrlBase |
239eaa41 RR |
351 | { |
352 | public: | |
353 | wxDataViewCtrl() | |
354 | { | |
355 | Init(); | |
356 | } | |
357 | ||
358 | wxDataViewCtrl( wxWindow *parent, wxWindowID id, | |
359 | const wxPoint& pos = wxDefaultPosition, | |
360 | const wxSize& size = wxDefaultSize, long style = 0, | |
361 | const wxValidator& validator = wxDefaultValidator ) | |
362 | { | |
363 | Create(parent, id, pos, size, style, validator ); | |
364 | } | |
365 | ||
366 | virtual ~wxDataViewCtrl(); | |
367 | ||
368 | void Init(); | |
369 | ||
370 | bool Create(wxWindow *parent, wxWindowID id, | |
371 | const wxPoint& pos = wxDefaultPosition, | |
372 | const wxSize& size = wxDefaultSize, long style = 0, | |
373 | const wxValidator& validator = wxDefaultValidator ); | |
374 | ||
e0062c04 | 375 | virtual bool AssociateModel( wxDataViewModel *model ); |
91a6c655 | 376 | |
736fe67c | 377 | virtual bool PrependColumn( wxDataViewColumn *col ); |
1a367564 | 378 | virtual bool AppendColumn( wxDataViewColumn *col ); |
19723525 RR |
379 | virtual bool InsertColumn( unsigned int pos, wxDataViewColumn *col ); |
380 | ||
91a6c655 RR |
381 | virtual unsigned int GetColumnCount() const; |
382 | virtual wxDataViewColumn* GetColumn( unsigned int pos ) const; | |
383 | virtual bool DeleteColumn( wxDataViewColumn *column ); | |
384 | virtual bool ClearColumns(); | |
453091c2 | 385 | virtual int GetColumnPosition( const wxDataViewColumn *column ) const; |
1e08ad10 | 386 | |
21f47fb9 RR |
387 | virtual wxDataViewColumn *GetSortingColumn() const; |
388 | ||
fbda518c | 389 | virtual wxDataViewItem GetSelection() const; |
e98351ec RR |
390 | virtual int GetSelections( wxDataViewItemArray & sel ) const; |
391 | virtual void SetSelections( const wxDataViewItemArray & sel ); | |
392 | virtual void Select( const wxDataViewItem & item ); | |
393 | virtual void Unselect( const wxDataViewItem & item ); | |
394 | virtual bool IsSelected( const wxDataViewItem & item ) const; | |
395 | virtual void SelectAll(); | |
396 | virtual void UnselectAll(); | |
397 | ||
fbda518c RR |
398 | virtual void EnsureVisible( const wxDataViewItem& item, |
399 | const wxDataViewColumn *column = NULL ); | |
66e09788 | 400 | virtual void HitTest( const wxPoint &point, |
fbda518c | 401 | wxDataViewItem &item, |
a87b466d | 402 | wxDataViewColumn *&column ) const; |
66e09788 | 403 | virtual wxRect GetItemRect( const wxDataViewItem &item, |
fbda518c | 404 | const wxDataViewColumn *column = NULL ) const; |
66e09788 | 405 | |
f71d3ba4 RR |
406 | virtual void Expand( const wxDataViewItem & item ); |
407 | virtual void Collapse( const wxDataViewItem & item ); | |
66e09788 | 408 | |
b94db696 RR |
409 | static wxVisualAttributes |
410 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
6ff7eee7 | 411 | |
1e510b1e | 412 | wxWindow *GetMainWindow() { return (wxWindow*) this; } |
55fbde12 RR |
413 | |
414 | GtkWidget *GtkGetTreeView() { return m_treeview; } | |
415 | wxDataViewCtrlInternal* GtkGetInternal() { return m_internal; } | |
3b6280be | 416 | |
901a462f PC |
417 | virtual void OnInternalIdle(); |
418 | ||
3b6280be RR |
419 | protected: |
420 | virtual void DoSetExpanderColumn(); | |
421 | virtual void DoSetIndent(); | |
422 | ||
1a367564 | 423 | private: |
888dde65 | 424 | friend class wxDataViewCtrlDCImpl; |
31fb32e1 | 425 | friend class wxDataViewColumn; |
e0062c04 | 426 | friend class wxGtkDataViewModelNotifier; |
33ba5a05 RR |
427 | friend class wxDataViewCtrlInternal; |
428 | ||
e0062c04 RR |
429 | GtkWidget *m_treeview; |
430 | wxDataViewModelNotifier *m_notifier; | |
55fbde12 | 431 | wxDataViewCtrlInternal *m_internal; |
91a6c655 | 432 | wxDataViewColumnList m_cols; |
3b6280be | 433 | |
b086d55f RR |
434 | void GtkEnableSelectionEvents(); |
435 | void GtkDisableSelectionEvents(); | |
436 | ||
239eaa41 RR |
437 | DECLARE_DYNAMIC_CLASS(wxDataViewCtrl) |
438 | DECLARE_NO_COPY_CLASS(wxDataViewCtrl) | |
439 | }; | |
440 | ||
441 | ||
901a462f | 442 | #endif // _WX_GTKDATAVIEWCTRL_H_ |