Skip to content

Commit

Permalink
Import of r1.0 (20081021)
Browse files Browse the repository at this point in the history
  • Loading branch information
nevali committed Nov 2, 2008
0 parents commit 0f4e94f
Show file tree
Hide file tree
Showing 14 changed files with 1,505 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .cvsignore
@@ -0,0 +1,2 @@
build

44 changes: 44 additions & 0 deletions DropAppDelegate.h
@@ -0,0 +1,44 @@
/*
* DropLook: A simple wrapper for QuickLook.
* @(#) $Id$
*/

/*
* Copyright (c) 2008 Mo McRoberts.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The names of the author(s) of this software may not be used to endorse
* or promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* AUTHORS OF THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#import <Cocoa/Cocoa.h>

@interface DropAppDelegate : NSObject
-(void)lookAtFile:(NSString *)path;

-(void)lookAtIt:(NSPasteboard *)pboard userData:(NSString *)userData error:(NSString **)error;
- (BOOL)application:(NSApplication *)sender openFile:(NSString *)path;
@end

@interface DropAppDelegate(NSApplicationNotifications)
-(void)applicationDidFinishLaunching:(NSNotification *)aNotification;
@end
82 changes: 82 additions & 0 deletions DropAppDelegate.m
@@ -0,0 +1,82 @@
/*
* DropLook: A simple wrapper for QuickLook.
* @(#) $Id$
*/

/*
* Copyright (c) 2008 Mo McRoberts.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The names of the author(s) of this software may not be used to endorse
* or promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* AUTHORS OF THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#import "DropAppDelegate.h"
#import "DropWinController.h"


@implementation DropAppDelegate
-(void)lookAtFile:(NSString *)path {
[[DropWinController alloc] initWithPath:path];
}

-(void)lookAtIt:(NSPasteboard *)pboard
userData:(NSString *)userData
error:(NSString **)error {
NSArray *flist;
unsigned int count, c;
NSString *path;

flist = [pboard propertyListForType:NSFilenamesPboardType];
count = [flist count];
for(c = 0; c < count; c++)
{
path = [flist objectAtIndex:c];
[self lookAtFile:path];
}
}

- (BOOL)application:(NSApplication *)sender openFile:(NSString *)path
{
[self lookAtFile:path];
return true;
}

@end

@implementation DropAppDelegate(NSApplicationNotifications)
-(void)applicationDidFinishLaunching:(NSNotification *)aNotification {
int quickLookAvailable;

quickLookAvailable = [[NSBundle bundleWithPath:@"/System/Library/PrivateFrameworks/QuickLookUI.framework"] load];
if(!quickLookAvailable)
{
NSLog(@"QuickLook is not available");
exit(1);
}
[NSApp setServicesProvider:self];
}
@end
Binary file added DropLook.xcodeproj/TemplateIcon.icns
Binary file not shown.

0 comments on commit 0f4e94f

Please sign in to comment.