mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 10:32:26 +00:00
33 lines
608 B
Objective-C
33 lines
608 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) NSView *nextKeyView;
|
|
|
|
- (void)registerNotificationsForDocument:(MPDocument *)document;
|
|
|
|
- (IBAction)toggleFilterSpace:(id)sender;
|
|
|
|
- (BOOL)showsFilter;
|
|
- (BOOL)showsHistory;
|
|
- (BOOL)showsTrash;
|
|
|
|
- (void)showFilter;
|
|
|
|
- (void)showHistory;
|
|
- (void)showTrash;
|
|
|
|
@end
|