mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 13:53:37 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
45 lines
1.1 KiB
Objective-C
45 lines
1.1 KiB
Objective-C
NS_SWIFT_NAME(Settings)
|
|
@interface MWMSettings : NSObject
|
|
|
|
+ (BOOL)autoDownloadEnabled;
|
|
+ (void)setAutoDownloadEnabled:(BOOL)autoDownloadEnabled;
|
|
|
|
+ (MWMUnits)measurementUnits;
|
|
+ (void)setMeasurementUnits:(MWMUnits)measurementUnits;
|
|
|
|
+ (BOOL)zoomButtonsEnabled;
|
|
+ (void)setZoomButtonsEnabled:(BOOL)zoomButtonsEnabled;
|
|
|
|
+ (BOOL)compassCalibrationEnabled;
|
|
+ (void)setCompassCalibrationEnabled:(BOOL)compassCalibrationEnabled;
|
|
|
|
+ (MWMTheme)theme;
|
|
+ (void)setTheme:(MWMTheme)theme;
|
|
|
|
+ (BOOL)routingDisclaimerApproved;
|
|
+ (void)setRoutingDisclaimerApproved;
|
|
|
|
+ (NSString *)spotlightLocaleLanguageId;
|
|
+ (void)setSpotlightLocaleLanguageId:(NSString *)spotlightLocaleLanguageId;
|
|
|
|
+ (BOOL)largeFontSize;
|
|
+ (void)setLargeFontSize:(BOOL)largeFontSize;
|
|
|
|
+ (BOOL)transliteration;
|
|
+ (void)setTransliteration:(BOOL)transliteration;
|
|
|
|
+ (BOOL)isTrackWarningAlertShown;
|
|
+ (void)setTrackWarningAlertShown:(BOOL)shown;
|
|
|
|
+ (NSString *)donateUrl;
|
|
+ (BOOL)isNY;
|
|
|
|
+ (BOOL)iCLoudSynchronizationEnabled;
|
|
+ (void)setICLoudSynchronizationEnabled:(BOOL)iCLoudSyncEnabled;
|
|
|
|
+ (void)initializeLogging;
|
|
+ (BOOL)isFileLoggingEnabled;
|
|
+ (void)setFileLoggingEnabled:(BOOL)fileLoggingEnabled;
|
|
|
|
@end
|