forked from AndrewSchenk/App-Scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ScanResultsWC.h
40 lines (29 loc) · 850 Bytes
/
ScanResultsWC.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
//
// ScanResultsWC.h
// APIScanner
//
// Created by Andrew Schenk on 9/7/10.
// Copyright 2010 Chimp Studios. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <WebKit/WebKit.h>
@interface ScanResultsWC : NSWindowController <NSTableViewDelegate, NSTableViewDataSource, NSWindowDelegate> {
IBOutlet NSTableView *table;
IBOutlet NSScrollView *scroll;
NSArray *flagged;
NSMutableArray *feedback;
IBOutlet NSButton *checkBtn, *submitBtn;
IBOutlet NSView *resultsView, *vdata;
// Purchase Prefs
IBOutlet WebView *paypalBtn;
IBOutlet WebView *googleBtn;
IBOutlet NSTextField *entree;
IBOutlet NSImageView *entreeResult;
@private
NSURLConnection *feedbackConnection;
NSMutableData *connData;
}
@property(nonatomic, retain) NSArray *flagged;
-(IBAction)checkAll:(id)sender;
-(IBAction)submitFeedback:(id)sender;
@end