mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 10:32:26 +00:00
Made MPContextToolbarButton usable as normal button. Added private API helper for adding buttons to NSUserNotification Remove Autotype plugin API Enhanced custom attribute plugin API Enhanced EntryActionPlugin API to decouple menu items from actual action/target setup Stubbed action on no-open documents NSUserNotifications Stubbed HMACOTP custom attribute setup
97 lines
3.6 KiB
Objective-C
97 lines
3.6 KiB
Objective-C
//
|
|
// MPEntryInspectorViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 27.07.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
// This program 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.
|
|
//
|
|
// This program 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.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
#import "HNHUi/HNHUi.h"
|
|
#import <Quartz/Quartz.h>
|
|
|
|
@class HNHUIRoundedSecureTextField;
|
|
@class MPContextButton;
|
|
@class MPDocument;
|
|
|
|
@interface MPEntryInspectorViewController : MPViewController <NSPopoverDelegate, QLPreviewPanelDelegate, HNHUITextFieldDelegate>
|
|
|
|
@property (weak) IBOutlet NSSegmentedControl *infoTabControl;
|
|
|
|
/* General */
|
|
@property (weak) IBOutlet NSTabView *tabView;
|
|
@property (strong) IBOutlet NSView *generalView;
|
|
|
|
@property (weak) IBOutlet NSTextField *titleTextField;
|
|
@property (weak) IBOutlet NSTextField *usernameTextField;
|
|
@property (weak) IBOutlet NSTextField *URLTextField;
|
|
@property (weak) IBOutlet HNHUIRoundedSecureTextField *passwordTextField;
|
|
@property (weak) IBOutlet NSButton *generatePasswordButton;
|
|
@property (weak) IBOutlet NSButton *togglePassword;
|
|
@property (weak) IBOutlet NSButton *pickExpireDateButton;
|
|
@property (weak) IBOutlet NSButton *expiresCheckButton;
|
|
@property (weak) IBOutlet NSTokenField *tagsTokenField;
|
|
@property (weak) IBOutlet NSTextField *uuidTextField;
|
|
|
|
@property (weak) IBOutlet NSTextField *createdTextField;
|
|
@property (weak) IBOutlet NSTextField *modifiedTextField;
|
|
@property (weak) IBOutlet MPContextButton *addCustomFieldButton;
|
|
|
|
/* Attachments */
|
|
@property (weak) IBOutlet NSButtonCell *addAttachmentButton;
|
|
|
|
@property (weak) IBOutlet NSTableView *attachmentTableView;
|
|
|
|
/* Custom Fields */
|
|
@property (strong) IBOutlet NSTableView *customFieldsTableView;
|
|
@property (weak) IBOutlet NSButton *showCustomDataButton;
|
|
|
|
/* Autotype */
|
|
@property (strong) IBOutlet NSView *autotypView;
|
|
@property (weak) IBOutlet NSButton *enableAutotypeCheckButton;
|
|
@property (weak) IBOutlet NSButton *obfuscateAutotypeCheckButton;
|
|
@property (weak) IBOutlet NSTableView *windowAssociationsTableView;
|
|
@property (weak) IBOutlet NSButton *showCustomEntrySequenceAutotypeBuilderButton;
|
|
@property (weak) IBOutlet NSTextField *customEntrySequenceTextField;
|
|
@property (weak) IBOutlet NSComboBox *windowTitleComboBox;
|
|
|
|
@property (weak) IBOutlet NSButton *showCustomAssociationSequenceAutotypeBuilderButton;
|
|
|
|
@property (weak) IBOutlet NSTextField *associationSequenceTextField;
|
|
@property (weak) IBOutlet NSButton *addWindowAssociationButton;
|
|
@property (weak) IBOutlet NSButton *removeWindowAssociationButton;
|
|
|
|
- (void)registerNotificationsForDocument:(MPDocument *)document;
|
|
|
|
- (IBAction)showPasswordGenerator:(id)sender;
|
|
- (IBAction)showReferenceBuilder:(id)sender;
|
|
- (IBAction)showAutotypeBuilder:(id)sender;
|
|
|
|
- (IBAction)saveAttachment:(id)sender;
|
|
- (IBAction)addAttachment:(id)sender;
|
|
- (IBAction)removeAttachment:(id)sender;
|
|
|
|
- (IBAction)addCustomField:(id)sender;
|
|
- (IBAction)removeCustomField:(id)sender;
|
|
|
|
- (IBAction)addWindowAssociation:(id)sender;
|
|
- (IBAction)removeWindowAssociation:(id)sender;
|
|
|
|
- (IBAction)toggleQuicklookPreview:(id)sender;
|
|
- (IBAction)toggleExpire:(NSButton*)sender;
|
|
@end
|