-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathTileOperation.h
More file actions
32 lines (26 loc) · 765 Bytes
/
TileOperation.h
File metadata and controls
32 lines (26 loc) · 765 Bytes
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
31
32
//
// TileOperation.h
// Tile Cutter
//
// Created by jeff on 10/30/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class TileOperation;
@protocol TileOperationDelegate
@optional
- (void)operationDidFinishTile:(TileOperation *)op;
- (void)operationDidFinishSuccessfully:(TileOperation *)op;
- (void)operation:(TileOperation *)op didFailWithMessage:(NSString *)message;
@end
@interface TileOperation : NSOperation
{
}
@property (assign) NSObject <TileOperationDelegate> *delegate;
@property (retain) NSBitmapImageRep *imageRep;
@property NSUInteger row;
@property (retain) NSString *baseFilename;
@property NSUInteger tileHeight;
@property NSUInteger tileWidth;
@property TileCutterOutputPrefs outputFormat;
@end