Move wxDataViewCustomRendererBase::ActivateCell() to datavcmn.cpp.
[wxWidgets.git] / include / wx / dvrenderers.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/dvrenderers.h
3 // Purpose: Declare all wxDataViewCtrl classes
4 // Author: Robert Roebling, Vadim Zeitlin
5 // Created: 2009-11-08 (extracted from wx/dataview.h)
6 // RCS-ID: $Id$
7 // Copyright: (c) 2006 Robert Roebling
8 // (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_DVRENDERERS_H_
13 #define _WX_DVRENDERERS_H_
14
15 /*
16 Note about the structure of various headers: they're organized in a more
17 complicated way than usual because of the various dependencies which are
18 different for different ports. In any case the only public header, i.e. the
19 one which can be included directly is wx/dataview.h. It, in turn, includes
20 this one to define all the renderer classes.
21
22 We define the base wxDataViewRendererBase class first and then include a
23 port-dependent wx/xxx/dvrenderer.h which defines wxDataViewRenderer itself.
24 After this we can define wxDataViewRendererCustomBase (and maybe in the
25 future base classes for other renderers if the need arises, i.e. if there
26 is any non-trivial code or API which it makes sense to keep in common code)
27 and include wx/xxx/dvrenderers.h (notice the plural) which defines all the
28 rest of the renderer classes.
29 */
30
31 class WXDLLIMPEXP_FWD_ADV wxDataViewCustomRenderer;
32
33 // ----------------------------------------------------------------------------
34 // wxDataViewIconText: helper class used by wxDataViewIconTextRenderer
35 // ----------------------------------------------------------------------------
36
37 class WXDLLIMPEXP_ADV wxDataViewIconText : public wxObject
38 {
39 public:
40 wxDataViewIconText( const wxString &text = wxEmptyString,
41 const wxIcon& icon = wxNullIcon )
42 : m_text(text),
43 m_icon(icon)
44 { }
45
46 wxDataViewIconText( const wxDataViewIconText &other )
47 : wxObject(),
48 m_text(other.m_text),
49 m_icon(other.m_icon)
50 { }
51
52 void SetText( const wxString &text ) { m_text = text; }
53 wxString GetText() const { return m_text; }
54 void SetIcon( const wxIcon &icon ) { m_icon = icon; }
55 const wxIcon &GetIcon() const { return m_icon; }
56
57 bool IsSameAs(const wxDataViewIconText& other) const
58 {
59 return m_text == other.m_text && m_icon.IsSameAs(other.m_icon);
60 }
61
62 bool operator==(const wxDataViewIconText& other) const
63 {
64 return IsSameAs(other);
65 }
66
67 bool operator!=(const wxDataViewIconText& other) const
68 {
69 return !IsSameAs(other);
70 }
71
72 private:
73 wxString m_text;
74 wxIcon m_icon;
75
76 DECLARE_DYNAMIC_CLASS(wxDataViewIconText)
77 };
78
79 DECLARE_VARIANT_OBJECT_EXPORTED(wxDataViewIconText, WXDLLIMPEXP_ADV)
80
81 // ----------------------------------------------------------------------------
82 // wxDataViewRendererBase
83 // ----------------------------------------------------------------------------
84
85 enum wxDataViewCellMode
86 {
87 wxDATAVIEW_CELL_INERT,
88 wxDATAVIEW_CELL_ACTIVATABLE,
89 wxDATAVIEW_CELL_EDITABLE
90 };
91
92 enum wxDataViewCellRenderState
93 {
94 wxDATAVIEW_CELL_SELECTED = 1,
95 wxDATAVIEW_CELL_PRELIT = 2,
96 wxDATAVIEW_CELL_INSENSITIVE = 4,
97 wxDATAVIEW_CELL_FOCUSED = 8
98 };
99
100 class WXDLLIMPEXP_ADV wxDataViewRendererBase: public wxObject
101 {
102 public:
103 wxDataViewRendererBase( const wxString &varianttype,
104 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
105 int alignment = wxDVR_DEFAULT_ALIGNMENT );
106 virtual ~wxDataViewRendererBase();
107
108 virtual bool Validate( wxVariant& WXUNUSED(value) )
109 { return true; }
110
111 void SetOwner( wxDataViewColumn *owner ) { m_owner = owner; }
112 wxDataViewColumn* GetOwner() const { return m_owner; }
113
114 // renderer value and attributes: SetValue() and SetAttr() are called
115 // before a cell is rendered using this renderer
116 virtual bool SetValue(const wxVariant& value) = 0;
117 virtual bool GetValue(wxVariant& value) const = 0;
118
119 virtual void SetAttr(const wxDataViewItemAttr& WXUNUSED(attr)) { }
120
121 virtual void SetEnabled(bool WXUNUSED(enabled)) { }
122
123 wxString GetVariantType() const { return m_variantType; }
124
125 // helper that calls SetValue and SetAttr:
126 void PrepareForItem(const wxDataViewModel *model,
127 const wxDataViewItem& item, unsigned column);
128
129 // renderer properties:
130 virtual void SetMode( wxDataViewCellMode mode ) = 0;
131 virtual wxDataViewCellMode GetMode() const = 0;
132
133 // NOTE: Set/GetAlignment do not take/return a wxAlignment enum but
134 // rather an "int"; that's because for rendering cells it's allowed
135 // to combine alignment flags (e.g. wxALIGN_LEFT|wxALIGN_BOTTOM)
136 virtual void SetAlignment( int align ) = 0;
137 virtual int GetAlignment() const = 0;
138
139 // enable or disable (if called with wxELLIPSIZE_NONE) replacing parts of
140 // the item text (hence this only makes sense for renderers showing
141 // text...) with ellipsis in order to make it fit the column width
142 virtual void EnableEllipsize(wxEllipsizeMode mode = wxELLIPSIZE_MIDDLE) = 0;
143 void DisableEllipsize() { EnableEllipsize(wxELLIPSIZE_NONE); }
144
145 virtual wxEllipsizeMode GetEllipsizeMode() const = 0;
146
147 // in-place editing
148 virtual bool HasEditorCtrl() const
149 { return false; }
150 virtual wxWindow* CreateEditorCtrl(wxWindow * WXUNUSED(parent),
151 wxRect WXUNUSED(labelRect),
152 const wxVariant& WXUNUSED(value))
153 { return NULL; }
154 virtual bool GetValueFromEditorCtrl(wxWindow * WXUNUSED(editor),
155 wxVariant& WXUNUSED(value))
156 { return false; }
157
158 virtual bool StartEditing( const wxDataViewItem &item, wxRect labelRect );
159 virtual void CancelEditing();
160 virtual bool FinishEditing();
161
162 wxWindow *GetEditorCtrl() { return m_editorCtrl; }
163
164 virtual bool IsCustomRenderer() const { return false; }
165
166
167 protected:
168 // Called from {Cancel,Finish}Editing() to cleanup m_editorCtrl
169 void DestroyEditControl();
170
171 wxString m_variantType;
172 wxDataViewColumn *m_owner;
173 wxWeakRef<wxWindow> m_editorCtrl;
174 wxDataViewItem m_item; // for m_editorCtrl
175
176 // internal utility, may be used anywhere the window associated with the
177 // renderer is required
178 wxDataViewCtrl* GetView() const;
179
180 protected:
181 DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRendererBase)
182 };
183
184 // include the real wxDataViewRenderer declaration for the native ports
185 #ifdef wxHAS_GENERIC_DATAVIEWCTRL
186 // in the generic implementation there is no real wxDataViewRenderer, all
187 // renderers are custom so it's the same as wxDataViewCustomRenderer and
188 // wxDataViewCustomRendererBase derives from wxDataViewRendererBase directly
189 //
190 // this is a rather ugly hack but unfortunately it just doesn't seem to be
191 // possible to have the same class hierarchy in all ports and avoid
192 // duplicating the entire wxDataViewCustomRendererBase in the generic
193 // wxDataViewRenderer class (well, we could use a mix-in but this would
194 // make classes hierarchy non linear and arguably even more complex)
195 #define wxDataViewCustomRendererRealBase wxDataViewRendererBase
196 #else
197 #if defined(__WXGTK20__)
198 #include "wx/gtk/dvrenderer.h"
199 #elif defined(__WXMAC__)
200 #include "wx/osx/dvrenderer.h"
201 #else
202 #error "unknown native wxDataViewCtrl implementation"
203 #endif
204 #define wxDataViewCustomRendererRealBase wxDataViewRenderer
205 #endif
206
207 // ----------------------------------------------------------------------------
208 // wxDataViewCustomRendererBase
209 // ----------------------------------------------------------------------------
210
211 class WXDLLIMPEXP_ADV wxDataViewCustomRendererBase
212 : public wxDataViewCustomRendererRealBase
213 {
214 public:
215 // Constructor must specify the usual renderer parameters which we simply
216 // pass to the base class
217 wxDataViewCustomRendererBase(const wxString& varianttype = "string",
218 wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
219 int align = wxDVR_DEFAULT_ALIGNMENT)
220 : wxDataViewCustomRendererRealBase(varianttype, mode, align)
221 {
222 }
223
224
225 // Render the item using the current value (returned by GetValue()).
226 virtual bool Render(wxRect cell, wxDC *dc, int state) = 0;
227
228 // Return the size of the item appropriate to its current value.
229 virtual wxSize GetSize() const = 0;
230
231 // Define virtual function which are called when a key is pressed on the
232 // item, clicked or the user starts to drag it: by default they all simply
233 // return false indicating that the events are not handled
234
235 virtual bool ActivateCell(const wxRect& cell,
236 wxDataViewModel *model,
237 const wxDataViewItem & item,
238 unsigned int col,
239 const wxMouseEvent* mouseEvent);
240
241 // Deprecated, use (and override) ActivateCell() instead
242 wxDEPRECATED_BUT_USED_INTERNALLY_INLINE(
243 virtual bool Activate(wxRect WXUNUSED(cell),
244 wxDataViewModel *WXUNUSED(model),
245 const wxDataViewItem & WXUNUSED(item),
246 unsigned int WXUNUSED(col)),
247 return false; )
248
249 // Deprecated, use (and override) ActivateCell() instead
250 wxDEPRECATED_BUT_USED_INTERNALLY_INLINE(
251 virtual bool LeftClick(wxPoint WXUNUSED(cursor),
252 wxRect WXUNUSED(cell),
253 wxDataViewModel *WXUNUSED(model),
254 const wxDataViewItem & WXUNUSED(item),
255 unsigned int WXUNUSED(col)),
256 return false; )
257
258 virtual bool StartDrag(const wxPoint& WXUNUSED(cursor),
259 const wxRect& WXUNUSED(cell),
260 wxDataViewModel *WXUNUSED(model),
261 const wxDataViewItem & WXUNUSED(item),
262 unsigned int WXUNUSED(col) )
263 { return false; }
264
265
266 // Helper which can be used by Render() implementation in the derived
267 // classes: it will draw the text in the same manner as the standard
268 // renderers do.
269 virtual void RenderText(const wxString& text,
270 int xoffset,
271 wxRect cell,
272 wxDC *dc,
273 int state);
274
275
276 // Override the base class virtual method to simply store the attribute so
277 // that it can be accessed using GetAttr() from Render() if needed.
278 virtual void SetAttr(const wxDataViewItemAttr& attr) { m_attr = attr; }
279 const wxDataViewItemAttr& GetAttr() const { return m_attr; }
280
281 // Store the enabled state of the item so that it can be accessed from
282 // Render() via GetEnabled() if needed.
283 virtual void SetEnabled(bool enabled) { m_enabled = enabled; }
284 bool GetEnabled() const { return m_enabled; }
285
286
287 // Implementation only from now on
288
289 // Retrieve the DC to use for drawing. This is implemented in derived
290 // platform-specific classes.
291 virtual wxDC *GetDC() = 0;
292
293 // Prepare DC to use attributes and call Render().
294 void WXCallRender(wxRect rect, wxDC *dc, int state);
295
296 virtual bool IsCustomRenderer() const { return true; }
297
298 protected:
299 // helper for GetSize() implementations, respects attributes
300 wxSize GetTextExtent(const wxString& str) const;
301
302 private:
303 wxDataViewItemAttr m_attr;
304 bool m_enabled;
305
306 wxDECLARE_NO_COPY_CLASS(wxDataViewCustomRendererBase);
307 };
308
309 // include the declaration of all the other renderers to get the real
310 // wxDataViewCustomRenderer from which we need to inherit below
311 #ifdef wxHAS_GENERIC_DATAVIEWCTRL
312 // because of the different renderer classes hierarchy in the generic
313 // version, as explained above, we can include the header defining
314 // wxDataViewRenderer only here and not before wxDataViewCustomRendererBase
315 // declaration as for the native ports
316 #include "wx/generic/dvrenderer.h"
317 #include "wx/generic/dvrenderers.h"
318 #elif defined(__WXGTK20__)
319 #include "wx/gtk/dvrenderers.h"
320 #elif defined(__WXMAC__)
321 #include "wx/osx/dvrenderers.h"
322 #else
323 #error "unknown native wxDataViewCtrl implementation"
324 #endif
325
326 // ----------------------------------------------------------------------------
327 // wxDataViewSpinRenderer
328 // ----------------------------------------------------------------------------
329
330 class WXDLLIMPEXP_ADV wxDataViewSpinRenderer: public wxDataViewCustomRenderer
331 {
332 public:
333 wxDataViewSpinRenderer( int min, int max,
334 wxDataViewCellMode mode = wxDATAVIEW_CELL_EDITABLE,
335 int alignment = wxDVR_DEFAULT_ALIGNMENT );
336 virtual bool HasEditorCtrl() const { return true; }
337 virtual wxWindow* CreateEditorCtrl( wxWindow *parent, wxRect labelRect, const wxVariant &value );
338 virtual bool GetValueFromEditorCtrl( wxWindow* editor, wxVariant &value );
339 virtual bool Render( wxRect rect, wxDC *dc, int state );
340 virtual wxSize GetSize() const;
341 virtual bool SetValue( const wxVariant &value );
342 virtual bool GetValue( wxVariant &value ) const;
343
344 private:
345 long m_data;
346 long m_min,m_max;
347 };
348
349 #if defined(wxHAS_GENERIC_DATAVIEWCTRL) || defined(__WXOSX_CARBON__)
350
351 // ----------------------------------------------------------------------------
352 // wxDataViewChoiceRenderer
353 // ----------------------------------------------------------------------------
354
355 class WXDLLIMPEXP_ADV wxDataViewChoiceRenderer: public wxDataViewCustomRenderer
356 {
357 public:
358 wxDataViewChoiceRenderer( const wxArrayString &choices,
359 wxDataViewCellMode mode = wxDATAVIEW_CELL_EDITABLE,
360 int alignment = wxDVR_DEFAULT_ALIGNMENT );
361 virtual bool HasEditorCtrl() const { return true; }
362 virtual wxWindow* CreateEditorCtrl( wxWindow *parent, wxRect labelRect, const wxVariant &value );
363 virtual bool GetValueFromEditorCtrl( wxWindow* editor, wxVariant &value );
364 virtual bool Render( wxRect rect, wxDC *dc, int state );
365 virtual wxSize GetSize() const;
366 virtual bool SetValue( const wxVariant &value );
367 virtual bool GetValue( wxVariant &value ) const;
368
369 wxString GetChoice(size_t index) const { return m_choices[index]; }
370 const wxArrayString& GetChoices() const { return m_choices; }
371
372 private:
373 wxArrayString m_choices;
374 wxString m_data;
375 };
376
377 // ----------------------------------------------------------------------------
378 // wxDataViewChoiceByIndexRenderer
379 // ----------------------------------------------------------------------------
380
381 class WXDLLIMPEXP_ADV wxDataViewChoiceByIndexRenderer: public wxDataViewChoiceRenderer
382 {
383 public:
384 wxDataViewChoiceByIndexRenderer( const wxArrayString &choices,
385 wxDataViewCellMode mode = wxDATAVIEW_CELL_EDITABLE,
386 int alignment = wxDVR_DEFAULT_ALIGNMENT );
387
388 virtual wxWindow* CreateEditorCtrl( wxWindow *parent, wxRect labelRect, const wxVariant &value );
389 virtual bool GetValueFromEditorCtrl( wxWindow* editor, wxVariant &value );
390
391 virtual bool SetValue( const wxVariant &value );
392 virtual bool GetValue( wxVariant &value ) const;
393 };
394
395
396 #endif // generic or Carbon versions
397
398 #if defined(wxHAS_GENERIC_DATAVIEWCTRL) || defined(__WXGTK__)
399
400 // ----------------------------------------------------------------------------
401 // wxDataViewDateRenderer
402 // ----------------------------------------------------------------------------
403
404 #if wxUSE_DATEPICKCTRL
405 class WXDLLIMPEXP_ADV wxDataViewDateRenderer: public wxDataViewCustomRenderer
406 {
407 public:
408 wxDataViewDateRenderer(const wxString &varianttype = wxT("datetime"),
409 wxDataViewCellMode mode = wxDATAVIEW_CELL_EDITABLE,
410 int align = wxDVR_DEFAULT_ALIGNMENT);
411
412 virtual bool HasEditorCtrl() const { return true; }
413 virtual wxWindow *CreateEditorCtrl(wxWindow *parent, wxRect labelRect, const wxVariant &value);
414 virtual bool GetValueFromEditorCtrl(wxWindow* editor, wxVariant &value);
415 virtual bool SetValue(const wxVariant &value);
416 virtual bool GetValue(wxVariant& value) const;
417 virtual bool Render( wxRect cell, wxDC *dc, int state );
418 virtual wxSize GetSize() const;
419
420 private:
421 wxDateTime m_date;
422 };
423 #else // !wxUSE_DATEPICKCTRL
424 typedef wxDataViewTextRenderer wxDataViewDateRenderer;
425 #endif
426
427 #endif // generic or GTK+ versions
428
429 // this class is obsolete, its functionality was merged in
430 // wxDataViewTextRenderer itself now, don't use it any more
431 #define wxDataViewTextRendererAttr wxDataViewTextRenderer
432
433 #endif // _WX_DVRENDERERS_H_
434