mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 22:42:18 +00:00
35 lines
841 B
Objective-C
35 lines
841 B
Objective-C
//
|
|
// MPOutlineViewController.h
|
|
// MacPass
|
|
//
|
|
// Created by michael starke on 19.02.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPViewController.h"
|
|
|
|
APPKIT_EXTERN NSString *const MPOutlineViewDidChangeGroupSelection;
|
|
|
|
@class MPOutlineViewDelegate;
|
|
@class HNHGradientView;
|
|
@class MPDocument;
|
|
|
|
@interface MPOutlineViewController : MPViewController <NSOutlineViewDelegate, NSMenuDelegate>
|
|
|
|
|
|
@property (weak) IBOutlet HNHGradientView *bottomBar;
|
|
|
|
- (void)clearSelection;
|
|
- (void)showOutline;
|
|
- (void)regsiterNotificationsForDocument:(MPDocument *)document;
|
|
|
|
- (void)createGroup:(id)sender;
|
|
- (void)createEntry:(id)sender;
|
|
/**
|
|
* Retrieves the current item for the current mouse location
|
|
* @return Item under mouse. If the mouse isn't inside the view, nil is returned
|
|
*/
|
|
- (id)itemUnderMouse;
|
|
|
|
@end
|