Sophie

Sophie

distrib > Fedora > 18 > x86_64 > by-pkgid > 8c86774a3e53d77cc119f53a2b94a57a > files > 242

root-tutorial-5.34.14-2.fc18.noarch.rpm

#import <cstddef>
#import <cassert>
#import <vector>

#import <sys/sysctl.h>
#import <sys/types.h>

#import "TApplication.h"

#import "FileCollectionViewController.h"
#import "root_browserAppDelegate.h"
#import "Constants.h"

@implementation root_browserAppDelegate {
   TApplication *rootApp;

   UINavigationController *navigationController;
   __weak FileCollectionViewController *rc;
}

@synthesize window=_window;

//____________________________________________________________________________________________________
- (void) initRootController
{
   UIStoryboard * const storyboard = [UIStoryboard storyboardWithName : @"Browser_iPad" bundle : nil];
   navigationController = (UINavigationController *)[storyboard instantiateViewControllerWithIdentifier : ROOT::iOS::Browser::ROOTBrowserViewControllerID];
   assert([navigationController.topViewController isKindOfClass : [FileCollectionViewController class]] &&
          "initRootController, top view controller is either nil or has a wrong type");
  
   rc = (FileCollectionViewController *)navigationController.topViewController;
   
   NSString * const demosPath = [[NSBundle mainBundle] pathForResource : @"demos" ofType : @"root"];
   if (demosPath)
      [rc addRootFile : demosPath];

   [self.window setRootViewController : navigationController];
   [self.window makeKeyAndVisible];
}

//____________________________________________________________________________________________________
- (BOOL) application : (UIApplication *) application didFinishLaunchingWithOptions : (NSDictionary *) launchOptions
{
#pragma unused(application, launchOptions)

   rootApp = new TApplication("iosApp", 0, 0);
   [self initRootController];

   ROOT::iOS::Browser::deviceHasRetina = [UIScreen mainScreen].scale > 1.f ? true : false;

   return YES;
}

//____________________________________________________________________________________________________
- (void) applicationWillResignActive : (UIApplication *) application
{
#pragma unused(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
{
#pragma unused(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
{
#pragma unused(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
{
#pragma unused(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
{
#pragma unused(application)
   /*
   Called when the application is about to terminate.
   Save data if appropriate.
   See also applicationDidEnterBackground:.
   */
}

//____________________________________________________________________________________________________
- (BOOL) application : (UIApplication *) application openURL : (NSURL *) url
         sourceApplication : (NSString *) sourceApplication annotation : (id) annotation
{
#pragma unused(application, sourceApplication, annotation)

   while ([navigationController.viewControllers count] > 1)
      [navigationController popViewControllerAnimated : NO];

   [rc addRootFile : [url path]];

   return YES;
}

//____________________________________________________________________________________________________
- (void) dealloc
{
   delete rootApp;
}

@end