forked from jlamarche/Tile-Cutter
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTileCutterView.h
More file actions
25 lines (21 loc) · 736 Bytes
/
TileCutterView.h
File metadata and controls
25 lines (21 loc) · 736 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
//
// TileCutterView.h
// Tile Cutter
//
// Created by jeff on 10/7/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface TileCutterView : NSView
{
}
@property (nonatomic, retain) NSString *filename;
@property (nonatomic, retain) IBOutlet NSTextField *tileWidthField;
@property (nonatomic, retain) IBOutlet NSTextField *tileHeightField;
@property (nonatomic, retain) IBOutlet NSColorWell *guideColorWell;
@property (nonatomic, retain) NSImage *image;
@property (nonatomic, retain) IBOutlet NSButton *guideCheckbox;
@property (nonatomic, retain) IBOutlet NSButton *skipCheckbox;
@property (nonatomic, retain) IBOutlet NSButton *saveButton;
- (IBAction) valueChanged:(id)sender;
@end