54 lines
1.9 KiB
Objective-C
54 lines
1.9 KiB
Objective-C
//
|
|
// OTRSettingsManager.h
|
|
// Off the Record
|
|
//
|
|
// Created by Chris Ballinger on 4/10/12.
|
|
// Copyright (c) 2012 Chris Ballinger. All rights reserved.
|
|
//
|
|
// This file is part of ChatSecure.
|
|
//
|
|
// ChatSecure is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// ChatSecure is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with ChatSecure. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
@import Foundation;
|
|
#import "OTRSetting.h"
|
|
#import "OTRConstants.h"
|
|
|
|
@class OTRSettingsGroup;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface OTRSettingsManager : NSObject
|
|
|
|
@property (nonatomic, strong, readonly) NSArray<OTRSettingsGroup*> *settingsGroups;
|
|
@property (nonatomic, strong, readonly) NSDictionary<NSString*,OTRSetting*> *settingsDictionary;
|
|
|
|
- (OTRSetting*) settingAtIndexPath:(NSIndexPath*)indexPath;
|
|
- (NSString*) stringForGroupInSection:(NSUInteger)section;
|
|
- (NSUInteger) numberOfSettingsInSection:(NSUInteger)section;
|
|
- (nullable OTRSetting*) settingForOTRSettingKey:(NSString*)key;
|
|
|
|
- (nullable NSIndexPath *)indexPathForSetting:(OTRSetting *)setting;
|
|
|
|
+ (BOOL) boolForOTRSettingKey:(NSString*)key;
|
|
+ (double) doubleForOTRSettingKey:(NSString*)key;
|
|
+ (NSInteger) intForOTRSettingKey:(NSString *)key;
|
|
+ (float) floatForOTRSettingKey:(NSString *)key;
|
|
|
|
/** Recalculates current setting list */
|
|
- (void) populateSettings;
|
|
|
|
/** If enabled, will show UI for enabling OMEMO group encryption. */
|
|
@property (nonatomic, class, readonly) BOOL allowGroupOMEMO;
|
|
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|