]>
Commit | Line | Data |
---|---|---|
e86edab0 RR |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/osx/dataview.h | |
3 | // Purpose: wxDataViewCtrl native implementation header for OSX | |
4 | // Author: | |
5 | // Id: $Id$ | |
6 | // Copyright: (c) 2009 | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_DATAVIEWCTRL_OSX_H_ | |
11 | #define _WX_DATAVIEWCTRL_OSX_H_ | |
12 | ||
5c6eb3a8 SC |
13 | #ifdef __WXMAC_CLASSIC__ |
14 | # error "Native wxDataViewCtrl for classic environment not defined. Please use generic control." | |
5c6eb3a8 | 15 | #endif |
e86edab0 RR |
16 | |
17 | // -------------------------------------------------------- | |
18 | // Class declarations to mask native types | |
19 | // -------------------------------------------------------- | |
20 | class wxDataViewColumnNativeData; // class storing environment dependent data for the native implementation | |
e86edab0 RR |
21 | class wxDataViewWidgetImpl; // class used as a common interface for carbon and cocoa implementation |
22 | ||
e86edab0 RR |
23 | // --------------------------------------------------------- |
24 | // wxDataViewColumn | |
25 | // --------------------------------------------------------- | |
26 | ||
27 | class WXDLLIMPEXP_ADV wxDataViewColumn: public wxDataViewColumnBase | |
28 | { | |
29 | public: | |
30 | // constructors / destructor | |
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 | wxDataViewColumn(const wxBitmap& bitmap, | |
38 | wxDataViewRenderer* renderer, | |
39 | unsigned int model_column, | |
40 | int width = wxDVC_DEFAULT_WIDTH, | |
41 | wxAlignment align = wxALIGN_CENTER, | |
42 | int flags = wxDATAVIEW_COL_RESIZABLE); | |
de40d736 | 43 | virtual ~wxDataViewColumn(); |
e86edab0 RR |
44 | |
45 | // implement wxHeaderColumnBase pure virtual methods | |
46 | virtual wxAlignment GetAlignment() const { return m_alignment; } | |
47 | virtual int GetFlags() const { return m_flags; } | |
48 | virtual int GetMaxWidth() const { return m_maxWidth; } | |
49 | virtual int GetMinWidth() const { return m_minWidth; } | |
50 | virtual wxString GetTitle() const { return m_title; } | |
d831e2db | 51 | virtual int GetWidth() const; |
e86edab0 RR |
52 | virtual bool IsSortOrderAscending() const { return m_ascending; } |
53 | virtual bool IsSortKey() const; | |
f6cb92b8 | 54 | virtual bool IsHidden() const; |
e86edab0 RR |
55 | |
56 | virtual void SetAlignment (wxAlignment align); | |
57 | virtual void SetBitmap (wxBitmap const& bitmap); | |
58 | virtual void SetFlags (int flags) { SetIndividualFlags(flags); } | |
f6cb92b8 | 59 | virtual void SetHidden (bool hidden); |
e86edab0 RR |
60 | virtual void SetMaxWidth (int maxWidth); |
61 | virtual void SetMinWidth (int minWidth); | |
62 | virtual void SetReorderable(bool reorderable); | |
d13b34d3 | 63 | virtual void SetResizeable (bool resizable); |
e86edab0 RR |
64 | virtual void SetSortable (bool sortable); |
65 | virtual void SetSortOrder (bool ascending); | |
66 | virtual void SetTitle (wxString const& title); | |
67 | virtual void SetWidth (int width); | |
68 | virtual void SetAsSortKey (bool sort = true); | |
69 | ||
70 | // implementation only | |
de40d736 | 71 | wxDataViewColumnNativeData* GetNativeData() const |
e86edab0 | 72 | { |
de40d736 | 73 | return m_NativeDataPtr; |
e86edab0 | 74 | } |
03647350 | 75 | |
e86edab0 | 76 | void SetNativeData(wxDataViewColumnNativeData* newNativeDataPtr); // class takes ownership of pointer |
d831e2db VZ |
77 | int GetWidthVariable() const |
78 | { | |
79 | return m_width; | |
80 | } | |
e86edab0 RR |
81 | void SetWidthVariable(int NewWidth) |
82 | { | |
83 | m_width = NewWidth; | |
84 | } | |
8ba01d35 RR |
85 | void SetSortOrderVariable(bool NewOrder) |
86 | { | |
87 | m_ascending = NewOrder; | |
88 | } | |
e86edab0 RR |
89 | |
90 | private: | |
91 | // common part of all ctors | |
92 | void InitCommon(int width, wxAlignment align, int flags) | |
93 | { | |
94 | m_ascending = true; | |
95 | m_flags = flags & ~wxDATAVIEW_COL_HIDDEN; // TODO | |
96 | m_maxWidth = 30000; | |
97 | m_minWidth = 0; | |
e86edab0 | 98 | m_alignment = align; |
b06ed2f8 | 99 | SetWidth(width); |
e86edab0 RR |
100 | } |
101 | ||
102 | bool m_ascending; // sorting order | |
103 | ||
104 | int m_flags; // flags for the column | |
105 | int m_maxWidth; // maximum width for the column | |
106 | int m_minWidth; // minimum width for the column | |
107 | int m_width; // column width | |
108 | ||
109 | wxAlignment m_alignment; // column header alignment | |
110 | ||
111 | wxDataViewColumnNativeData* m_NativeDataPtr; // storing environment dependent data for the native implementation | |
112 | ||
113 | wxString m_title; // column title | |
114 | }; | |
115 | ||
116 | // | |
117 | // type definitions related to wxDataViewColumn | |
118 | // | |
119 | WX_DEFINE_ARRAY(wxDataViewColumn*,wxDataViewColumnPtrArrayType); | |
120 | ||
121 | // --------------------------------------------------------- | |
122 | // wxDataViewCtrl | |
123 | // --------------------------------------------------------- | |
124 | class WXDLLIMPEXP_ADV wxDataViewCtrl: public wxDataViewCtrlBase | |
125 | { | |
126 | public: | |
127 | // Constructors / destructor: | |
128 | wxDataViewCtrl() | |
129 | { | |
de40d736 | 130 | Init(); |
e86edab0 | 131 | } |
62e9285a VZ |
132 | wxDataViewCtrl(wxWindow *parent, |
133 | wxWindowID winid, | |
134 | const wxPoint& pos = wxDefaultPosition, | |
135 | const wxSize& size = wxDefaultSize, | |
136 | long style = 0, | |
137 | const wxValidator& validator = wxDefaultValidator, | |
138 | const wxString& name = wxDataViewCtrlNameStr ) | |
e86edab0 | 139 | { |
de40d736 | 140 | Init(); |
62e9285a | 141 | Create(parent, winid, pos, size, style, validator, name); |
e86edab0 RR |
142 | } |
143 | ||
144 | ~wxDataViewCtrl(); | |
145 | ||
62e9285a VZ |
146 | bool Create(wxWindow *parent, |
147 | wxWindowID winid, | |
148 | const wxPoint& pos = wxDefaultPosition, | |
149 | const wxSize& size = wxDefaultSize, | |
150 | long style = 0, | |
151 | const wxValidator& validator = wxDefaultValidator, | |
152 | const wxString& name = wxDataViewCtrlNameStr); | |
e86edab0 RR |
153 | |
154 | virtual wxControl* GetMainWindow() // not used for the native implementation | |
155 | { | |
156 | return this; | |
157 | } | |
158 | ||
159 | // inherited methods from wxDataViewCtrlBase: | |
160 | virtual bool AssociateModel(wxDataViewModel* model); | |
161 | ||
162 | virtual bool AppendColumn (wxDataViewColumn* columnPtr); | |
de40d736 | 163 | virtual bool ClearColumns (); |
e86edab0 RR |
164 | virtual bool DeleteColumn (wxDataViewColumn* columnPtr); |
165 | virtual wxDataViewColumn* GetColumn (unsigned int pos) const; | |
de40d736 | 166 | virtual unsigned int GetColumnCount () const; |
e86edab0 | 167 | virtual int GetColumnPosition(const wxDataViewColumn* columnPtr) const; |
de40d736 | 168 | virtual wxDataViewColumn* GetSortingColumn () const; |
e86edab0 RR |
169 | virtual bool InsertColumn (unsigned int pos, wxDataViewColumn *col); |
170 | virtual bool PrependColumn (wxDataViewColumn* columnPtr); | |
171 | ||
172 | virtual void Collapse( const wxDataViewItem& item); | |
173 | virtual void EnsureVisible(const wxDataViewItem& item, const wxDataViewColumn* columnPtr=NULL); | |
174 | virtual void Expand(const wxDataViewItem& item); | |
175 | virtual bool IsExpanded(const wxDataViewItem & item) const; | |
176 | ||
e86edab0 RR |
177 | virtual unsigned int GetCount() const; |
178 | virtual wxRect GetItemRect(const wxDataViewItem& item, const wxDataViewColumn* columnPtr) const; | |
fa93d732 | 179 | virtual int GetSelectedItemsCount() const; |
e86edab0 RR |
180 | virtual int GetSelections(wxDataViewItemArray& sel) const; |
181 | ||
182 | virtual void HitTest(const wxPoint& point, wxDataViewItem& item, wxDataViewColumn*& columnPtr) const; | |
183 | ||
184 | virtual bool IsSelected(const wxDataViewItem& item) const; | |
185 | ||
186 | virtual void SelectAll(); | |
187 | virtual void Select(const wxDataViewItem& item); | |
188 | virtual void SetSelections(const wxDataViewItemArray& sel); | |
189 | ||
190 | virtual void Unselect(const wxDataViewItem& item); | |
191 | virtual void UnselectAll(); | |
192 | ||
193 | // | |
194 | // implementation | |
195 | // | |
196 | // returns a pointer to the native implementation | |
de40d736 | 197 | wxDataViewWidgetImpl* GetDataViewPeer() const; |
e86edab0 RR |
198 | |
199 | // adds all children of the passed parent to the control; if 'parentItem' is invalid the root(s) is/are added: | |
200 | void AddChildren(wxDataViewItem const& parentItem); | |
201 | ||
202 | // finishes editing of custom items; if no custom item is currently edited the method does nothing | |
de40d736 | 203 | void FinishCustomItemEditing(); |
eeea3b03 RD |
204 | |
205 | virtual void StartEditor( const wxDataViewItem & item, unsigned int column ); | |
e86edab0 RR |
206 | |
207 | // returns the n-th pointer to a column; | |
208 | // this method is different from GetColumn(unsigned int pos) because here 'n' is not a position in the control but the n-th | |
209 | // position in the internal list/array of column pointers | |
210 | wxDataViewColumn* GetColumnPtr(size_t n) const | |
211 | { | |
de40d736 | 212 | return m_ColumnPtrs[n]; |
e86edab0 RR |
213 | } |
214 | // returns the current being rendered item of the customized renderer (this item is only valid during editing) | |
215 | wxDataViewItem const& GetCustomRendererItem() const | |
216 | { | |
de40d736 | 217 | return m_CustomRendererItem; |
e86edab0 RR |
218 | } |
219 | // returns a pointer to a customized renderer (this pointer is only valid during editing) | |
220 | wxDataViewCustomRenderer* GetCustomRendererPtr() const | |
221 | { | |
de40d736 | 222 | return m_CustomRendererPtr; |
e86edab0 RR |
223 | } |
224 | ||
225 | // checks if currently a delete process is running | |
226 | bool IsDeleting() const | |
227 | { | |
de40d736 | 228 | return m_Deleting; |
e86edab0 RR |
229 | } |
230 | ||
231 | // with CG, we need to get the context from an kEventControlDraw event | |
232 | // unfortunately, the DataBrowser callbacks don't provide the context | |
233 | // and we need it, so we need to set/remove it before and after draw | |
234 | // events so we can access it in the callbacks. | |
235 | void MacSetDrawingContext(void* context) | |
236 | { | |
de40d736 | 237 | m_cgContext = context; |
e86edab0 RR |
238 | } |
239 | void* MacGetDrawingContext() const | |
240 | { | |
de40d736 | 241 | return m_cgContext; |
e86edab0 RR |
242 | } |
243 | ||
244 | // sets the currently being edited item of the custom renderer | |
245 | void SetCustomRendererItem(wxDataViewItem const& NewItem) | |
246 | { | |
de40d736 | 247 | m_CustomRendererItem = NewItem; |
e86edab0 RR |
248 | } |
249 | // sets the custom renderer | |
250 | void SetCustomRendererPtr(wxDataViewCustomRenderer* NewCustomRendererPtr) | |
251 | { | |
de40d736 | 252 | m_CustomRendererPtr = NewCustomRendererPtr; |
e86edab0 RR |
253 | } |
254 | // sets the flag indicating a deletion process: | |
255 | void SetDeleting(bool deleting) | |
256 | { | |
de40d736 | 257 | m_Deleting = deleting; |
e86edab0 RR |
258 | } |
259 | ||
260 | virtual wxVisualAttributes GetDefaultAttributes() const | |
261 | { | |
262 | return GetClassDefaultAttributes(GetWindowVariant()); | |
263 | } | |
264 | ||
265 | static wxVisualAttributes | |
266 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
267 | ||
268 | protected: | |
269 | // inherited methods from wxDataViewCtrlBase | |
270 | virtual void DoSetExpanderColumn(); | |
271 | virtual void DoSetIndent(); | |
272 | ||
ca6de8c0 RR |
273 | virtual wxSize DoGetBestSize() const; |
274 | ||
e86edab0 RR |
275 | // event handling |
276 | void OnSize(wxSizeEvent &event); | |
ca6de8c0 | 277 | void OnMouse(wxMouseEvent &event); |
e86edab0 RR |
278 | |
279 | private: | |
280 | // initializing of local variables: | |
281 | void Init(); | |
282 | ||
80ce465c VZ |
283 | virtual wxDataViewItem DoGetCurrentItem() const; |
284 | virtual void DoSetCurrentItem(const wxDataViewItem& item); | |
285 | ||
e86edab0 RR |
286 | // |
287 | // variables | |
288 | // | |
289 | bool m_Deleting; // flag indicating if a delete process is running; this flag is necessary because the notifier indicating an item deletion in the model may be called | |
290 | // after the actual deletion of the item; then, native callback functions/delegates may try to update data of variables that are already deleted; | |
291 | // if this flag is set all native variable update requests will be ignored | |
292 | ||
293 | void* m_cgContext; // pointer to core graphics context | |
294 | ||
295 | wxDataViewCustomRenderer* m_CustomRendererPtr; // pointer to a valid custom renderer while editing; this class does NOT own the pointer | |
296 | ||
297 | wxDataViewItem m_CustomRendererItem; // currently edited item by the customrenderer; it is invalid while not editing a custom item | |
298 | ||
299 | wxDataViewColumnPtrArrayType m_ColumnPtrs; // all column pointers are stored in an array | |
300 | ||
301 | // wxWidget internal stuff: | |
302 | DECLARE_DYNAMIC_CLASS(wxDataViewCtrl) | |
303 | DECLARE_NO_COPY_CLASS(wxDataViewCtrl) | |
304 | DECLARE_EVENT_TABLE() | |
305 | }; | |
306 | ||
307 | #endif // _WX_DATAVIEWCTRL_OSX_H_ | |
308 |