AppDelegate.h
1.48 KB
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
57
//
// AppDelegate.h
//
// Created by Ben Copsey on 09/07/2008.
// Copyright 2008 All-Seeing Interactive Ltd. All rights reserved.
//
@class ASIHTTPRequest;
@class ASINetworkQueue;
@interface AppDelegate : NSObject {
ASINetworkQueue *networkQueue;
IBOutlet NSProgressIndicator *progressIndicator;
IBOutlet NSTextView *htmlSource;
IBOutlet NSTextField *fileLocation;
IBOutlet NSWindow *window;
IBOutlet NSWindow *loginWindow;
IBOutlet NSButton *showAccurateProgress;
IBOutlet NSTextField *host;
IBOutlet NSTextField *realm;
IBOutlet NSTextField *username;
IBOutlet NSTextField *password;
IBOutlet NSTextField *topSecretInfo;
IBOutlet NSButton *keychainCheckbox;
IBOutlet NSImageView *imageView1;
IBOutlet NSImageView *imageView2;
IBOutlet NSImageView *imageView3;
IBOutlet NSProgressIndicator *imageProgress1;
IBOutlet NSProgressIndicator *imageProgress2;
IBOutlet NSProgressIndicator *imageProgress3;
IBOutlet NSButton *startButton;
IBOutlet NSButton *resumeButton;
IBOutlet NSTextField *bandwidthUsed;
}
- (IBAction)simpleURLFetch:(id)sender;
- (IBAction)URLFetchWithProgress:(id)sender;
- (IBAction)stopURLFetchWithProgress:(id)sender;
- (IBAction)resumeURLFetchWithProgress:(id)sender;
- (IBAction)fetchThreeImages:(id)sender;
- (void)authenticationNeededForRequest:(ASIHTTPRequest *)request;
- (IBAction)dismissAuthSheet:(id)sender;
- (IBAction)fetchTopSecretInformation:(id)sender;
- (IBAction)postWithProgress:(id)sender;
- (IBAction)throttleBandwidth:(id)sender;
@end