]>
Commit | Line | Data |
---|---|---|
4ed7af08 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/generic/dataview.h | |
3 | // Purpose: wxDataViewCtrl generic implementation header | |
4 | // Author: Robert Roebling | |
b7e9f8b1 | 5 | // Modified By: Bo Yang |
4ed7af08 RR |
6 | // Id: $Id$ |
7 | // Copyright: (c) 1998 Robert Roebling | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef __GENERICDATAVIEWCTRLH__ | |
12 | #define __GENERICDATAVIEWCTRLH__ | |
13 | ||
14 | #include "wx/defs.h" | |
15 | #include "wx/object.h" | |
16 | #include "wx/list.h" | |
17 | #include "wx/control.h" | |
9d14de69 | 18 | #include "wx/scrolwin.h" |
2586d4a1 | 19 | #include "wx/icon.h" |
d0154e3a | 20 | #include "wx/vector.h" |
4ed7af08 | 21 | |
b5dbe15d VS |
22 | class WXDLLIMPEXP_FWD_ADV wxDataViewMainWindow; |
23 | class WXDLLIMPEXP_FWD_ADV wxDataViewHeaderWindow; | |
4ed7af08 | 24 | |
f554a14b | 25 | // --------------------------------------------------------- |
4ed7af08 | 26 | // wxDataViewColumn |
f554a14b | 27 | // --------------------------------------------------------- |
4ed7af08 | 28 | |
56873923 | 29 | class WXDLLIMPEXP_ADV wxDataViewColumn : public wxDataViewColumnBase |
4ed7af08 RR |
30 | { |
31 | public: | |
e2bfe673 VZ |
32 | wxDataViewColumn(const wxString& title, |
33 | wxDataViewRenderer *renderer, | |
34 | unsigned int model_column, | |
35 | int width = wxDVC_DEFAULT_WIDTH, | |
36 | wxAlignment align = wxALIGN_CENTER, | |
37 | int flags = wxDATAVIEW_COL_RESIZABLE) | |
38 | : wxDataViewColumnBase(renderer, model_column), | |
39 | m_title(title) | |
40 | { | |
41 | Init(width, align, flags); | |
42 | } | |
43 | ||
44 | wxDataViewColumn(const wxBitmap& bitmap, | |
45 | wxDataViewRenderer *renderer, | |
46 | unsigned int model_column, | |
47 | int width = wxDVC_DEFAULT_WIDTH, | |
48 | wxAlignment align = wxALIGN_CENTER, | |
49 | int flags = wxDATAVIEW_COL_RESIZABLE) | |
50 | : wxDataViewColumnBase(bitmap, renderer, model_column) | |
51 | { | |
52 | Init(width, align, flags); | |
53 | } | |
54 | ||
55 | // implement wxHeaderColumnBase methods | |
5d9e1605 | 56 | virtual void SetTitle(const wxString& title) { m_title = title; UpdateDisplay(); } |
e2bfe673 VZ |
57 | virtual wxString GetTitle() const { return m_title; } |
58 | ||
5d9e1605 | 59 | virtual void SetWidth(int width) { m_width = width; UpdateDisplay(); } |
d0154e3a | 60 | virtual int GetWidth() const; |
e2bfe673 | 61 | |
5d9e1605 | 62 | virtual void SetMinWidth(int minWidth) { m_minWidth = minWidth; UpdateDisplay(); } |
e2bfe673 VZ |
63 | virtual int GetMinWidth() const { return m_minWidth; } |
64 | ||
5d9e1605 | 65 | virtual void SetAlignment(wxAlignment align) { m_align = align; UpdateDisplay(); } |
e2bfe673 VZ |
66 | virtual wxAlignment GetAlignment() const { return m_align; } |
67 | ||
5d9e1605 | 68 | virtual void SetFlags(int flags) { m_flags = flags; UpdateDisplay(); } |
e2bfe673 VZ |
69 | virtual int GetFlags() const { return m_flags; } |
70 | ||
e2bfe673 VZ |
71 | virtual bool IsSortKey() const { return m_sort; } |
72 | ||
aadbdd16 VZ |
73 | virtual void UnsetAsSortKey() { m_sort = false; UpdateDisplay(); } |
74 | ||
15b8afdc | 75 | virtual void SetSortOrder(bool ascending); |
aadbdd16 | 76 | |
e2bfe673 | 77 | virtual bool IsSortOrderAscending() const { return m_sortAscending; } |
4ed7af08 | 78 | |
5d9e1605 RR |
79 | virtual void SetBitmap( const wxBitmap& bitmap ) { wxDataViewColumnBase::SetBitmap(bitmap); UpdateDisplay(); } |
80 | ||
81 | ||
56873923 | 82 | private: |
e2bfe673 | 83 | // common part of all ctors |
5d9e1605 | 84 | void Init(int width, wxAlignment align, int flags); |
ce00f59b | 85 | |
5d9e1605 | 86 | void UpdateDisplay(); |
e2bfe673 | 87 | |
e2bfe673 VZ |
88 | wxString m_title; |
89 | int m_width, | |
90 | m_minWidth; | |
91 | wxAlignment m_align; | |
92 | int m_flags; | |
93 | bool m_sort, | |
94 | m_sortAscending; | |
95 | ||
56873923 VZ |
96 | friend class wxDataViewHeaderWindowBase; |
97 | friend class wxDataViewHeaderWindow; | |
98 | friend class wxDataViewHeaderWindowMSW; | |
4ed7af08 RR |
99 | }; |
100 | ||
f554a14b | 101 | // --------------------------------------------------------- |
4ed7af08 | 102 | // wxDataViewCtrl |
f554a14b | 103 | // --------------------------------------------------------- |
4ed7af08 | 104 | |
4660b556 VZ |
105 | WX_DECLARE_LIST_WITH_DECL(wxDataViewColumn, wxDataViewColumnList, |
106 | class WXDLLIMPEXP_ADV); | |
afebb87b | 107 | |
938161a6 VZ |
108 | class WXDLLIMPEXP_ADV wxDataViewCtrl : public wxDataViewCtrlBase, |
109 | public wxScrollHelper | |
4ed7af08 | 110 | { |
87f0efe2 RR |
111 | friend class wxDataViewMainWindow; |
112 | friend class wxDataViewHeaderWindowBase; | |
113 | friend class wxDataViewHeaderWindow; | |
114 | friend class wxDataViewHeaderWindowMSW; | |
9861f022 | 115 | friend class wxDataViewColumn; |
87f0efe2 | 116 | |
4ed7af08 | 117 | public: |
938161a6 | 118 | wxDataViewCtrl() : wxScrollHelper(this) |
4ed7af08 RR |
119 | { |
120 | Init(); | |
121 | } | |
f554a14b | 122 | |
4ed7af08 RR |
123 | wxDataViewCtrl( wxWindow *parent, wxWindowID id, |
124 | const wxPoint& pos = wxDefaultPosition, | |
125 | const wxSize& size = wxDefaultSize, long style = 0, | |
62e9285a | 126 | const wxValidator& validator = wxDefaultValidator, |
346f3fd6 | 127 | const wxString& name = wxDataViewCtrlNameStr ) |
938161a6 | 128 | : wxScrollHelper(this) |
4ed7af08 | 129 | { |
62e9285a | 130 | Create(parent, id, pos, size, style, validator, name); |
4ed7af08 RR |
131 | } |
132 | ||
133 | virtual ~wxDataViewCtrl(); | |
134 | ||
135 | void Init(); | |
136 | ||
137 | bool Create(wxWindow *parent, wxWindowID id, | |
bc4f1ff2 FM |
138 | const wxPoint& pos = wxDefaultPosition, |
139 | const wxSize& size = wxDefaultSize, long style = 0, | |
62e9285a VZ |
140 | const wxValidator& validator = wxDefaultValidator, |
141 | const wxString& name = wxDataViewCtrlNameStr); | |
4ed7af08 | 142 | |
aba9bfd0 | 143 | virtual bool AssociateModel( wxDataViewModel *model ); |
e2bfe673 | 144 | |
4ed7af08 | 145 | virtual bool AppendColumn( wxDataViewColumn *col ); |
736fe67c | 146 | virtual bool PrependColumn( wxDataViewColumn *col ); |
19723525 | 147 | virtual bool InsertColumn( unsigned int pos, wxDataViewColumn *col ); |
f554a14b | 148 | |
3b6280be RR |
149 | virtual void DoSetExpanderColumn(); |
150 | virtual void DoSetIndent(); | |
151 | ||
afebb87b RR |
152 | virtual unsigned int GetColumnCount() const; |
153 | virtual wxDataViewColumn* GetColumn( unsigned int pos ) const; | |
154 | virtual bool DeleteColumn( wxDataViewColumn *column ); | |
155 | virtual bool ClearColumns(); | |
453091c2 | 156 | virtual int GetColumnPosition( const wxDataViewColumn *column ) const; |
afebb87b | 157 | |
21f47fb9 | 158 | virtual wxDataViewColumn *GetSortingColumn() const; |
e2bfe673 | 159 | |
fa93d732 | 160 | virtual int GetSelectedItemsCount() const; |
b7e9f8b1 RR |
161 | virtual int GetSelections( wxDataViewItemArray & sel ) const; |
162 | virtual void SetSelections( const wxDataViewItemArray & sel ); | |
163 | virtual void Select( const wxDataViewItem & item ); | |
164 | virtual void Unselect( const wxDataViewItem & item ); | |
165 | virtual bool IsSelected( const wxDataViewItem & item ) const; | |
166 | ||
66e09788 RR |
167 | virtual void SelectAll(); |
168 | virtual void UnselectAll(); | |
169 | ||
170 | virtual void EnsureVisible( const wxDataViewItem & item, | |
fbda518c | 171 | const wxDataViewColumn *column = NULL ); |
03647350 | 172 | virtual void HitTest( const wxPoint & point, wxDataViewItem & item, |
bc4f1ff2 | 173 | wxDataViewColumn* &column ) const; |
03647350 | 174 | virtual wxRect GetItemRect( const wxDataViewItem & item, |
bc4f1ff2 | 175 | const wxDataViewColumn *column = NULL ) const; |
66e09788 | 176 | |
bbfd4548 VZ |
177 | virtual bool SetRowHeight( int rowHeight ); |
178 | ||
afebb87b RR |
179 | virtual void Expand( const wxDataViewItem & item ); |
180 | virtual void Collapse( const wxDataViewItem & item ); | |
739a8399 | 181 | virtual bool IsExpanded( const wxDataViewItem & item ) const; |
e2bfe673 | 182 | |
788432e3 | 183 | virtual void SetFocus(); |
9adeb77a VZ |
184 | |
185 | #if wxUSE_DRAG_AND_DROP | |
821baf7d RR |
186 | virtual bool EnableDragSource( const wxDataFormat &format ); |
187 | virtual bool EnableDropTarget( const wxDataFormat &format ); | |
9adeb77a | 188 | #endif // wxUSE_DRAG_AND_DROP |
afebb87b | 189 | |
3fdf86f9 RR |
190 | virtual wxBorder GetDefaultBorder() const; |
191 | ||
907f09f4 | 192 | virtual void EditItem(const wxDataViewItem& item, const wxDataViewColumn *column); |
c937344c | 193 | |
4bdc891f VZ |
194 | // These methods are specific to generic wxDataViewCtrl implementation and |
195 | // should not be used in portable code. | |
196 | wxColour GetAlternateRowColour() const { return m_alternateRowColour; } | |
197 | void SetAlternateRowColour(const wxColour& colour); | |
198 | ||
66e09788 | 199 | protected: |
fbda518c | 200 | virtual void EnsureVisible( int row, int column ); |
b7e9f8b1 | 201 | |
b0272c60 VZ |
202 | // Notice that row here may be invalid (i.e. >= GetRowCount()), this is not |
203 | // an error and this function simply returns an invalid item in this case. | |
b7e9f8b1 RR |
204 | virtual wxDataViewItem GetItemByRow( unsigned int row ) const; |
205 | virtual int GetRowByItem( const wxDataViewItem & item ) const; | |
206 | ||
46234a03 VZ |
207 | int GetSortingColumnIndex() const { return m_sortingColumnIdx; } |
208 | void SetSortingColumnIndex(int idx) { m_sortingColumnIdx = idx; } | |
6ff7eee7 | 209 | |
9861f022 RR |
210 | public: // utility functions not part of the API |
211 | ||
87f0efe2 | 212 | // returns the "best" width for the idx-th column |
d0154e3a | 213 | unsigned int GetBestColumnWidth(int idx) const; |
87f0efe2 | 214 | |
fc8c1a15 RR |
215 | // called by header window after reorder |
216 | void ColumnMoved( wxDataViewColumn* col, unsigned int new_pos ); | |
217 | ||
aef252d9 VZ |
218 | // update the display after a change to an individual column |
219 | void OnColumnChange(unsigned int idx); | |
220 | ||
221 | // update after a change to the number of columns | |
222 | void OnColumnsCountChanged(); | |
87f0efe2 | 223 | |
1e510b1e | 224 | wxWindow *GetMainWindow() { return (wxWindow*) m_clientArea; } |
99d471a5 | 225 | |
702f5349 VZ |
226 | // return the index of the given column in m_cols |
227 | int GetColumnIndex(const wxDataViewColumn *column) const; | |
228 | ||
229 | // return the column displayed at the given position in the control | |
230 | wxDataViewColumn *GetColumnAt(unsigned int pos) const; | |
231 | ||
ee1377e1 VS |
232 | virtual wxDataViewColumn *GetCurrentColumn() const; |
233 | ||
bed74e48 VS |
234 | virtual void OnInternalIdle(); |
235 | ||
4ed7af08 | 236 | private: |
80ce465c VZ |
237 | virtual wxDataViewItem DoGetCurrentItem() const; |
238 | virtual void DoSetCurrentItem(const wxDataViewItem& item); | |
239 | ||
bed74e48 VS |
240 | void InvalidateColBestWidths(); |
241 | void InvalidateColBestWidth(int idx); | |
242 | void UpdateColWidths(); | |
d0154e3a | 243 | |
ad386793 | 244 | wxDataViewColumnList m_cols; |
840fc4d1 | 245 | // cached column best widths information, values are for |
d0154e3a | 246 | // respective columns from m_cols and the arrays have same size |
840fc4d1 VS |
247 | struct CachedColWidthInfo |
248 | { | |
249 | CachedColWidthInfo() : width(0), dirty(true) {} | |
250 | int width; // cached width or 0 if not computed | |
251 | bool dirty; // column was invalidated, header needs updating | |
252 | }; | |
253 | wxVector<CachedColWidthInfo> m_colsBestWidths; | |
254 | // This indicates that at least one entry in m_colsBestWidths has 'dirty' | |
255 | // flag set. It's cheaper to check one flag in OnInternalIdle() than to | |
256 | // iterate over m_colsBestWidths to check if anything needs to be done. | |
bed74e48 VS |
257 | bool m_colsDirty; |
258 | ||
ad386793 RR |
259 | wxDataViewModelNotifier *m_notifier; |
260 | wxDataViewMainWindow *m_clientArea; | |
261 | wxDataViewHeaderWindow *m_headerArea; | |
46234a03 | 262 | |
4bdc891f VZ |
263 | // user defined color to draw row lines, may be invalid |
264 | wxColour m_alternateRowColour; | |
265 | ||
46234a03 VZ |
266 | // the index of the column currently used for sorting or -1 |
267 | int m_sortingColumnIdx; | |
f554a14b | 268 | |
4ed7af08 | 269 | private: |
4b3feaa7 | 270 | void OnSize( wxSizeEvent &event ); |
2571a33f | 271 | virtual wxSize GetSizeAvailableForScrollTarget(const wxSize& size); |
f554a14b | 272 | |
4ed7af08 RR |
273 | // we need to return a special WM_GETDLGCODE value to process just the |
274 | // arrows but let the other navigation characters through | |
275 | #ifdef __WXMSW__ | |
276 | virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
277 | #endif // __WXMSW__ | |
278 | ||
279 | WX_FORWARD_TO_SCROLL_HELPER() | |
4b3feaa7 | 280 | |
4ed7af08 RR |
281 | private: |
282 | DECLARE_DYNAMIC_CLASS(wxDataViewCtrl) | |
c0c133e1 | 283 | wxDECLARE_NO_COPY_CLASS(wxDataViewCtrl); |
4b3feaa7 | 284 | DECLARE_EVENT_TABLE() |
4ed7af08 RR |
285 | }; |
286 | ||
287 | ||
288 | #endif // __GENERICDATAVIEWCTRLH__ |