3 * Copyright (c) 2008, Blue Static <http://www.bluestatic.org>
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
17 #import "DraggableImageView.h"
20 @implementation DraggableImageView
27 [self registerForDraggedTypes
:[NSArray arrayWithObject
:NSFilenamesPboardType
]];
28 [pathDisplay setStringValue
:@
""];
32 * Returns the current file path
34 - (NSString
*)filePath
52 * We're starting to drag; check and see if it's a valid type
54 - (NSDragOperation
)draggingEntered
:(id <NSDraggingInfo
>)sender
56 NSPasteboard
*pboard
= [sender draggingPasteboard
];
57 NSDragOperation opMask
= [sender draggingSourceOperationMask
];
59 if ([[pboard types
] containsObject
:NSFilenamesPboardType
] && (opMask
& NSDragOperationCopy
))
61 NSString
*file
= [[pboard propertyListForType
:NSFilenamesPboardType
] objectAtIndex
:0];
62 if ([[[file substringFromIndex
:[file length
] - 4] lowercaseString
] isEqualToString
: @
".pdf"])
64 return NSDragOperationCopy
;
68 return NSDragOperationNone
;
72 * Dragging performed, set the image and filename
74 - (BOOL)performDragOperation
:(id <NSDraggingInfo
>)sender
76 if ([self draggingEntered
:sender
] == NSDragOperationCopy
)
78 NSString
*path
= [[[sender draggingPasteboard
] propertyListForType
:NSFilenamesPboardType
] objectAtIndex
:0];
84 filePath
= [path retain
];
85 [pathDisplay setStringValue
:filePath
];
87 NSFileWrapper
*fw
= [[NSFileWrapper alloc
] initWithPath
:filePath
];
88 [self setImage
:[fw icon
]];
91 [printButton setEnabled
:YES
];