forked from bazilxp/DictUnifier
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDictUnifierAppDelegate.h
More file actions
36 lines (30 loc) · 888 Bytes
/
Copy pathDictUnifierAppDelegate.h
File metadata and controls
36 lines (30 loc) · 888 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
33
34
35
36
//
// DictUnifierAppDelegate.h
// DictUnifier
//
// Created by Jjgod Jiang on 3/11/10.
// Copyright 2010 Jjgod Jiang. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface DictUnifierAppDelegate : NSObject {
IBOutlet NSImageView *dropper;
IBOutlet NSTextField *label;
IBOutlet NSTextField *nameField;
IBOutlet NSProgressIndicator *progressBar;
IBOutlet NSButton *button;
NSString *tempDir;
NSString *dictDir;
NSString *dictID;
NSTask *buildTask;
NSUInteger totalEntries;
}
@property (retain) NSString *tempDir, *dictDir, *dictID;
@property (retain) NSTask *buildTask;
@property (assign) NSUInteger totalEntries;
- (void) setStatus: (NSString *) str;
- (void) error: (NSString *) str;
- (void) startConversion: (NSString *) dictFile;
- (IBAction) startBuilding: (id) sender;
- (IBAction) stop: (id) sender;
- (void) cleanup;
@end