]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/cocoa/NSTableView.h | |
3 | // Purpose: wxCocoaNSTableView class | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2003/08/05 | |
7 | // Copyright: (c) 2003 David Elliott | |
8 | // Licence: wxWindows licence | |
9 | /////////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef __WX_COCOA_NSTABLEVIEW_H__ | |
12 | #define __WX_COCOA_NSTABLEVIEW_H__ | |
13 | ||
14 | #include "wx/hashmap.h" | |
15 | #include "wx/cocoa/ObjcAssociate.h" | |
16 | ||
17 | WX_DECLARE_OBJC_HASHMAP(NSTableView); | |
18 | ||
19 | class wxCocoaNSTableView | |
20 | { | |
21 | WX_DECLARE_OBJC_INTERFACE(NSTableView) | |
22 | public: | |
23 | virtual int CocoaDataSource_numberOfRows() = 0; | |
24 | virtual struct objc_object* CocoaDataSource_objectForTableColumn( | |
25 | WX_NSTableColumn tableColumn, int rowIndex) = 0; | |
26 | virtual ~wxCocoaNSTableView() { } | |
27 | }; | |
28 | ||
29 | #endif // _WX_COCOA_NSTABLEVIEW_H_ |