-
Notifications
You must be signed in to change notification settings - Fork 13
/
BetterTableView.h
47 lines (33 loc) · 1.17 KB
/
BetterTableView.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* The Cheat - The legendary universal game trainer for Mac OS X.
* http://www.brokenzipper.com/trac/wiki/TheCheat
*
* Copyright (c) 2003-2011, Charles McGarvey et al.
*
* Distributable under the terms and conditions of the 2-clause BSD
* license; see the file COPYING for the legal text of the license.
*/
#import <Cocoa/Cocoa.h>
@interface BetterTableView : NSTableView
{
BOOL _canDelete; // YES if deleting is enabled
BOOL _canCopyPaste;
}
// override super
- (void)keyDown:(NSEvent *)theEvent;
// new stuff
- (BOOL)canDelete;
- (void)setCanDelete:(BOOL)flag;
- (BOOL)canCopyPaste;
- (void)setCanCopyPaste:(BOOL)flag;
// array of NSNumbers with the rows which are selected
- (NSArray *)selectedRows;
@end
@interface NSObject(BetterTableViewDelegate)
- (NSString *)tableViewPasteboardType:(NSTableView *)tableView;
- (NSData *)tableView:(NSTableView *)tableView copyRows:(NSArray *)rows;
- (void)tableView:(NSTableView *)tableView pasteRowsWithData:(NSData *)rowData;
- (void)tableView:(NSTableView *)tableView deleteRows:(NSArray *)rows;
- (BOOL)tableViewDidReceiveEnterKey:(NSTableView *)tableView;
- (BOOL)tableViewDidReceiveSpaceKey:(NSTableView *)tableView;
@end