mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-23 03:09:27 +00:00
31 lines
918 B
Objective-C
31 lines
918 B
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 HNHGradientView;
|
|
@class MPPopupImageView;
|
|
|
|
@interface MPInspectorViewController : MPViewController <NSPopoverDelegate>
|
|
|
|
@property (weak) IBOutlet HNHGradientView *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 *editButton;
|
|
|
|
- (IBAction)showImagePopup:(id)sender;
|
|
|
|
/* Seperate call to ensure alle registered objects are in place */
|
|
- (void)setupNotifications:(NSWindowController *)windowController;
|
|
- (void)prepareView;
|
|
|
|
@end
|