summaryrefslogtreecommitdiff
path: root/ios/iosremote/iosremote/Classes/AppDelegate.m
diff options
context:
space:
mode:
Diffstat (limited to 'ios/iosremote/iosremote/Classes/AppDelegate.m')
-rw-r--r--ios/iosremote/iosremote/Classes/AppDelegate.m107
1 files changed, 107 insertions, 0 deletions
diff --git a/ios/iosremote/iosremote/Classes/AppDelegate.m b/ios/iosremote/iosremote/Classes/AppDelegate.m
new file mode 100644
index 000000000000..d239acf8e8c2
--- /dev/null
+++ b/ios/iosremote/iosremote/Classes/AppDelegate.m
@@ -0,0 +1,107 @@
+// -*- Mode: ObjC; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+//
+// This file is part of the LibreOffice project.
+//
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
+#import "AppDelegate.h"
+#import "UINavigationController+Theme.h"
+
+#define UIColorFromRGB(rgbValue) [UIColor \
+colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 \
+green:((float)((rgbValue & 0xFF00) >> 8))/255.0 \
+blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
+
+@implementation AppDelegate
+
+@synthesize window = _window;
+
+- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
+{
+ if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
+ return UIInterfaceOrientationMaskAll;
+ else
+ return UIInterfaceOrientationMaskPortrait;
+}
+
+- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
+{
+ [TestFlight takeOff:@"29f8d6f9-de56-4866-bd70-15b5305f812e"];
+
+ NSString *defaultsPath = [[NSBundle mainBundle] pathForResource:@"UserDefaults"
+ ofType:@"plist"];
+ NSDictionary *appDefaults = [NSDictionary dictionaryWithContentsOfFile:defaultsPath];
+ [[NSUserDefaults standardUserDefaults] registerDefaults:appDefaults];
+
+ NSString *defaultSettingsPath = [[NSBundle mainBundle] pathForResource:@"Root"
+ ofType:@"plist"];
+ NSDictionary *appDefaultSettings = [NSDictionary dictionaryWithContentsOfFile:defaultSettingsPath];
+ [[NSUserDefaults standardUserDefaults] registerDefaults:appDefaultSettings];
+
+ [[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil]
+ setBackgroundImage:[UIImage imageNamed:@"navBarButtonNormal"] forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];
+
+ NSDictionary *attributes = [NSDictionary dictionaryWithObjects:
+ [NSArray arrayWithObjects: [UIFont boldSystemFontOfSize:15], kTintColor, [UIColor clearColor], nil]
+ forKeys: [NSArray arrayWithObjects:UITextAttributeFont, UITextAttributeTextColor, UITextAttributeTextShadowColor, nil]];
+ [[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil] setTitleTextAttributes:attributes
+ forState:UIControlStateNormal];
+ attributes = [NSDictionary dictionaryWithObjects:
+ [NSArray arrayWithObjects: kAppTextFont, [UIColor grayColor], [UIColor clearColor], nil]
+ forKeys: [NSArray arrayWithObjects:UITextAttributeFont, UITextAttributeTextColor, UITextAttributeTextShadowColor, nil]];
+ [[UIBarButtonItem appearance] setTitleTextAttributes:attributes
+ forState:UIControlStateHighlighted];
+
+ if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 6.0)
+ {
+ UIPageControl *pageControl = [UIPageControl appearance];
+ pageControl.pageIndicatorTintColor = UIColorFromRGB(0x2980b9);
+ pageControl.currentPageIndicatorTintColor = UIColorFromRGB(0x1abc9c);
+ }
+
+ [self reconfigure];
+
+ return YES;
+}
+
+- (void) reconfigure
+{
+ kDefaultTimerWidget = [[NSUserDefaults standardUserDefaults] integerForKey:@"DEFAULT_TIMING_WIDGET"];
+ kCountDownTimerDefaultDuration = [[NSUserDefaults standardUserDefaults] integerForKey:@"TIMER_DEFAULT_DURATION"];
+ kStopwatchAutoStart = [[NSUserDefaults standardUserDefaults] boolForKey:@"STOPWATCH_AUTO_START"];
+ kCountDownTimerAutoStart = [[NSUserDefaults standardUserDefaults] boolForKey:@"TIMER_AUTO_START"];
+ kCountDownTimerVibration = [[NSUserDefaults standardUserDefaults] boolForKey:@"TIMER_VIBRATION"];
+
+ NSLog(@"Setting kCountDownTimerDefaultDuration to %d", kCountDownTimerDefaultDuration);
+}
+
+- (void)applicationWillResignActive:(UIApplication *)application
+{
+ // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
+ // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
+}
+
+- (void)applicationDidEnterBackground:(UIApplication *)application
+{
+ // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
+ // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
+}
+
+- (void)applicationWillEnterForeground:(UIApplication *)application
+{
+ // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
+}
+
+- (void)applicationDidBecomeActive:(UIApplication *)application
+{
+ // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
+}
+
+- (void)applicationWillTerminate:(UIApplication *)application
+{
+ // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
+}
+
+@end