First drafting for Password generator.

Extended Settings handling to be able to use Tabs
This commit is contained in:
michael starke
2013-03-31 15:57:41 +02:00
parent 476e18b870
commit a70aedb51e
22 changed files with 1123 additions and 125 deletions

24
MacPass/MPSettingsTab.h Normal file
View File

@@ -0,0 +1,24 @@
//
// MPSettingsTabProtocoll.h
// MacPass
//
// Created by Michael Starke on 23.07.12.
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
//
#import <Foundation/Foundation.h>
/*
Protrocoll to be implemented by ViewControllers that can be added to
the settings windows. Tabs are orded as the controllers are included.
*/
@protocol MPSettingsTab <NSObject>
@required
+ (NSString *)identifier;
@optional
- (NSString *)label;
- (NSImage *)image;
@end