mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 16:22:21 +00:00
Fixed #71 Added A simple entropy calculation for purely random generated passwords Added separate Views for Group and Entry Inspector Added "no Selection" view for Inpsector
38 lines
1.2 KiB
Objective-C
38 lines
1.2 KiB
Objective-C
//
|
|
// MPEntryInspectorViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 27.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
|
|
@class KdbEntry;
|
|
@class HNHRoundedSecureTextField;
|
|
@class MPDocument;
|
|
|
|
@interface MPEntryInspectorViewController : MPViewController <NSPopoverDelegate>
|
|
|
|
@property (weak) IBOutlet NSTextField *titleTextField;
|
|
@property (weak) IBOutlet NSTextField *usernameTextField;
|
|
@property (weak) IBOutlet NSTextField *URLTextField;
|
|
@property (weak) IBOutlet HNHRoundedSecureTextField *passwordTextField;
|
|
|
|
@property (weak) IBOutlet NSTextField *createdTextField;
|
|
@property (weak) IBOutlet NSTextField *modifiedTextField;
|
|
|
|
@property (weak) IBOutlet NSSegmentedControl *infoTabControl;
|
|
@property (weak) IBOutlet NSTableView *attachmentTableView;
|
|
@property (weak) IBOutlet NSTableView *customFieldsTableView;
|
|
@property (unsafe_unretained) IBOutlet NSTextView *notesTextView;
|
|
@property (weak) IBOutlet NSButton *generatePasswordButton;
|
|
@property (weak) IBOutlet NSButton *togglePassword;
|
|
|
|
@property (weak) IBOutlet NSTabView *tabView;
|
|
@property (strong) IBOutlet NSView *generalView;
|
|
|
|
- (void)setupBindings:(MPDocument *)document;
|
|
|
|
@end
|