2012-06-04 09:27:02 +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>
|
2012-06-11 14:15:49 +00:00
|
|
|
#import "MPTypeViewController.h"
|
2012-06-04 09:27:02 +00:00
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
@interface MPPreferencesViewController : UITableViewController
|
2012-06-04 09:27:02 +00:00
|
|
|
|
2013-04-20 18:11:19 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UISwitch *savePasswordSwitch;
|
2016-01-14 07:14:36 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UISwitch *touchIDSwitch;
|
2014-05-18 00:12:59 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *signOutCell;
|
2014-04-20 15:09:49 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *feedbackCell;
|
2014-06-22 01:59:14 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *showHelpCell;
|
2013-04-20 18:11:19 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *exportCell;
|
2014-04-26 18:03:44 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *checkInconsistencies;
|
2014-04-20 15:09:49 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UIImageView *avatarImage;
|
2014-04-26 00:02:58 +00:00
|
|
|
@property(weak, nonatomic) IBOutlet UISegmentedControl *generatedTypeControl;
|
|
|
|
@property(weak, nonatomic) IBOutlet UISegmentedControl *storedTypeControl;
|
2012-06-05 22:59:09 +00:00
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
- (IBAction)previousAvatar:(id)sender;
|
|
|
|
- (IBAction)nextAvatar:(id)sender;
|
|
|
|
- (IBAction)valueChanged:(id)sender;
|
2014-06-04 01:04:22 +00:00
|
|
|
- (IBAction)homePageButton:(id)sender;
|
|
|
|
- (IBAction)securityButton:(id)sender;
|
|
|
|
- (IBAction)sourceButton:(id)sender;
|
|
|
|
- (IBAction)thanksButton:(id)sender;
|
2012-06-04 09:27:02 +00:00
|
|
|
|
|
|
|
@end
|