mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 05:52:58 +00:00
25 lines
545 B
Objective-C
25 lines
545 B
Objective-C
//
|
|
// MPMainWindowController.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 24.07.12.
|
|
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class MPViewController;
|
|
|
|
@interface MPMainWindowController : NSWindowController
|
|
|
|
- (void)showEntries;
|
|
- (void)showMainWindow:(id)sender;
|
|
- (void)performFindPanelAction:(id)sender;
|
|
/*
|
|
Sets the content View controller
|
|
@param viewController - use nil to reset to welcome screen
|
|
*/
|
|
- (void)setContentViewController:(MPViewController *)viewController;
|
|
|
|
@end
|