mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-17 07:39:27 +00:00
27 lines
712 B
Objective-C
27 lines
712 B
Objective-C
//
|
|
// MPContextBarViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 16/12/13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
#import "MPDocument+Search.h"
|
|
|
|
@class HNHGradientView;
|
|
@class MPDocument;
|
|
|
|
@interface MPContextBarViewController : MPViewController
|
|
|
|
@property (weak) IBOutlet NSButton *titleButton;
|
|
@property (weak) IBOutlet NSButton *usernameButton;
|
|
@property (weak) IBOutlet NSButton *passwordButton;
|
|
@property (weak) IBOutlet NSButton *urlButton;
|
|
@property (weak) IBOutlet NSButton *notesButton;
|
|
@property (weak) IBOutlet NSButton *duplicatePasswordsButton;
|
|
|
|
- (void)registerNotificationsForDocument:(MPDocument *)document;
|
|
|
|
@end
|