]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/dataview.h
fixed wxHTML parsing to run in O(n) even in UTF8 build
[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
4d496ecb 183// ---------------------------------------------------------
baa9ebc4 184// wxDataViewDateRenderer
4d496ecb
RR
185// ---------------------------------------------------------
186
baa9ebc4 187class wxDataViewDateRenderer: public wxDataViewCustomRenderer
4d496ecb
RR
188{
189public:
baa9ebc4 190 wxDataViewDateRenderer( const wxString &varianttype = wxT("datetime"),
9861f022
RR
191 wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE,
192 int align = wxDVR_DEFAULT_ALIGNMENT );
4d496ecb
RR
193
194 bool SetValue( const wxVariant &value );
9861f022 195 bool GetValue( wxVariant &value ) const;
4d496ecb
RR
196
197 virtual bool Render( wxRect cell, wxDC *dc, int state );
9861f022 198 virtual wxSize GetSize() const;
4d496ecb 199 virtual bool Activate( wxRect cell,
e0062c04 200 wxDataViewModel *model, const wxDataViewItem &item, unsigned int col );
4d496ecb
RR
201
202private:
203 wxDateTime m_date;
204
205protected:
baa9ebc4 206 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer)
4d496ecb
RR
207};
208
fa28826d
RR
209// ---------------------------------------------------------
210// wxDataViewColumn
211// ---------------------------------------------------------
212
213class WXDLLIMPEXP_CORE wxDataViewColumn: public wxDataViewColumnBase
214{
215public:
87f0efe2
RR
216 wxDataViewColumn( const wxString &title, wxDataViewRenderer *renderer,
217 unsigned int model_column, int width = wxDVC_DEFAULT_WIDTH,
218 wxAlignment align = wxALIGN_CENTER,
219 int flags = wxDATAVIEW_COL_RESIZABLE );
220 wxDataViewColumn( const wxBitmap &bitmap, wxDataViewRenderer *renderer,
221 unsigned int model_column, int width = wxDVC_DEFAULT_WIDTH,
222 wxAlignment align = wxALIGN_CENTER,
223 int flags = wxDATAVIEW_COL_RESIZABLE );
224
fa28826d
RR
225 virtual ~wxDataViewColumn();
226
9861f022
RR
227
228 // setters:
229
fa28826d 230 virtual void SetTitle( const wxString &title );
07a84e7b 231 virtual void SetBitmap( const wxBitmap &bitmap );
47cef10f 232
b94db696
RR
233 virtual void SetOwner( wxDataViewCtrl *owner );
234
47cef10f 235 virtual void SetAlignment( wxAlignment align );
31fb32e1
RR
236
237 virtual void SetSortable( bool sortable );
47cef10f
RR
238 virtual void SetSortOrder( bool ascending );
239
9861f022
RR
240 virtual void SetResizeable( bool resizeable );
241 virtual void SetHidden( bool hidden );
242
243 virtual void SetMinWidth( int minWidth );
244 virtual void SetWidth( int width );
245
246
247 // getters:
248
249 virtual wxString GetTitle() const;
250 virtual wxAlignment GetAlignment() const;
251
87f0efe2
RR
252 virtual bool IsSortable() const;
253 virtual bool IsSortOrderAscending() const;
9861f022
RR
254 virtual bool IsResizeable() const;
255 virtual bool IsHidden() const;
87f0efe2
RR
256
257 virtual int GetWidth() const;
9861f022
RR
258 virtual int GetMinWidth() const;
259
fa28826d 260 // implementation
9861f022 261 GtkWidget* GetGtkHandle() { return m_column; }
fa28826d
RR
262
263private:
6842a71a 264 // holds the GTK handle
9861f022 265 GtkWidget *m_column;
31fb32e1
RR
266
267 // delayed connection to mouse events
268 friend class wxDataViewCtrl;
269 void OnInternalIdle();
9861f022
RR
270 bool m_isConnected;
271
272 void Init(wxAlignment align, int flags, int width);
273
fa28826d
RR
274protected:
275 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumn)
276};
277
239eaa41
RR
278// ---------------------------------------------------------
279// wxDataViewCtrl
280// ---------------------------------------------------------
281
282class WXDLLIMPEXP_CORE wxDataViewCtrl: public wxDataViewCtrlBase
283{
284public:
285 wxDataViewCtrl()
286 {
287 Init();
288 }
289
290 wxDataViewCtrl( wxWindow *parent, wxWindowID id,
291 const wxPoint& pos = wxDefaultPosition,
292 const wxSize& size = wxDefaultSize, long style = 0,
293 const wxValidator& validator = wxDefaultValidator )
294 {
295 Create(parent, id, pos, size, style, validator );
296 }
297
298 virtual ~wxDataViewCtrl();
299
300 void Init();
301
302 bool Create(wxWindow *parent, wxWindowID id,
303 const wxPoint& pos = wxDefaultPosition,
304 const wxSize& size = wxDefaultSize, long style = 0,
305 const wxValidator& validator = wxDefaultValidator );
306
e0062c04 307 virtual bool AssociateModel( wxDataViewModel *model );
1a367564 308 virtual bool AppendColumn( wxDataViewColumn *col );
1e08ad10 309
fbda518c 310 virtual wxDataViewItem GetSelection() const;
e98351ec
RR
311 virtual int GetSelections( wxDataViewItemArray & sel ) const;
312 virtual void SetSelections( const wxDataViewItemArray & sel );
313 virtual void Select( const wxDataViewItem & item );
314 virtual void Unselect( const wxDataViewItem & item );
315 virtual bool IsSelected( const wxDataViewItem & item ) const;
316 virtual void SelectAll();
317 virtual void UnselectAll();
318
fbda518c
RR
319 virtual void EnsureVisible( const wxDataViewItem& item,
320 const wxDataViewColumn *column = NULL );
66e09788 321 virtual void HitTest( const wxPoint &point,
fbda518c 322 wxDataViewItem &item,
a87b466d 323 wxDataViewColumn *&column ) const;
66e09788 324 virtual wxRect GetItemRect( const wxDataViewItem &item,
fbda518c 325 const wxDataViewColumn *column = NULL ) const;
66e09788 326
f71d3ba4
RR
327 virtual void Expand( const wxDataViewItem & item );
328 virtual void Collapse( const wxDataViewItem & item );
66e09788 329
b94db696
RR
330 static wxVisualAttributes
331 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
6ff7eee7 332
1e510b1e 333 wxWindow *GetMainWindow() { return (wxWindow*) this; }
55fbde12
RR
334
335 GtkWidget *GtkGetTreeView() { return m_treeview; }
336 wxDataViewCtrlInternal* GtkGetInternal() { return m_internal; }
3b6280be
RR
337
338protected:
339 virtual void DoSetExpanderColumn();
340 virtual void DoSetIndent();
341
1a367564
RR
342private:
343 friend class wxDataViewCtrlDC;
31fb32e1 344 friend class wxDataViewColumn;
e0062c04
RR
345 friend class wxGtkDataViewModelNotifier;
346 GtkWidget *m_treeview;
347 wxDataViewModelNotifier *m_notifier;
55fbde12 348 wxDataViewCtrlInternal *m_internal;
3b6280be 349
239eaa41 350
31fb32e1
RR
351 virtual void OnInternalIdle();
352
b086d55f
RR
353 void GtkEnableSelectionEvents();
354 void GtkDisableSelectionEvents();
355
239eaa41
RR
356private:
357 DECLARE_DYNAMIC_CLASS(wxDataViewCtrl)
358 DECLARE_NO_COPY_CLASS(wxDataViewCtrl)
359};
360
361
362#endif // __GTKDATAVIEWCTRLH__