forked from jlamarche/Tile-Cutter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Tile_CutterAppDelegate.h
31 lines (26 loc) · 950 Bytes
/
Tile_CutterAppDelegate.h
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
//
// Tile_CutterAppDelegate.h
// Tile Cutter
//
// Created by jeff on 10/7/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "TileCutterCore.h"
@class TileCutterView;
@interface Tile_CutterAppDelegate : NSObject <NSApplicationDelegate, TileOperationDelegate>
{
}
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet TileCutterView *tileCutterView;
@property (assign) IBOutlet NSTextField *widthTextField;
@property (assign) IBOutlet NSTextField *heightTextField;
@property (retain) IBOutlet NSProgressIndicator *columnBar;
@property (retain) IBOutlet NSProgressIndicator *rowBar;
@property (retain) IBOutlet NSWindow *progressWindow;
@property (retain) IBOutlet NSTextField *progressLabel;
@property (retain) IBOutlet NSString *baseFilename;
@property (retain) TileCutterCore *tileCore;
- (IBAction)saveButtonPressed:(id)sender;
- (IBAction)openSelected:(id)sender;
@end