public
Description: A Mac OS X photo uploader program for my photo album.
Homepage: http://bleu.west.spy.net/~dustin/projects/photoupload/
Clone URL: git://github.com/dustin/photoupload.git
photoupload / DumpMatrix.h
100644 30 lines (21 sloc) 0.595 kb
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
30
/* DumpMatrix */
// arch-tag: 5D4073F6-9196-11D8-9FA2-000A957659CC
 
#import <Cocoa/Cocoa.h>
#import "SizeScaler.h"
 
@interface DumpMatrix : NSMatrix
{
    NSMutableDictionary *_storage;
}
 
- (NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender;
-(BOOL)performDragOperation:(id <NSDraggingInfo>)sender;
 
// Remove all entries in the current matrix
-(void)clear;
 
// Add a new file to the storage
-(void)addFile:(NSString *)filename;
-(void)removeFile:(NSString *)filename;
-(void)removeSelected;
 
// Update
-(void)update;
 
// Get the files, an array of NSStrings
-(NSArray *)files;
 
@end