]>
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" |
4ed7af08 | 20 | |
b5dbe15d VS |
21 | class WXDLLIMPEXP_FWD_ADV wxDataViewMainWindow; |
22 | class WXDLLIMPEXP_FWD_ADV wxDataViewHeaderWindow; | |
4ed7af08 | 23 | |
f554a14b | 24 | // --------------------------------------------------------- |
4ed7af08 | 25 | // wxDataViewColumn |
f554a14b | 26 | // --------------------------------------------------------- |
4ed7af08 | 27 | |
56873923 | 28 | class WXDLLIMPEXP_ADV wxDataViewColumn : public wxDataViewColumnBase |
4ed7af08 RR |
29 | { |
30 | public: | |
e2bfe673 VZ |
31 | wxDataViewColumn(const wxString& title, |
32 | wxDataViewRenderer *renderer, | |
33 | unsigned int model_column, | |
34 | int width = wxDVC_DEFAULT_WIDTH, | |
35 | wxAlignment align = wxALIGN_CENTER, | |
36 | int flags = wxDATAVIEW_COL_RESIZABLE) | |
37 | : wxDataViewColumnBase(renderer, model_column), | |
38 | m_title(title) | |
39 | { | |
40 | Init(width, align, flags); | |
41 | } | |
42 | ||
43 | wxDataViewColumn(const wxBitmap& bitmap, | |
44 | wxDataViewRenderer *renderer, | |
45 | unsigned int model_column, | |
46 | int width = wxDVC_DEFAULT_WIDTH, | |
47 | wxAlignment align = wxALIGN_CENTER, | |
48 | int flags = wxDATAVIEW_COL_RESIZABLE) | |
49 | : wxDataViewColumnBase(bitmap, renderer, model_column) | |
50 | { | |
51 | Init(width, align, flags); | |
52 | } | |
53 | ||
54 | // implement wxHeaderColumnBase methods | |
55 | virtual void SetTitle(const wxString& title) { m_title = title; } | |
56 | virtual wxString GetTitle() const { return m_title; } | |
57 | ||
58 | virtual void SetWidth(int width) { m_width = width; } | |
59 | virtual int GetWidth() const { return m_width; } | |
60 | ||
61 | virtual void SetMinWidth(int minWidth) { m_minWidth = minWidth; } | |
62 | virtual int GetMinWidth() const { return m_minWidth; } | |
63 | ||
64 | virtual void SetAlignment(wxAlignment align) { m_align = align; } | |
65 | virtual wxAlignment GetAlignment() const { return m_align; } | |
66 | ||
67 | virtual void SetFlags(int flags) { m_flags = flags; } | |
68 | virtual int GetFlags() const { return m_flags; } | |
69 | ||
70 | virtual void SetAsSortKey(bool sort = true) { m_sort = sort; } | |
71 | virtual bool IsSortKey() const { return m_sort; } | |
72 | ||
73 | virtual void SetSortOrder(bool ascending) { m_sortAscending = ascending; } | |
74 | virtual bool IsSortOrderAscending() const { return m_sortAscending; } | |
4ed7af08 | 75 | |
56873923 | 76 | private: |
e2bfe673 VZ |
77 | // common part of all ctors |
78 | void Init(int width, wxAlignment align, int flags) | |
79 | { | |
80 | m_width = width == wxCOL_WIDTH_DEFAULT ? wxDVC_DEFAULT_WIDTH : width; | |
81 | m_minWidth = 0; | |
82 | m_align = align; | |
83 | m_flags = flags; | |
84 | m_sort = false; | |
85 | m_sortAscending = true; | |
86 | } | |
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, | |
f554a14b | 126 | const wxValidator& validator = wxDefaultValidator ) |
938161a6 | 127 | : wxScrollHelper(this) |
4ed7af08 RR |
128 | { |
129 | Create(parent, id, pos, size, style, validator ); | |
130 | } | |
131 | ||
132 | virtual ~wxDataViewCtrl(); | |
133 | ||
134 | void Init(); | |
135 | ||
136 | bool Create(wxWindow *parent, wxWindowID id, | |
bc4f1ff2 FM |
137 | const wxPoint& pos = wxDefaultPosition, |
138 | const wxSize& size = wxDefaultSize, long style = 0, | |
139 | const wxValidator& validator = wxDefaultValidator ); | |
4ed7af08 | 140 | |
aba9bfd0 | 141 | virtual bool AssociateModel( wxDataViewModel *model ); |
e2bfe673 | 142 | |
4ed7af08 | 143 | virtual bool AppendColumn( wxDataViewColumn *col ); |
736fe67c | 144 | virtual bool PrependColumn( wxDataViewColumn *col ); |
19723525 | 145 | virtual bool InsertColumn( unsigned int pos, wxDataViewColumn *col ); |
f554a14b | 146 | |
3b6280be RR |
147 | virtual void DoSetExpanderColumn(); |
148 | virtual void DoSetIndent(); | |
149 | ||
afebb87b RR |
150 | virtual unsigned int GetColumnCount() const; |
151 | virtual wxDataViewColumn* GetColumn( unsigned int pos ) const; | |
152 | virtual bool DeleteColumn( wxDataViewColumn *column ); | |
153 | virtual bool ClearColumns(); | |
453091c2 | 154 | virtual int GetColumnPosition( const wxDataViewColumn *column ) const; |
afebb87b | 155 | |
21f47fb9 | 156 | virtual wxDataViewColumn *GetSortingColumn() const; |
e2bfe673 | 157 | |
fbda518c | 158 | virtual wxDataViewItem GetSelection() const; |
b7e9f8b1 RR |
159 | virtual int GetSelections( wxDataViewItemArray & sel ) const; |
160 | virtual void SetSelections( const wxDataViewItemArray & sel ); | |
161 | virtual void Select( const wxDataViewItem & item ); | |
162 | virtual void Unselect( const wxDataViewItem & item ); | |
163 | virtual bool IsSelected( const wxDataViewItem & item ) const; | |
164 | ||
66e09788 RR |
165 | virtual void SelectAll(); |
166 | virtual void UnselectAll(); | |
167 | ||
168 | virtual void EnsureVisible( const wxDataViewItem & item, | |
fbda518c | 169 | const wxDataViewColumn *column = NULL ); |
03647350 | 170 | virtual void HitTest( const wxPoint & point, wxDataViewItem & item, |
bc4f1ff2 | 171 | wxDataViewColumn* &column ) const; |
03647350 | 172 | virtual wxRect GetItemRect( const wxDataViewItem & item, |
bc4f1ff2 | 173 | const wxDataViewColumn *column = NULL ) const; |
66e09788 | 174 | |
afebb87b RR |
175 | virtual void Expand( const wxDataViewItem & item ); |
176 | virtual void Collapse( const wxDataViewItem & item ); | |
739a8399 | 177 | virtual bool IsExpanded( const wxDataViewItem & item ) const; |
e2bfe673 | 178 | |
788432e3 | 179 | virtual void SetFocus(); |
9adeb77a VZ |
180 | |
181 | #if wxUSE_DRAG_AND_DROP | |
821baf7d RR |
182 | virtual bool EnableDragSource( const wxDataFormat &format ); |
183 | virtual bool EnableDropTarget( const wxDataFormat &format ); | |
9adeb77a | 184 | #endif // wxUSE_DRAG_AND_DROP |
afebb87b | 185 | |
3fdf86f9 RR |
186 | virtual wxBorder GetDefaultBorder() const; |
187 | ||
c937344c RR |
188 | void StartEditor( const wxDataViewItem & item, unsigned int column ); |
189 | ||
66e09788 | 190 | protected: |
e2bfe673 | 191 | virtual int GetSelections( wxArrayInt & sel ) const; |
b7e9f8b1 RR |
192 | virtual void SetSelections( const wxArrayInt & sel ); |
193 | virtual void Select( int row ); | |
194 | virtual void Unselect( int row ); | |
195 | virtual bool IsSelected( int row ) const; | |
196 | virtual void SelectRange( int from, int to ); | |
197 | virtual void UnselectRange( int from, int to ); | |
198 | ||
fbda518c | 199 | virtual void EnsureVisible( int row, int column ); |
b7e9f8b1 RR |
200 | |
201 | virtual wxDataViewItem GetItemByRow( unsigned int row ) const; | |
202 | virtual int GetRowByItem( const wxDataViewItem & item ) const; | |
203 | ||
46234a03 VZ |
204 | int GetSortingColumnIndex() const { return m_sortingColumnIdx; } |
205 | void SetSortingColumnIndex(int idx) { m_sortingColumnIdx = idx; } | |
6ff7eee7 | 206 | |
9861f022 RR |
207 | public: // utility functions not part of the API |
208 | ||
87f0efe2 | 209 | // returns the "best" width for the idx-th column |
9861f022 | 210 | unsigned int GetBestColumnWidth(int WXUNUSED(idx)) const |
87f0efe2 | 211 | { |
9861f022 | 212 | return GetClientSize().GetWidth() / GetColumnCount(); |
87f0efe2 RR |
213 | } |
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 | ||
4ed7af08 | 232 | private: |
ad386793 RR |
233 | wxDataViewColumnList m_cols; |
234 | wxDataViewModelNotifier *m_notifier; | |
235 | wxDataViewMainWindow *m_clientArea; | |
236 | wxDataViewHeaderWindow *m_headerArea; | |
46234a03 VZ |
237 | |
238 | // the index of the column currently used for sorting or -1 | |
239 | int m_sortingColumnIdx; | |
f554a14b | 240 | |
4ed7af08 | 241 | private: |
4b3feaa7 | 242 | void OnSize( wxSizeEvent &event ); |
2571a33f | 243 | virtual wxSize GetSizeAvailableForScrollTarget(const wxSize& size); |
f554a14b | 244 | |
4ed7af08 RR |
245 | // we need to return a special WM_GETDLGCODE value to process just the |
246 | // arrows but let the other navigation characters through | |
247 | #ifdef __WXMSW__ | |
248 | virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); | |
249 | #endif // __WXMSW__ | |
250 | ||
251 | WX_FORWARD_TO_SCROLL_HELPER() | |
4b3feaa7 | 252 | |
4ed7af08 RR |
253 | private: |
254 | DECLARE_DYNAMIC_CLASS(wxDataViewCtrl) | |
c0c133e1 | 255 | wxDECLARE_NO_COPY_CLASS(wxDataViewCtrl); |
4b3feaa7 | 256 | DECLARE_EVENT_TABLE() |
4ed7af08 RR |
257 | }; |
258 | ||
259 | ||
260 | #endif // __GENERICDATAVIEWCTRLH__ |