-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAppController.h
44 lines (34 loc) · 1008 Bytes
/
AppController.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
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// AppController.h
// iMusicTags
//
// Created by Kevin Chen on 10-7-23.
// Copyright 2010 Kevin Chen's workstation. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "MusicFileInfo.h"
@interface AppController : NSObject {
NSMutableSet *fileSet;
NSMutableArray *fileUrls;
NSMutableArray *displayInfo;
IBOutlet NSTableView *tableView;
IBOutlet NSButton *preview;
IBOutlet NSButton *confirm;
IBOutlet NSPopUpButton *btnEncodingCatalog;
IBOutlet NSPopUpButton *btnEncoding;
CFStringEncoding encoding;
IBOutlet NSArrayController *catalogCtrl;
IBOutlet NSArrayController *encodingCtrl;
IBOutlet NSControl *deleteControl;
IBOutlet NSWindow *__strong window;
}
- (IBAction)open:(id)sender;
- (IBAction)deleteRows:(id)sender;
- (IBAction)preview:(id)sender;
- (IBAction)convert:(id)sender;
- (IBAction)chooseEncoding:(id)sender;
- (IBAction)chooseCatalog:(id)sender;
- (IBAction)newWindow:(id)sender;
@property CFStringEncoding encoding;
@property(strong) NSWindow *window;
@end