-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPRCore.h
29 lines (28 loc) · 926 Bytes
/
PRCore.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
#import <Cocoa/Cocoa.h>
@class PRBridge;
@class PRConnection;
@class PRDb;
@class PRFolderMonitor;
@class PRGrowl;
@class PRHotKeyController;
@class PRLastfm;
@class PRMainWindowController;
@class PRMediaKeyController;
@class PRPlayer;
@class PRProgressManager;
@interface PRCore : NSObject <NSApplicationDelegate>
@property (readonly) PRBridge *bridge;
@property (readonly) PRConnection *conn;
@property (readonly) PRDb *db;
@property (readonly) PRMainWindowController *win;
@property (readonly) PRPlayer *now;
@property (readonly) NSOperationQueue *opQueue;
@property (readonly) PRFolderMonitor *folderMonitor;
@property (readonly) PRProgressManager *taskManager;
@property (weak, readonly) NSMenu *mainMenu;
@property (readonly) PRLastfm *lastfm;
@property (readonly) PRMediaKeyController *keys;
@property (readonly) PRHotKeyController *hotKeys;
- (void)itunesImport:(id)sender;
- (IBAction)showOpenPanel:(id)sender;
@end