55 lines
2.0 KiB
Objective-C
55 lines
2.0 KiB
Objective-C
/**
|
|
* Copyright Maarten Billemont (http://www.lhunath.com, lhunath@lyndir.com)
|
|
*
|
|
* See the enclosed file LICENSE for license information (LGPLv3). If you did
|
|
* not receive this file, see http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
*
|
|
* @author Maarten Billemont <lhunath@lyndir.com>
|
|
* @license http://www.gnu.org/licenses/lgpl-3.0.txt
|
|
*/
|
|
|
|
//
|
|
// MPPasswordWindowController.h
|
|
// MPPasswordWindowController
|
|
//
|
|
// Created by lhunath on 2014-06-18.
|
|
// Copyright, lhunath (Maarten Billemont) 2014. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "MPSiteModel.h"
|
|
#import "MPSitesTableView.h"
|
|
#import "MPPasswordWindow.h"
|
|
|
|
@class MPMacAppDelegate;
|
|
|
|
@interface MPPasswordWindowController : NSWindowController<NSTextViewDelegate, NSTextFieldDelegate, NSTableViewDataSource, NSTableViewDelegate>
|
|
|
|
@property(nonatomic) NSMutableArray *sites;
|
|
@property(nonatomic) NSString *masterPassword;
|
|
@property(nonatomic) BOOL showVersionContainer;
|
|
@property(nonatomic) BOOL alternatePressed;
|
|
@property(nonatomic) BOOL shiftPressed;
|
|
@property(nonatomic) BOOL locked;
|
|
@property(nonatomic) BOOL newUser;
|
|
|
|
@property(nonatomic, weak) IBOutlet NSArrayController *sitesController;
|
|
@property(nonatomic, weak) IBOutlet NSTextField *inputLabel;
|
|
@property(nonatomic, weak) IBOutlet NSTextField *securePasswordField;
|
|
@property(nonatomic, weak) IBOutlet NSTextField *revealPasswordField;
|
|
@property(nonatomic, weak) IBOutlet NSTextField *sitePasswordTipField;
|
|
@property(nonatomic, weak) IBOutlet NSSearchField *siteField;
|
|
@property(nonatomic, weak) IBOutlet MPSitesTableView *siteTable;
|
|
@property(nonatomic, weak) IBOutlet NSProgressIndicator *progressView;
|
|
|
|
@property(nonatomic, strong) IBOutlet NSBox *passwordTypesBox;
|
|
@property(nonatomic, weak) IBOutlet NSMatrix *passwordTypesMatrix;
|
|
|
|
@property(nonatomic, strong) IBOutlet NSBox *securityQuestionsBox;
|
|
@property(nonatomic, weak) IBOutlet NSTextField *securityQuestionField;
|
|
@property(nonatomic, weak) IBOutlet NSTextField *securityAnswerField;
|
|
|
|
- (BOOL)handleCommand:(SEL)commandSelector;
|
|
|
|
@end
|