]>
Commit | Line | Data |
---|---|---|
bcd846ea RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/dataview.h | |
3 | // Purpose: wxDataViewCtrl base classes | |
4 | // Author: Robert Roebling | |
b7e9f8b1 | 5 | // Modified by: Bo Yang |
bcd846ea RR |
6 | // Created: 08.01.06 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Robert Roebling | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DATAVIEW_H_BASE_ | |
13 | #define _WX_DATAVIEW_H_BASE_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
17 | #if wxUSE_DATAVIEWCTRL | |
18 | ||
239eaa41 RR |
19 | #include "wx/control.h" |
20 | #include "wx/textctrl.h" | |
21 | #include "wx/bitmap.h" | |
64ffb888 | 22 | #include "wx/variant.h" |
b9b8b59c | 23 | #include "wx/listctrl.h" |
b7e9f8b1 | 24 | #include "wx/dynarray.h" |
89352653 | 25 | #include "wx/icon.h" |
4ed7af08 RR |
26 | |
27 | #if defined(__WXGTK20__) | |
28 | // for testing | |
001f0f82 | 29 | // #define wxUSE_GENERICDATAVIEWCTRL 1 |
4ed7af08 | 30 | #elif defined(__WXMAC__) |
4ed7af08 RR |
31 | #else |
32 | #define wxUSE_GENERICDATAVIEWCTRL 1 | |
33 | #endif | |
34 | ||
bcd846ea | 35 | // ---------------------------------------------------------------------------- |
f554a14b | 36 | // wxDataViewCtrl flags |
bcd846ea RR |
37 | // ---------------------------------------------------------------------------- |
38 | ||
239eaa41 RR |
39 | // ---------------------------------------------------------------------------- |
40 | // wxDataViewCtrl globals | |
41 | // ---------------------------------------------------------------------------- | |
bcd846ea | 42 | |
b5dbe15d VS |
43 | class WXDLLIMPEXP_FWD_ADV wxDataViewItem; |
44 | class WXDLLIMPEXP_FWD_ADV wxDataViewModel; | |
45 | class WXDLLIMPEXP_FWD_ADV wxDataViewCtrl; | |
46 | class WXDLLIMPEXP_FWD_ADV wxDataViewColumn; | |
47 | class WXDLLIMPEXP_FWD_ADV wxDataViewRenderer; | |
48 | class WXDLLIMPEXP_FWD_ADV wxDataViewModelNotifier; | |
fa28826d | 49 | |
f460c29d | 50 | extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxDataViewCtrlNameStr[]; |
bcd846ea | 51 | |
87f0efe2 RR |
52 | // the default width of new (text) columns: |
53 | #define wxDVC_DEFAULT_WIDTH 80 | |
54 | ||
55 | // the default width of new toggle columns: | |
56 | #define wxDVC_TOGGLE_DEFAULT_WIDTH 30 | |
57 | ||
9861f022 RR |
58 | // the default minimal width of the columns: |
59 | #define wxDVC_DEFAULT_MINWIDTH 30 | |
60 | ||
61 | // the default alignment of wxDataViewRenderers: | |
69357fa0 | 62 | #define wxDVR_DEFAULT_ALIGNMENT (wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL) |
9861f022 | 63 | |
87f0efe2 | 64 | |
f554a14b | 65 | // --------------------------------------------------------- |
e0062c04 | 66 | // wxDataViewItem |
f554a14b | 67 | // --------------------------------------------------------- |
239eaa41 | 68 | |
e0062c04 | 69 | class WXDLLIMPEXP_ADV wxDataViewItem |
239eaa41 RR |
70 | { |
71 | public: | |
9d52aad3 RR |
72 | wxDataViewItem( void* id = NULL ) |
73 | { m_id = id; } | |
e0062c04 | 74 | wxDataViewItem( const wxDataViewItem &item ) |
9d52aad3 RR |
75 | { m_id = item.m_id; } |
76 | bool IsOk() const { return m_id != NULL; } | |
77 | void* GetID() const { return m_id; } | |
4f1cf94b | 78 | operator const void* () const { return m_id; } |
e0062c04 | 79 | |
e94d0c1e RR |
80 | #ifdef __WXDEBUG__ |
81 | void Print( const wxString &text ) const { wxPrintf( "item %s: %d\n", text, (int) m_id ); } | |
82 | #endif | |
83 | ||
8f850e28 | 84 | private: |
9d52aad3 | 85 | void* m_id; |
64ffb888 | 86 | }; |
239eaa41 | 87 | |
d5025dc0 | 88 | bool operator == (const wxDataViewItem &left, const wxDataViewItem &right); |
aba9bfd0 | 89 | |
cd722937 RR |
90 | WX_DEFINE_ARRAY(wxDataViewItem, wxDataViewItemArray); |
91 | ||
9d8fe14a RR |
92 | // --------------------------------------------------------- |
93 | // wxDataViewModelNotifier | |
94 | // --------------------------------------------------------- | |
95 | ||
96 | class WXDLLIMPEXP_ADV wxDataViewModelNotifier | |
97 | { | |
98 | public: | |
99 | wxDataViewModelNotifier() { } | |
100 | virtual ~wxDataViewModelNotifier() { m_owner = NULL; } | |
101 | ||
102 | virtual bool ItemAdded( const wxDataViewItem &parent, const wxDataViewItem &item ) = 0; | |
103 | virtual bool ItemDeleted( const wxDataViewItem &parent, const wxDataViewItem &item ) = 0; | |
104 | virtual bool ItemChanged( const wxDataViewItem &item ) = 0; | |
854cdb09 RR |
105 | virtual bool ItemsAdded( const wxDataViewItem &parent, const wxDataViewItemArray &items ); |
106 | virtual bool ItemsDeleted( const wxDataViewItem &parent, const wxDataViewItemArray &items ); | |
107 | virtual bool ItemsChanged( const wxDataViewItemArray &items ); | |
9d8fe14a RR |
108 | virtual bool ValueChanged( const wxDataViewItem &item, unsigned int col ) = 0; |
109 | virtual bool Cleared() = 0; | |
110 | ||
d3f00f59 | 111 | virtual void Resort() = 0; |
9d8fe14a RR |
112 | |
113 | void SetOwner( wxDataViewModel *owner ) { m_owner = owner; } | |
114 | wxDataViewModel *GetOwner() { return m_owner; } | |
115 | ||
116 | private: | |
117 | wxDataViewModel *m_owner; | |
118 | }; | |
119 | ||
120 | ||
f554a14b | 121 | // --------------------------------------------------------- |
e0062c04 | 122 | // wxDataViewModel |
f554a14b | 123 | // --------------------------------------------------------- |
239eaa41 | 124 | |
d350fbec VS |
125 | WX_DECLARE_LIST_WITH_DECL(wxDataViewModelNotifier, wxDataViewModelNotifiers, |
126 | class WXDLLIMPEXP_ADV); | |
9d8fe14a | 127 | |
e0062c04 | 128 | class WXDLLIMPEXP_ADV wxDataViewModel: public wxObjectRefData |
239eaa41 RR |
129 | { |
130 | public: | |
e0062c04 | 131 | wxDataViewModel(); |
239eaa41 | 132 | |
9861f022 | 133 | virtual unsigned int GetColumnCount() const = 0; |
87f0efe2 | 134 | |
a7f61f76 | 135 | // return type as reported by wxVariant |
9861f022 | 136 | virtual wxString GetColumnType( unsigned int col ) const = 0; |
87f0efe2 | 137 | |
a7f61f76 | 138 | // get value into a wxVariant |
e0062c04 RR |
139 | virtual void GetValue( wxVariant &variant, |
140 | const wxDataViewItem &item, unsigned int col ) const = 0; | |
87f0efe2 | 141 | |
a7f61f76 | 142 | // set value, call ValueChanged() afterwards! |
e0062c04 RR |
143 | virtual bool SetValue( const wxVariant &variant, |
144 | const wxDataViewItem &item, unsigned int col ) = 0; | |
239eaa41 | 145 | |
e0062c04 | 146 | // define hierachy |
ed903e42 RR |
147 | virtual wxDataViewItem GetParent( const wxDataViewItem &item ) const = 0; |
148 | virtual bool IsContainer( const wxDataViewItem &item ) const = 0; | |
1e40f667 RR |
149 | // Is the container just a header or an item with all columns |
150 | virtual bool HasContainerColumns( const wxDataViewItem &item ) const { return false; } | |
74fe973b | 151 | virtual unsigned int GetChildren( const wxDataViewItem &item, wxDataViewItemArray &children ) const = 0; |
b9b8b59c | 152 | |
239eaa41 | 153 | // delegated notifiers |
e0062c04 | 154 | virtual bool ItemAdded( const wxDataViewItem &parent, const wxDataViewItem &item ); |
854cdb09 | 155 | virtual bool ItemsAdded( const wxDataViewItem &parent, const wxDataViewItemArray &items ); |
469d3e9b | 156 | virtual bool ItemDeleted( const wxDataViewItem &parent, const wxDataViewItem &item ); |
854cdb09 | 157 | virtual bool ItemsDeleted( const wxDataViewItem &parent, const wxDataViewItemArray &items ); |
e0062c04 | 158 | virtual bool ItemChanged( const wxDataViewItem &item ); |
854cdb09 | 159 | virtual bool ItemsChanged( const wxDataViewItemArray &items ); |
e0062c04 | 160 | virtual bool ValueChanged( const wxDataViewItem &item, unsigned int col ); |
8981608c | 161 | virtual bool Cleared(); |
b5d777c7 | 162 | |
ef427989 RR |
163 | // delegatd action |
164 | virtual void Resort(); | |
165 | ||
e0062c04 RR |
166 | void AddNotifier( wxDataViewModelNotifier *notifier ); |
167 | void RemoveNotifier( wxDataViewModelNotifier *notifier ); | |
63415a42 | 168 | |
ef427989 | 169 | // default compare function |
7ee7191c RR |
170 | virtual int Compare( const wxDataViewItem &item1, const wxDataViewItem &item2, |
171 | unsigned int column, bool ascending ); | |
09711964 | 172 | virtual bool HasDefaultCompare() const { return false; } |
66e09788 | 173 | |
87f0efe2 RR |
174 | protected: |
175 | // the user should not delete this class directly: he should use DecRef() instead! | |
5debbdcf | 176 | virtual ~wxDataViewModel() { } |
87f0efe2 | 177 | |
9d8fe14a | 178 | wxDataViewModelNotifiers m_notifiers; |
ef427989 RR |
179 | }; |
180 | ||
181 | // --------------------------------------------------------- | |
c534e696 | 182 | // wxDataViewIndexListModel |
ef427989 RR |
183 | // --------------------------------------------------------- |
184 | ||
d350fbec | 185 | class WXDLLIMPEXP_ADV wxDataViewIndexListModel: public wxDataViewModel |
ef427989 RR |
186 | { |
187 | public: | |
c534e696 | 188 | wxDataViewIndexListModel( unsigned int initial_size = 0 ); |
ef427989 RR |
189 | ~wxDataViewIndexListModel(); |
190 | ||
191 | virtual unsigned int GetRowCount() = 0; | |
192 | ||
193 | virtual void GetValue( wxVariant &variant, | |
194 | unsigned int row, unsigned int col ) const = 0; | |
195 | ||
196 | virtual bool SetValue( const wxVariant &variant, | |
197 | unsigned int row, unsigned int col ) = 0; | |
198 | ||
c534e696 RR |
199 | void RowPrepended(); |
200 | void RowInserted( unsigned int before ); | |
201 | void RowAppended(); | |
202 | void RowDeleted( unsigned int row ); | |
203 | void RowChanged( unsigned int row ); | |
204 | void RowValueChanged( unsigned int row, unsigned int col ); | |
205 | ||
206 | // convert to/from row/wxDataViewItem | |
ef427989 | 207 | |
c534e696 RR |
208 | unsigned int GetRow( const wxDataViewItem &item ) const; |
209 | wxDataViewItem GetItem( unsigned int row ) const; | |
210 | ||
211 | // compare based on index | |
ef427989 | 212 | |
7ee7191c RR |
213 | virtual int Compare( const wxDataViewItem &item1, const wxDataViewItem &item2, |
214 | unsigned int column, bool ascending ); | |
09711964 | 215 | virtual bool HasDefaultCompare() const { return true; } |
c534e696 RR |
216 | |
217 | // implement base methods | |
218 | ||
219 | virtual void GetValue( wxVariant &variant, | |
220 | const wxDataViewItem &item, unsigned int col ) const; | |
221 | virtual bool SetValue( const wxVariant &variant, | |
222 | const wxDataViewItem &item, unsigned int col ); | |
223 | virtual wxDataViewItem GetParent( const wxDataViewItem &item ) const; | |
224 | virtual bool IsContainer( const wxDataViewItem &item ) const; | |
74fe973b | 225 | virtual unsigned int GetChildren( const wxDataViewItem &item, wxDataViewItemArray &children ) const; |
ef427989 | 226 | |
c534e696 | 227 | private: |
cd722937 | 228 | wxDataViewItemArray m_hash; |
c534e696 | 229 | unsigned int m_lastIndex; |
239eaa41 RR |
230 | }; |
231 | ||
c33edc08 | 232 | |
1e510b1e RR |
233 | //----------------------------------------------------------------------------- |
234 | // wxDataViewEditorCtrlEvtHandler | |
235 | //----------------------------------------------------------------------------- | |
236 | ||
237 | class wxDataViewEditorCtrlEvtHandler: public wxEvtHandler | |
238 | { | |
239 | public: | |
240 | wxDataViewEditorCtrlEvtHandler( wxControl *editor, wxDataViewRenderer *owner ); | |
241 | ||
242 | void AcceptChangesAndFinish(); | |
30715fa1 | 243 | void SetFocusOnIdle( bool focus = true ) { m_focusOnIdle = focus; } |
1e510b1e RR |
244 | |
245 | protected: | |
246 | void OnChar( wxKeyEvent &event ); | |
247 | void OnKillFocus( wxFocusEvent &event ); | |
30715fa1 | 248 | void OnIdle( wxIdleEvent &event ); |
1e510b1e RR |
249 | |
250 | private: | |
251 | wxDataViewRenderer *m_owner; | |
252 | wxControl *m_editorCtrl; | |
253 | bool m_finished; | |
30715fa1 | 254 | bool m_focusOnIdle; |
1e510b1e RR |
255 | |
256 | private: | |
257 | DECLARE_EVENT_TABLE() | |
258 | }; | |
259 | ||
f554a14b | 260 | // --------------------------------------------------------- |
baa9ebc4 | 261 | // wxDataViewRendererBase |
f554a14b | 262 | // --------------------------------------------------------- |
fa28826d | 263 | |
6842a71a | 264 | enum wxDataViewCellMode |
fa28826d | 265 | { |
6842a71a RR |
266 | wxDATAVIEW_CELL_INERT, |
267 | wxDATAVIEW_CELL_ACTIVATABLE, | |
268 | wxDATAVIEW_CELL_EDITABLE | |
fa28826d RR |
269 | }; |
270 | ||
6842a71a RR |
271 | enum wxDataViewCellRenderState |
272 | { | |
273 | wxDATAVIEW_CELL_SELECTED = 1, | |
274 | wxDATAVIEW_CELL_PRELIT = 2, | |
275 | wxDATAVIEW_CELL_INSENSITIVE = 4, | |
276 | wxDATAVIEW_CELL_FOCUSED = 8 | |
277 | }; | |
278 | ||
baa9ebc4 | 279 | class WXDLLIMPEXP_ADV wxDataViewRendererBase: public wxObject |
6842a71a RR |
280 | { |
281 | public: | |
9861f022 RR |
282 | wxDataViewRendererBase( const wxString &varianttype, |
283 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, | |
284 | int alignment = wxDVR_DEFAULT_ALIGNMENT ); | |
6842a71a | 285 | |
9861f022 RR |
286 | virtual bool Validate( wxVariant& WXUNUSED(value) ) |
287 | { return true; } | |
f554a14b | 288 | |
6842a71a RR |
289 | void SetOwner( wxDataViewColumn *owner ) { m_owner = owner; } |
290 | wxDataViewColumn* GetOwner() { return m_owner; } | |
f554a14b | 291 | |
9861f022 RR |
292 | // renderer properties: |
293 | ||
294 | virtual bool SetValue( const wxVariant& WXUNUSED(value) ) = 0; | |
295 | virtual bool GetValue( wxVariant& WXUNUSED(value) ) const = 0; | |
296 | ||
297 | wxString GetVariantType() const { return m_variantType; } | |
298 | ||
299 | virtual void SetMode( wxDataViewCellMode mode ) = 0; | |
300 | virtual wxDataViewCellMode GetMode() const = 0; | |
301 | ||
302 | // NOTE: Set/GetAlignment do not take/return a wxAlignment enum but | |
303 | // rather an "int"; that's because for rendering cells it's allowed | |
304 | // to combine alignment flags (e.g. wxALIGN_LEFT|wxALIGN_BOTTOM) | |
305 | virtual void SetAlignment( int align ) = 0; | |
306 | virtual int GetAlignment() const = 0; | |
99d471a5 | 307 | |
1e510b1e RR |
308 | // in-place editing |
309 | virtual bool HasEditorCtrl() | |
310 | { return false; } | |
96c2a0dd VZ |
311 | virtual wxControl* CreateEditorCtrl(wxWindow * WXUNUSED(parent), |
312 | wxRect WXUNUSED(labelRect), | |
313 | const wxVariant& WXUNUSED(value)) | |
1e510b1e | 314 | { return NULL; } |
96c2a0dd VZ |
315 | virtual bool GetValueFromEditorCtrl(wxControl * WXUNUSED(editor), |
316 | wxVariant& WXUNUSED(value)) | |
1e510b1e RR |
317 | { return false; } |
318 | ||
e0062c04 | 319 | virtual bool StartEditing( const wxDataViewItem &item, wxRect labelRect ); |
1e510b1e RR |
320 | virtual void CancelEditing(); |
321 | virtual bool FinishEditing(); | |
322 | ||
323 | wxControl *GetEditorCtrl() { return m_editorCtrl; } | |
324 | ||
a7f61f76 | 325 | protected: |
6842a71a RR |
326 | wxString m_variantType; |
327 | wxDataViewColumn *m_owner; | |
1e510b1e | 328 | wxControl *m_editorCtrl; |
e0062c04 | 329 | wxDataViewItem m_item; // for m_editorCtrl |
6842a71a | 330 | |
9861f022 RR |
331 | // internal utility: |
332 | const wxDataViewCtrl* GetView() const; | |
333 | ||
6842a71a | 334 | protected: |
baa9ebc4 | 335 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRendererBase) |
6842a71a RR |
336 | }; |
337 | ||
89352653 RR |
338 | //----------------------------------------------------------------------------- |
339 | // wxDataViewIconText | |
340 | //----------------------------------------------------------------------------- | |
341 | ||
d350fbec | 342 | class WXDLLIMPEXP_ADV wxDataViewIconText: public wxObject |
89352653 RR |
343 | { |
344 | public: | |
345 | wxDataViewIconText( const wxString &text = wxEmptyString, const wxIcon& icon = wxNullIcon ) | |
346 | { m_icon = icon; m_text = text; } | |
347 | wxDataViewIconText( const wxDataViewIconText &other ) | |
348 | { m_icon = other.m_icon; m_text = other.m_text; } | |
349 | ||
350 | void SetText( const wxString &text ) { m_text = text; } | |
351 | wxString GetText() const { return m_text; } | |
352 | void SetIcon( const wxIcon &icon ) { m_icon = icon; } | |
353 | const wxIcon &GetIcon() const { return m_icon; } | |
354 | ||
355 | private: | |
356 | wxString m_text; | |
357 | wxIcon m_icon; | |
358 | ||
359 | private: | |
360 | DECLARE_DYNAMIC_CLASS(wxDataViewIconText) | |
361 | }; | |
362 | ||
363 | bool operator == (const wxDataViewIconText &one, const wxDataViewIconText &two); | |
364 | ||
d350fbec | 365 | DECLARE_VARIANT_OBJECT_EXPORTED(wxDataViewIconText, WXDLLIMPEXP_ADV) |
89352653 | 366 | |
f554a14b | 367 | // --------------------------------------------------------- |
6842a71a | 368 | // wxDataViewColumnBase |
f554a14b | 369 | // --------------------------------------------------------- |
6842a71a | 370 | |
fa28826d RR |
371 | enum wxDataViewColumnFlags |
372 | { | |
373 | wxDATAVIEW_COL_RESIZABLE = 1, | |
374 | wxDATAVIEW_COL_SORTABLE = 2, | |
375 | wxDATAVIEW_COL_HIDDEN = 4 | |
376 | }; | |
377 | ||
f460c29d | 378 | class WXDLLIMPEXP_ADV wxDataViewColumnBase: public wxObject |
fa28826d RR |
379 | { |
380 | public: | |
87f0efe2 RR |
381 | wxDataViewColumnBase( const wxString &title, wxDataViewRenderer *renderer, |
382 | unsigned int model_column, int width = wxDVC_DEFAULT_WIDTH, | |
383 | wxAlignment align = wxALIGN_CENTER, | |
384 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
385 | wxDataViewColumnBase( const wxBitmap &bitmap, wxDataViewRenderer *renderer, | |
386 | unsigned int model_column, int width = wxDVC_DEFAULT_WIDTH, | |
387 | wxAlignment align = wxALIGN_CENTER, | |
388 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
d3c7fc99 | 389 | virtual ~wxDataViewColumnBase(); |
fa28826d | 390 | |
9861f022 | 391 | // setters: |
07b6378f | 392 | |
9861f022 | 393 | virtual void SetTitle( const wxString &title ) = 0; |
47cef10f | 394 | virtual void SetAlignment( wxAlignment align ) = 0; |
31fb32e1 | 395 | virtual void SetSortable( bool sortable ) = 0; |
9861f022 RR |
396 | virtual void SetResizeable( bool resizeable ) = 0; |
397 | virtual void SetHidden( bool hidden ) = 0; | |
47cef10f | 398 | virtual void SetSortOrder( bool ascending ) = 0; |
9861f022 RR |
399 | virtual void SetFlags( int flags ); |
400 | virtual void SetOwner( wxDataViewCtrl *owner ) | |
401 | { m_owner = owner; } | |
402 | virtual void SetBitmap( const wxBitmap &bitmap ) | |
403 | { m_bitmap=bitmap; } | |
07a84e7b | 404 | |
9861f022 RR |
405 | virtual void SetMinWidth( int minWidth ) = 0; |
406 | virtual void SetWidth( int width ) = 0; | |
f554a14b | 407 | |
f554a14b | 408 | |
9861f022 | 409 | // getters: |
07b6378f | 410 | |
9861f022 RR |
411 | virtual wxString GetTitle() const = 0; |
412 | virtual wxAlignment GetAlignment() const = 0; | |
87f0efe2 | 413 | virtual int GetWidth() const = 0; |
9861f022 | 414 | virtual int GetMinWidth() const = 0; |
07b6378f | 415 | |
9861f022 RR |
416 | virtual int GetFlags() const; |
417 | ||
418 | virtual bool IsSortable() const = 0; | |
419 | virtual bool IsResizeable() const = 0; | |
420 | virtual bool IsHidden() const = 0; | |
421 | virtual bool IsSortOrderAscending() const = 0; | |
422 | ||
423 | const wxBitmap &GetBitmap() const { return m_bitmap; } | |
6d9ecc87 | 424 | unsigned int GetModelColumn() const { return static_cast<unsigned int>(m_model_column); } |
9861f022 RR |
425 | |
426 | wxDataViewCtrl *GetOwner() { return m_owner; } | |
427 | wxDataViewRenderer* GetRenderer() { return m_renderer; } | |
428 | ||
429 | protected: | |
baa9ebc4 | 430 | wxDataViewRenderer *m_renderer; |
6842a71a | 431 | int m_model_column; |
07a84e7b | 432 | wxBitmap m_bitmap; |
6842a71a | 433 | wxDataViewCtrl *m_owner; |
fa28826d RR |
434 | |
435 | protected: | |
436 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumnBase) | |
437 | }; | |
438 | ||
f554a14b | 439 | // --------------------------------------------------------- |
239eaa41 | 440 | // wxDataViewCtrlBase |
f554a14b | 441 | // --------------------------------------------------------- |
239eaa41 | 442 | |
c21f7aa1 | 443 | #define wxDV_SINGLE 0x0000 // for convenience |
9861f022 RR |
444 | #define wxDV_MULTIPLE 0x0001 // can select multiple items |
445 | ||
446 | #define wxDV_NO_HEADER 0x0002 // column titles not visible | |
447 | #define wxDV_HORIZ_RULES 0x0004 // light horizontal rules between rows | |
448 | #define wxDV_VERT_RULES 0x0008 // light vertical rules between columns | |
c21f7aa1 | 449 | |
f460c29d | 450 | class WXDLLIMPEXP_ADV wxDataViewCtrlBase: public wxControl |
239eaa41 RR |
451 | { |
452 | public: | |
453 | wxDataViewCtrlBase(); | |
d3c7fc99 | 454 | virtual ~wxDataViewCtrlBase(); |
f554a14b | 455 | |
e0062c04 RR |
456 | virtual bool AssociateModel( wxDataViewModel *model ); |
457 | wxDataViewModel* GetModel(); | |
f554a14b | 458 | |
07a84e7b | 459 | // short cuts |
c7074d44 | 460 | wxDataViewColumn *AppendTextColumn( const wxString &label, unsigned int model_column, |
87f0efe2 | 461 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
e2da67f6 | 462 | wxAlignment align = (wxAlignment)(wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL), |
87f0efe2 | 463 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
b04fcede RR |
464 | wxDataViewColumn *AppendIconTextColumn( const wxString &label, unsigned int model_column, |
465 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, | |
e2da67f6 | 466 | wxAlignment align = (wxAlignment)(wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL), |
b04fcede | 467 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
c7074d44 | 468 | wxDataViewColumn *AppendToggleColumn( const wxString &label, unsigned int model_column, |
87f0efe2 RR |
469 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_TOGGLE_DEFAULT_WIDTH, |
470 | wxAlignment align = wxALIGN_CENTER, | |
471 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
c7074d44 | 472 | wxDataViewColumn *AppendProgressColumn( const wxString &label, unsigned int model_column, |
87f0efe2 RR |
473 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_DEFAULT_WIDTH, |
474 | wxAlignment align = wxALIGN_CENTER, | |
475 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
c7074d44 | 476 | wxDataViewColumn *AppendDateColumn( const wxString &label, unsigned int model_column, |
87f0efe2 | 477 | wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, int width = -1, |
e2da67f6 | 478 | wxAlignment align = (wxAlignment)(wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL), |
87f0efe2 | 479 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
c7074d44 | 480 | wxDataViewColumn *AppendBitmapColumn( const wxString &label, unsigned int model_column, |
87f0efe2 RR |
481 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
482 | wxAlignment align = wxALIGN_CENTER, | |
483 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
c7074d44 | 484 | wxDataViewColumn *AppendTextColumn( const wxBitmap &label, unsigned int model_column, |
87f0efe2 | 485 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
e2da67f6 | 486 | wxAlignment align = (wxAlignment)(wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL), |
87f0efe2 | 487 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
b04fcede RR |
488 | wxDataViewColumn *AppendIconTextColumn( const wxBitmap &label, unsigned int model_column, |
489 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, | |
e2da67f6 | 490 | wxAlignment align = (wxAlignment)(wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL), |
b04fcede | 491 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
c7074d44 | 492 | wxDataViewColumn *AppendToggleColumn( const wxBitmap &label, unsigned int model_column, |
87f0efe2 RR |
493 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_TOGGLE_DEFAULT_WIDTH, |
494 | wxAlignment align = wxALIGN_CENTER, | |
495 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
c7074d44 | 496 | wxDataViewColumn *AppendProgressColumn( const wxBitmap &label, unsigned int model_column, |
87f0efe2 RR |
497 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_DEFAULT_WIDTH, |
498 | wxAlignment align = wxALIGN_CENTER, | |
499 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
c7074d44 | 500 | wxDataViewColumn *AppendDateColumn( const wxBitmap &label, unsigned int model_column, |
87f0efe2 | 501 | wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, int width = -1, |
e2da67f6 | 502 | wxAlignment align = (wxAlignment)(wxALIGN_LEFT|wxALIGN_CENTRE_VERTICAL), |
87f0efe2 | 503 | int flags = wxDATAVIEW_COL_RESIZABLE ); |
c7074d44 RR |
504 | |
505 | wxDataViewColumn *AppendBitmapColumn( const wxBitmap &label, unsigned int model_column, | |
87f0efe2 RR |
506 | wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1, |
507 | wxAlignment align = wxALIGN_CENTER, | |
508 | int flags = wxDATAVIEW_COL_RESIZABLE ); | |
07a84e7b | 509 | |
f554a14b | 510 | virtual bool AppendColumn( wxDataViewColumn *col ); |
9861f022 | 511 | |
91a6c655 RR |
512 | virtual unsigned int GetColumnCount() const = 0; |
513 | virtual wxDataViewColumn* GetColumn( unsigned int pos ) const = 0; | |
453091c2 | 514 | virtual int GetColumnPosition( const wxDataViewColumn *column ) const = 0; |
91a6c655 RR |
515 | |
516 | virtual bool DeleteColumn( wxDataViewColumn *column ) = 0; | |
517 | virtual bool ClearColumns() = 0; | |
518 | ||
1b27b2bd | 519 | void SetExpanderColumn( wxDataViewColumn *col ) |
3b6280be | 520 | { m_expander_column = col ; DoSetExpanderColumn(); } |
1b27b2bd | 521 | wxDataViewColumn *GetExpanderColumn() const |
3b6280be | 522 | { return m_expander_column; } |
21f47fb9 RR |
523 | |
524 | virtual wxDataViewColumn *GetSortingColumn() const = 0; | |
3b6280be RR |
525 | |
526 | void SetIndent( int indent ) | |
527 | { m_indent = indent ; DoSetIndent(); } | |
528 | int GetIndent() const | |
529 | { return m_indent; } | |
530 | ||
fbda518c | 531 | virtual wxDataViewItem GetSelection() const = 0; |
b7e9f8b1 RR |
532 | virtual int GetSelections( wxDataViewItemArray & sel ) const = 0; |
533 | virtual void SetSelections( const wxDataViewItemArray & sel ) = 0; | |
534 | virtual void Select( const wxDataViewItem & item ) = 0; | |
535 | virtual void Unselect( const wxDataViewItem & item ) = 0; | |
536 | virtual bool IsSelected( const wxDataViewItem & item ) const = 0; | |
537 | ||
b7e9f8b1 RR |
538 | virtual void SelectAll() = 0; |
539 | virtual void UnselectAll() = 0; | |
540 | ||
f71d3ba4 RR |
541 | virtual void Expand( const wxDataViewItem & item ) = 0; |
542 | virtual void Collapse( const wxDataViewItem & item ) = 0; | |
543 | ||
6154212e | 544 | virtual void EnsureVisible( const wxDataViewItem & item, |
fbda518c | 545 | const wxDataViewColumn *column = NULL ) = 0; |
a87b466d | 546 | virtual void HitTest( const wxPoint & point, wxDataViewItem &item, wxDataViewColumn* &column ) const = 0; |
fbda518c | 547 | virtual wxRect GetItemRect( const wxDataViewItem & item, const wxDataViewColumn *column = NULL ) const = 0; |
b7e9f8b1 | 548 | |
3b6280be RR |
549 | protected: |
550 | virtual void DoSetExpanderColumn() = 0 ; | |
551 | virtual void DoSetIndent() = 0; | |
552 | ||
239eaa41 | 553 | private: |
e0062c04 | 554 | wxDataViewModel *m_model; |
1b27b2bd | 555 | wxDataViewColumn *m_expander_column; |
3b6280be RR |
556 | int m_indent ; |
557 | ||
239eaa41 | 558 | protected: |
260b9be7 | 559 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCtrlBase) |
239eaa41 | 560 | }; |
bcd846ea | 561 | |
eb7f97f8 RR |
562 | // ---------------------------------------------------------------------------- |
563 | // wxDataViewEvent - the event class for the wxDataViewCtrl notifications | |
564 | // ---------------------------------------------------------------------------- | |
565 | ||
2f799ae8 | 566 | class WXDLLIMPEXP_ADV wxDataViewEvent : public wxNotifyEvent |
eb7f97f8 RR |
567 | { |
568 | public: | |
569 | wxDataViewEvent(wxEventType commandType = wxEVT_NULL, int winid = 0) | |
570 | : wxNotifyEvent(commandType, winid), | |
e0062c04 | 571 | m_item(0), |
eb7f97f8 | 572 | m_col(-1), |
eb7f97f8 RR |
573 | m_model(NULL), |
574 | m_value(wxNullVariant), | |
31fb32e1 | 575 | m_column(NULL) |
eb7f97f8 RR |
576 | { } |
577 | ||
578 | wxDataViewEvent(const wxDataViewEvent& event) | |
579 | : wxNotifyEvent(event), | |
e0062c04 | 580 | m_item(event.m_item), |
eb7f97f8 | 581 | m_col(event.m_col), |
eb7f97f8 RR |
582 | m_model(event.m_model), |
583 | m_value(event.m_value), | |
31fb32e1 | 584 | m_column(event.m_column) |
eb7f97f8 RR |
585 | { } |
586 | ||
e0062c04 RR |
587 | wxDataViewItem GetItem() const { return m_item; } |
588 | void SetItem( const wxDataViewItem &item ) { m_item = item; } | |
589 | ||
eb7f97f8 RR |
590 | int GetColumn() const { return m_col; } |
591 | void SetColumn( int col ) { m_col = col; } | |
9861f022 | 592 | |
eb7f97f8 RR |
593 | wxDataViewModel* GetModel() const { return m_model; } |
594 | void SetModel( wxDataViewModel *model ) { m_model = model; } | |
9861f022 | 595 | |
eb7f97f8 RR |
596 | const wxVariant &GetValue() const { return m_value; } |
597 | void SetValue( const wxVariant &value ) { m_value = value; } | |
598 | ||
31fb32e1 RR |
599 | // for wxEVT_DATAVIEW_COLUMN_HEADER_CLICKED only |
600 | void SetDataViewColumn( wxDataViewColumn *col ) { m_column = col; } | |
9861f022 | 601 | wxDataViewColumn *GetDataViewColumn() const { return m_column; } |
31fb32e1 | 602 | |
eb7f97f8 RR |
603 | virtual wxEvent *Clone() const { return new wxDataViewEvent(*this); } |
604 | ||
605 | protected: | |
e0062c04 | 606 | wxDataViewItem m_item; |
eb7f97f8 | 607 | int m_col; |
eb7f97f8 RR |
608 | wxDataViewModel *m_model; |
609 | wxVariant m_value; | |
31fb32e1 | 610 | wxDataViewColumn *m_column; |
eb7f97f8 RR |
611 | |
612 | private: | |
613 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewEvent) | |
614 | }; | |
615 | ||
616 | BEGIN_DECLARE_EVENT_TYPES() | |
d86c1870 RR |
617 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_SELECTION_CHANGED, -1) |
618 | ||
e0062c04 | 619 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_ACTIVATED, -1) |
d209a914 RR |
620 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSED, -1) |
621 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED, -1) | |
6977c3bf RR |
622 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING, -1) |
623 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING, -1) | |
e0000f94 RR |
624 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_STARTED, -1) |
625 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_EDITING_DONE, -1) | |
6608fdab | 626 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, -1) |
e0000f94 | 627 | |
e07c1146 PC |
628 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, -1) |
629 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK, -1) | |
c0a66d92 | 630 | DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_COLUMN_SORTED, -1) |
eb7f97f8 RR |
631 | END_DECLARE_EVENT_TYPES() |
632 | ||
633 | typedef void (wxEvtHandler::*wxDataViewEventFunction)(wxDataViewEvent&); | |
634 | ||
635 | #define wxDataViewEventHandler(func) \ | |
636 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxDataViewEventFunction, &func) | |
637 | ||
638 | #define wx__DECLARE_DATAVIEWEVT(evt, id, fn) \ | |
639 | wx__DECLARE_EVT1(wxEVT_COMMAND_DATAVIEW_ ## evt, id, wxDataViewEventHandler(fn)) | |
640 | ||
d86c1870 RR |
641 | #define EVT_DATAVIEW_SELECTION_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(SELECTION_CHANGED, id, fn) |
642 | ||
e0062c04 | 643 | #define EVT_DATAVIEW_ITEM_ACTIVATED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_ACTIVATED, id, fn) |
6977c3bf | 644 | #define EVT_DATAVIEW_ITEM_COLLAPSING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSING, id, fn) |
3ecb8a53 | 645 | #define EVT_DATAVIEW_ITEM_COLLAPSED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_COLLAPSED, id, fn) |
6977c3bf | 646 | #define EVT_DATAVIEW_ITEM_EXPANDING(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDING, id, fn) |
3ecb8a53 | 647 | #define EVT_DATAVIEW_ITEM_EXPANDED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EXPANDED, id, fn) |
e0000f94 RR |
648 | #define EVT_DATAVIEW_ITEM_EDITING_STARTED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_STARTED, id, fn) |
649 | #define EVT_DATAVIEW_ITEM_EDITING_DONE(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_EDITING_DONE, id, fn) | |
6608fdab | 650 | #define EVT_DATAVIEW_ITEM_VALUE_CHANGED(id, fn) wx__DECLARE_DATAVIEWEVT(ITEM_VALUE_CHANGED, id, fn) |
e0000f94 | 651 | |
31fb32e1 RR |
652 | #define EVT_DATAVIEW_COLUMN_HEADER_CLICK(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_CLICK, id, fn) |
653 | #define EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_RIGHT_CLICK, id, fn) | |
c0a66d92 | 654 | #define EVT_DATAVIEW_COLUMN_SORTED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_SORTED, id, fn) |
eb7f97f8 | 655 | |
4ed7af08 RR |
656 | #if defined(wxUSE_GENERICDATAVIEWCTRL) |
657 | #include "wx/generic/dataview.h" | |
658 | #elif defined(__WXGTK20__) | |
bcd846ea RR |
659 | #include "wx/gtk/dataview.h" |
660 | #elif defined(__WXMAC__) | |
c0a66d92 | 661 | #include "wx/mac/dataview.h" |
bcd846ea RR |
662 | #else |
663 | #include "wx/generic/dataview.h" | |
664 | #endif | |
665 | ||
e94d0c1e RR |
666 | //----------------------------------------------------------------------------- |
667 | // wxDataViewTreeStore | |
668 | //----------------------------------------------------------------------------- | |
669 | ||
670 | class WXDLLIMPEXP_ADV wxDataViewTreeStoreNode | |
671 | { | |
672 | public: | |
673 | wxDataViewTreeStoreNode( wxDataViewTreeStoreNode *parent, | |
674 | const wxString &text, const wxIcon &icon = wxNullIcon, wxClientData *data = NULL ); | |
675 | virtual ~wxDataViewTreeStoreNode(); | |
676 | ||
677 | void SetText( const wxString &text ) | |
678 | { m_text = text; } | |
679 | wxString GetText() const | |
680 | { return m_text; } | |
681 | void SetIcon( const wxIcon &icon ) | |
682 | { m_icon = icon; } | |
683 | const wxIcon &GetIcon() const | |
684 | { return m_icon; } | |
685 | void SetData( wxClientData *data ) | |
686 | { if (m_data) delete m_data; m_data = data; } | |
687 | wxClientData *GetData() const | |
688 | { return m_data; } | |
689 | ||
690 | wxDataViewItem GetItem() const | |
691 | { return wxDataViewItem( (void*) this ); } | |
692 | ||
693 | virtual bool IsContainer() | |
694 | { return false; } | |
695 | ||
696 | wxDataViewTreeStoreNode *GetParent() | |
697 | { return m_parent; } | |
698 | ||
699 | private: | |
700 | wxDataViewTreeStoreNode *m_parent; | |
701 | wxString m_text; | |
702 | wxIcon m_icon; | |
703 | wxClientData *m_data; | |
704 | }; | |
705 | ||
706 | WX_DECLARE_LIST_WITH_DECL(wxDataViewTreeStoreNode, wxDataViewTreeStoreNodeList, | |
707 | class WXDLLIMPEXP_ADV); | |
708 | ||
709 | class WXDLLIMPEXP_ADV wxDataViewTreeStoreContainerNode: public wxDataViewTreeStoreNode | |
710 | { | |
711 | public: | |
712 | wxDataViewTreeStoreContainerNode( wxDataViewTreeStoreNode *parent, | |
713 | const wxString &text, const wxIcon &icon = wxNullIcon, const wxIcon &expanded = wxNullIcon, | |
714 | wxClientData *data = NULL ); | |
715 | virtual ~wxDataViewTreeStoreContainerNode(); | |
716 | ||
717 | const wxDataViewTreeStoreNodeList &GetChildren() const | |
718 | { return m_children; } | |
719 | wxDataViewTreeStoreNodeList &GetChildren() | |
720 | { return m_children; } | |
721 | ||
722 | void SetExpandedIcon( const wxIcon &icon ) | |
723 | { m_iconExpanded = icon; } | |
724 | const wxIcon &GetExpandedIcon() const | |
725 | { return m_iconExpanded; } | |
726 | ||
727 | virtual bool IsContainer() | |
728 | { return true; } | |
729 | ||
730 | private: | |
731 | wxDataViewTreeStoreNodeList m_children; | |
732 | wxIcon m_iconExpanded; | |
733 | }; | |
734 | ||
735 | //----------------------------------------------------------------------------- | |
736 | ||
737 | class WXDLLIMPEXP_ADV wxDataViewTreeStore: public wxDataViewModel | |
738 | { | |
739 | public: | |
740 | wxDataViewTreeStore(); | |
741 | ~wxDataViewTreeStore(); | |
742 | ||
743 | wxDataViewItem AppendItem( const wxDataViewItem& parent, | |
744 | const wxString &text, const wxIcon &icon = wxNullIcon, wxClientData *data = NULL ); | |
745 | wxDataViewItem PrependItem( const wxDataViewItem& parent, | |
746 | const wxString &text, const wxIcon &icon = wxNullIcon, wxClientData *data = NULL ); | |
747 | wxDataViewItem InsertItem( const wxDataViewItem& parent, const wxDataViewItem& previous, | |
748 | const wxString &text, const wxIcon &icon = wxNullIcon, wxClientData *data = NULL ); | |
749 | ||
750 | wxDataViewItem PrependContainer( const wxDataViewItem& parent, | |
751 | const wxString &text, const wxIcon &icon = wxNullIcon, const wxIcon &expanded = wxNullIcon, | |
752 | wxClientData *data = NULL ); | |
753 | wxDataViewItem AppendContainer( const wxDataViewItem& parent, | |
754 | const wxString &text, const wxIcon &icon = wxNullIcon, const wxIcon &expanded = wxNullIcon, | |
755 | wxClientData *data = NULL ); | |
756 | wxDataViewItem InsertContainer( const wxDataViewItem& parent, const wxDataViewItem& previous, | |
757 | const wxString &text, const wxIcon &icon = wxNullIcon, const wxIcon &expanded = wxNullIcon, | |
758 | wxClientData *data = NULL ); | |
759 | ||
760 | wxDataViewItem GetNthChild( const wxDataViewItem& parent, unsigned int pos ) const; | |
761 | int GetChildCount( const wxDataViewItem& parent ) const; | |
762 | ||
763 | void SetItemText( const wxDataViewItem& item, const wxString &text ); | |
764 | wxString GetItemText( const wxDataViewItem& item ) const; | |
765 | void SetItemIcon( const wxDataViewItem& item, const wxIcon &icon ); | |
766 | const wxIcon &GetItemIcon( const wxDataViewItem& item ) const; | |
767 | void SetItemExpandedIcon( const wxDataViewItem& item, const wxIcon &icon ); | |
768 | const wxIcon &GetItemExpandedIcon( const wxDataViewItem& item ) const; | |
769 | void SetItemData( const wxDataViewItem& item, wxClientData *data ); | |
770 | wxClientData *GetItemData( const wxDataViewItem& item ) const; | |
771 | ||
772 | void DeleteItem( const wxDataViewItem& item ); | |
773 | void DeleteChildren( const wxDataViewItem& item ); | |
774 | void DeleteAllItems(); | |
775 | ||
776 | // implement base methods | |
777 | ||
778 | virtual void GetValue( wxVariant &variant, | |
779 | const wxDataViewItem &item, unsigned int col ) const; | |
780 | virtual bool SetValue( const wxVariant &variant, | |
781 | const wxDataViewItem &item, unsigned int col ); | |
782 | virtual wxDataViewItem GetParent( const wxDataViewItem &item ) const; | |
783 | virtual bool IsContainer( const wxDataViewItem &item ) const; | |
784 | virtual unsigned int GetChildren( const wxDataViewItem &item, wxDataViewItemArray &children ) const; | |
785 | ||
786 | virtual int Compare( const wxDataViewItem &item1, const wxDataViewItem &item2, | |
787 | unsigned int column, bool ascending ); | |
788 | ||
789 | virtual bool HasDefaultCompare() const | |
790 | { return true; } | |
791 | virtual unsigned int GetColumnCount() const | |
792 | { return 1; }; | |
793 | virtual wxString GetColumnType( unsigned int WXUNUSED(col) ) const | |
794 | { return "wxDataViewIconText"; } | |
795 | ||
796 | wxDataViewTreeStoreNode *FindNode( const wxDataViewItem &item ) const; | |
797 | wxDataViewTreeStoreContainerNode *FindContainerNode( const wxDataViewItem &item ) const; | |
798 | wxDataViewTreeStoreNode *GetRoot() const { return m_root; } | |
799 | ||
800 | public: | |
801 | wxDataViewTreeStoreNode *m_root; | |
802 | }; | |
803 | ||
804 | #if 0 | |
805 | class WXDLLIMPEXP_ADV wxDataViewTreeCtrl: public wxDataViewCtrl | |
806 | { | |
807 | public: | |
808 | wxDataViewCtrl( wxWindow *parent, wxWindowID id, | |
809 | const wxPoint& pos = wxDefaultPosition, | |
810 | const wxSize& size = wxDefaultSize, long style = wxDV_NO_HEADER, | |
811 | const wxValidator& validator = wxDefaultValidator ); | |
812 | ||
813 | bool Create( wxWindow *parent, wxWindowID id, | |
814 | const wxPoint& pos = wxDefaultPosition, | |
815 | const wxSize& size = wxDefaultSize, long style = wxDV_NO_HEADER, | |
816 | const wxValidator& validator = wxDefaultValidator ); | |
817 | ||
818 | wxDataViewTreeStore *GetStore() | |
819 | { return (wxDataViewTreeStore*) GetModel(); } | |
820 | ||
821 | void OnExpand( wxDataViewCtrl &event ); | |
822 | void OnCollapse( wxDataViewCtrl &event ); | |
823 | ||
824 | private: | |
825 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewTreeCtrl) | |
826 | }; | |
827 | #endif | |
828 | ||
bcd846ea RR |
829 | #endif // wxUSE_DATAVIEWCTRL |
830 | ||
831 | #endif | |
832 | // _WX_DATAVIEW_H_BASE_ |