~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Externals/wxWidgets3/include/wx/cocoa/NSTableView.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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_