1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/carbon/dataview.h
3 // Purpose: wxDataViewCtrl native implementation header for carbon
5 // Id: $Id: dataview.h 57374 2009-01-27
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_DATAVIEWCTRL_COCOOA_H_
11 #define _WX_DATAVIEWCTRL_COCOOA_H_
18 #import <Cocoa/Cocoa.h>
21 #include "wx/osx/core/dataview.h"
22 #include "wx/osx/private.h"
24 // Forward declaration
25 class wxCocoaDataViewControl
;
27 // ============================================================================
29 // ============================================================================
31 // This is a helper class to store a pointer in an object. This object just
32 // stores the pointer but does not take any ownership.
33 // To pointer objects are equal if the containing pointers are equal. This
34 // means also that the hash value of a pointer object depends only on the
37 @interface wxPointerObject
: NSObject
43 // object initialization
45 -(id
) initWithPointer
:(void*)initPointer
;
51 -(void) setPointer
:(void*)newPointer
;
55 // ============================================================================
56 // wxSortDescriptorObject
57 // ============================================================================
59 // This is a helper class to use native sorting facilities.
61 @interface wxSortDescriptorObject
: NSSortDescriptor
<NSCopying
>
63 wxDataViewColumn
* columnPtr
; // pointer to the sorting column
65 wxDataViewModel
* modelPtr
; // pointer to model
71 -(id
) initWithModelPtr
:(wxDataViewModel
*)initModelPtr sortingColumnPtr
:(wxDataViewColumn
*)initColumnPtr ascending
:(BOOL
)sortAscending
;
74 // access to variables
76 -(wxDataViewColumn
*) columnPtr
;
77 -(wxDataViewModel
*) modelPtr
;
79 -(void) setColumnPtr
:(wxDataViewColumn
*)newColumnPtr
;
80 -(void) setModelPtr
:(wxDataViewModel
*)newModelPtr
;
84 // ============================================================================
85 // wxDataViewColumnNativeData
86 // ============================================================================
87 class wxDataViewColumnNativeData
91 // constructors / destructor
93 wxDataViewColumnNativeData(void) : m_NativeColumnPtr(NULL
)
96 wxDataViewColumnNativeData(NSTableColumn
* initNativeColumnPtr
) : m_NativeColumnPtr(initNativeColumnPtr
)
101 // data access methods
103 NSTableColumn
* GetNativeColumnPtr() const
105 return m_NativeColumnPtr
;
108 void SetNativeColumnPtr(NSTableColumn
* newNativeColumnPtr
)
110 m_NativeColumnPtr
= newNativeColumnPtr
;
118 NSTableColumn
* m_NativeColumnPtr
; // this class does not take over ownership of the pointer nor retains it
121 // ============================================================================
122 // wxDataViewRendererNativeData
123 // ============================================================================
124 class wxDataViewRendererNativeData
128 // constructors / destructor
130 wxDataViewRendererNativeData(void) : m_Object(NULL
), m_ColumnCell(NULL
)
134 wxDataViewRendererNativeData(NSCell
* initColumnCell
) : m_Object(NULL
), m_ColumnCell([initColumnCell retain
])
138 wxDataViewRendererNativeData(NSCell
* initColumnCell
, id initObject
) : m_Object([initObject retain
]), m_ColumnCell([initColumnCell retain
])
143 ~wxDataViewRendererNativeData()
145 [m_ColumnCell release
];
148 [m_origFont release
];
149 [m_origTextColour release
];
153 // data access methods
155 NSCell
* GetColumnCell() const
159 NSTableColumn
* GetColumnPtr() const
161 return m_TableColumnPtr
;
167 NSCell
* GetItemCell() const
176 void SetColumnCell(NSCell
* newCell
)
179 [m_ColumnCell release
];
180 m_ColumnCell
= newCell
;
182 void SetColumnPtr(NSTableColumn
* newColumnPtr
)
184 m_TableColumnPtr
= newColumnPtr
;
186 void SetItem(id newItem
)
190 void SetItemCell(NSCell
* newCell
)
192 m_ItemCell
= newCell
;
194 void SetObject(id newObject
)
198 m_Object
= newObject
;
201 // The original cell font and text colour stored here are NULL by default and
202 // are only initialized to the values retrieved from the cell when we change
203 // them from wxCocoaOutlineView:willDisplayCell:forTableColumn:item: which
204 // calls our SaveOriginalXXX() methods before changing the cell attributes.
206 // This allows us to avoid doing anything for the columns without any
207 // attributes but still be able to restore the correct attributes for the
209 NSFont
*GetOriginalFont() const { return m_origFont
; }
210 NSColor
*GetOriginalTextColour() const { return m_origTextColour
; }
212 void SaveOriginalFont(NSFont
*font
)
214 m_origFont
= [font retain
];
217 void SaveOriginalTextColour(NSColor
*textColour
)
219 m_origTextColour
= [textColour retain
];
226 m_origTextColour
= NULL
;
229 id m_Item
; // item NOT owned by renderer
230 id m_Object
; // object that can be used by renderer for storing special data (owned by renderer)
232 NSCell
* m_ColumnCell
; // column's cell is owned by renderer
233 NSCell
* m_ItemCell
; // item's cell is NOT owned by renderer
235 NSTableColumn
* m_TableColumnPtr
; // column NOT owned by renderer
237 // we own those if they're non-NULL
239 NSColor
*m_origTextColour
;
242 // ============================================================================
243 // wxCocoaOutlineDataSource
244 // ============================================================================
246 // This class implements the data source delegate for the outline view.
247 // As only an informal protocol exists this class inherits from NSObject only.
249 // As mentioned in the documentation for NSOutlineView the native control does
250 // not own any data. Therefore, it has to be done by the data source.
251 // Unfortunately, wxWidget's data source is a C++ data source but
252 // NSOutlineDataSource requires objects as data. Therefore, the data (or better
253 // the native item objects) have to be stored additionally in the native data
255 // NSOutlineView requires quick access to the item objects and quick linear
256 // access to an item's children. This requires normally a hash type of storage
257 // for the item object itself and an array structure for each item's children.
258 // This means that basically two times the whole structure of wxWidget's model
259 // class has to be stored.
260 // This implementation is using a compromise: all items that are in use by the
261 // control are stored in a set (from there they can be easily retrieved) and
262 // owned by the set. Furthermore, children of the last parent are stored
265 @interface wxCocoaOutlineDataSource
: NSObject
267 NSArray
* sortDescriptors
; // descriptors specifying the sorting (currently the array only holds one object only)
269 NSMutableArray
* children
; // buffered children
271 NSMutableSet
* items
; // stores all items that are in use by the control
273 wxCocoaDataViewControl
* implementation
;
275 wxDataViewModel
* model
;
277 wxPointerObject
* currentParentItem
; // parent of the buffered children; the object is owned
281 // methods of informal protocol:
283 -(BOOL
) outlineView
:(NSOutlineView
*)outlineView acceptDrop
:(id
<NSDraggingInfo
>)info item
:(id
)item childIndex
:(NSInteger
)index
;
284 -(id
) outlineView
:(NSOutlineView
*)outlineView child
:(NSInteger
)index ofItem
:(id
)item
;
285 -(id
) outlineView
:(NSOutlineView
*)outlineView objectValueForTableColumn
:(NSTableColumn
*)tableColumn byItem
:(id
)item
;
286 -(BOOL
) outlineView
:(NSOutlineView
*)outlineView isItemExpandable
:(id
)item
;
287 -(NSInteger
) outlineView
:(NSOutlineView
*)outlineView numberOfChildrenOfItem
:(id
)item
;
288 -(NSDragOperation
) outlineView
:(NSOutlineView
*)outlineView validateDrop
:(id
<NSDraggingInfo
>)info proposedItem
:(id
)item proposedChildIndex
:(NSInteger
)index
;
289 -(BOOL
) outlineView
:(NSOutlineView
*)outlineView writeItems
:(NSArray
*)items toPasteboard
:(NSPasteboard
*)pasteboard
;
292 // buffer for items handling
294 -(void) addToBuffer
:(wxPointerObject
*)item
;
296 -(wxPointerObject
*) getDataViewItemFromBuffer
:(wxDataViewItem
const&)item
; // returns the item in the buffer that has got the same pointer as "item",
297 -(wxPointerObject
*) getItemFromBuffer
:(wxPointerObject
*)item
; // if such an item does not exist nil is returned
298 -(BOOL
) isInBuffer
:(wxPointerObject
*)item
;
299 -(void) removeFromBuffer
:(wxPointerObject
*)item
;
302 // buffered children handling
304 -(void) appendChild
:(wxPointerObject
*)item
;
305 -(void) clearChildren
;
306 -(wxPointerObject
*) getChild
:(NSUInteger
)index
;
307 -(NSUInteger
) getChildCount
;
308 -(void) removeChild
:(NSUInteger
)index
;
313 -(void) clearBuffers
;
318 -(NSArray
*) sortDescriptors
;
319 -(void) setSortDescriptors
:(NSArray
*)newSortDescriptors
;
322 // access to wxWidget's variables
324 -(wxPointerObject
*) currentParentItem
;
325 -(wxCocoaDataViewControl
*) implementation
;
326 -(wxDataViewModel
*) model
;
327 -(void) setCurrentParentItem
:(wxPointerObject
*)newCurrentParentItem
;
328 -(void) setImplementation
:(wxCocoaDataViewControl
*)newImplementation
;
329 -(void) setModel
:(wxDataViewModel
*)newModel
;
334 -(void) bufferItem
:(wxPointerObject
*)parentItem withChildren
:(wxDataViewItemArray
*)dataViewChildrenPtr
;
338 // ============================================================================
340 // ============================================================================
342 // This is a cell that is used for custom renderers.
344 @interface wxCustomCell
: NSTextFieldCell
355 // ============================================================================
357 // ============================================================================
359 // As the native cocoa environment does not have a cell displaying an icon/
360 // image and text at the same time, it has to be implemented by the user.
361 // This implementation follows the implementation of Chuck Pisula in Apple's
362 // DragNDropOutline sample application.
363 // Although in wxDataViewCtrl icons are used on OSX icons do not exist for
364 // display. Therefore, the cell is also called wxImageTextCell.
365 // Instead of displaying images of any size (which is possible) this cell uses
366 // a fixed size for displaying the image. Larger images are scaled to fit
367 // into their reserved space. Smaller or not existing images use the fixed
368 // reserved size and are scaled if necessary.
370 @interface wxImageTextCell
: NSTextFieldCell
373 CGFloat xImageShift
; // shift for the image in x-direction from border
374 CGFloat spaceImageText
; // space between image and text ("belongs" to the image)
376 NSImage
* image
; // the image itself
378 NSSize imageSize
; // largest size of the image; default size is (16, 16)
380 NSTextAlignment cellAlignment
; // the text alignment is used to align the whole
381 // cell (image and text)
387 -(NSTextAlignment
) alignment
;
388 -(void) setAlignment
:(NSTextAlignment
)newAlignment
;
394 -(void) setImage
:(NSImage
*)newImage
;
400 -(void) setImageSize
:(NSSize
) newImageSize
;
409 // ============================================================================
410 // wxCocoaOutlineView
411 // ============================================================================
412 @interface wxCocoaOutlineView
: NSOutlineView
415 BOOL isEditingCell
; // flag indicating if a cell is currently being edited
417 wxCocoaDataViewControl
* implementation
;
421 // access to wxWidget's implementation
423 -(wxCocoaDataViewControl
*) implementation
;
424 -(void) setImplementation
:(wxCocoaDataViewControl
*) newImplementation
;
428 // ============================================================================
429 // wxCocoaDataViewControl
430 // ============================================================================
432 // This is the internal interface class between wxDataViewCtrl (wxWidget) and
433 // the native source view (Mac OS X cocoa).
435 class wxCocoaDataViewControl
: public wxWidgetCocoaImpl
, public wxDataViewWidgetImpl
439 // constructors / destructor
441 wxCocoaDataViewControl(wxWindow
* peer
, wxPoint
const& pos
, wxSize
const& size
, long style
);
442 ~wxCocoaDataViewControl();
445 // column related methods (inherited from wxDataViewWidgetImpl)
447 virtual bool ClearColumns ();
448 virtual bool DeleteColumn (wxDataViewColumn
* columnPtr
);
449 virtual void DoSetExpanderColumn(wxDataViewColumn
const* columnPtr
);
450 virtual wxDataViewColumn
* GetColumn (unsigned int pos
) const;
451 virtual int GetColumnPosition (wxDataViewColumn
const* columnPtr
) const;
452 virtual bool InsertColumn (unsigned int pos
, wxDataViewColumn
* columnPtr
);
455 // item related methods (inherited from wxDataViewWidgetImpl)
457 virtual bool Add (wxDataViewItem
const& parent
, wxDataViewItem
const& item
);
458 virtual bool Add (wxDataViewItem
const& parent
, wxDataViewItemArray
const& items
);
459 virtual void Collapse (wxDataViewItem
const& item
);
460 virtual void EnsureVisible(wxDataViewItem
const& item
, wxDataViewColumn
const* columnPtr
);
461 virtual void Expand (wxDataViewItem
const& item
);
462 virtual unsigned int GetCount () const;
463 virtual wxRect
GetRectangle (wxDataViewItem
const& item
, wxDataViewColumn
const* columnPtr
);
464 virtual bool IsExpanded (wxDataViewItem
const& item
) const;
465 virtual bool Reload ();
466 virtual bool Remove (wxDataViewItem
const& parent
, wxDataViewItem
const& item
);
467 virtual bool Remove (wxDataViewItem
const& parent
, wxDataViewItemArray
const& item
);
468 virtual bool Update (wxDataViewColumn
const* columnPtr
);
469 virtual bool Update (wxDataViewItem
const& parent
, wxDataViewItem
const& item
);
470 virtual bool Update (wxDataViewItem
const& parent
, wxDataViewItemArray
const& items
);
473 // model related methods
475 virtual bool AssociateModel(wxDataViewModel
* model
); // informs the native control that a model is present
478 // selection related methods (inherited from wxDataViewWidgetImpl)
480 virtual int GetSelections(wxDataViewItemArray
& sel
) const;
481 virtual bool IsSelected (wxDataViewItem
const& item
) const;
482 virtual void Select (wxDataViewItem
const& item
);
483 virtual void SelectAll ();
484 virtual void Unselect (wxDataViewItem
const& item
);
485 virtual void UnselectAll ();
488 // sorting related methods
490 virtual wxDataViewColumn
* GetSortingColumn () const;
491 virtual void Resort ();
494 // other methods (inherited from wxDataViewWidgetImpl)
496 virtual void DoSetIndent (int indent
);
497 virtual void HitTest (wxPoint
const& point
, wxDataViewItem
& item
, wxDataViewColumn
*& columnPtr
) const;
498 virtual void SetRowHeight(wxDataViewItem
const& item
, unsigned int height
);
499 virtual void OnSize ();
504 wxDataViewCtrl
* GetDataViewCtrl() const
506 return dynamic_cast<wxDataViewCtrl
*>(GetWXPeer());
510 // drag & drop helper methods
512 wxDataFormat
GetDnDDataFormat(wxDataObjectComposite
* dataObjects
);
513 wxDataObjectComposite
* GetDnDDataObjects(NSData
* dataObject
) const; // create the data objects from the native dragged object
519 wxCocoaOutlineDataSource
* m_DataSource
;
521 wxCocoaOutlineView
* m_OutlineView
;
524 typedef wxCocoaDataViewControl
* wxCocoaDataViewControlPointer
;
528 #endif // _WX_DATAVIEWCTRL_COCOOA_H_