forked from erkyrath/Inform7-IDE-Mac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIFInform6Extensions.h
More file actions
39 lines (30 loc) · 896 Bytes
/
IFInform6Extensions.h
File metadata and controls
39 lines (30 loc) · 896 Bytes
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
//
// IFInform6Extensions.h
// Inform
//
// Created by Andrew Hunter on 12/10/2004.
// Copyright 2004 Andrew Hunter. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "IFSetting.h"
#import "IFExtensionsManager.h"
//
// The installed Inform 6 extensions and which extensions to use in the current project
//
@interface IFInform6Extensions : IFSetting {
// Data on what's available
IFExtensionsManager* extnMgr;
BOOL needRefresh;
// Which extensions we're using
NSMutableSet* activeExtensions;
IBOutlet NSTableView* extensionTable;
}
// Used to determine what types of file we can drag and drop
- (BOOL) canAcceptFile: (NSString*) filename;
- (BOOL) canAcceptPasteboard: (NSPasteboard*) pasteboard;
// Adding new extensions
- (BOOL) importExtensionFile: (NSString*) file;
// Actions
- (IBAction) addExtension: (id) sender;
- (IBAction) deleteExtension: (id) sender;
@end