Files
MacPass/MacPass/MPMainWindowController.h
2013-02-20 03:36:51 +01:00

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