2014-09-17 01:34:58 -04: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 01:07:02 -04:00
|
|
|
|
2014-09-17 01:34:58 -04: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 00:32:07 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet MPStoreProductCell *fuelCell;
|
2014-09-28 22:15:55 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *loadingCell;
|
2014-09-26 00:32:07 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet NSLayoutConstraint *fuelMeterConstraint;
|
|
|
|
@property(weak, nonatomic) IBOutlet UIButton *fuelSpeedButton;
|
2014-09-30 00:01:33 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UILabel *fuelStatusLabel;
|
2014-09-17 01:34:58 -04:00
|
|
|
|
2014-09-28 22:15:55 -04:00
|
|
|
+ (NSString *)latestStoreFeatures;
|
|
|
|
|
2014-09-17 01:34:58 -04:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface MPStoreProductCell : UITableViewCell
|
|
|
|
|
|
|
|
@property(nonatomic) IBOutlet UILabel *priceLabel;
|
|
|
|
@property(nonatomic) IBOutlet UIActivityIndicatorView *activityIndicator;
|
|
|
|
@property(nonatomic) IBOutlet UIView *purchasedIndicator;
|
|
|
|
|
|
|
|
@end
|