2014-09-17 05:34:58 +00:00
|
|
|
//
|
|
|
|
// MPPreferencesViewController.h
|
|
|
|
// MasterPassword-iOS
|
|
|
|
//
|
|
|
|
// Created by Maarten Billemont on 04/06/12.
|
|
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2014-09-24 05:07:02 +00:00
|
|
|
|
2014-09-17 05:34:58 +00:00
|
|
|
@class MPStoreProductCell;
|
|
|
|
|
|
|
|
@interface MPStoreViewController : PearlMutableStaticTableViewController
|
|
|
|
|
|
|
|
@property(weak, nonatomic) IBOutlet MPStoreProductCell *generateLoginCell;
|
|
|
|
@property(weak, nonatomic) IBOutlet MPStoreProductCell *generateAnswersCell;
|
|
|
|
@property(weak, nonatomic) IBOutlet MPStoreProductCell *iOSIntegrationCell;
|
|
|
|
@property(weak, nonatomic) IBOutlet MPStoreProductCell *touchIDCell;
|
2014-09-26 04:32:07 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet MPStoreProductCell *fuelCell;
|
2014-09-29 02:15:55 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *loadingCell;
|
2014-09-26 04:32:07 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet NSLayoutConstraint *fuelMeterConstraint;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIButton *fuelSpeedButton;
|
2014-09-30 04:01:33 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UILabel *fuelStatusLabel;
|
2014-09-17 05:34:58 +00:00
|
|
|
|
2014-09-29 02:15:55 +00:00
|
|
|
+ (NSString *)latestStoreFeatures;
|
|
|
|
|
2014-09-17 05:34:58 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface MPStoreProductCell : UITableViewCell
|
|
|
|
|
|
|
|
@property(nonatomic) IBOutlet UILabel *priceLabel;
|
|
|
|
@property(nonatomic) IBOutlet UIActivityIndicatorView *activityIndicator;
|
|
|
|
@property(nonatomic) IBOutlet UIView *purchasedIndicator;
|
|
|
|
|
|
|
|
@end
|