mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-21 10:39:28 +00:00
46 lines
1.6 KiB
Objective-C
46 lines
1.6 KiB
Objective-C
//
|
|
// MPInspectorTabViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 05.03.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
|
|
@class MPPopupImageView;
|
|
@class KdbEntry;
|
|
@class KdbGroup;
|
|
@class HNHGradientView;
|
|
@class HNHRoundedSecureTextField;
|
|
@class MPDocumentWindowController;
|
|
|
|
@interface MPInspectorViewController : MPViewController <NSPopoverDelegate>
|
|
|
|
@property (weak) IBOutlet MPPopupImageView *itemImageView;
|
|
@property (weak) IBOutlet NSTextField *itemNameTextfield;
|
|
|
|
@property (weak) IBOutlet NSTextField *titleTextField;
|
|
@property (weak) IBOutlet NSTextField *usernameTextField;
|
|
@property (weak) IBOutlet NSTextField *URLTextField;
|
|
@property (weak) IBOutlet HNHRoundedSecureTextField *passwordTextField;
|
|
@property (weak) IBOutlet NSTextField *titleOrNameLabel;
|
|
@property (weak) IBOutlet HNHGradientView *bottomBar;
|
|
@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 NSTextField *customFieldsTextField;
|
|
@property (weak) IBOutlet NSButton *togglePassword;
|
|
|
|
|
|
@property (weak, nonatomic, readonly) KdbEntry *selectedEntry;
|
|
@property (weak, nonatomic, readonly) KdbGroup *selectedGroup;
|
|
|
|
/* Seperate call to ensure alle registered objects are in place */
|
|
- (void)setupNotifications:(MPDocumentWindowController *)windowController;
|
|
|
|
@end
|