2017-04-05 16:56:22 -04:00
|
|
|
//==============================================================================
|
|
|
|
// This file is part of Master Password.
|
|
|
|
// Copyright (c) 2011-2017, Maarten Billemont.
|
2012-06-04 11:27:02 +02:00
|
|
|
//
|
2017-04-05 16:56:22 -04: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 11:27:02 +02:00
|
|
|
//
|
2017-04-05 16:56:22 -04: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 11:27:02 +02:00
|
|
|
//
|
2017-04-05 16:56:22 -04: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 11:27:02 +02:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2012-06-11 16:15:49 +02:00
|
|
|
#import "MPTypeViewController.h"
|
2012-06-04 11:27:02 +02:00
|
|
|
|
2014-04-20 11:09:49 -04:00
|
|
|
@interface MPPreferencesViewController : UITableViewController
|
2012-06-04 11:27:02 +02:00
|
|
|
|
2013-04-20 14:11:19 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UISwitch *savePasswordSwitch;
|
2016-01-14 02:14:36 -05:00
|
|
|
@property(weak, nonatomic) IBOutlet UISwitch *touchIDSwitch;
|
2014-05-17 20:12:59 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *signOutCell;
|
2014-04-20 11:09:49 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *feedbackCell;
|
2014-06-21 21:59:14 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *showHelpCell;
|
2013-04-20 14:11:19 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *exportCell;
|
2014-04-26 14:03:44 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UITableViewCell *checkInconsistencies;
|
2014-04-20 11:09:49 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UIImageView *avatarImage;
|
2017-04-17 21:57:08 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UISegmentedControl *generated1TypeControl;
|
|
|
|
@property(weak, nonatomic) IBOutlet UISegmentedControl *generated2TypeControl;
|
2014-04-25 20:02:58 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UISegmentedControl *storedTypeControl;
|
2017-05-07 18:36:01 -04:00
|
|
|
@property(weak, nonatomic) IBOutlet UILabel *typeSamplePassword;
|
2012-06-06 00:59:09 +02:00
|
|
|
|
2014-04-20 11:09:49 -04:00
|
|
|
- (IBAction)previousAvatar:(id)sender;
|
|
|
|
- (IBAction)nextAvatar:(id)sender;
|
|
|
|
- (IBAction)valueChanged:(id)sender;
|
2014-06-03 21:04:22 -04:00
|
|
|
- (IBAction)homePageButton:(id)sender;
|
|
|
|
- (IBAction)securityButton:(id)sender;
|
|
|
|
- (IBAction)sourceButton:(id)sender;
|
|
|
|
- (IBAction)thanksButton:(id)sender;
|
2012-06-04 11:27:02 +02:00
|
|
|
|
|
|
|
@end
|