mocra / iconmerge

Create composite icon image from two icons, with 2nd image as a thumbnail on top of the 1st

This URL has Read+Write access

iconmerge / NSAnyImageView.h
100644 21 lines (16 sloc) 0.372 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// NSAnyImageView.h
// iConMerge
//
// Created by Daniel Leping on 1/31/09.
// Copyright 2009 Mocra. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
@interface NSAnyImageView : NSImageView {
bool dragAcceptedByParent;
NSImage* image;
}
 
- (bool) clear;
- (bool) loadFile:(NSString*)filename tryImage:(bool)tryImage;
- (bool) loadFile:(NSString*)filename;
 
@end