]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/dvrenderers.h
Fixed typo.
[wxWidgets.git] / include / wx / generic / dvrenderers.h
CommitLineData
6eec70b9
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/generic/dvrenderers.h
3// Purpose: All generic wxDataViewCtrl renderer classes
4// Author: Robert Roebling, Vadim Zeitlin
5// Created: 2009-11-07 (extracted from wx/generic/dataview.h)
b1153ed6 6// RCS-ID: $Id$
6eec70b9
VZ
7// Copyright: (c) 2006 Robert Roebling
8// (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_GENERIC_DVRENDERERS_H_
13#define _WX_GENERIC_DVRENDERERS_H_
14
15// ---------------------------------------------------------
16// wxDataViewCustomRenderer
17// ---------------------------------------------------------
18
19class WXDLLIMPEXP_ADV wxDataViewCustomRenderer: public wxDataViewRenderer
20{
21public:
22 wxDataViewCustomRenderer( const wxString &varianttype = wxT("string"),
23 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
24 int align = wxDVR_DEFAULT_ALIGNMENT );
25
dbc3aec1
VS
26
27 // see the explanation of the following WXOnXXX() methods in wx/generic/dvrenderer.h
28
29 virtual bool WXOnActivate(wxRect cell,
30 wxDataViewModel *model,
31 const wxDataViewItem& item,
32 unsigned int col)
33 {
34 return Activate(cell, model, item, col);
35 }
36
37 virtual bool WXOnLeftClick(wxPoint cursor,
38 wxRect cell,
39 wxDataViewModel *model,
40 const wxDataViewItem &item,
41 unsigned int col)
42 {
43 return LeftClick(cursor, cell, model, item, col);
44 }
6eec70b9
VZ
45
46private:
47 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCustomRenderer)
48};
49
50
51// ---------------------------------------------------------
52// wxDataViewTextRenderer
53// ---------------------------------------------------------
54
55class WXDLLIMPEXP_ADV wxDataViewTextRenderer: public wxDataViewRenderer
56{
57public:
58 wxDataViewTextRenderer( const wxString &varianttype = wxT("string"),
59 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
60 int align = wxDVR_DEFAULT_ALIGNMENT );
61
62 bool SetValue( const wxVariant &value );
63 bool GetValue( wxVariant &value ) const;
64
62265c2c
VZ
65 virtual bool Render(wxRect cell, wxDC *dc, int state);
66 virtual wxSize GetSize() const;
6eec70b9
VZ
67
68 // in-place editing
69 virtual bool HasEditorCtrl() const;
70 virtual wxControl* CreateEditorCtrl( wxWindow *parent, wxRect labelRect,
71 const wxVariant &value );
72 virtual bool GetValueFromEditorCtrl( wxControl* editor, wxVariant &value );
73
74protected:
75 wxString m_text;
76
77protected:
78 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewTextRenderer)
79};
80
81// ---------------------------------------------------------
82// wxDataViewBitmapRenderer
83// ---------------------------------------------------------
84
85class WXDLLIMPEXP_ADV wxDataViewBitmapRenderer: public wxDataViewRenderer
86{
87public:
88 wxDataViewBitmapRenderer( const wxString &varianttype = wxT("wxBitmap"),
89 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
90 int align = wxDVR_DEFAULT_ALIGNMENT );
91
92 bool SetValue( const wxVariant &value );
93 bool GetValue( wxVariant &value ) const;
94
95 bool Render( wxRect cell, wxDC *dc, int state );
96 wxSize GetSize() const;
97
98private:
99 wxIcon m_icon;
100 wxBitmap m_bitmap;
101
102protected:
103 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewBitmapRenderer)
104};
105
106// ---------------------------------------------------------
107// wxDataViewToggleRenderer
108// ---------------------------------------------------------
109
110class WXDLLIMPEXP_ADV wxDataViewToggleRenderer: public wxDataViewRenderer
111{
112public:
113 wxDataViewToggleRenderer( const wxString &varianttype = wxT("bool"),
114 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
115 int align = wxDVR_DEFAULT_ALIGNMENT );
116
117 bool SetValue( const wxVariant &value );
118 bool GetValue( wxVariant &value ) const;
119
120 bool Render( wxRect cell, wxDC *dc, int state );
6eec70b9
VZ
121 wxSize GetSize() const;
122
62186006 123 // Implementation only, don't use nor override
d2425a43
VS
124 virtual bool WXOnLeftClick(wxPoint cursor,
125 wxRect cell,
126 wxDataViewModel *model,
127 const wxDataViewItem& item,
128 unsigned int col);
6eec70b9
VZ
129private:
130 bool m_toggle;
131
132protected:
133 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewToggleRenderer)
134};
135
136// ---------------------------------------------------------
137// wxDataViewProgressRenderer
138// ---------------------------------------------------------
139
140class WXDLLIMPEXP_ADV wxDataViewProgressRenderer: public wxDataViewRenderer
141{
142public:
143 wxDataViewProgressRenderer( const wxString &label = wxEmptyString,
144 const wxString &varianttype = wxT("long"),
145 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
146 int align = wxDVR_DEFAULT_ALIGNMENT );
147
148 bool SetValue( const wxVariant &value );
149 bool GetValue( wxVariant& value ) const;
150
62265c2c 151 virtual bool Render(wxRect cell, wxDC *dc, int state);
6eec70b9
VZ
152 virtual wxSize GetSize() const;
153
154private:
155 wxString m_label;
156 int m_value;
157
158protected:
159 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewProgressRenderer)
160};
161
162// ---------------------------------------------------------
163// wxDataViewIconTextRenderer
164// ---------------------------------------------------------
165
166class WXDLLIMPEXP_ADV wxDataViewIconTextRenderer: public wxDataViewRenderer
167{
168public:
169 wxDataViewIconTextRenderer( const wxString &varianttype = wxT("wxDataViewIconText"),
170 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
171 int align = wxDVR_DEFAULT_ALIGNMENT );
172
173 bool SetValue( const wxVariant &value );
174 bool GetValue( wxVariant &value ) const;
175
62265c2c 176 virtual bool Render(wxRect cell, wxDC *dc, int state);
6eec70b9
VZ
177 virtual wxSize GetSize() const;
178
179 virtual bool HasEditorCtrl() const { return true; }
180 virtual wxControl* CreateEditorCtrl( wxWindow *parent, wxRect labelRect,
181 const wxVariant &value );
182 virtual bool GetValueFromEditorCtrl( wxControl* editor, wxVariant &value );
183
184private:
185 wxDataViewIconText m_value;
186
187protected:
188 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewIconTextRenderer)
189};
190
191// ---------------------------------------------------------
192// wxDataViewDateRenderer
193// ---------------------------------------------------------
194
195class WXDLLIMPEXP_ADV wxDataViewDateRenderer: public wxDataViewRenderer
196{
197public:
198 wxDataViewDateRenderer( const wxString &varianttype = wxT("datetime"),
199 wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE,
200 int align = wxDVR_DEFAULT_ALIGNMENT );
201
202 bool SetValue( const wxVariant &value );
203 bool GetValue( wxVariant& value ) const;
204
205 virtual bool Render( wxRect cell, wxDC *dc, int state );
206 virtual wxSize GetSize() const;
62186006
VZ
207
208 // Implementation only, don't use nor override
dbc3aec1
VS
209 virtual bool WXOnActivate(wxRect cell,
210 wxDataViewModel *model,
62186006
VZ
211 const wxDataViewItem& item,
212 unsigned int col);
6eec70b9
VZ
213
214private:
215 wxDateTime m_date;
216
217protected:
218 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewDateRenderer)
219};
220
221
222#endif // _WX_GENERIC_DVRENDERERS_H_
223