phase one of moving quicklook into the controller - it's not as pretty code-wise but the behavior is a lot more consistent

This commit is contained in:
Mitchell Livingston
2009-10-11 23:16:46 +00:00
parent 53273caef2
commit 1af529aa96
6 changed files with 125 additions and 149 deletions

View File

@@ -24,6 +24,7 @@
#import <Cocoa/Cocoa.h>
#import <transmission.h>
#import <Quartz/Quartz.h>
#import <Growl/Growl.h>
@class AddWindowController;
@@ -46,7 +47,8 @@ typedef enum
ADD_CREATED
} addType;
@interface Controller : NSObject <GrowlApplicationBridgeDelegate>
#warning uncomment
@interface Controller : NSObject <GrowlApplicationBridgeDelegate> //, QLPreviewPanelDataSource, QLPreviewPanelDelegate>
{
tr_session * fLib;
@@ -108,6 +110,9 @@ typedef enum
NSMutableDictionary * fPendingTorrentDownloads;
BOOL fSoundPlaying;
#warning change to QLPreviewPanel
id fPreviewPanel;
}
- (void) openFiles: (NSArray *) filenames addType: (addType) type forcePath: (NSString *) path;