summaryrefslogtreecommitdiffstats
path: root/Frameworks/LiPlugin/LiPlugin.h
blob: 28d236f6fb28478875949c18496f79da277d39bc (plain)
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
/*
 *  LiPlugin.h
 *  Liaison
 *
 *  Created by Brian Cully on Tue May 13 2003.
 *  Copyright (c) 2003 Brian Cully. All rights reserved.
 *
 */

#import <Cocoa/Cocoa.h>

#import <LiPlugin/LiBrowserColumn.h>
#import <LiPlugin/LiInspectorView.h>
#import <LiPlugin/LiFilterDescription.h>

#import <LiBackend/LiBackend.h>

@protocol LiFileStorePlugin
+ (NSBundle *)bundle;
+ (void)setBundle: (NSBundle *)aBundle;

- (void)initFileStore;
- (LiFileStore *)fileStore;
@end

@protocol LiBrowserPlugin
+ (NSBundle *)bundle;
+ (void)setBundle: (NSBundle *)aBundle;

- (NSArray *)columns;
- (NSDictionary *)filterDescriptions;
@end

@protocol LiInspectorPlugin
+ (NSBundle *)bundle;
+ (void)setBundle: (NSBundle *)aBundle;

- (NSArray *)allInspectorViews;
- (NSArray *)inspectorViewsForFile: (LiFileHandle *)aFile;
- (void)setFile: (LiFileHandle *)aFile;
@end