forked from jonmarimba/CocoaREST
-
Notifications
You must be signed in to change notification settings - Fork 3
/
AppDelegate.h
38 lines (29 loc) · 838 Bytes
/
AppDelegate.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
//
// AppDelegate.h
// SDNet
//
// Created by Steven Degutis on 5/27/09.
// Copyright 2009 Thoughtful Tree Software. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "SDTwitterTaskManager.h"
@interface AppDelegate : NSObject {
SDTwitterTaskManager *manager;
BOOL isWaiting;
NSArray *results;
IBOutlet NSTableView *resultsView;
IBOutlet NSTextField *userField;
IBOutlet NSTextField *userLabel;
IBOutlet NSTextField *passField;
IBOutlet NSPopUpButton *taskTypeButton;
IBOutlet NSImageView *profileImageView;
IBOutlet NSButton *changeButton;
}
@property BOOL isWaiting;
@property (copy) NSArray *results;
- (IBAction) runTask:(id)sender;
- (IBAction) findImage:(id)sender;
- (void) runUserTask;
- (void) changeTwitterProfileImage:(NSString *)imagePath;
- (NSNumber *) getImageSize:(NSString *)imagePath;
@end