-
Notifications
You must be signed in to change notification settings - Fork 0
/
SomeObject.h
31 lines (24 loc) · 1011 Bytes
/
SomeObject.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
//
// SomeObject.h
// NSOperationQueueTest
//
// Created by Jonathan Wei on 7/10/12.
// Copyright (c) 2012 aWhiteRaven. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SomeObject : NSObject <NSTableViewDataSource, NSTableViewDelegate> {
NSURL *savepath; // Path to save files to
NSOpenPanel *openPanel; // The panel that opens up to choose a directory
NSDictionary *filesList; // Off-site plist that has the names
NSMutableArray *filesArray;
IBOutlet NSButton *directoryButton;
IBOutlet NSButton *getButton;
IBOutlet NSProgressIndicator *progressSpinner; // Activity indicator
IBOutlet NSTableView *objectTable; // The table that will list the files
IBOutlet NSTableColumn *checkColumn; // The check column for the latter table
IBOutlet NSTableColumn *objectColumn; // The names column for the latter table
IBOutlet NSTextField *pathField;
}
- (IBAction)setDirectory:(id)sender;
- (IBAction)getCheckedList:(id)sender;
@end