[FIXED] Unlock screen. [FIXED] Internal fixes. [ADDED] Avatar selection in preferences. [ADDED] Implementation of the other preferences. [IMPROVED] UI of unlock and preferences screens.
27 lines
899 B
Objective-C
27 lines
899 B
Objective-C
//
|
|
// MBUnlockViewController.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 22/02/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface MPUnlockViewController : UIViewController <UITextFieldDelegate, UIScrollViewDelegate>
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *spinner;
|
|
@property (weak, nonatomic) IBOutlet UITextField *passwordField;
|
|
@property (weak, nonatomic) IBOutlet UIView *passwordView;
|
|
@property (weak, nonatomic) IBOutlet UIScrollView *avatarsView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *oldNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UIButton *avatarTemplate;
|
|
@property (weak, nonatomic) IBOutlet UILabel *deleteTip;
|
|
|
|
@property(nonatomic, strong) UIColor *avatarShadowColor;
|
|
|
|
- (IBAction)deleteTargetedUser:(UILongPressGestureRecognizer *)sender;
|
|
|
|
@end
|