Expanded open file functionality to use available apps.
[pithos-ios] / Classes / AccountSettingsViewController.h
1 //
2 //  AccountSettingsViewController.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 12/14/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <UIKit/UIKit.h>
10 #import "ActivityIndicatorView.h"
11
12 @class OpenStackAccount;
13
14 @interface AccountSettingsViewController : UITableViewController <UITextFieldDelegate> {
15     UITextField *usernameTextField;
16     UITextField *apiKeyTextField;
17     
18     NSInteger userDetailsSection;
19     NSInteger getTokenSection;
20     
21     NSString *userName;
22     NSString *apiKey;
23     
24     ActivityIndicatorView *activityIndicatorView;
25 }
26
27 @property (nonatomic, retain) OpenStackAccount *account;
28
29 @property (nonatomic, retain) NSString *userName;
30 @property (nonatomic, retain) NSString *apiKey;
31 @property (nonatomic, retain) ActivityIndicatorView *activityIndicatorView;
32
33 - (void)saveButtonPressed:(id)sender;
34
35 @end