mirror of
https://github.com/MacPass/MacPass.git
synced 2026-01-31 03:38:17 +00:00
Filtering should work reliably now. No "sticking" of entries Fixed #42. Deleted entries now result in desolation.
32 lines
727 B
Objective-C
32 lines
727 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 KdbGroup;
|
|
@class HNHGradientView;
|
|
@class MPDocumentWindowController;
|
|
|
|
@interface MPOutlineViewController : MPViewController <NSOutlineViewDelegate>
|
|
|
|
|
|
@property (weak) IBOutlet HNHGradientView *bottomBar;
|
|
|
|
- (void)clearSelection;
|
|
- (void)showOutline;
|
|
- (void)setupNotifications:(MPDocumentWindowController *)windowController;
|
|
|
|
- (void)createGroup:(id)sender;
|
|
- (void)createEntry:(id)sender;
|
|
- (void)deleteNode:(id)sender;
|
|
|
|
@end
|