mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 02:22:28 +00:00
35 lines
1.0 KiB
Objective-C
35 lines
1.0 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 HNHUIGradientView;
|
|
@class MPPopupImageView;
|
|
|
|
@interface MPInspectorViewController : MPViewController <NSPopoverDelegate>
|
|
|
|
@property (weak) IBOutlet HNHUIGradientView *bottomBar;
|
|
@property (weak) IBOutlet NSTextField *createdTextField;
|
|
@property (weak) IBOutlet NSTextField *modifiedTextField;
|
|
@property (weak) IBOutlet NSTextField *noSelectionInfo;
|
|
@property (weak) IBOutlet MPPopupImageView *itemImageView;
|
|
@property (weak) IBOutlet NSTextField *itemNameTextField;
|
|
@property (weak) IBOutlet NSButton *saveChangesButton;
|
|
@property (weak) IBOutlet NSButton *discardChangesButton;
|
|
|
|
- (IBAction)pickIcon:(id)sender;
|
|
- (IBAction)pickExpiryDate:(id)sender;
|
|
- (IBAction)showPluginData:(id)sender;
|
|
|
|
/* Separate call to ensure all registered objects are in place */
|
|
- (void)registerNotificationsForDocument:(NSDocument *)document;
|
|
|
|
|
|
|
|
@end
|