Files
MacPass/MacPass/MPOutlineViewController.h
michael starke bb0e36ab08 Updated to new HNHUi API
Signed-off-by: michael starke <michael.starke@hicknhack-software.com>
2015-11-08 12:11:34 +01:00

33 lines
808 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"
#import "MPTargetNodeResolving.h"
APPKIT_EXTERN NSString *const MPOutlineViewDidChangeGroupSelection;
@class HNHUIGradientView;
@class MPDocument;
@interface MPOutlineViewController : MPViewController <MPTargetNodeResolving, NSOutlineViewDelegate, NSMenuDelegate>
@property (weak) IBOutlet HNHUIGradientView *bottomBar;
- (void)clearSelection;
- (void)showOutline;
- (void)regsiterNotificationsForDocument:(MPDocument *)document;
/**
* 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