]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/osx/cocoa/dataview.h
Cocoa text fields and views have their own context menus, so we should use those...
[wxWidgets.git] / include / wx / osx / cocoa / dataview.h
index e31a75229649cd9c6d3e2133fa60474209699a05..ed79f03b94478f0a65b53c94ad609d7625003e26 100644 (file)
@@ -250,7 +250,7 @@ private:
 // owned by the set. Furthermore, children of the last parent are stored
 // in a linear list.
 //
-@interface wxCocoaOutlineDataSource : NSObject
+@interface wxCocoaOutlineDataSource : NSObject wxOSX_10_6_AND_LATER(<NSOutlineViewDataSource>)
 {
     // descriptors specifying the sorting (currently the array only holds one
     // object only)
@@ -398,7 +398,7 @@ private:
 // wxCocoaOutlineView
 // ============================================================================
 
-@interface wxCocoaOutlineView : NSOutlineView
+@interface wxCocoaOutlineView : NSOutlineView wxOSX_10_6_AND_LATER(<NSOutlineViewDelegate>)
 {
 @private
     // column and row of the cell being edited or -1 if none
@@ -502,6 +502,8 @@ public:
     id GetItemAtRow(int row) const;
 
 private:
+    void InitOutlineView(long style);
+
     wxCocoaOutlineDataSource* m_DataSource;
 
     wxCocoaOutlineView* m_OutlineView;