-
Notifications
You must be signed in to change notification settings - Fork 11
/
TSPackUpViewController.h
56 lines (41 loc) · 1.29 KB
/
TSPackUpViewController.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
45
46
47
48
49
50
51
52
53
54
55
56
//
// TSPackUpViewController.h
// ThisService
//
// Created by Jesper on 2007-04-22.
// Copyright 2007-2012 waffle software. All rights reserved.
// BSD licensed - see license.txt for more information.
//
#import <Cocoa/Cocoa.h>
@class WFFilePicker, TSModeMatrix;
#import "TSViewController.h"
@interface TSPackUpViewController : TSViewController
{
IBOutlet NSView *hasServicesView;
IBOutlet NSView *noServicesView;
IBOutlet NSTextField *onlySearchesInLabel;
IBOutlet WFFilePicker *instructionsChoice;
IBOutlet NSButton *packUpButton;
IBOutlet NSPopUpButton *serviceChoice;
IBOutlet TSModeMatrix *modeMatrix;
IBOutlet NSTextField *loadingLabel;
IBOutlet NSProgressIndicator *loadingIndicator;
BOOL isRenaming;
NSString *_rename;
int instructionMode;
BOOL _isPreflightingInstructionModeChange;
BOOL hasConstructedMenuBefore;
NSInvocationOperation *constructServicesMenuOperation;
NSOperationQueue *operationQueue;
}
- (IBAction)changeService:(id)sender;
- (IBAction)doPackUp:(id)sender;
- (IBAction)showInstructionTemplate:(id)sender;
- (IBAction)help:(id)sender;
- (IBAction)showPackUp:(id)sender;
- (void)packUp:(NSURL *)path;
- (void)setRenaming:(BOOL)ren;
- (BOOL)renaming;
- (void)setRename:(NSString *)newRename;
- (NSString *)rename;
@end