Statistics
| Branch: | Tag: | Revision:

root / Classes / ImageFamilyPickerCell.h @ 9fee07a6

History | View | Annotate | Download (870 Bytes)

1
//
2
//  ImageFamilyPickerCell.h
3
//  OpenStack
4
//
5
//  Created by Mike Mayo on 10/23/10.
6
//  The OpenStack project is provided under the Apache 2.0 license.
7
//
8

    
9
#import <UIKit/UIKit.h>
10

    
11
#define kImageFamilyPickerCellHeight 85.0
12

    
13
@class OpenStackAccount;
14

    
15
@interface ImageFamilyPickerCell : UITableViewCell <UIPickerViewDelegate, UIPickerViewDataSource> {
16
    OpenStackAccount *account;
17
    NSDictionary *images;
18
    NSString *selectedFamily;
19
    UITableView *tableView;
20
}
21

    
22
@property (nonatomic, retain) OpenStackAccount *account;
23
@property (nonatomic, retain) UITableView *tableView;
24
@property (nonatomic, retain) NSDictionary *images;
25
@property (nonatomic, retain) NSString *selectedFamily;
26

    
27
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier account:(OpenStackAccount *)openStackAccount tableView:(UITableView *)aTableView;
28

    
29
@end