mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-13 22:52:26 +00:00
Updated Readme to reflect new modules Added CocoaHTTPServer submodule Fixed SettingsWindow, works now with multiple tabs Added ServerSettings tab
27 lines
742 B
Objective-C
27 lines
742 B
Objective-C
//
|
|
// MPSettingsHelper.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 30.03.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
APPKIT_EXTERN NSString *const kMPSettingsKeyPasteboardClearTimeout;
|
|
APPKIT_EXTERN NSString *const kMPSettingsKeyClearPasteboardOnQuit;
|
|
APPKIT_EXTERN NSString *const kMPSettingsKeyPasswordEncoding;
|
|
APPKIT_EXTERN NSString *const kMPSettingsKeyOpenEmptyDatabaseOnLaunch;
|
|
APPKIT_EXTERN NSString *const kMPSettingsKeyHttpPort;
|
|
APPKIT_EXTERN NSString *const kMPSettingsKeyEnableHttpServer;
|
|
|
|
typedef NS_ENUM(NSUInteger, MPPasswordEncoding) {
|
|
MPPasswordEncodingUTF8,
|
|
MPPasswordEncodingASCII,
|
|
};
|
|
|
|
@interface MPSettingsHelper : NSObject
|
|
|
|
+ (void)setupDefaults;
|
|
|
|
@end |