Added custom DocumentController to manipulate open panel

This commit is contained in:
Michael Starke
2014-11-01 15:20:58 +01:00
parent 3714b332f9
commit 6eefee2cd0
4 changed files with 131 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
//
// MPDocumentController.h
// MacPass
//
// Created by Michael Starke on 31.10.14.
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface MPDocumentController : NSDocumentController <NSOpenSavePanelDelegate>
- (IBAction)toggleAllowAllFilesButton:(id)sender;
@end