2017-04-05 20:56:22 +00:00
|
|
|
//==============================================================================
|
|
|
|
// This file is part of Master Password.
|
|
|
|
// Copyright (c) 2011-2017, Maarten Billemont.
|
2012-06-04 09:27:02 +00:00
|
|
|
//
|
2017-04-05 20:56:22 +00:00
|
|
|
// Master Password is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2012-06-04 09:27:02 +00:00
|
|
|
//
|
2017-04-05 20:56:22 +00:00
|
|
|
// Master Password is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2012-06-04 09:27:02 +00:00
|
|
|
//
|
2017-04-05 20:56:22 +00:00
|
|
|
// You can find a copy of the GNU General Public License in the
|
|
|
|
// LICENSE file. Alternatively, see <http://www.gnu.org/licenses/>.
|
|
|
|
//==============================================================================
|
2012-06-04 09:27:02 +00:00
|
|
|
|
|
|
|
#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
|