merged code from ipad and iphone frontends
(aka HedgewarsMobile is a universal application)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/DetailViewController.h Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,26 @@
+//
+// DetailViewController.h
+// HedgewarsMobile
+//
+// Created by Vittorio on 27/03/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+#if __IPHONE_OS_VERSION_MAX_ALLOWED < __IPHONE_3_2
+@interface DetailViewController : UITableViewController <UIPopoverControllerDelegate, UISplitViewControllerDelegate> {
+#else
+@interface DetailViewController : UITableViewController {
+#endif
+ id popoverController;
+ NSArray *controllers;
+}
+
+// used in iphone version
+-(IBAction) dismissSplitView;
+
+@property (nonatomic, retain) id popoverController;
+@property (nonatomic, retain) NSArray * controllers;
+
+@end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/DetailViewController.m Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,138 @@
+ //
+// DetailViewController.m
+// HedgewarsMobile
+//
+// Created by Vittorio on 27/03/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import "DetailViewController.h"
+#import "TeamSettingsViewController.h"
+#import "SDL_uikitappdelegate.h"
+
+@implementation DetailViewController
+@synthesize popoverController, controllers;
+
+
+- (void)viewDidLoad {
+ self.title = NSLocalizedString(@"Settings",@"");
+
+ if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
+ self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:0 target:self action:@selector(dismissSplitView)];
+
+ NSMutableArray *array= [[NSMutableArray alloc] init];
+
+ TeamSettingsViewController *teamSettingsViewController = [[TeamSettingsViewController alloc]
+ initWithStyle:UITableViewStyleGrouped];
+ teamSettingsViewController.title = NSLocalizedString(@"Teams",@"");
+ [array addObject:teamSettingsViewController];
+ [teamSettingsViewController release];
+
+ self.controllers = array;
+ [array release];
+
+ [super viewDidLoad];
+}
+
+- (void)didReceiveMemoryWarning {
+ // Releases the view if it doesn't have a superview.
+ [super didReceiveMemoryWarning];
+
+ // Release any cached data, images, etc that aren't in use.
+}
+
+- (void)viewDidUnload {
+ self.controllers = nil;
+ self.popoverController = nil;
+ [super viewDidUnload];
+}
+
+- (void)dealloc {
+ [controllers release];
+ [popoverController release];
+ [super dealloc];
+}
+
+#pragma mark -
+#pragma mark Table view data source
+-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
+ return 1;
+}
+
+-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
+ return [controllers count];
+}
+
+-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
+ static NSString *CellIdentifier = @"Cell";
+
+ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
+ if (cell == nil) {
+ cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
+ reuseIdentifier:CellIdentifier] autorelease];
+ }
+
+ NSInteger row = [indexPath row];
+ UITableViewController *controller = [controllers objectAtIndex:row];
+
+ cell.textLabel.text = controller.title;
+ cell.imageView.image = [UIImage imageNamed:@"Icon.png"];
+ cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
+
+ return cell;
+}
+
+-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
+ NSInteger row = [indexPath row];
+ UITableViewController *nextController = [self.controllers objectAtIndex:row];
+ [self.navigationController pushViewController:nextController animated:YES];
+}
+
+/*
+#pragma mark -
+#pragma mark Managing the popover controller
+// When setting the detail item, update the view and dismiss the popover controller if it's showing.
+-(void) setDetailItem:(id) newDetailItem {
+ if (detailItem != newDetailItem) {
+ [detailItem release];
+ detailItem = [newDetailItem retain];
+
+ // Update the view.
+ // navigationBar.topItem.title = (NSString*) detailItem;
+
+ //test.text=(NSString*) detailItem;
+ }
+
+ // if (popoverController != nil) {
+ // [popoverController dismissPopoverAnimated:YES];
+ // }
+}
+*/
+
+#pragma mark -
+#pragma mark Split view support
+#ifdef __IPHONE_3_2
+-(void) splitViewController:(UISplitViewController*)svc willHideViewController:(UIViewController *)aViewController withBarButtonItem:(UIBarButtonItem*)barButtonItem forPopoverController: (UIPopoverController*)pc {
+ barButtonItem.title = @"Master List";
+ // [navigationBar.topItem setLeftBarButtonItem:barButtonItem animated:YES];
+ self.popoverController = pc;
+}
+
+// Called when the view is shown again in the split view, invalidating the button and popover controller.
+-(void) splitViewController: (UISplitViewController*)svc willShowViewController:(UIViewController *)aViewController invalidatingBarButtonItem:(UIBarButtonItem *)barButtonItem {
+ // [navigationBar.topItem setLeftBarButtonItem:nil animated:YES];
+ self.popoverController = nil;
+}
+#endif
+#pragma mark -
+#pragma mark Rotation support
+// Ensure that the view controller supports rotation and that the split view can therefore show in both portrait and landscape.
+-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
+ return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
+}
+
+-(IBAction) dismissSplitView {
+ [[NSNotificationCenter defaultCenter] postNotificationName:@"dismissModalView" object:nil];
+}
+
+@end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/HogHatViewController.h Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,20 @@
+//
+// HogHatViewController.h
+// HedgewarsMobile
+//
+// Created by Vittorio on 02/04/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+
+@interface HogHatViewController : UITableViewController {
+ NSArray *hatList;
+ NSDictionary *hog;
+}
+
+@property (nonatomic,retain) NSArray *hatList;
+@property (nonatomic,retain) NSDictionary *hog;
+
+@end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/HogHatViewController.m Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,191 @@
+//
+// HogHatViewController.m
+// HedgewarsMobile
+//
+// Created by Vittorio on 02/04/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import "HogHatViewController.h"
+
+
+@implementation HogHatViewController
+@synthesize hatList, hog;
+
+#pragma mark -
+#pragma mark View lifecycle
+
+
+- (void)viewDidLoad {
+ [super viewDidLoad];
+
+ //NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
+ NSString *hatPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/Hats/"];
+ NSArray *array = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:hatPath
+ error:NULL];
+ self.hatList = array;
+ //NSLog(@"%@", hatList);
+}
+
+- (void)viewWillAppear:(BOOL)animated {
+ [super viewWillAppear:animated];
+ self.title = [hog objectForKey:@"hogname"];
+ [self.tableView reloadData];
+}
+
+/*
+- (void)viewDidAppear:(BOOL)animated {
+ [super viewDidAppear:animated];
+}
+*/
+/*
+- (void)viewWillDisappear:(BOOL)animated {
+ [super viewWillDisappear:animated];
+}
+*/
+/*
+- (void)viewDidDisappear:(BOOL)animated {
+ [super viewDidDisappear:animated];
+}
+*/
+
+- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
+ // Override to allow orientations other than the default portrait orientation.
+ return YES;
+}
+
+
+#pragma mark -
+#pragma mark Table view data source
+-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
+ return 2;
+}
+
+-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
+ NSInteger rows;
+ if (0 == section)
+ rows = 1;
+ else
+ rows = [self.hatList count];
+ return rows;
+}
+
+// Customize the appearance of table view cells.
+- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
+
+ static NSString *CellIdentifier = @"Cell";
+
+ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
+ if (cell == nil) {
+ cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
+ }
+
+ if (0 == [indexPath section]) {
+ cell.textLabel.text = [hog objectForKey:@"hogname"];
+ cell.imageView.image = nil;
+ cell.accessoryType = UITableViewCellAccessoryNone;
+ } else {
+ cell.textLabel.text = [[hatList objectAtIndex:[indexPath row]] stringByDeletingPathExtension];
+ if ([cell.textLabel.text isEqualToString:[hog objectForKey:@"hat"]]) {
+ cell.accessoryType = UITableViewCellAccessoryCheckmark;
+ } else {
+ cell.accessoryType = UITableViewCellAccessoryNone;
+ }
+
+ NSString *hatsPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/Hats/"];
+ NSString *hatFile = [hatsPath stringByAppendingString:[hatList objectAtIndex:[indexPath row]]];
+ UIImage *image = [UIImage imageWithContentsOfFile: hatFile];
+
+ CGRect firstSpriteArea = CGRectMake(0, 0, 32, 32);
+ CGImageRef cgImgage = CGImageCreateWithImageInRect([image CGImage], firstSpriteArea);
+ cell.imageView.image = [UIImage imageWithCGImage: cgImgage];
+ CGImageRelease(cgImgage);
+ }
+
+ return cell;
+}
+
+
+/*
+// Override to support conditional editing of the table view.
+- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
+ // Return NO if you do not want the specified item to be editable.
+ return YES;
+}
+*/
+
+
+/*
+// Override to support editing the table view.
+- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
+
+ if (editingStyle == UITableViewCellEditingStyleDelete) {
+ // Delete the row from the data source
+ [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
+ }
+ else if (editingStyle == UITableViewCellEditingStyleInsert) {
+ // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
+ }
+}
+*/
+
+
+/*
+// Override to support rearranging the table view.
+- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
+}
+*/
+
+
+/*
+// Override to support conditional rearranging of the table view.
+- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
+ // Return NO if you do not want the item to be re-orderable.
+ return YES;
+}
+*/
+
+
+#pragma mark -
+#pragma mark Table view delegate
+
+- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
+ // Navigation logic may go here. Create and push another view controller.
+ /*
+ <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
+ // ...
+ // Pass the selected object to the new view controller.
+ [self.navigationController pushViewController:detailViewController animated:YES];
+ [detailViewController release];
+ */
+}
+
+
+#pragma mark -
+#pragma mark Memory management
+
+- (void)didReceiveMemoryWarning {
+ // Releases the view if it doesn't have a superview.
+ [super didReceiveMemoryWarning];
+
+ // Relinquish ownership any cached data, images, etc that aren't in use.
+}
+
+- (void)viewDidUnload {
+ [super viewDidUnload];
+ self.hatList = nil;
+ self.hog = nil;
+ // Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
+ // For example: self.myOutlet = nil;
+}
+
+
+- (void)dealloc {
+ [hog release];
+ [hatList release];
+ [super dealloc];
+}
+
+
+@end
+
--- a/cocoaTouch/MainMenuViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ b/cocoaTouch/MainMenuViewController.h Sun Apr 04 19:51:53 2010 +0000
@@ -10,19 +10,16 @@
#import "SettingsViewController.h"
@interface MainMenuViewController : UIViewController {
- UILabel *versionLabel;
- UIView *mainView;
- SettingsViewController *settingsViewController;
+ UIView *cover;
+ UILabel *versionLabel;
}
-@property (nonatomic, retain) IBOutlet UILabel *versionLabel;
-@property (nonatomic, retain) IBOutlet UIView *mainView;
-@property (nonatomic, retain) SettingsViewController *settingsViewController;
+@property (nonatomic,retain) UIView *cover;
+@property (nonatomic,retain) IBOutlet UILabel *versionLabel;
-(void) appear;
-(void) disappear;
+-(void) hideBehind;
--(IBAction) startPlaying;
--(IBAction) notYetImplemented;
-//-(IBAction) switchViews:(id)sender;
+-(IBAction) switchViews:(id)sender;
@end
--- a/cocoaTouch/MainMenuViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ b/cocoaTouch/MainMenuViewController.m Sun Apr 04 19:51:53 2010 +0000
@@ -9,16 +9,11 @@
#import "MainMenuViewController.h"
#import "SDL_uikitappdelegate.h"
#import "PascalImports.h"
-
-// in case we don't want SDL_mixer...
-//#import "SoundEffect.h"
-//SoundEffect *erasingSound = [[SoundEffect alloc] initWithContentsOfFile:[mainBundle pathForResource:@"Erase" ofType:@"caf"]];
-//SoundEffect *selectSound = [[SoundEffect alloc] initWithContentsOfFile:[mainBundle pathForResource:@"Select" ofType:@"caf"]];
+#import "SplitViewRootController.h"
@implementation MainMenuViewController
-
-@synthesize versionLabel, settingsViewController, mainView;
+@synthesize cover, versionLabel;
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
@@ -26,49 +21,43 @@
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
+ self.cover = nil;
+ self.versionLabel = nil;
[super didReceiveMemoryWarning];
-
- // Release any cached data, images, etc that aren't in use.
- if (nil == self.settingsViewController.view.superview) {
- self.settingsViewController = nil;
- [settingsViewController release];
- }
+}
+
+- (void)dealloc {
+ [versionLabel release];
+ [cover release];
+ [super dealloc];
+}
+
+-(void) viewDidUnload {
+ self.cover = nil;
+ [super viewDidUnload];
}
-(void) viewDidLoad {
- [NSThread detachNewThreadSelector:@selector(checkFirstRun) toTarget:self withObject:nil];
-
+
char *ver;
HW_versionInfo(NULL, &ver);
NSString *versionNumber = [[NSString alloc] initWithCString:ver];
self.versionLabel.text = versionNumber;
[versionNumber release];
-
- [super viewDidLoad];
-}
-- (void)viewDidUnload {
- // Release any retained subviews of the main view.
- self.versionLabel = nil;
+ // initialize some files the first time we load the game
+ [NSThread detachNewThreadSelector:@selector(checkFirstRun) toTarget:self withObject:nil];
+ // listen to request to remove the modalviewcontroller
+ [[NSNotificationCenter defaultCenter] addObserver:self
+ selector:@selector(dismissModalViewController)
+ name: @"dismissModalView"
+ object:nil];
+
+ [super viewDidLoad];
}
-- (void)dealloc {
- [versionLabel release];
- [settingsViewController release];
- [super dealloc];
-}
-
-// disable the buttons when to prevent launching twice the game
--(void) viewWillDisappear:(BOOL)animated {
- self.mainView.userInteractionEnabled = NO;
- [super viewWillDisappear:animated];
-}
-
--(void) viewDidAppear:(BOOL)animated {
- self.mainView.userInteractionEnabled = YES;
- [super viewDidAppear:animated];
-}
-
+// this is called to verify whether it's the first time the app is launched
+// if it is it blocks user interaction with an alertView until files are created
-(void) checkFirstRun {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
@@ -78,20 +67,48 @@
NSLog(@"First time run, creating settings files");
// show a popup with an indicator to make the user wait
- UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"One-time Preferences Configuration",@"")
+ UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Please wait",@"")
message:nil
delegate:nil
cancelButtonTitle:nil
otherButtonTitles:nil];
[alert show];
-
+ [alert release];
+
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc]
- initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
+ initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
indicator.center = CGPointMake(alert.bounds.size.width / 2, alert.bounds.size.height - 50);
[indicator startAnimating];
[alert addSubview:indicator];
[indicator release];
+ // create Default Team.plist
+ NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
+ NSString *teamsDirectory = [[paths objectAtIndex:0] stringByAppendingString:@"Teams/"];
+ [[NSFileManager defaultManager] createDirectoryAtPath:teamsDirectory
+ withIntermediateDirectories:NO
+ attributes:nil
+ error:NULL];
+
+ NSMutableArray *hedgehogs = [[NSMutableArray alloc] init];
+
+ for (int i = 0; i < 8; i++) {
+ NSString *hogName = [[NSString alloc] initWithFormat:@"hedgehog %d",i];
+ NSDictionary *hog = [[NSDictionary alloc] initWithObjectsAndKeys:@"100",@"health",@"0",@"level",
+ hogName,@"hogname",@"NoHat",@"hat",nil];
+ [hogName release];
+ [hedgehogs addObject:hog];
+ [hog release];
+ }
+
+ NSDictionary *defaultTeam = [[NSDictionary alloc] initWithObjectsAndKeys:@"4421353",@"color",@"0",@"hash",
+ @"Default Team",@"teamname",@"Statue",@"grave",@"Plane",@"fort",
+ @"Default",@"voicepack",@"hedgewars",@"flag",hedgehogs,@"hedgehogs",nil];
+ [hedgehogs release];
+ NSString *defaultTeamFile = [teamsDirectory stringByAppendingString:@"Default Team.plist"];
+ [defaultTeam writeToFile:defaultTeamFile atomically:YES];
+ [defaultTeam release];
+
// create settings.plist
NSMutableDictionary *saveDict = [[NSMutableDictionary alloc] init];
@@ -105,15 +122,15 @@
[saveDict release];
// create other files
-
- // memory cleanup
+
+ // ok let the user take control
[alert dismissWithClickedButtonIndex:0 animated:YES];
- [alert release];
}
[pool release];
[NSThread exit];
}
+#pragma mark -
-(void) appear {
[[SDLUIKitDelegate sharedAppDelegate].uiwindow addSubview:self.view];
[self release];
@@ -122,9 +139,14 @@
[UIView setAnimationDuration:1];
self.view.alpha = 1;
[UIView commitAnimations];
+
+ [NSTimer scheduledTimerWithTimeInterval:0.7 target:self selector:@selector(hideBehind) userInfo:nil repeats:NO];
}
-(void) disappear {
+ if (nil != cover)
+ [cover release];
+
[UIView beginAnimations:@"removing main controller" context:NULL];
[UIView setAnimationDuration:1];
self.view.alpha = 0;
@@ -134,43 +156,45 @@
[self.view removeFromSuperview];
}
-#pragma mark -
-#pragma mark Action buttons
--(IBAction) startPlaying {
- [[SDLUIKitDelegate sharedAppDelegate] startSDLgame];
-}
-
--(IBAction) notYetImplemented {
- UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Not Yet Implemented"
- message:@"Sorry, this feature is not yet implemented"
- delegate:nil
- cancelButtonTitle:@"Well, don't worry"
- otherButtonTitles:nil];
- [alert show];
- [alert release];
+// this is a silly way to hide the sdl contex that remained active
+-(void) hideBehind {
+ if (nil == cover) {
+ cover= [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
+ cover.backgroundColor = [UIColor blackColor];
+ }
+ [[SDLUIKitDelegate sharedAppDelegate].uiwindow insertSubview:cover belowSubview:self.view];
}
--(IBAction) switchViews:(id)sender {
- // view not displayed or not created
- if (nil == self.settingsViewController.view.superview) {
- // view not created
- if (nil == self.settingsViewController) {
- SettingsViewController *controller = [[SettingsViewController alloc] initWithNibName:@"SettingsViewController" bundle:nil];
- self.settingsViewController = controller;
- [controller release];
- }
- self.settingsViewController.view.frame = CGRectMake(0, -257, 480, 278);
- self.settingsViewController.parentView = self.mainView;
+#pragma mark -
+-(IBAction) switchViews:(id) sender {
+ UIButton *button = (UIButton *)sender;
+ SplitViewRootController *splitViewController;
+ UIAlertView *alert;
+
+ switch (button.tag) {
+ case 0:
+ [[SDLUIKitDelegate sharedAppDelegate] startSDLgame];
+ break;
+ case 2:
+ // for now this controller is just to simplify code management
+ splitViewController = [[SplitViewRootController alloc] initWithNibName:nil bundle:nil];
+ splitViewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
+ [self presentModalViewController:splitViewController animated:YES];
+ break;
+ default:
+ alert = [[UIAlertView alloc] initWithTitle:@"Not Yet Implemented"
+ message:@"Sorry, this feature is not yet implemented"
+ delegate:nil
+ cancelButtonTitle:@"Well, don't worry"
+ otherButtonTitles:nil];
+ [alert show];
+ [alert release];
+ break;
+ }
+}
- [UIView beginAnimations:@"Settings SwitchView" context:NULL];
- [UIView setAnimationDuration:1];
-
- self.settingsViewController.view.frame = CGRectMake(0, 21, 480, 278);
- self.mainView.frame = CGRectMake(0, 299, 480, 278);
- [UIView commitAnimations];
-
- [self.view insertSubview:settingsViewController.view atIndex:0];
- }
+-(void) dismissModalViewController {
+ [self dismissModalViewControllerAnimated:YES];
}
@end
--- a/cocoaTouch/MainMenuViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,745 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">784</int>
- <string key="IBDocument.SystemVersion">10C540</string>
- <string key="IBDocument.InterfaceBuilderVersion">740</string>
- <string key="IBDocument.AppKitVersion">1038.25</string>
- <string key="IBDocument.HIToolboxVersion">458.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">62</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="1"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="372490531">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- </object>
- <object class="IBProxyObject" id="975951072">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- </object>
- <object class="IBUIView" id="191373211">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIView" id="167221315">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIImageView" id="249993817">
- <reference key="NSNextResponder" ref="167221315"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrameSize">{480, 278}</string>
- <reference key="NSSuperview" ref="167221315"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MCAwAA</bytes>
- </object>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <object class="NSCustomResource" key="IBUIImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">backgroundCenter.png</string>
- </object>
- </object>
- <object class="IBUIImageView" id="171108356">
- <reference key="NSNextResponder" ref="167221315"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{13, 12}, {240, 52}}</string>
- <reference key="NSSuperview" ref="167221315"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <object class="NSCustomResource" key="IBUIImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">title.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="124270424">
- <reference key="NSNextResponder" ref="167221315"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{233, 106}, {220, 52}}</string>
- <reference key="NSSuperview" ref="167221315"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MCAwIDAgMAA</bytes>
- </object>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <object class="NSFont" key="IBUIFont" id="917635782">
- <string key="NSName">Helvetica-Bold</string>
- <double key="NSSize">15</double>
- <int key="NSfFlags">16</int>
- </object>
- <object class="NSColor" key="IBUIHighlightedTitleColor" id="918890028">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleShadowColor" id="112471976">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MC41AA</bytes>
- </object>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">playButton.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="745970938">
- <reference key="NSNextResponder" ref="167221315"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{233, 210}, {220, 52}}</string>
- <reference key="NSSuperview" ref="167221315"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MCAwIDAgMAA</bytes>
- </object>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="917635782"/>
- <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="112471976"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">networkButton.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="836337039">
- <reference key="NSNextResponder" ref="167221315"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{33, 166}, {220, 52}}</string>
- <reference key="NSSuperview" ref="167221315"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MCAwIDAgMAA</bytes>
- </object>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="917635782"/>
- <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
- <object class="NSColor" key="IBUINormalTitleColor" id="111038951">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="111038951"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">storeButton.png</string>
- </object>
- </object>
- <object class="IBUILabel" id="533529472">
- <reference key="NSNextResponder" ref="167221315"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{60, 81}, {145, 21}}</string>
- <reference key="NSSuperview" ref="167221315"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <string key="IBUIText"/>
- <object class="NSFont" key="IBUIFont">
- <string key="NSName">Helvetica-Oblique</string>
- <double key="NSSize">17</double>
- <int key="NSfFlags">16</int>
- </object>
- <object class="NSColor" key="IBUITextColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MSAxIDEAA</bytes>
- </object>
- <nil key="IBUIHighlightedColor"/>
- <int key="IBUIBaselineAdjustment">1</int>
- <float key="IBUIMinimumFontSize">10</float>
- <int key="IBUITextAlignment">1</int>
- </object>
- <object class="IBUIButton" id="753723574">
- <reference key="NSNextResponder" ref="167221315"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{314, 28}, {59, 52}}</string>
- <reference key="NSSuperview" ref="167221315"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="917635782"/>
- <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="112471976"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">settingsButton.png</string>
- </object>
- </object>
- </object>
- <string key="NSFrame">{{0, 21}, {480, 278}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <object class="NSColor" key="IBUIBackgroundColor" id="186611269">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MCAwIDAAA</bytes>
- </object>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- </object>
- <object class="IBUIImageView" id="821240857">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrameSize">{480, 21}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <object class="NSCustomResource" key="IBUIImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">borderTop.png</string>
- </object>
- </object>
- <object class="IBUIImageView" id="936485487">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrame">{{0, 300}, {480, 20}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <object class="NSCustomResource" key="IBUIImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">borderBottom.png</string>
- </object>
- </object>
- </object>
- <string key="NSFrameSize">{480, 320}</string>
- <reference key="NSSuperview"/>
- <reference key="IBUIBackgroundColor" ref="186611269"/>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="191373211"/>
- </object>
- <int key="connectionID">3</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">notYetImplemented</string>
- <reference key="source" ref="745970938"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">29</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">switchViews:</string>
- <reference key="source" ref="753723574"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">30</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">notYetImplemented</string>
- <reference key="source" ref="836337039"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">31</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">startPlaying</string>
- <reference key="source" ref="124270424"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">32</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">mainView</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="167221315"/>
- </object>
- <int key="connectionID">33</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">versionLabel</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="533529472"/>
- </object>
- <int key="connectionID">34</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">1</int>
- <reference key="object" ref="191373211"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="936485487"/>
- <reference ref="821240857"/>
- <reference ref="167221315"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="372490531"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="975951072"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">35</int>
- <reference key="object" ref="821240857"/>
- <reference key="parent" ref="191373211"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">36</int>
- <reference key="object" ref="936485487"/>
- <reference key="parent" ref="191373211"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">21</int>
- <reference key="object" ref="167221315"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="249993817"/>
- <reference ref="171108356"/>
- <reference ref="533529472"/>
- <reference ref="753723574"/>
- <reference ref="124270424"/>
- <reference ref="836337039"/>
- <reference ref="745970938"/>
- </object>
- <reference key="parent" ref="191373211"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">22</int>
- <reference key="object" ref="249993817"/>
- <reference key="parent" ref="167221315"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">23</int>
- <reference key="object" ref="171108356"/>
- <reference key="parent" ref="167221315"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">27</int>
- <reference key="object" ref="533529472"/>
- <reference key="parent" ref="167221315"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">28</int>
- <reference key="object" ref="753723574"/>
- <reference key="parent" ref="167221315"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">24</int>
- <reference key="object" ref="124270424"/>
- <reference key="parent" ref="167221315"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">26</int>
- <reference key="object" ref="836337039"/>
- <reference key="parent" ref="167221315"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">25</int>
- <reference key="object" ref="745970938"/>
- <reference key="parent" ref="167221315"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>1.IBEditorWindowLastContentRect</string>
- <string>1.IBPluginDependency</string>
- <string>21.IBEditorWindowLastContentRect</string>
- <string>21.IBPluginDependency</string>
- <string>22.IBPluginDependency</string>
- <string>23.IBPluginDependency</string>
- <string>24.IBPluginDependency</string>
- <string>25.IBPluginDependency</string>
- <string>26.IBPluginDependency</string>
- <string>27.IBPluginDependency</string>
- <string>28.IBPluginDependency</string>
- <string>35.IBPluginDependency</string>
- <string>36.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>MainMenuViewController</string>
- <string>UIResponder</string>
- <string>{{619, 293}, {480, 320}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{671, 637}, {480, 278}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">36</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">MainMenuViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="actions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>notYetImplemented</string>
- <string>startPlaying</string>
- <string>switchViews:</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>id</string>
- <string>id</string>
- <string>id</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="outlets">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>mainView</string>
- <string>versionLabel</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>UIView</string>
- <string>UILabel</string>
- </object>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../../hedge.build/trunk/cocoaTouch/MainMenuViewController.h</string>
- </object>
- </object>
- </object>
- <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSError.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSNetServices.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSPort.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSStream.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSXMLParser.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">QuartzCore.framework/Headers/CALayer.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier" id="238583711">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIButton</string>
- <string key="superclassName">UIControl</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIButton.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIControl</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIImageView</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIImageView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UILabel</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIResponder</string>
- <string key="superclassName">NSObject</string>
- <reference key="sourceIdentifier" ref="238583711"/>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UISearchBar</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UISearchDisplayController</string>
- <string key="superclassName">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIView</string>
- <string key="superclassName">UIResponder</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIViewController</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIViewController</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIViewController</string>
- <string key="superclassName">UIResponder</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
- <integer value="784" key="NS.object.0"/>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3000" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <string key="IBDocument.LastKnownRelativeProjectPath">../../../Documents/xcode/hwengine/hwengine.xcodeproj</string>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <string key="IBCocoaTouchPluginVersion">3.1</string>
- </data>
-</archive>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/MasterViewController.h Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,24 @@
+//
+// MasterViewController.h
+// HedgewarsMobile
+//
+// Created by Vittorio on 27/03/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+
+@class DetailViewController;
+
+@interface MasterViewController : UITableViewController {
+ DetailViewController *detailViewController;
+ NSArray *optionList;
+}
+
+@property (nonatomic, retain) IBOutlet DetailViewController *detailViewController;
+@property (nonatomic, retain) NSArray *optionList;
+
+-(IBAction) dismissSplitView;
+
+@end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/MasterViewController.m Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,128 @@
+//
+// MasterViewController.m
+// HedgewarsMobile
+//
+// Created by Vittorio on 27/03/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import "MasterViewController.h"
+#import "DetailViewController.h"
+#import "TeamSettingsViewController.h"
+
+@implementation MasterViewController
+@synthesize detailViewController, optionList;
+
+#pragma mark -
+#pragma mark View lifecycle
+
+
+- (void)viewDidLoad {
+ [super viewDidLoad];
+ optionList = [[NSArray alloc] initWithObjects:NSLocalizedString(@"General",@""),
+ NSLocalizedString(@"Teams",@""),
+ NSLocalizedString(@"Weapons",@""),
+ NSLocalizedString(@"Schemes",@""),
+ nil];
+ self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:0 target:self action:@selector(dismissSplitView)];
+
+ // Uncomment the following line to preserve selection between presentations.
+ //self.clearsSelectionOnViewWillAppear = NO;
+ // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
+ //self.navigationItem.rightBarButtonItem = self.editButtonItem;
+}
+
+-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
+ return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
+}
+
+
+#pragma mark -
+#pragma mark Table view data source
+
+-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
+ return 1;
+}
+
+
+-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
+ return [optionList count];
+}
+
+
+// Customize the appearance of table view cells.
+-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
+ static NSString *CellIdentifier = @"Cell";
+
+ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
+ if (cell == nil) {
+ cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
+ cell.textLabel.text = [optionList objectAtIndex:[indexPath row]];
+ }
+
+ return cell;
+}
+
+/*
+// Override to support editing the table view.
+- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
+
+ if (editingStyle == UITableViewCellEditingStyleDelete) {
+ // Delete the row from the data source
+ [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
+ }
+ else if (editingStyle == UITableViewCellEditingStyleInsert) {
+ // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
+ }
+}
+*/
+
+/*
+// Override to support rearranging the table view.
+- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
+}
+*/
+
+/*
+// Override to support conditional rearranging of the table view.
+- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
+ // Return NO if you do not want the item to be re-orderable.
+ return YES;
+}
+*/
+
+#pragma mark -
+#pragma mark Table view delegate
+-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
+
+ [detailViewController.navigationController popToRootViewControllerAnimated:NO];
+ TeamSettingsViewController *teamSettingsViewController = [[TeamSettingsViewController alloc]
+ initWithStyle:UITableViewStyleGrouped];
+ teamSettingsViewController.title = [optionList objectAtIndex:[indexPath row]];
+ teamSettingsViewController.navigationItem.hidesBackButton = YES;
+
+ [detailViewController.navigationController pushViewController: teamSettingsViewController animated:YES];
+}
+
+
+#pragma mark -
+#pragma mark Memory management
+-(void) didReceiveMemoryWarning {
+ // Releases the view if it doesn't have a superview.
+ [super didReceiveMemoryWarning];
+
+ // Relinquish ownership any cached data, images, etc that aren't in use.
+}
+
+- (void)dealloc {
+ [optionList release];
+ [detailViewController release];
+ [super dealloc];
+}
+
+-(IBAction) dismissSplitView {
+ [[NSNotificationCenter defaultCenter] postNotificationName:@"dismissModalView" object:nil];
+}
+
+@end
+
--- a/cocoaTouch/OverlayViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ b/cocoaTouch/OverlayViewController.h Sun Apr 04 19:51:53 2010 +0000
@@ -11,12 +11,15 @@
@interface OverlayViewController : UIViewController {
NSTimer *dimTimer;
+ id menuPopover; //UIPopoverController
CGFloat initialDistanceForPinching;
CGPoint gestureStartPoint;
+ BOOL popoverVisible;
}
@property (nonatomic,retain) NSTimer *dimTimer;
+@property (nonatomic,retain) id menuPopover;
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
@@ -24,6 +27,7 @@
-(IBAction) buttonReleased:(id) sender;
-(IBAction) buttonPressed:(id) sender;
+-(IBAction) showPopover;
-(void) dimOverlay;
-(void) showMenuAfterwards;
--- a/cocoaTouch/OverlayViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ b/cocoaTouch/OverlayViewController.m Sun Apr 04 19:51:53 2010 +0000
@@ -11,10 +11,10 @@
#import "PascalImports.h"
#import "CGPointUtils.h"
#import "SDL_mouse.h"
-#import "PopupMenuViewController.h"
+#import "PopoverMenuViewController.h"
@implementation OverlayViewController
-@synthesize dimTimer;
+@synthesize dimTimer, menuPopover;
-(void) didReceiveMemoryWarning {
@@ -52,9 +52,13 @@
-(void) viewDidUnload {
[dimTimer invalidate];
+ self.dimTimer = nil;
+ menuPopover = nil;
+ [super viewDidUnload];
}
-(void) dealloc {
+ [menuPopover release];
// dimTimer is autoreleased
[super dealloc];
}
@@ -92,7 +96,6 @@
// issue certain action based on the tag of the button
-(IBAction) buttonPressed:(id) sender {
[self activateOverlay];
- UIActionSheet *actionSheet;
UIButton *theButton = (UIButton *)sender;
switch (theButton.tag) {
@@ -118,23 +121,6 @@
HW_backjump();
break;
case 7:
- HW_pause();
- break;
- case 8:
- HW_chat();
- break;
- case 9:
- actionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"Are you reeeeeally sure?", @"")
- delegate:self
- cancelButtonTitle:NSLocalizedString(@"Well, maybe not...", @"")
- destructiveButtonTitle:NSLocalizedString(@"As sure as I can be!", @"")
- otherButtonTitles:nil];
- [actionSheet showInView:self.view];
- [actionSheet release];
-
- HW_pause();
- break;
- case 10:
HW_tab();
break;
default:
@@ -143,7 +129,42 @@
}
}
+// present a further check before closing game
+-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
+ if ([actionSheet cancelButtonIndex] != buttonIndex)
+ HW_terminate(NO);
+ else
+ HW_pause();
+}
+
+// show up a popover containing a popupMenuViewController; we hook it with setPopoverContentSize
+-(IBAction) showPopover{
+ PopoverMenuViewController *popupMenu = [[PopoverMenuViewController alloc] init];
+ popoverVisible = YES;
+ Class popoverController = NSClassFromString(@"UIPopoverController");
+ if (popoverController) {
+#ifdef __IPHONE_3_2
+ menuPopover = [[popoverController alloc] initWithContentViewController:popupMenu];
+ [menuPopover setPopoverContentSize:CGSizeMake(220, 170) animated:YES];
+
+ [menuPopover presentPopoverFromRect:CGRectMake(960, 0, 220, 32) inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
+#endif
+ } else {
+ //iphone stuff
+ }
+}
+
+// because of the actionSheet, the popover might not get dismissed, so we do it manually (through a NSNotification system, see above)
+// are we sure about this?
+-(void) dismissPopover {
+ /*if (popoverVisible)
+ [menuPopover dismissPopoverAnimated:YES];
+ popoverVisible = NO;*/
+}
+
#pragma mark -
+#pragma mark Custom touch event handling
+
#define kMinimumPinchDelta 50
#define kMinimumGestureLength 10
#define kMaximumVariance 3
@@ -151,7 +172,8 @@
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSArray *twoTouches;
UITouch *touch = [touches anyObject];
-
+ int width = [[UIScreen mainScreen] bounds].size.width;
+
switch ([touches count]) {
case 1:
gestureStartPoint = [touch locationInView:self.view];
@@ -160,7 +182,7 @@
case 1:
NSLog(@"X:%d Y:%d", (int)gestureStartPoint.x, (int)gestureStartPoint.y );
SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].window,
- (int)gestureStartPoint.y, 320 - (int)gestureStartPoint.x);
+ (int)gestureStartPoint.y, width - (int)gestureStartPoint.x);
HW_click();
break;
case 2:
@@ -203,13 +225,14 @@
NSArray *twoTouches;
CGPoint currentPosition;
UITouch *touch = [touches anyObject];
+ int width = [[UIScreen mainScreen] bounds].size.width;
switch ([touches count]) {
case 1:
currentPosition = [touch locationInView:self.view];
// panning
SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].window,
- (int)gestureStartPoint.y, 320 - (int)gestureStartPoint.x);
+ (int)gestureStartPoint.y, width - (int)gestureStartPoint.x);
// remember that we have x and y inverted
/* temporarily disabling hog movements for camera panning testing
CGFloat vertDiff = gestureStartPoint.x - currentPosition.x;
--- a/cocoaTouch/OverlayViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,699 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">768</int>
- <string key="IBDocument.SystemVersion">10C540</string>
- <string key="IBDocument.InterfaceBuilderVersion">762</string>
- <string key="IBDocument.AppKitVersion">1038.25</string>
- <string key="IBDocument.HIToolboxVersion">458.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">87</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="1"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="372490531">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- </object>
- <object class="IBProxyObject" id="975951072">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- </object>
- <object class="IBUIView" id="191373211">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIButton" id="584263820">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{0, 237}, {39, 53}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <object class="NSFont" key="IBUIFont" id="969592940">
- <string key="NSName">Helvetica-Bold</string>
- <double key="NSSize">15</double>
- <int key="NSfFlags">16</int>
- </object>
- <object class="NSColor" key="IBUIHighlightedTitleColor" id="708011311">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleShadowColor" id="280149554">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MC41AA</bytes>
- </object>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">arrowLeft.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="123494776">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{75, 237}, {39, 54}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">1</int>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">arrowRight.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="590902961">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{416, 233}, {64, 64}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">6</int>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <object class="NSCustomResource" key="IBUINormalImage" id="639745463">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">joyPush.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="132251648">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{368, 213}, {64, 64}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">5</int>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <reference key="IBUINormalImage" ref="639745463"/>
- </object>
- <object class="IBUIButton" id="752933969">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{344, 262}, {64, 64}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">4</int>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <reference key="IBUINormalImage" ref="639745463"/>
- </object>
- <object class="IBUIButton" id="261686746">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{29, 207}, {53, 39}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">2</int>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">arrowUp.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="81315603">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{29, 281}, {53, 39}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">3</int>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">arrowDown.png</string>
- </object>
- </object>
- </object>
- <string key="NSFrameSize">{480, 320}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MSAwAA</bytes>
- </object>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIMultipleTouchEnabled">YES</bool>
- <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
- <int key="interfaceOrientation">3</int>
- </object>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="191373211"/>
- </object>
- <int key="connectionID">3</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="584263820"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">8</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="584263820"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">9</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="584263820"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">10</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="584263820"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">11</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="123494776"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">13</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="123494776"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">14</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="123494776"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">15</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="123494776"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">16</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="261686746"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">18</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="261686746"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">19</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="261686746"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">20</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="261686746"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">21</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="81315603"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">23</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="81315603"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">24</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="81315603"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">25</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="81315603"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">26</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="590902961"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">44</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="590902961"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">45</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="590902961"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">46</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="590902961"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">47</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="752933969"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">49</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="752933969"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">50</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="752933969"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">51</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="752933969"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">52</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="132251648"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">54</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="132251648"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">55</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="132251648"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">56</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="132251648"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">57</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">1</int>
- <reference key="object" ref="191373211"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="584263820"/>
- <reference ref="123494776"/>
- <reference ref="261686746"/>
- <reference ref="81315603"/>
- <reference ref="590902961"/>
- <reference ref="132251648"/>
- <reference ref="752933969"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="372490531"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="975951072"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">4</int>
- <reference key="object" ref="584263820"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">left</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">12</int>
- <reference key="object" ref="123494776"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">right</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">17</int>
- <reference key="object" ref="261686746"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">up</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">22</int>
- <reference key="object" ref="81315603"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">down</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">43</int>
- <reference key="object" ref="590902961"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">push2</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">48</int>
- <reference key="object" ref="752933969"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">push1</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">53</int>
- <reference key="object" ref="132251648"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">push3</string>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>1.IBEditorWindowLastContentRect</string>
- <string>1.IBPluginDependency</string>
- <string>12.IBPluginDependency</string>
- <string>17.IBPluginDependency</string>
- <string>22.IBPluginDependency</string>
- <string>4.IBPluginDependency</string>
- <string>43.IBPluginDependency</string>
- <string>48.IBPluginDependency</string>
- <string>53.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>OverlayViewController</string>
- <string>UIResponder</string>
- <string>{{222, 776}, {480, 320}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">57</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">OverlayViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="actions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>buttonPressed:</string>
- <string>buttonReleased:</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>id</string>
- <string>id</string>
- </object>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../cocoaTouch/OverlayViewController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">OverlayViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="actions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>buttonPressed:</string>
- <string>buttonReleased:</string>
- <string>showPopover</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>id</string>
- <string>id</string>
- <string>id</string>
- </object>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../cocoaTouch/iPad/OverlayViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
- <integer value="768" key="NS.object.0"/>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3100" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <string key="IBDocument.LastKnownRelativeProjectPath">../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>arrowDown.png</string>
- <string>arrowLeft.png</string>
- <string>arrowRight.png</string>
- <string>arrowUp.png</string>
- <string>joyPush.png</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>{64, 64}</string>
- <string>{64, 64}</string>
- <string>{64, 64}</string>
- <string>{64, 64}</string>
- <string>{64, 64}</string>
- </object>
- </object>
- <string key="IBCocoaTouchPluginVersion">87</string>
- </data>
-</archive>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/PopoverMenuViewController.h Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,18 @@
+//
+// popupMenuViewController.h
+// HedgewarsMobile
+//
+// Created by Vittorio on 25/03/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+
+@interface PopoverMenuViewController : UITableViewController <UIActionSheetDelegate> {
+ NSArray *menuList;
+ BOOL isPaused;
+}
+@property (nonatomic,retain) NSArray *menuList;
+
+@end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/PopoverMenuViewController.m Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,115 @@
+ //
+// popupMenuViewController.m
+// HedgewarsMobile
+//
+// Created by Vittorio on 25/03/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import "SDL_uikitappdelegate.h"
+#import "PopoverMenuViewController.h"
+#import "PascalImports.h"
+
+@implementation PopoverMenuViewController
+@synthesize menuList;
+
+
+-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
+ // Overriden to allow any orientation.
+ return YES;
+}
+
+-(void) didReceiveMemoryWarning {
+ // Releases the view if it doesn't have a superview.
+ [super didReceiveMemoryWarning];
+
+ // Release any cached data, images, etc that aren't in use.
+}
+
+-(void) viewDidLoad {
+ isPaused = NO;
+ self.tableView.allowsSelection = YES;
+ self.tableView.alwaysBounceVertical = YES;
+ self.tableView.delaysContentTouches = NO;
+ menuList = [[NSArray alloc] initWithObjects:
+ NSLocalizedString(@"Pause Game", @""),
+ NSLocalizedString(@"Chat", @""),
+ NSLocalizedString(@"End Game", @""),
+ nil];
+ [super viewDidLoad];
+}
+
+
+-(void) dealloc {
+ [menuList release];
+ [super dealloc];
+}
+
+#pragma mark -
+#pragma mark tableView methods
+-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
+ return 1;
+}
+
+-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
+ return 3;
+}
+
+-(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
+ static NSString *cellIdentifier = @"CellIdentifier";
+
+ UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:cellIdentifier];
+ if (nil == cell) {
+ cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
+ reuseIdentifier:cellIdentifier] autorelease];
+ }
+ cell.textLabel.text = [menuList objectAtIndex:[indexPath row]];
+
+ return cell;
+}
+
+-(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
+ UIActionSheet *actionSheet;
+
+ switch ([indexPath row]) {
+ case 0:
+ HW_pause();
+ isPaused = !isPaused;
+ break;
+ case 1:
+ HW_chat();
+ //SDL_iPhoneKeyboardShow([SDLUIKitDelegate sharedAppDelegate].window);
+ break;
+ case 2:
+ actionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"Are you reeeeeally sure?", @"")
+ delegate:self
+ cancelButtonTitle:NSLocalizedString(@"Well, maybe not...", @"")
+ destructiveButtonTitle:NSLocalizedString(@"Of course!", @"")
+ otherButtonTitles:nil];
+ [actionSheet showInView:self.view];
+ [actionSheet release];
+
+ if (!isPaused)
+ HW_pause();
+ break;
+ default:
+ NSLog(@"Warning: unset case value in section!");
+ break;
+ }
+
+ [aTableView deselectRowAtIndexPath:indexPath animated:YES];
+}
+
+#pragma mark -
+#pragma mark actionSheet methods
+-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
+ if ([actionSheet cancelButtonIndex] != buttonIndex) {
+ [[NSNotificationCenter defaultCenter] postNotificationName:@"dismissPopover" object:nil];
+ HW_terminate(NO);
+ }
+ else
+ if (!isPaused)
+ HW_pause();
+}
+
+@end
--- a/cocoaTouch/SDLOverrides/SDL_uikitappdelegate.h Sun Apr 04 16:38:00 2010 +0000
+++ b/cocoaTouch/SDLOverrides/SDL_uikitappdelegate.h Sun Apr 04 19:51:53 2010 +0000
@@ -44,3 +44,14 @@
-(void) startSDLgame;
@end
+
+#ifndef __IPHONE_3_2 // if iPhoneOS is 3.2 or greater then __IPHONE_3_2 will be defined
+
+typedef enum {
+ UIUserInterfaceIdiomPhone, // iPhone and iPod touch style UI
+ UIUserInterfaceIdiomPad, // iPad style UI
+} UIUserInterfaceIdiom;
+
+#define UI_USER_INTERFACE_IDIOM() UIUserInterfaceIdiomPhone
+
+#endif // ifndef __IPHONE_3_2
--- a/cocoaTouch/SDLOverrides/SDL_uikitappdelegate.m Sun Apr 04 16:38:00 2010 +0000
+++ b/cocoaTouch/SDLOverrides/SDL_uikitappdelegate.m Sun Apr 04 19:51:53 2010 +0000
@@ -79,7 +79,11 @@
[setup release];
// overlay with controls, become visible after 2 seconds
- overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController" bundle:nil];
+ if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
+ overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController-iPad" bundle:nil];
+ else
+ overlayController = [[OverlayViewController alloc] initWithNibName:@"OverlayViewController-iPhone" bundle:nil];
+
[uiwindow addSubview:overlayController.view];
[overlayController release];
@@ -110,7 +114,10 @@
self.uiwindow = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.uiwindow.backgroundColor = [UIColor blackColor];
- self.viewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController" bundle:nil];
+ if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
+ self.viewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPad" bundle:nil];
+ else
+ self.viewController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuViewController-iPhone" bundle:nil];
[uiwindow addSubview:viewController.view];
[viewController release];
--- a/cocoaTouch/SchemeEditViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-//
-// SchemeEditViewController.h
-// hwengine
-//
-// Created by Vittorio on 08/01/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-
-@interface SchemeEditViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
- UITableViewCell *cell0;
- UITableView *table;
-}
-@property (nonatomic, retain) IBOutlet UITableViewCell *cell0;
-@property (nonatomic, retain) IBOutlet UITableView *table;
-
-@end
--- a/cocoaTouch/SchemeEditViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,71 +0,0 @@
-//
-// SchemeEditViewController.m
-// hwengine
-//
-// Created by Vittorio on 08/01/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "SchemeEditViewController.h"
-
-
-@implementation SchemeEditViewController
-@synthesize cell0, table;
-/*
- // The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
-- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
- if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
- // Custom initialization
- }
- return self;
-}
-*/
-
-// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
-- (void)viewDidLoad {
- table.backgroundColor = [UIColor clearColor];
- [super viewDidLoad];
-}
-
-// Override to allow orientations other than the default portrait orientation.
-- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- // Return YES for supported orientations
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
-- (void)didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Release any cached data, images, etc that aren't in use.
-}
-
-- (void)viewDidUnload {
- // Release any retained subviews of the main view.
- // e.g. self.myOutlet = nil;
-}
-
-
-- (void)dealloc {
- [super dealloc];
-}
-- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
-
-
-
- return cell0;
-
-
-
-
-}
--(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView{
- return 1;
-}
-
-- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
- return 1;
-}
-
-@end
--- a/cocoaTouch/SchemeEditViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,595 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">784</int>
- <string key="IBDocument.SystemVersion">10C540</string>
- <string key="IBDocument.InterfaceBuilderVersion">740</string>
- <string key="IBDocument.AppKitVersion">1038.25</string>
- <string key="IBDocument.HIToolboxVersion">458.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">62</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="16"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="372490531">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- </object>
- <object class="IBProxyObject" id="975951072">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- </object>
- <object class="IBUIView" id="774267795">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUITableViewCell" id="1022610692">
- <reference key="NSNextResponder" ref="774267795"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIView" id="661185827">
- <reference key="NSNextResponder" ref="1022610692"/>
- <int key="NSvFlags">256</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUISwitch" id="590075064">
- <reference key="NSNextResponder" ref="661185827"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{206, 8}, {94, 27}}</string>
- <reference key="NSSuperview" ref="661185827"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <bool key="IBUIMultipleTouchEnabled">YES</bool>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <bool key="IBUIOn">YES</bool>
- </object>
- <object class="IBUILabel" id="56472929">
- <reference key="NSNextResponder" ref="661185827"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{20, 11}, {42, 21}}</string>
- <reference key="NSSuperview" ref="661185827"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <string key="IBUIText">Label</string>
- <object class="NSColor" key="IBUITextColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MCAwIDAAA</bytes>
- </object>
- <nil key="IBUIHighlightedColor"/>
- <int key="IBUIBaselineAdjustment">1</int>
- <float key="IBUIMinimumFontSize">10</float>
- </object>
- </object>
- <string key="NSFrameSize">{320, 43}</string>
- <reference key="NSSuperview" ref="1022610692"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MCAwAA</bytes>
- </object>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIMultipleTouchEnabled">YES</bool>
- </object>
- </object>
- <string key="NSFrame">{{0, 208}, {320, 44}}</string>
- <reference key="NSSuperview" ref="774267795"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MSAxIDEAA</bytes>
- </object>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUISeparatorStyle">1</int>
- <reference key="IBUIContentView" ref="661185827"/>
- </object>
- <object class="IBUIImageView" id="368425340">
- <reference key="NSNextResponder" ref="774267795"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{0, -6}, {320, 443}}</string>
- <reference key="NSSuperview" ref="774267795"/>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <object class="NSCustomResource" key="IBUIImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">Background.png</string>
- </object>
- </object>
- <object class="IBUITableView" id="543517138">
- <reference key="NSNextResponder" ref="774267795"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrameSize">{320, 431}</string>
- <reference key="NSSuperview" ref="774267795"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <bool key="IBUIBouncesZoom">NO</bool>
- <int key="IBUIStyle">1</int>
- <int key="IBUISeparatorStyle">1</int>
- <int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
- <bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
- <float key="IBUIRowHeight">44</float>
- <float key="IBUISectionHeaderHeight">10</float>
- <float key="IBUISectionFooterHeight">10</float>
- </object>
- </object>
- <string key="NSFrameSize">{320, 431}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- <object class="NSColorSpace" key="NSCustomColorSpace">
- <int key="NSID">2</int>
- </object>
- </object>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <object class="IBUISimulatedTabBarMetrics" key="IBUISimulatedBottomBarMetrics"/>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">cell0</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="1022610692"/>
- </object>
- <int key="connectionID">11</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="774267795"/>
- </object>
- <int key="connectionID">14</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">delegate</string>
- <reference key="source" ref="543517138"/>
- <reference key="destination" ref="372490531"/>
- </object>
- <int key="connectionID">17</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">dataSource</string>
- <reference key="source" ref="543517138"/>
- <reference key="destination" ref="372490531"/>
- </object>
- <int key="connectionID">18</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">table</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="543517138"/>
- </object>
- <int key="connectionID">19</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="372490531"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="975951072"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">13</int>
- <reference key="object" ref="774267795"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="1022610692"/>
- <reference ref="368425340"/>
- <reference ref="543517138"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">7</int>
- <reference key="object" ref="1022610692"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="56472929"/>
- <reference ref="590075064"/>
- </object>
- <reference key="parent" ref="774267795"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">10</int>
- <reference key="object" ref="56472929"/>
- <reference key="parent" ref="1022610692"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">9</int>
- <reference key="object" ref="590075064"/>
- <reference key="parent" ref="1022610692"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">15</int>
- <reference key="object" ref="368425340"/>
- <reference key="parent" ref="774267795"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">16</int>
- <reference key="object" ref="543517138"/>
- <reference key="parent" ref="774267795"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>10.IBPluginDependency</string>
- <string>13.IBEditorWindowLastContentRect</string>
- <string>13.IBPluginDependency</string>
- <string>15.IBPluginDependency</string>
- <string>16.IBEditorWindowLastContentRect</string>
- <string>16.IBPluginDependency</string>
- <string>7.IBEditorWindowLastContentRect</string>
- <string>7.IBPluginDependency</string>
- <string>9.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>SchemeEditViewController</string>
- <string>UIResponder</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{465, 427}, {320, 480}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{528, 253}, {320, 431}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{685, 423}, {320, 44}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">19</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">SchemeEditViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="outlets">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>cell0</string>
- <string>table</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>UITableViewCell</string>
- <string>UITableView</string>
- </object>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../../hedge.build/trunk/cocoaTouch/SchemeEditViewController.h</string>
- </object>
- </object>
- </object>
- <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSError.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSNetServices.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSPort.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSStream.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSXMLParser.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">QuartzCore.framework/Headers/CALayer.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier" id="106704389">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIControl</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIImageView</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIImageView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UILabel</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIResponder</string>
- <string key="superclassName">NSObject</string>
- <reference key="sourceIdentifier" ref="106704389"/>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIScrollView</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIScrollView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UISearchBar</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UISearchDisplayController</string>
- <string key="superclassName">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UISwitch</string>
- <string key="superclassName">UIControl</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UISwitch.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UITableView</string>
- <string key="superclassName">UIScrollView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UITableView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UITableViewCell</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UITableViewCell.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIView</string>
- <string key="superclassName">UIResponder</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIViewController</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIViewController</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIViewController</string>
- <string key="superclassName">UIResponder</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
- <integer value="784" key="NS.object.0"/>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3000" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <string key="IBDocument.LastKnownRelativeProjectPath">../../../Documents/xcode/hwengine/hwengine.xcodeproj</string>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <string key="IBCocoaTouchPluginVersion">3.1</string>
- </data>
-</archive>
--- a/cocoaTouch/SettingsViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,698 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">784</int>
- <string key="IBDocument.SystemVersion">10C540</string>
- <string key="IBDocument.InterfaceBuilderVersion">740</string>
- <string key="IBDocument.AppKitVersion">1038.25</string>
- <string key="IBDocument.HIToolboxVersion">458.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">62</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="1"/>
- <integer value="44"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="372490531">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- </object>
- <object class="IBProxyObject" id="975951072">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- </object>
- <object class="IBUITextField" id="52230916">
- <nil key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{100, 18}, {200, 31}}</string>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentVerticalAlignment">0</int>
- <string key="IBUIText"/>
- <string key="IBUIPlaceholder">username</string>
- <object class="NSColor" key="IBUITextColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC40MDAwMDAwMDYgMC40MDAwMDAwMDYgMQA</bytes>
- </object>
- <object class="NSFont" key="IBUIFont" id="788314749">
- <string key="NSName">Helvetica</string>
- <double key="NSSize">15</double>
- <int key="NSfFlags">16</int>
- </object>
- <int key="IBUITextAlignment">2</int>
- <bool key="IBUIAdjustsFontSizeToFit">YES</bool>
- <float key="IBUIMinimumFontSize">17</float>
- <object class="IBUITextInputTraits" key="IBUITextInputTraits">
- <int key="IBUIAutocorrectionType">1</int>
- <int key="IBUIReturnKeyType">9</int>
- </object>
- </object>
- <object class="IBUITextField" id="809344278">
- <nil key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{100, 50}, {200, 31}}</string>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentVerticalAlignment">0</int>
- <string key="IBUIText"/>
- <string key="IBUIPlaceholder">network password (if any)</string>
- <object class="NSColor" key="IBUITextColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MAA</bytes>
- <object class="NSColorSpace" key="NSCustomColorSpace" id="753158763">
- <int key="NSID">2</int>
- </object>
- </object>
- <reference key="IBUIFont" ref="788314749"/>
- <int key="IBUITextAlignment">2</int>
- <bool key="IBUIClearsOnBeginEditing">YES</bool>
- <bool key="IBUIAdjustsFontSizeToFit">YES</bool>
- <float key="IBUIMinimumFontSize">17</float>
- <object class="IBUITextInputTraits" key="IBUITextInputTraits">
- <int key="IBUIAutocorrectionType">1</int>
- <int key="IBUIReturnKeyType">9</int>
- <bool key="IBUISecureTextEntry">YES</bool>
- </object>
- </object>
- <object class="IBUIView" id="191373211">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIImageView" id="411150667">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrameSize">{480, 278}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <object class="NSCustomResource" key="IBUIImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">backgroundTop.png</string>
- </object>
- </object>
- <object class="IBUITableView" id="179734732">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrameSize">{480, 278}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
- <bool key="IBUICanCancelContentTouches">NO</bool>
- <bool key="IBUIBouncesZoom">NO</bool>
- <int key="IBUIStyle">1</int>
- <int key="IBUISeparatorStyle">1</int>
- <int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
- <float key="IBUIRowHeight">44</float>
- <float key="IBUISectionHeaderHeight">10</float>
- <float key="IBUISectionFooterHeight">10</float>
- </object>
- </object>
- <string key="NSFrameSize">{480, 278}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MCAwIDAAA</bytes>
- </object>
- <int key="IBUIContentMode">4</int>
- </object>
- <object class="IBUIView" id="399248671">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIButton" id="227113826">
- <reference key="NSNextResponder" ref="399248671"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{100, 39}, {280, 50}}</string>
- <reference key="NSSuperview" ref="399248671"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <object class="NSFont" key="IBUIFont">
- <string key="NSName">Helvetica-Bold</string>
- <double key="NSSize">15</double>
- <int key="NSfFlags">16</int>
- </object>
- <int key="IBUIButtonType">1</int>
- <string key="IBUINormalTitle">Erase All Data</string>
- <object class="NSColor" key="IBUIHighlightedTitleColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleShadowColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MC41AA</bytes>
- </object>
- </object>
- </object>
- <string key="NSFrameSize">{480, 100}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- <reference key="NSCustomColorSpace" ref="753158763"/>
- </object>
- <bool key="IBUIAutoresizesSubviews">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentMode">3</int>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="191373211"/>
- </object>
- <int key="connectionID">3</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">username</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="52230916"/>
- </object>
- <int key="connectionID">13</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">password</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="809344278"/>
- </object>
- <int key="connectionID">14</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">backgroundTap:</string>
- <reference key="source" ref="191373211"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">17</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">textFieldDoneEditing:</string>
- <reference key="source" ref="52230916"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">20</int>
- </object>
- <int key="connectionID">18</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">textFieldDoneEditing:</string>
- <reference key="source" ref="809344278"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">20</int>
- </object>
- <int key="connectionID">19</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">dataSource</string>
- <reference key="source" ref="179734732"/>
- <reference key="destination" ref="372490531"/>
- </object>
- <int key="connectionID">31</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">delegate</string>
- <reference key="source" ref="179734732"/>
- <reference key="destination" ref="372490531"/>
- </object>
- <int key="connectionID">32</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">deleteData:</string>
- <reference key="source" ref="227113826"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">42</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">buttonContainer</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="399248671"/>
- </object>
- <int key="connectionID">46</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">settingsTable</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="179734732"/>
- </object>
- <int key="connectionID">47</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">1</int>
- <reference key="object" ref="191373211"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="411150667"/>
- <reference ref="179734732"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="372490531"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="975951072"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">4</int>
- <reference key="object" ref="411150667"/>
- <reference key="parent" ref="191373211"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">5</int>
- <reference key="object" ref="52230916"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">6</int>
- <reference key="object" ref="809344278"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">44</int>
- <reference key="object" ref="399248671"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="227113826"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">41</int>
- <reference key="object" ref="227113826"/>
- <reference key="parent" ref="399248671"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">30</int>
- <reference key="object" ref="179734732"/>
- <reference key="parent" ref="191373211"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>1.CustomClassName</string>
- <string>1.IBEditorWindowLastContentRect</string>
- <string>1.IBPluginDependency</string>
- <string>30.IBPluginDependency</string>
- <string>4.IBPluginDependency</string>
- <string>41.IBEditorWindowLastContentRect</string>
- <string>41.IBPluginDependency</string>
- <string>44.IBEditorWindowLastContentRect</string>
- <string>44.IBPluginDependency</string>
- <string>5.IBPluginDependency</string>
- <string>6.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>SettingsViewController</string>
- <string>UIResponder</string>
- <string>UIControl</string>
- <string>{{476, 534}, {480, 278}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{1352, 334}, {220, 50}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{476, 500}, {480, 100}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">47</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">SettingsViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="actions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>backgroundTap:</string>
- <string>deleteData:</string>
- <string>textFieldDoneEditing:</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>id</string>
- <string>id</string>
- <string>id</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="outlets">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>buttonContainer</string>
- <string>password</string>
- <string>settingsTable</string>
- <string>username</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>UIView</string>
- <string>UITextField</string>
- <string>UITableView</string>
- <string>UITextField</string>
- </object>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../../hedge.build/trunk/cocoaTouch/SettingsViewController.h</string>
- </object>
- </object>
- </object>
- <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSError.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSNetServices.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSPort.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSStream.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">Foundation.framework/Headers/NSXMLParser.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">QuartzCore.framework/Headers/CALayer.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier" id="311037604">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIButton</string>
- <string key="superclassName">UIControl</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIButton.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIControl</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIImageView</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIImageView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIResponder</string>
- <string key="superclassName">NSObject</string>
- <reference key="sourceIdentifier" ref="311037604"/>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIScrollView</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIScrollView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UISearchBar</string>
- <string key="superclassName">UIView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UISearchDisplayController</string>
- <string key="superclassName">NSObject</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UITableView</string>
- <string key="superclassName">UIScrollView</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UITableView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UITextField</string>
- <string key="superclassName">UIControl</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier" id="915667891">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIView</string>
- <reference key="sourceIdentifier" ref="915667891"/>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIView</string>
- <string key="superclassName">UIResponder</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIView.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIViewController</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIViewController</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">UIViewController</string>
- <string key="superclassName">UIResponder</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBFrameworkSource</string>
- <string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
- <integer value="784" key="NS.object.0"/>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3000" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <string key="IBDocument.LastKnownRelativeProjectPath">../../../Documents/xcode/hwengine/hwengine.xcodeproj</string>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <string key="IBCocoaTouchPluginVersion">3.1</string>
- </data>
-</archive>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/SingleTeamViewController.h Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,23 @@
+//
+// SingleTeamViewController.h
+// HedgewarsMobile
+//
+// Created by Vittorio on 02/04/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+@class HogHatViewController;
+@interface SingleTeamViewController : UITableViewController {
+ NSArray *hogsList;
+ NSArray *secondaryItems;
+ NSString *teamName;
+
+ HogHatViewController *hogChildController;
+}
+
+@property (nonatomic,retain) NSArray *hogsList;
+@property (nonatomic,retain) NSArray *secondaryItems;
+@property (nonatomic,retain) NSString *teamName;
+@end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/SingleTeamViewController.m Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,207 @@
+//
+// SingleTeamViewController.m
+// HedgewarsMobile
+//
+// Created by Vittorio on 02/04/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import "SingleTeamViewController.h"
+#import "HogHatViewController.h"
+
+@implementation SingleTeamViewController
+@synthesize hogsList, secondaryItems, teamName;
+
+
+#pragma mark -
+#pragma mark View lifecycle
+- (void)viewDidLoad {
+ [super viewDidLoad];
+
+ // Uncomment the following line to preserve selection between presentations.
+ //self.clearsSelectionOnViewWillAppear = NO;
+
+ // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
+ // self.navigationItem.rightBarButtonItem = self.editButtonItem;
+
+ NSMutableArray *array = [[NSMutableArray alloc] initWithObjects:
+ NSLocalizedString(@"Color",@""),
+ NSLocalizedString(@"Grave",@""),
+ NSLocalizedString(@"Voice",@""),
+ NSLocalizedString(@"Fort",@""),
+ NSLocalizedString(@"Flag",@""),
+ NSLocalizedString(@"Level",@""),nil];
+ self.secondaryItems = array;
+ [array release];
+}
+
+
+- (void)viewWillAppear:(BOOL)animated {
+ [super viewWillAppear:animated];
+ NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
+ NSString *teamFile = [[NSString alloc] initWithFormat:@"%@Teams/%@.plist",[paths objectAtIndex:0],self.teamName];
+ NSDictionary *teamDict = [[NSDictionary alloc] initWithContentsOfFile:teamFile];
+ [teamFile release];
+
+ self.hogsList = [teamDict objectForKey:@"hedgehogs"];
+ self.teamName = [teamDict objectForKey:@"teamname"];
+ [teamDict release];
+ self.title = teamName;
+}
+
+/*
+- (void)viewDidAppear:(BOOL)animated {
+ [super viewDidAppear:animated];
+}
+*/
+/*
+- (void)viewWillDisappear:(BOOL)animated {
+ [super viewWillDisappear:animated];
+}
+*/
+/*
+- (void)viewDidDisappear:(BOOL)animated {
+ [super viewDidDisappear:animated];
+}
+*/
+
+-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
+ return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
+}
+
+
+#pragma mark -
+#pragma mark Table view data source
+-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
+ return 3;
+}
+
+-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
+ NSInteger rows;
+ switch (section) {
+ case 0:
+ rows = 1;
+ break;
+ case 1:
+ rows = 8;
+ break;
+ case 2:
+ rows = 6;
+ break;
+ default:
+ break;
+ }
+ return rows;
+}
+
+-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
+ static NSString *CellIdentifier = @"Cell";
+
+ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
+ if (cell == nil) {
+ cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
+ reuseIdentifier:CellIdentifier] autorelease];
+ }
+
+ NSInteger row = [indexPath row];
+ switch ([indexPath section]) {
+ case 0:
+ cell.textLabel.text = teamName;
+ break;
+ case 1:
+ cell.textLabel.text = [[self.hogsList objectAtIndex:row] objectForKey:@"hogname"];
+ cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
+ break;
+ case 2:
+ cell.textLabel.text = [self.secondaryItems objectAtIndex:row];
+ break;
+ default:
+ break;
+ }
+
+ return cell;
+}
+
+
+/*
+// Override to support conditional editing of the table view.
+- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
+ // Return NO if you do not want the specified item to be editable.
+ return YES;
+}
+*/
+
+
+/*
+// Override to support editing the table view.
+- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
+
+ if (editingStyle == UITableViewCellEditingStyleDelete) {
+ // Delete the row from the data source
+ [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
+ }
+ else if (editingStyle == UITableViewCellEditingStyleInsert) {
+ // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
+ }
+}
+*/
+
+
+/*
+// Override to support rearranging the table view.
+- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
+}
+*/
+
+
+/*
+// Override to support conditional rearranging of the table view.
+- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
+ // Return NO if you do not want the item to be re-orderable.
+ return YES;
+}
+*/
+
+
+#pragma mark -
+#pragma mark Table view delegate
+
+-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
+ if (1 == [indexPath section]) {
+ if (nil == hogChildController) {
+ hogChildController = [[HogHatViewController alloc] initWithStyle:UITableViewStyleGrouped];
+ }
+
+ hogChildController.hog = [hogsList objectAtIndex:[indexPath row]];
+ //NSLog(@"%@",hogChildController.hog);
+ [self.navigationController pushViewController:hogChildController animated:YES];
+ }
+}
+
+
+#pragma mark -
+#pragma mark Memory management
+
+-(void) didReceiveMemoryWarning {
+ // Releases the view if it doesn't have a superview.
+ [super didReceiveMemoryWarning];
+ // Relinquish ownership any cached data, images, etc that aren't in use.
+}
+
+-(void) viewDidUnload {
+ self.hogsList = nil;
+ self.secondaryItems = nil;
+ self.teamName = nil;
+}
+
+
+-(void) dealloc {
+ [secondaryItems release];
+ [hogsList release];
+ [teamName release];
+ [super dealloc];
+}
+
+
+@end
+
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/SplitViewRootController.h Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,22 @@
+//
+// SplitViewRootController.h
+// HedgewarsMobile
+//
+// Created by Vittorio on 27/03/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+@class MasterViewController;
+@class DetailViewController;
+@interface SplitViewRootController : UIViewController {
+ id splitViewRootController; //UISplitViewController
+ MasterViewController *masterViewController;
+ DetailViewController *detailViewController;
+}
+
+@property (nonatomic,retain) IBOutlet id splitViewRootController;
+@property (nonatomic,retain) IBOutlet MasterViewController *masterViewController;
+@property (nonatomic,retain) IBOutlet DetailViewController *detailViewController;
+@end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/SplitViewRootController.m Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,95 @@
+ //
+// SplitViewRootController.m
+// HedgewarsMobile
+//
+// Created by Vittorio on 27/03/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import "SplitViewRootController.h"
+#import "MasterViewController.h"
+#import "DetailViewController.h"
+
+@implementation SplitViewRootController
+@synthesize splitViewRootController, masterViewController, detailViewController;
+
+
+-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
+ return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
+}
+
+-(void) didReceiveMemoryWarning {
+ // Releases the view if it doesn't have a superview.
+ [super didReceiveMemoryWarning];
+ // Release any cached data, images, etc that aren't in use.
+}
+
+// load the view programmatically; we need a splitViewController that handles a MasterViewController
+// (which is just a UITableViewController) and a DetailViewController where we present options
+-(void) viewDidLoad {
+ UINavigationController *detailedNavController;
+ detailViewController = [[DetailViewController alloc] initWithStyle:UITableViewStyleGrouped];
+
+ Class splitViewController = NSClassFromString(@"UISplitViewController");
+ if (splitViewController) {
+ splitViewRootController = [[splitViewController alloc] init];
+ CGRect screensize = [[UIScreen mainScreen] bounds];
+ [[splitViewRootController view] setFrame:CGRectMake(0, 0, screensize.size.height, screensize.size.width)];
+ masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain];
+
+ UINavigationController *mainNavController = [[UINavigationController alloc] initWithRootViewController:masterViewController];
+ detailedNavController = [[UINavigationController alloc] initWithRootViewController:detailViewController];
+
+ // set attributes
+ masterViewController.detailViewController = detailViewController;
+ [splitViewRootController setViewControllers:[NSArray arrayWithObjects: mainNavController, detailedNavController, nil]];
+ [mainNavController release];
+ [detailedNavController release];
+
+ [splitViewRootController setDelegate: detailViewController];
+
+ // add view to main controller
+ [self.view addSubview:[splitViewRootController view]];
+ [detailViewController release];
+ [masterViewController release];
+ } else {
+ detailedNavController = [[UINavigationController alloc] initWithRootViewController:detailViewController];
+ [self.view addSubview:detailedNavController.view];
+ //[detailedNavController release];
+ }
+
+ [super viewDidLoad];
+}
+
+-(void) dealloc {
+ [detailViewController release];
+ [masterViewController release];
+ [splitViewRootController release];
+ [super dealloc];
+}
+
+#pragma mark -
+#pragma mark additional methods as we're using a UINavigationController programmatically
+// see http://davidebenini.it/2009/01/03/viewwillappear-not-being-called-inside-a-uinavigationcontroller/
+-(void) viewWillAppear:(BOOL)animated {
+ [super viewWillAppear:animated];
+ [detailViewController.navigationController viewWillAppear:animated];
+}
+
+-(void) viewWillDisappear:(BOOL)animated {
+ [super viewWillDisappear:animated];
+ [detailViewController.navigationController viewWillDisappear:animated];
+}
+
+-(void) viewDidAppear:(BOOL)animated {
+ [super viewDidLoad];
+ [detailViewController.navigationController viewDidAppear:animated];
+}
+
+-(void) viewDidDisappear:(BOOL)animated {
+ [super viewDidUnload];
+ [detailViewController.navigationController viewDidDisappear:animated];
+}
+
+
+@end
--- a/cocoaTouch/TeamEditViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-//
-// TeamEditViewController.h
-// hwengine
-//
-// Created by Vittorio on 08/01/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-
-@interface TeamEditViewController : UIViewController {
-
-}
-
-@end
--- a/cocoaTouch/TeamEditViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,55 +0,0 @@
-//
-// TeamEditViewController.m
-// hwengine
-//
-// Created by Vittorio on 08/01/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "TeamEditViewController.h"
-
-
-@implementation TeamEditViewController
-
-/*
- // The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
-- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
- if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
- // Custom initialization
- }
- return self;
-}
-*/
-
-/*
-// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
-- (void)viewDidLoad {
- [super viewDidLoad];
-}
-*/
-
-// Override to allow orientations other than the default portrait orientation.
-- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- // Return YES for supported orientations
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
-- (void)didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Release any cached data, images, etc that aren't in use.
-}
-
-- (void)viewDidUnload {
- // Release any retained subviews of the main view.
- // e.g. self.myOutlet = nil;
-}
-
-
-- (void)dealloc {
- [super dealloc];
-}
-
-
-@end
--- a/cocoaTouch/TeamEditViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,150 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">784</int>
- <string key="IBDocument.SystemVersion">10A394</string>
- <string key="IBDocument.InterfaceBuilderVersion">732</string>
- <string key="IBDocument.AppKitVersion">1027.1</string>
- <string key="IBDocument.HIToolboxVersion">430.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">60</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="1"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="372490531">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- </object>
- <object class="IBProxyObject" id="975951072">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- </object>
- <object class="IBUIView" id="191373211">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrameSize">{320, 460}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- <object class="NSColorSpace" key="NSCustomColorSpace">
- <int key="NSID">2</int>
- </object>
- </object>
- <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="191373211"/>
- </object>
- <int key="connectionID">3</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">1</int>
- <reference key="object" ref="191373211"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="372490531"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="975951072"/>
- <reference key="parent" ref="0"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>1.IBEditorWindowLastContentRect</string>
- <string>1.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>TeamEditViewController</string>
- <string>UIResponder</string>
- <string>{{556, 412}, {320, 480}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">3</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">TeamEditViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">TeamEditViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3000" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <nil key="IBDocument.LastKnownRelativeProjectPath"/>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <string key="IBCocoaTouchPluginVersion">3.1</string>
- </data>
-</archive>
--- a/cocoaTouch/TeamMenuViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-//
-// TeamMenuViewController.h
-// hwengine
-//
-// Created by Vittorio on 08/01/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-
-@interface TeamMenuViewController : UIViewController {
-
-}
-
-@end
--- a/cocoaTouch/TeamMenuViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,55 +0,0 @@
-//
-// TeamMenuViewController.m
-// hwengine
-//
-// Created by Vittorio on 08/01/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "TeamMenuViewController.h"
-
-
-@implementation TeamMenuViewController
-
-/*
- // The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
-- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
- if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
- // Custom initialization
- }
- return self;
-}
-*/
-
-/*
-// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
-- (void)viewDidLoad {
- [super viewDidLoad];
-}
-*/
-
-// Override to allow orientations other than the default portrait orientation.
-- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- // Return YES for supported orientations
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
-- (void)didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Release any cached data, images, etc that aren't in use.
-}
-
-- (void)viewDidUnload {
- // Release any retained subviews of the main view.
- // e.g. self.myOutlet = nil;
-}
-
-
-- (void)dealloc {
- [super dealloc];
-}
-
-
-@end
--- a/cocoaTouch/TeamMenuViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,150 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">784</int>
- <string key="IBDocument.SystemVersion">10A394</string>
- <string key="IBDocument.InterfaceBuilderVersion">732</string>
- <string key="IBDocument.AppKitVersion">1027.1</string>
- <string key="IBDocument.HIToolboxVersion">430.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">60</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="1"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="372490531">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- </object>
- <object class="IBProxyObject" id="975951072">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- </object>
- <object class="IBUIView" id="191373211">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrameSize">{320, 460}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- <object class="NSColorSpace" key="NSCustomColorSpace">
- <int key="NSID">2</int>
- </object>
- </object>
- <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="191373211"/>
- </object>
- <int key="connectionID">3</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">1</int>
- <reference key="object" ref="191373211"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="372490531"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="975951072"/>
- <reference key="parent" ref="0"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>1.IBEditorWindowLastContentRect</string>
- <string>1.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>TeamMenuViewController</string>
- <string>UIResponder</string>
- <string>{{556, 412}, {320, 480}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">3</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">TeamMenuViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">TeamMenuViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3000" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <nil key="IBDocument.LastKnownRelativeProjectPath"/>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <string key="IBCocoaTouchPluginVersion">3.1</string>
- </data>
-</archive>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/TeamSettingsViewController.h Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,18 @@
+//
+// TeamSettingsViewController.h
+// HedgewarsMobile
+//
+// Created by Vittorio on 02/04/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+@class SingleTeamViewController;
+
+@interface TeamSettingsViewController : UITableViewController {
+ NSArray *list;
+ SingleTeamViewController *childController;
+}
+@property (nonatomic, retain) NSArray *list;
+
+@end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/TeamSettingsViewController.m Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,167 @@
+//
+// TeamSettingsViewController.m
+// HedgewarsMobile
+//
+// Created by Vittorio on 02/04/10.
+// Copyright 2010 __MyCompanyName__. All rights reserved.
+//
+
+#import "TeamSettingsViewController.h"
+#import "SingleTeamViewController.h"
+
+@implementation TeamSettingsViewController
+@synthesize list;
+
+#pragma mark -
+#pragma mark View lifecycle
+- (void)viewDidLoad {
+ [super viewDidLoad];
+
+ NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
+ NSString *teamsDirectory = [[paths objectAtIndex:0] stringByAppendingString:@"Teams/"];
+
+ NSArray *contents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:teamsDirectory
+ error:NULL];
+ self.list = contents;
+
+ // Uncomment the following line to preserve selection between presentations.
+ // self.clearsSelectionOnViewWillAppear = NO;
+ // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
+ self.navigationItem.rightBarButtonItem = self.editButtonItem;
+}
+
+- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
+ // Override to allow orientations other than the default portrait orientation.
+ return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
+}
+
+
+#pragma mark -
+#pragma mark Table view data source
+
+- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
+ // Return the number of sections.
+ return 1;
+}
+
+
+- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
+ // Return the number of rows in the section.
+ return [list count];
+}
+
+
+// Customize the appearance of table view cells.
+- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
+
+ static NSString *CellIdentifier = @"Cell";
+
+ UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
+ if (cell == nil) {
+ cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
+ }
+
+ NSUInteger row = [indexPath row];
+ NSString *rowString = [[list objectAtIndex:row] stringByDeletingPathExtension];
+ cell.textLabel.text = rowString;
+ cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
+ //cell.imageView.image = [UIImage imageNamed:@"Default.png"];
+ //[rowString release];
+
+ return cell;
+}
+
+
+/*
+// Override to support conditional editing of the table view.
+- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
+ // Return NO if you do not want the specified item to be editable.
+ return YES;
+}
+*/
+
+
+/*
+// Override to support editing the table view.
+- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
+
+ if (editingStyle == UITableViewCellEditingStyleDelete) {
+ // Delete the row from the data source
+ [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
+ }
+ else if (editingStyle == UITableViewCellEditingStyleInsert) {
+ // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
+ }
+}
+*/
+
+
+/*
+// Override to support rearranging the table view.
+- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
+}
+*/
+
+
+/*
+// Override to support conditional rearranging of the table view.
+- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
+ // Return NO if you do not want the item to be re-orderable.
+ return YES;
+}
+*/
+
+
+#pragma mark -
+#pragma mark Table view delegate
+- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
+ if (childController == nil) {
+ childController = [[SingleTeamViewController alloc] initWithStyle:UITableViewStyleGrouped];
+ }
+
+ NSInteger row = [indexPath row];
+ NSString *selectedTeam = [[list objectAtIndex:row] stringByDeletingPathExtension];
+
+ childController.teamName = selectedTeam;
+ [self.navigationController pushViewController:childController animated:YES];
+}
+
+/*
+-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
+ UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"Hey, do you see the disclosure button?"
+ message:@"If you're trying to drill down, touch that instead"
+ delegate:nil
+ cancelButtonTitle:@"Won't happen again"
+ otherButtonTitles:nil];
+ [alert show];
+ [alert release];
+}
+*/
+
+#pragma mark -
+#pragma mark Memory management
+
+- (void)didReceiveMemoryWarning {
+ // Releases the view if it doesn't have a superview.
+ [super didReceiveMemoryWarning];
+
+ // Relinquish ownership any cached data, images, etc that aren't in use.
+}
+
+/*
+- (void)viewDidUnload {
+ // Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
+ // For example: self.myOutlet = nil;
+}
+*/
+
+- (void)dealloc {
+ [list release];
+ if (nil != childController)
+ [childController release];
+ [super dealloc];
+}
+
+
+@end
+
Binary file cocoaTouch/iPad/Default.png has changed
--- a/cocoaTouch/iPad/DetailViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-//
-// DetailViewController.h
-// HedgewarsMobile
-//
-// Created by Vittorio on 27/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-
-@interface DetailViewController : UITableViewController <UIPopoverControllerDelegate, UISplitViewControllerDelegate> {
- UIPopoverController *popoverController;
- NSArray *controllers;
-
- id detailItem;
-}
-
-@property (nonatomic, retain) UIPopoverController *popoverController;
-@property (nonatomic, retain) id detailItem;
-@property (nonatomic, retain) NSArray * controllers;
-
-@end
--- a/cocoaTouch/iPad/DetailViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,128 +0,0 @@
- //
-// DetailViewController.m
-// HedgewarsMobile
-//
-// Created by Vittorio on 27/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "DetailViewController.h"
-#import "TeamSettingsViewController.h"
-
-@implementation DetailViewController
-@synthesize popoverController, detailItem, controllers;
-
-
-- (void)viewDidLoad {
- self.title =@"First";
- NSMutableArray *array= [[NSMutableArray alloc] init];
-
- TeamSettingsViewController *teamSettingsViewController = [[TeamSettingsViewController alloc]
- initWithStyle:UITableViewStyleGrouped];
- teamSettingsViewController.title = NSLocalizedString(@"Teams",@"");
- [array addObject:teamSettingsViewController];
- [teamSettingsViewController release];
-
- self.controllers = array;
- [array release];
-
- [super viewDidLoad];
-}
-
-- (void)didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Release any cached data, images, etc that aren't in use.
-}
-
-- (void)viewDidUnload {
- self.controllers = nil;
- self.popoverController = nil;
- self.detailItem = nil;
- [super viewDidUnload];
-}
-
-- (void)dealloc {
- [controllers release];
- [popoverController release];
- [detailItem release];
- [super dealloc];
-}
-
-#pragma mark -
-#pragma mark Table view data source
--(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
- return 1;
-}
-
--(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return [controllers count];
-}
-
--(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *CellIdentifier = @"Cell";
-
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (cell == nil) {
- cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
- reuseIdentifier:CellIdentifier] autorelease];
- }
-
- NSInteger row = [indexPath row];
- UITableViewController *controller = [controllers objectAtIndex:row];
-
- cell.textLabel.text = controller.title;
- cell.imageView.image = [UIImage imageNamed:@"Icon.png"];
- cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
-
- return cell;
-}
-
--(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- NSInteger row = [indexPath row];
- UITableViewController *nextController = [self.controllers objectAtIndex:row];
- [self.navigationController pushViewController:nextController animated:YES];
-}
-
-#pragma mark -
-#pragma mark Managing the popover controller
-// When setting the detail item, update the view and dismiss the popover controller if it's showing.
--(void) setDetailItem:(id) newDetailItem {
- if (detailItem != newDetailItem) {
- [detailItem release];
- detailItem = [newDetailItem retain];
-
- // Update the view.
- // navigationBar.topItem.title = (NSString*) detailItem;
-
- //test.text=(NSString*) detailItem;
- }
-
- if (popoverController != nil) {
- [popoverController dismissPopoverAnimated:YES];
- }
-}
-
-#pragma mark -
-#pragma mark Split view support
--(void) splitViewController:(UISplitViewController*)svc willHideViewController:(UIViewController *)aViewController withBarButtonItem:(UIBarButtonItem*)barButtonItem forPopoverController: (UIPopoverController*)pc {
- barButtonItem.title = @"Master List";
- // [navigationBar.topItem setLeftBarButtonItem:barButtonItem animated:YES];
- self.popoverController = pc;
-}
-
-// Called when the view is shown again in the split view, invalidating the button and popover controller.
--(void) splitViewController: (UISplitViewController*)svc willShowViewController:(UIViewController *)aViewController invalidatingBarButtonItem:(UIBarButtonItem *)barButtonItem {
- // [navigationBar.topItem setLeftBarButtonItem:nil animated:YES];
- self.popoverController = nil;
-}
-
-#pragma mark -
-#pragma mark Rotation support
-// Ensure that the view controller supports rotation and that the split view can therefore show in both portrait and landscape.
--(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
-@end
--- a/cocoaTouch/iPad/DetailViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,302 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">800</int>
- <string key="IBDocument.SystemVersion">10C540</string>
- <string key="IBDocument.InterfaceBuilderVersion">762</string>
- <string key="IBDocument.AppKitVersion">1038.25</string>
- <string key="IBDocument.HIToolboxVersion">458.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">87</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="21"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="841351856">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBProxyObject" id="606714003">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBUIViewController" id="908968585">
- <object class="IBUIView" key="IBUIView" id="529367241">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUILabel" id="360158240">
- <reference key="NSNextResponder" ref="529367241"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{491, 393}, {42, 21}}</string>
- <reference key="NSSuperview" ref="529367241"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <int key="IBUIContentMode">7</int>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <string key="IBUIText">Label</string>
- <object class="NSColor" key="IBUITextColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MCAwIDAAA</bytes>
- </object>
- <nil key="IBUIHighlightedColor"/>
- <int key="IBUIBaselineAdjustment">1</int>
- <float key="IBUIMinimumFontSize">10</float>
- </object>
- <object class="IBUITableView" id="836945484">
- <reference key="NSNextResponder" ref="529367241"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrame">{{563, 127}, {423, 435}}</string>
- <reference key="NSSuperview" ref="529367241"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- </object>
- <bool key="IBUIClipsSubviews">YES</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <bool key="IBUIBouncesZoom">NO</bool>
- <int key="IBUISeparatorStyle">1</int>
- <int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
- <bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
- <float key="IBUIRowHeight">44</float>
- <float key="IBUISectionHeaderHeight">22</float>
- <float key="IBUISectionFooterHeight">22</float>
- </object>
- <object class="IBUINavigationBar" id="810093952">
- <reference key="NSNextResponder" ref="529367241"/>
- <int key="NSvFlags">290</int>
- <string key="NSFrameSize">{1024, 44}</string>
- <reference key="NSSuperview" ref="529367241"/>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <object class="NSArray" key="IBUIItems">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUINavigationItem" id="891675002">
- <reference key="IBUINavigationBar" ref="810093952"/>
- <string key="IBUITitle">Title</string>
- <object class="IBUIBarButtonItem" key="IBUILeftBarButtonItem" id="1043383875">
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIStyle">1</int>
- <reference key="IBUINavigationItem" ref="891675002"/>
- <int key="IBUISystemItemIdentifier">0</int>
- </object>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- </object>
- </object>
- </object>
- <string key="NSFrameSize">{1024, 768}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC40MDAwMDAwMDYgMC44MDAwMDAwMTE5IDEAA</bytes>
- </object>
- <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
- <int key="interfaceOrientation">3</int>
- </object>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
- <int key="interfaceOrientation">3</int>
- </object>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <bool key="IBUIHorizontal">YES</bool>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="841351856"/>
- <reference key="destination" ref="529367241"/>
- </object>
- <int key="connectionID">22</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">dataSource</string>
- <reference key="source" ref="836945484"/>
- <reference key="destination" ref="841351856"/>
- </object>
- <int key="connectionID">35</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">delegate</string>
- <reference key="source" ref="836945484"/>
- <reference key="destination" ref="841351856"/>
- </object>
- <int key="connectionID">36</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">delegate</string>
- <reference key="source" ref="810093952"/>
- <reference key="destination" ref="841351856"/>
- </object>
- <int key="connectionID">38</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="841351856"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="606714003"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">52</int>
- <reference key="object" ref="908968585"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="529367241"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">21</int>
- <reference key="object" ref="529367241"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="360158240"/>
- <reference ref="810093952"/>
- <reference ref="836945484"/>
- </object>
- <reference key="parent" ref="908968585"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">34</int>
- <reference key="object" ref="836945484"/>
- <reference key="parent" ref="529367241"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">32</int>
- <reference key="object" ref="360158240"/>
- <reference key="parent" ref="529367241"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">23</int>
- <reference key="object" ref="810093952"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="891675002"/>
- </object>
- <reference key="parent" ref="529367241"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">24</int>
- <reference key="object" ref="891675002"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="1043383875"/>
- </object>
- <reference key="parent" ref="810093952"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">25</int>
- <reference key="object" ref="1043383875"/>
- <reference key="parent" ref="891675002"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>21.IBEditorWindowLastContentRect</string>
- <string>21.IBPluginDependency</string>
- <string>23.IBEditorWindowLastContentRect</string>
- <string>23.IBPluginDependency</string>
- <string>24.IBPluginDependency</string>
- <string>25.IBPluginDependency</string>
- <string>32.IBPluginDependency</string>
- <string>34.IBPluginDependency</string>
- <string>52.IBEditorWindowLastContentRect</string>
- <string>52.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>UINavigationController</string>
- <string>UIResponder</string>
- <string>{{62, 248}, {1024, 768}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{42, 1078}, {1024, 44}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{63, 388}, {1024, 768}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">52</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes"/>
- <int key="IBDocument.localizationMode">0</int>
- <string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
- <integer value="800" key="NS.object.0"/>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3100" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <string key="IBDocument.LastKnownRelativeProjectPath">../../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <string key="IBCocoaTouchPluginVersion">87</string>
- </data>
-</archive>
--- a/cocoaTouch/iPad/HogHatViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-//
-// HogHatViewController.h
-// HedgewarsMobile
-//
-// Created by Vittorio on 02/04/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-
-@interface HogHatViewController : UITableViewController {
- NSArray *hatList;
- NSDictionary *hog;
-}
-
-@property (nonatomic,retain) NSArray *hatList;
-@property (nonatomic,retain) NSDictionary *hog;
-
-@end
--- a/cocoaTouch/iPad/HogHatViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,191 +0,0 @@
-//
-// HogHatViewController.m
-// HedgewarsMobile
-//
-// Created by Vittorio on 02/04/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "HogHatViewController.h"
-
-
-@implementation HogHatViewController
-@synthesize hatList, hog;
-
-#pragma mark -
-#pragma mark View lifecycle
-
-
-- (void)viewDidLoad {
- [super viewDidLoad];
-
- //NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *hatPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/Hats/"];
- NSArray *array = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:hatPath
- error:NULL];
- self.hatList = array;
- //NSLog(@"%@", hatList);
-}
-
-- (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
- self.title = [hog objectForKey:@"hogname"];
- [self.tableView reloadData];
-}
-
-/*
-- (void)viewDidAppear:(BOOL)animated {
- [super viewDidAppear:animated];
-}
-*/
-/*
-- (void)viewWillDisappear:(BOOL)animated {
- [super viewWillDisappear:animated];
-}
-*/
-/*
-- (void)viewDidDisappear:(BOOL)animated {
- [super viewDidDisappear:animated];
-}
-*/
-
-- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- // Override to allow orientations other than the default portrait orientation.
- return YES;
-}
-
-
-#pragma mark -
-#pragma mark Table view data source
--(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
- return 2;
-}
-
--(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- NSInteger rows;
- if (0 == section)
- rows = 1;
- else
- rows = [self.hatList count];
- return rows;
-}
-
-// Customize the appearance of table view cells.
-- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- static NSString *CellIdentifier = @"Cell";
-
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (cell == nil) {
- cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
- }
-
- if (0 == [indexPath section]) {
- cell.textLabel.text = [hog objectForKey:@"hogname"];
- cell.imageView.image = nil;
- cell.accessoryType = UITableViewCellAccessoryNone;
- } else {
- cell.textLabel.text = [[hatList objectAtIndex:[indexPath row]] stringByDeletingPathExtension];
- if ([cell.textLabel.text isEqualToString:[hog objectForKey:@"hat"]]) {
- cell.accessoryType = UITableViewCellAccessoryCheckmark;
- } else {
- cell.accessoryType = UITableViewCellAccessoryNone;
- }
-
- NSString *hatsPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/Data/Graphics/Hats/"];
- NSString *hatFile = [hatsPath stringByAppendingString:[hatList objectAtIndex:[indexPath row]]];
- UIImage *image = [UIImage imageWithContentsOfFile: hatFile];
-
- CGRect firstSpriteArea = CGRectMake(0, 0, 32, 32);
- CGImageRef cgImgage = CGImageCreateWithImageInRect([image CGImage], firstSpriteArea);
- cell.imageView.image = [UIImage imageWithCGImage: cgImgage];
- CGImageRelease(cgImgage);
- }
-
- return cell;
-}
-
-
-/*
-// Override to support conditional editing of the table view.
-- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
- // Return NO if you do not want the specified item to be editable.
- return YES;
-}
-*/
-
-
-/*
-// Override to support editing the table view.
-- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
-
- if (editingStyle == UITableViewCellEditingStyleDelete) {
- // Delete the row from the data source
- [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
- }
- else if (editingStyle == UITableViewCellEditingStyleInsert) {
- // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
- }
-}
-*/
-
-
-/*
-// Override to support rearranging the table view.
-- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
-}
-*/
-
-
-/*
-// Override to support conditional rearranging of the table view.
-- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
- // Return NO if you do not want the item to be re-orderable.
- return YES;
-}
-*/
-
-
-#pragma mark -
-#pragma mark Table view delegate
-
-- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- // Navigation logic may go here. Create and push another view controller.
- /*
- <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
- // ...
- // Pass the selected object to the new view controller.
- [self.navigationController pushViewController:detailViewController animated:YES];
- [detailViewController release];
- */
-}
-
-
-#pragma mark -
-#pragma mark Memory management
-
-- (void)didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Relinquish ownership any cached data, images, etc that aren't in use.
-}
-
-- (void)viewDidUnload {
- [super viewDidUnload];
- self.hatList = nil;
- self.hog = nil;
- // Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
- // For example: self.myOutlet = nil;
-}
-
-
-- (void)dealloc {
- [hog release];
- [hatList release];
- [super dealloc];
-}
-
-
-@end
-
--- a/cocoaTouch/iPad/MainMenuViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-//
-// MainMenuViewController.h
-// hwengine
-//
-// Created by Vittorio on 08/01/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-#import "SettingsViewController.h"
-
-@interface MainMenuViewController : UIViewController {
- UIView *cover;
-}
-
-@property (nonatomic,retain) UIView *cover;
-
--(void) appear;
--(void) disappear;
--(void) hideBehind;
-
--(IBAction) switchViews:(id)sender;
-@end
--- a/cocoaTouch/iPad/MainMenuViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,190 +0,0 @@
-//
-// MainMenuViewController.m
-// hwengine
-//
-// Created by Vittorio on 08/01/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "MainMenuViewController.h"
-#import "SDL_uikitappdelegate.h"
-#import "PascalImports.h"
-#import "SplitViewRootController.h"
-
-
-@implementation MainMenuViewController
-@synthesize cover;
-
--(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
-- (void)didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-}
-
-- (void)dealloc {
- [cover release];
- [super dealloc];
-}
-
--(void) viewDidUnload {
- self.cover = nil;
- [super viewDidUnload];
-}
-
--(void) viewDidLoad {
- // initialize some files the first time we load the game
- [NSThread detachNewThreadSelector:@selector(checkFirstRun) toTarget:self withObject:nil];
- // listen to request to remove the modalviewcontroller
- [[NSNotificationCenter defaultCenter] addObserver:self
- selector:@selector(dismissModalViewController)
- name: @"dismissModalView"
- object:nil];
-
- [super viewDidLoad];
-}
-
-// this is called to verify whether it's the first time the app is launched
-// if it is it blocks user interaction with an alertView until files are created
--(void) checkFirstRun {
- NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
-
- NSString *filePath = [[SDLUIKitDelegate sharedAppDelegate] dataFilePath:@"settings.plist"];
- if (!([[NSFileManager defaultManager] fileExistsAtPath:filePath])) {
- // file not present, means that also other files are absent
- NSLog(@"First time run, creating settings files");
-
- // show a popup with an indicator to make the user wait
- UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Please wait",@"")
- message:nil
- delegate:nil
- cancelButtonTitle:nil
- otherButtonTitles:nil];
- [alert show];
- [alert release];
-
- UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc]
- initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
- indicator.center = CGPointMake(alert.bounds.size.width / 2, alert.bounds.size.height - 50);
- [indicator startAnimating];
- [alert addSubview:indicator];
- [indicator release];
-
- // create Default Team.plist
- NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *teamsDirectory = [[paths objectAtIndex:0] stringByAppendingString:@"Teams/"];
- [[NSFileManager defaultManager] createDirectoryAtPath:teamsDirectory
- withIntermediateDirectories:NO
- attributes:nil
- error:NULL];
-
- NSMutableArray *hedgehogs = [[NSMutableArray alloc] init];
-
- for (int i = 0; i < 8; i++) {
- NSString *hogName = [[NSString alloc] initWithFormat:@"hedgehog %d",i];
- NSDictionary *hog = [[NSDictionary alloc] initWithObjectsAndKeys:@"100",@"health",@"0",@"level",
- hogName,@"hogname",@"NoHat",@"hat",nil];
- [hogName release];
- [hedgehogs addObject:hog];
- [hog release];
- }
-
- NSDictionary *defaultTeam = [[NSDictionary alloc] initWithObjectsAndKeys:@"4421353",@"color",@"0",@"hash",
- @"Default Team",@"teamname",@"Statue",@"grave",@"Plane",@"fort",
- @"Default",@"voicepack",@"hedgewars",@"flag",hedgehogs,@"hedgehogs",nil];
- [hedgehogs release];
- NSString *defaultTeamFile = [teamsDirectory stringByAppendingString:@"Default Team.plist"];
- [defaultTeam writeToFile:defaultTeamFile atomically:YES];
- [defaultTeam release];
-
- // create settings.plist
- NSMutableDictionary *saveDict = [[NSMutableDictionary alloc] init];
-
- [saveDict setObject:@"" forKey:@"username"];
- [saveDict setObject:@"" forKey:@"password"];
- [saveDict setObject:@"1" forKey:@"music"];
- [saveDict setObject:@"1" forKey:@"sounds"];
- [saveDict setObject:@"0" forKey:@"alternate"];
-
- [saveDict writeToFile:filePath atomically:YES];
- [saveDict release];
-
- // create other files
-
- // ok let the user take control
- [alert dismissWithClickedButtonIndex:0 animated:YES];
- }
- [pool release];
- [NSThread exit];
-}
-
-#pragma mark -
--(void) appear {
- [[SDLUIKitDelegate sharedAppDelegate].uiwindow addSubview:self.view];
- [self release];
-
- [UIView beginAnimations:@"inserting main controller" context:NULL];
- [UIView setAnimationDuration:1];
- self.view.alpha = 1;
- [UIView commitAnimations];
-
- [NSTimer scheduledTimerWithTimeInterval:0.7 target:self selector:@selector(hideBehind) userInfo:nil repeats:NO];
-}
-
--(void) disappear {
- if (nil != cover)
- [cover release];
-
- [UIView beginAnimations:@"removing main controller" context:NULL];
- [UIView setAnimationDuration:1];
- self.view.alpha = 0;
- [UIView commitAnimations];
-
- [self retain];
- [self.view removeFromSuperview];
-}
-
-// this is a silly way to hide the sdl contex that remained active
--(void) hideBehind {
- if (nil == cover) {
- cover= [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- cover.backgroundColor = [UIColor blackColor];
- }
- [[SDLUIKitDelegate sharedAppDelegate].uiwindow insertSubview:cover belowSubview:self.view];
-}
-
-#pragma mark -
--(IBAction) switchViews:(id) sender {
- UIButton *button = (UIButton *)sender;
- SplitViewRootController *splitViewController;
- UIAlertView *alert;
-
- switch (button.tag) {
- case 0:
- [[SDLUIKitDelegate sharedAppDelegate] startSDLgame];
- break;
- case 2:
- // for now this controller is just to simplify code management
- splitViewController = [[SplitViewRootController alloc] initWithNibName:nil bundle:nil];
- splitViewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
- [self presentModalViewController:splitViewController animated:YES];
- break;
- default:
- alert = [[UIAlertView alloc] initWithTitle:@"Not Yet Implemented"
- message:@"Sorry, this feature is not yet implemented"
- delegate:nil
- cancelButtonTitle:@"Well, don't worry"
- otherButtonTitles:nil];
- [alert show];
- [alert release];
- break;
- }
-}
-
--(void) dismissModalViewController {
- [self dismissModalViewControllerAnimated:YES];
-}
-
-@end
--- a/cocoaTouch/iPad/MainMenuViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,381 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">800</int>
- <string key="IBDocument.SystemVersion">10C540</string>
- <string key="IBDocument.InterfaceBuilderVersion">762</string>
- <string key="IBDocument.AppKitVersion">1038.25</string>
- <string key="IBDocument.HIToolboxVersion">458.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">87</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="372490531">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBProxyObject" id="975951072">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBUIView" id="191373211">
- <nil key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIImageView" id="976741091">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrameSize">{1024, 768}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <object class="NSCustomResource" key="IBUIImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">Background.png</string>
- </object>
- </object>
- <object class="IBUIImageView" id="90394251">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{147, 20}, {745, 146}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <object class="NSCustomResource" key="IBUIImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">HedgewarsTitle.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="867308721">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{147, 200}, {258, 215}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <object class="NSFont" key="IBUIFont" id="917635782">
- <string key="NSName">Helvetica-Bold</string>
- <double key="NSSize">15</double>
- <int key="NSfFlags">16</int>
- </object>
- <object class="NSColor" key="IBUIHighlightedTitleColor" id="918890028">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleShadowColor" id="112471976">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MC41AA</bytes>
- </object>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">Multiplayer.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="607338789">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{634, 493}, {258, 215}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <int key="IBUITag">1</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="917635782"/>
- <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="112471976"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">NetworkPlay.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="95106947">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{279, 591}, {18, 19}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <int key="IBUITag">2</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="917635782"/>
- <int key="IBUIButtonType">3</int>
- <bool key="IBUIShowsTouchWhenHighlighted">YES</bool>
- <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="112471976"/>
- </object>
- </object>
- <string key="NSFrameSize">{1024, 768}</string>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MCAwIDAAA</bytes>
- </object>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="191373211"/>
- </object>
- <int key="connectionID">3</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">switchViews:</string>
- <reference key="source" ref="95106947"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">47</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">switchViews:</string>
- <reference key="source" ref="867308721"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">48</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">switchViews:</string>
- <reference key="source" ref="607338789"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">49</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">1</int>
- <reference key="object" ref="191373211"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="90394251"/>
- <reference ref="976741091"/>
- <reference ref="607338789"/>
- <reference ref="867308721"/>
- <reference ref="95106947"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="372490531"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="975951072"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">37</int>
- <reference key="object" ref="976741091"/>
- <reference key="parent" ref="191373211"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">38</int>
- <reference key="object" ref="90394251"/>
- <reference key="parent" ref="191373211"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">39</int>
- <reference key="object" ref="867308721"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">local</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">40</int>
- <reference key="object" ref="607338789"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">multi</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">45</int>
- <reference key="object" ref="95106947"/>
- <reference key="parent" ref="191373211"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>1.IBEditorWindowLastContentRect</string>
- <string>1.IBPluginDependency</string>
- <string>37.IBPluginDependency</string>
- <string>38.IBPluginDependency</string>
- <string>39.IBPluginDependency</string>
- <string>40.IBPluginDependency</string>
- <string>45.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>MainMenuViewController</string>
- <string>UIResponder</string>
- <string>{{313, 256}, {1024, 768}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">49</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">MainMenuViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="actions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>notYetImplemented</string>
- <string>startPlaying</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>id</string>
- <string>id</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="outlets">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>mainView</string>
- <string>versionLabel</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>UIView</string>
- <string>UILabel</string>
- </object>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../cocoaTouch/MainMenuViewController.h</string>
- </object>
- </object>
- <object class="IBPartialClassDescription">
- <string key="className">MainMenuViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="actions">
- <string key="NS.key.0">switchViews:</string>
- <string key="NS.object.0">id</string>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../cocoaTouch/iPad/MainMenuViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
- <integer value="800" key="NS.object.0"/>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3000" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <string key="IBDocument.LastKnownRelativeProjectPath">../../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>Background.png</string>
- <string>HedgewarsTitle.png</string>
- <string>Multiplayer.png</string>
- <string>NetworkPlay.png</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>{1024, 768}</string>
- <string>{720, 140}</string>
- <string>{264, 219}</string>
- <string>{314, 260}</string>
- </object>
- </object>
- <string key="IBCocoaTouchPluginVersion">87</string>
- </data>
-</archive>
--- a/cocoaTouch/iPad/MasterViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +0,0 @@
-//
-// MasterViewController.h
-// HedgewarsMobile
-//
-// Created by Vittorio on 27/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-
-@class DetailViewController;
-
-@interface MasterViewController : UITableViewController {
- DetailViewController *detailViewController;
- NSArray *optionList;
-}
-
-@property (nonatomic, retain) IBOutlet DetailViewController *detailViewController;
-@property (nonatomic, retain) NSArray *optionList;
-
--(IBAction) dismissSplitView;
-
-@end
--- a/cocoaTouch/iPad/MasterViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,127 +0,0 @@
-//
-// MasterViewController.m
-// HedgewarsMobile
-//
-// Created by Vittorio on 27/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "MasterViewController.h"
-#import "DetailViewController.h"
-
-@implementation MasterViewController
-@synthesize detailViewController, optionList;
-
-#pragma mark -
-#pragma mark View lifecycle
-
-
-- (void)viewDidLoad {
- [super viewDidLoad];
- optionList = [[NSArray alloc] initWithObjects:NSLocalizedString(@"General",@""),
- NSLocalizedString(@"Teams",@""),
- NSLocalizedString(@"Weapons",@""),
- NSLocalizedString(@"Schemes",@""),
- nil];
- self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:0 target:self action:@selector(dismissSplitView)];
-
- // Uncomment the following line to preserve selection between presentations.
- //self.clearsSelectionOnViewWillAppear = NO;
- // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
- //self.navigationItem.rightBarButtonItem = self.editButtonItem;
-}
-
--(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
-
-#pragma mark -
-#pragma mark Table view data source
-
--(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
- return 1;
-}
-
-
--(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return [optionList count];
-}
-
-
-// Customize the appearance of table view cells.
--(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *CellIdentifier = @"Cell";
-
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (cell == nil) {
- cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
- cell.textLabel.text = [optionList objectAtIndex:[indexPath row]];
- }
-
- return cell;
-}
-
-/*
-// Override to support editing the table view.
-- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
-
- if (editingStyle == UITableViewCellEditingStyleDelete) {
- // Delete the row from the data source
- [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
- }
- else if (editingStyle == UITableViewCellEditingStyleInsert) {
- // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
- }
-}
-*/
-
-/*
-// Override to support rearranging the table view.
-- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
-}
-*/
-
-/*
-// Override to support conditional rearranging of the table view.
-- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
- // Return NO if you do not want the item to be re-orderable.
- return YES;
-}
-*/
-
-#pragma mark -
-#pragma mark Table view delegate
--(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- // Navigation logic may go here. Create and push another view controller.
- /*
- DetailViewController *detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil];
- // Pass the selected object to the new view controller.
- [self.navigationController pushViewController:detailViewController animated:YES];
- [detailViewController release];
- */
- detailViewController.detailItem = [[NSString alloc] initWithFormat:@"%d", [indexPath row]];
-}
-
-
-#pragma mark -
-#pragma mark Memory management
--(void) didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Relinquish ownership any cached data, images, etc that aren't in use.
-}
-
-- (void)dealloc {
- [optionList release];
- [detailViewController release];
- [super dealloc];
-}
-
--(IBAction) dismissSplitView {
- [[NSNotificationCenter defaultCenter] postNotificationName:@"dismissModalView" object:nil];
-}
-
-@end
-
--- a/cocoaTouch/iPad/OverlayViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,34 +0,0 @@
-//
-// overlayViewController.h
-// HedgewarsMobile
-//
-// Created by Vittorio on 16/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-
-@interface OverlayViewController : UIViewController {
- NSTimer *dimTimer;
- UIPopoverController* menuPopover;
-
- CGFloat initialDistanceForPinching;
- CGPoint gestureStartPoint;
-}
-
-@property (nonatomic,retain) NSTimer *dimTimer;
-@property (nonatomic,retain) UIPopoverController* menuPopover;
-
--(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
--(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
--(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
-
--(IBAction) buttonReleased:(id) sender;
--(IBAction) buttonPressed:(id) sender;
--(IBAction) showPopover;
-
--(void) dimOverlay;
--(void) showMenuAfterwards;
-
-@end
--- a/cocoaTouch/iPad/OverlayViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,267 +0,0 @@
-//
-// overlayViewController.m
-// HedgewarsMobile
-//
-// Created by Vittorio on 16/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "OverlayViewController.h"
-#import "SDL_uikitappdelegate.h"
-#import "PascalImports.h"
-#import "CGPointUtils.h"
-#import "SDL_mouse.h"
-#import "PopupMenuViewController.h"
-
-@implementation OverlayViewController
-@synthesize dimTimer, menuPopover;
-
-
--(void) didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Release any cached data, images, etc that aren't in use.
-}
-
--(void) viewDidLoad {
- self.view.alpha = 0;
-
- // needed for rotation to work on os < 3.2
- self.view.center = CGPointMake(self.view.frame.size.height/2.0, self.view.frame.size.width/2.0);
- self.view.transform = CGAffineTransformRotate(self.view.transform, (M_PI/2.0));
-
- dimTimer = [[NSTimer alloc] initWithFireDate:[NSDate dateWithTimeIntervalSinceNow:6]
- interval:1000
- target:self
- selector:@selector(dimOverlay)
- userInfo:nil
- repeats:YES];
-
- // add timer too runloop, otherwise it doesn't work
- [[NSRunLoop currentRunLoop] addTimer:dimTimer forMode:NSDefaultRunLoopMode];
- // listen for dismissal of the popover (see below)x
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(dismissPopover) name:@"dismissPopover" object:nil];
- // present the overlay after 2 seconds
- [NSTimer scheduledTimerWithTimeInterval:2 target:self selector:@selector(showMenuAfterwards) userInfo:nil repeats:NO];
-}
-
--(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
--(void) viewDidUnload {
- [dimTimer invalidate];
- self.dimTimer = nil;
- menuPopover = nil;
- [super viewDidUnload];
-}
-
--(void) dealloc {
- [menuPopover release];
- // dimTimer is autoreleased
- [super dealloc];
-}
-
-// draws the controller overlay after the sdl window has taken control
--(void) showMenuAfterwards {
- [[SDLUIKitDelegate sharedAppDelegate].uiwindow bringSubviewToFront:self.view];
-
- [UIView beginAnimations:@"showing overlay" context:NULL];
- [UIView setAnimationDuration:1];
- self.view.alpha = 1;
- [UIView commitAnimations];
-}
-
-// dim the overlay when there's no more input for a certain amount of time
--(IBAction) buttonReleased:(id) sender {
- HW_allKeysUp();
- [dimTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:2.7]];
-}
-
-// nice transition for dimming
--(void) dimOverlay {
- [UIView beginAnimations:@"overlay dim" context:NULL];
- [UIView setAnimationDuration:0.6];
- self.view.alpha = 0.2;
- [UIView commitAnimations];
-}
-
-// set the overlay visible and put off the timer for enough time
--(void) activateOverlay {
- self.view.alpha = 1;
- [dimTimer setFireDate:[NSDate dateWithTimeIntervalSinceNow:1000]];
-}
-
-// issue certain action based on the tag of the button
--(IBAction) buttonPressed:(id) sender {
- [self activateOverlay];
- UIButton *theButton = (UIButton *)sender;
-
- switch (theButton.tag) {
- case 0:
- HW_walkLeft();
- break;
- case 1:
- HW_walkRight();
- break;
- case 2:
- HW_aimUp();
- break;
- case 3:
- HW_aimDown();
- break;
- case 4:
- HW_shoot();
- break;
- case 5:
- HW_jump();
- break;
- case 6:
- HW_backjump();
- break;
- case 7:
- HW_tab();
- break;
- default:
- NSLog(@"Nope");
- break;
- }
-}
-
-// present a further check before closing game
--(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
- if ([actionSheet cancelButtonIndex] != buttonIndex)
- HW_terminate(NO);
- else
- HW_pause();
-}
-
-// show up a popover containing a popupMenuViewController; we hook it with setPopoverContentSize
--(IBAction) showPopover{
- PopupMenuViewController *popupMenu = [[PopupMenuViewController alloc] init];
-
- menuPopover = [[UIPopoverController alloc] initWithContentViewController:popupMenu];
- [menuPopover setPopoverContentSize:CGSizeMake(220, 170) animated:YES];
-
- [menuPopover presentPopoverFromRect:CGRectMake(960, 0, 220, 32) inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
-}
-
-// because of the actionSheet, the popOver might not get dismissed, so we do it manually (through a NSNotification system, see above)
--(void) dismissPopover {
- if (menuPopover.popoverVisible)
- [menuPopover dismissPopoverAnimated:YES];
-}
-
-#pragma mark -
-#pragma mark Custom touch event handling
-
-#define kMinimumPinchDelta 50
-#define kMinimumGestureLength 10
-#define kMaximumVariance 3
-
--(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
- NSArray *twoTouches;
- UITouch *touch = [touches anyObject];
- int width = [[UIScreen mainScreen] bounds].size.width;
-
- switch ([touches count]) {
- case 1:
- gestureStartPoint = [touch locationInView:self.view];
- initialDistanceForPinching = 0;
- switch ([touch tapCount]) {
- case 1:
- NSLog(@"X:%d Y:%d", (int)gestureStartPoint.x, (int)gestureStartPoint.y );
- SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].window,
- (int)gestureStartPoint.y, width - (int)gestureStartPoint.x);
- HW_click();
- break;
- case 2:
- HW_ammoMenu();
- break;
- default:
- break;
- }
- break;
- case 2:
- if (2 == [touch tapCount]) {
- HW_zoomReset();
- }
-
- // pinching
- twoTouches = [touches allObjects];
- UITouch *first = [twoTouches objectAtIndex:0];
- UITouch *second = [twoTouches objectAtIndex:1];
- initialDistanceForPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
- break;
- default:
- break;
- }
-
-}
-
--(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
- initialDistanceForPinching = 0;
- gestureStartPoint.x = 0;
- gestureStartPoint.y = 0;
- HW_allKeysUp();
-}
-
--(void) touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {
- // this can happen if the user puts more than 5 touches on the screen at once, or perhaps in other circumstances.
- [self touchesEnded:touches withEvent:event];
-}
-
--(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
- NSArray *twoTouches;
- CGPoint currentPosition;
- UITouch *touch = [touches anyObject];
- int width = [[UIScreen mainScreen] bounds].size.width;
-
- switch ([touches count]) {
- case 1:
- currentPosition = [touch locationInView:self.view];
- // panning
- SDL_WarpMouseInWindow([SDLUIKitDelegate sharedAppDelegate].window,
- (int)gestureStartPoint.y, width - (int)gestureStartPoint.x);
- // remember that we have x and y inverted
- /* temporarily disabling hog movements for camera panning testing
- CGFloat vertDiff = gestureStartPoint.x - currentPosition.x;
- CGFloat horizDiff = gestureStartPoint.y - currentPosition.y;
- CGFloat deltaX = fabsf(vertDiff);
- CGFloat deltaY = fabsf(horizDiff);
-
- if (deltaY >= kMinimumGestureLength && deltaX <= kMaximumVariance) {
- NSLog(@"Horizontal swipe detected, begX:%f curX:%f", gestureStartPoint.x, currentPosition.x);
- if (horizDiff > 0) HW_walkLeft();
- else HW_walkRight();
- } else if (deltaX >= kMinimumGestureLength && deltaY <= kMaximumVariance){
- NSLog(@"Vertical swipe detected, begY:%f curY:%f", gestureStartPoint.y, currentPosition.y);
- if (vertDiff < 0) HW_aimUp();
- else HW_aimDown();
- }
- */
- break;
- case 2:
- twoTouches = [touches allObjects];
- UITouch *first = [twoTouches objectAtIndex:0];
- UITouch *second = [twoTouches objectAtIndex:1];
- CGFloat currentDistanceOfPinching = distanceBetweenPoints([first locationInView:self.view], [second locationInView:self.view]);
-
- if (0 == initialDistanceForPinching)
- initialDistanceForPinching = currentDistanceOfPinching;
-
- if (currentDistanceOfPinching < initialDistanceForPinching + kMinimumPinchDelta)
- HW_zoomOut();
- else if (currentDistanceOfPinching > initialDistanceForPinching + kMinimumPinchDelta)
- HW_zoomIn();
-
- currentDistanceOfPinching = initialDistanceForPinching;
- break;
- default:
- break;
- }
-}
-
-
-@end
--- a/cocoaTouch/iPad/OverlayViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,718 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">800</int>
- <string key="IBDocument.SystemVersion">10C540</string>
- <string key="IBDocument.InterfaceBuilderVersion">762</string>
- <string key="IBDocument.AppKitVersion">1038.25</string>
- <string key="IBDocument.HIToolboxVersion">458.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">87</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="1"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="372490531">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBProxyObject" id="975951072">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBUIView" id="191373211">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIButton" id="584263820">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{0, 675}, {39, 53}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <object class="NSFont" key="IBUIFont" id="969592940">
- <string key="NSName">Helvetica-Bold</string>
- <double key="NSSize">15</double>
- <int key="NSfFlags">16</int>
- </object>
- <object class="NSColor" key="IBUIHighlightedTitleColor" id="708011311">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleShadowColor" id="280149554">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MC41AA</bytes>
- </object>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">arrowLeft.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="123494776">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{90, 675}, {39, 54}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">1</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">arrowRight.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="590902961">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{964, 690}, {64, 48}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">6</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <object class="NSCustomResource" key="IBUINormalImage" id="639745463">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">joyPush.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="132251648">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{919, 665}, {64, 50}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">5</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <reference key="IBUINormalImage" ref="639745463"/>
- </object>
- <object class="IBUIButton" id="752933969">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{908, 723}, {61, 45}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">4</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <reference key="IBUINormalImage" ref="639745463"/>
- </object>
- <object class="IBUIButton" id="261686746">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{37, 638}, {53, 39}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">2</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">arrowUp.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="81315603">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{37, 729}, {53, 39}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUITag">3</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">arrowDown.png</string>
- </object>
- </object>
- <object class="IBUIButton" id="873773099">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{956, -5}, {72, 64}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <reference key="IBUIFont" ref="969592940"/>
- <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
- </object>
- <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
- <object class="NSCustomResource" key="IBUINormalImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">menuCorner.png</string>
- </object>
- </object>
- </object>
- <string key="NSFrameSize">{1024, 768}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MSAwAA</bytes>
- </object>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIMultipleTouchEnabled">YES</bool>
- <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
- <int key="interfaceOrientation">3</int>
- </object>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="191373211"/>
- </object>
- <int key="connectionID">3</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="584263820"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">8</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="584263820"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">9</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="584263820"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">10</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="584263820"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">11</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="123494776"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">13</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="123494776"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">14</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="123494776"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">15</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="123494776"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">16</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="261686746"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">18</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="261686746"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">19</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="261686746"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">20</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="261686746"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">21</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="81315603"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">23</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="81315603"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">24</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="81315603"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">25</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="81315603"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">26</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="590902961"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">44</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="590902961"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">45</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="590902961"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">46</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="590902961"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">47</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="752933969"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">49</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="752933969"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">50</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="752933969"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">51</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="752933969"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">52</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="132251648"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">9</int>
- </object>
- <int key="connectionID">54</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="132251648"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">55</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonPressed:</string>
- <reference key="source" ref="132251648"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">56</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">buttonReleased:</string>
- <reference key="source" ref="132251648"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">8</int>
- </object>
- <int key="connectionID">57</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">showPopover</string>
- <reference key="source" ref="873773099"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">59</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">1</int>
- <reference key="object" ref="191373211"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="584263820"/>
- <reference ref="123494776"/>
- <reference ref="261686746"/>
- <reference ref="81315603"/>
- <reference ref="873773099"/>
- <reference ref="590902961"/>
- <reference ref="132251648"/>
- <reference ref="752933969"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="372490531"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="975951072"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">4</int>
- <reference key="object" ref="584263820"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">left</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">12</int>
- <reference key="object" ref="123494776"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">right</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">17</int>
- <reference key="object" ref="261686746"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">up</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">22</int>
- <reference key="object" ref="81315603"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">down</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">43</int>
- <reference key="object" ref="590902961"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">push2</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">48</int>
- <reference key="object" ref="752933969"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">push1</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">53</int>
- <reference key="object" ref="132251648"/>
- <reference key="parent" ref="191373211"/>
- <string key="objectName">push3</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">58</int>
- <reference key="object" ref="873773099"/>
- <reference key="parent" ref="191373211"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>1.IBEditorWindowLastContentRect</string>
- <string>1.IBPluginDependency</string>
- <string>12.IBPluginDependency</string>
- <string>17.IBPluginDependency</string>
- <string>22.IBPluginDependency</string>
- <string>4.IBPluginDependency</string>
- <string>43.IBPluginDependency</string>
- <string>48.IBPluginDependency</string>
- <string>53.IBPluginDependency</string>
- <string>58.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>OverlayViewController</string>
- <string>UIResponder</string>
- <string>{{0, 273}, {1024, 768}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">59</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">OverlayViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="actions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>buttonPressed:</string>
- <string>buttonReleased:</string>
- <string>showPopover</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>id</string>
- <string>id</string>
- <string>id</string>
- </object>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../cocoaTouch/iPad/OverlayViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
- <integer value="800" key="NS.object.0"/>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3100" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <string key="IBDocument.LastKnownRelativeProjectPath">../../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>arrowDown.png</string>
- <string>arrowLeft.png</string>
- <string>arrowRight.png</string>
- <string>arrowUp.png</string>
- <string>joyPush.png</string>
- <string>menuCorner.png</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>{64, 64}</string>
- <string>{64, 64}</string>
- <string>{64, 64}</string>
- <string>{64, 64}</string>
- <string>{64, 64}</string>
- <string>{64, 64}</string>
- </object>
- </object>
- <string key="IBCocoaTouchPluginVersion">87</string>
- </data>
-</archive>
--- a/cocoaTouch/iPad/PopupMenuViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-//
-// popupMenuViewController.h
-// HedgewarsMobile
-//
-// Created by Vittorio on 25/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-
-@interface PopupMenuViewController : UITableViewController <UIActionSheetDelegate> {
- NSArray *menuList;
- BOOL isPaused;
-}
-@property (nonatomic,retain) NSArray *menuList;
-
-@end
--- a/cocoaTouch/iPad/PopupMenuViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,115 +0,0 @@
- //
-// popupMenuViewController.m
-// HedgewarsMobile
-//
-// Created by Vittorio on 25/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "SDL_uikitappdelegate.h"
-#import "PopupMenuViewController.h"
-#import "PascalImports.h"
-
-@implementation PopupMenuViewController
-@synthesize menuList;
-
-
--(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- // Overriden to allow any orientation.
- return YES;
-}
-
--(void) didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Release any cached data, images, etc that aren't in use.
-}
-
--(void) viewDidLoad {
- isPaused = NO;
- self.tableView.allowsSelection = YES;
- self.tableView.alwaysBounceVertical = YES;
- self.tableView.delaysContentTouches = NO;
- menuList = [[NSArray alloc] initWithObjects:
- NSLocalizedString(@"Pause Game", @""),
- NSLocalizedString(@"Chat", @""),
- NSLocalizedString(@"End Game", @""),
- nil];
- [super viewDidLoad];
-}
-
-
--(void) dealloc {
- [menuList release];
- [super dealloc];
-}
-
-#pragma mark -
-#pragma mark tableView methods
--(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
- return 1;
-}
-
--(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return 3;
-}
-
--(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *cellIdentifier = @"CellIdentifier";
-
- UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:cellIdentifier];
- if (nil == cell) {
- cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
- reuseIdentifier:cellIdentifier] autorelease];
- }
- cell.textLabel.text = [menuList objectAtIndex:[indexPath row]];
-
- return cell;
-}
-
--(void) tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- UIActionSheet *actionSheet;
-
- switch ([indexPath row]) {
- case 0:
- HW_pause();
- isPaused = !isPaused;
- break;
- case 1:
- HW_chat();
- //SDL_iPhoneKeyboardShow([SDLUIKitDelegate sharedAppDelegate].window);
- break;
- case 2:
- actionSheet = [[UIActionSheet alloc] initWithTitle:NSLocalizedString(@"Are you reeeeeally sure?", @"")
- delegate:self
- cancelButtonTitle:NSLocalizedString(@"Well, maybe not...", @"")
- destructiveButtonTitle:NSLocalizedString(@"Of course!", @"")
- otherButtonTitles:nil];
- [actionSheet showInView:self.view];
- [actionSheet release];
-
- if (!isPaused)
- HW_pause();
- break;
- default:
- NSLog(@"Warning: unset case value in section!");
- break;
- }
-
- [aTableView deselectRowAtIndexPath:indexPath animated:YES];
-}
-
-#pragma mark -
-#pragma mark actionSheet methods
--(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger) buttonIndex {
- if ([actionSheet cancelButtonIndex] != buttonIndex) {
- [[NSNotificationCenter defaultCenter] postNotificationName:@"dismissPopover" object:nil];
- HW_terminate(NO);
- }
- else
- if (!isPaused)
- HW_pause();
-}
-
-@end
--- a/cocoaTouch/iPad/PopupMenuViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,220 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">800</int>
- <string key="IBDocument.SystemVersion">10C540</string>
- <string key="IBDocument.InterfaceBuilderVersion">762</string>
- <string key="IBDocument.AppKitVersion">1038.25</string>
- <string key="IBDocument.HIToolboxVersion">458.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">87</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="17"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="841351856">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBProxyObject" id="606714003">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBUIView" id="766721923">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUITableView" id="968153410">
- <reference key="NSNextResponder" ref="766721923"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrameSize">{320, 320}</string>
- <reference key="NSSuperview" ref="766721923"/>
- <object class="NSColor" key="IBUIBackgroundColor" id="858066183">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- </object>
- <bool key="IBUIClipsSubviews">YES</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <bool key="IBUIAlwaysBounceVertical">YES</bool>
- <bool key="IBUIAlwaysBounceHorizontal">YES</bool>
- <bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
- <int key="IBUIIndicatorStyle">1</int>
- <bool key="IBUIDelaysContentTouches">NO</bool>
- <bool key="IBUICanCancelContentTouches">NO</bool>
- <bool key="IBUIBouncesZoom">NO</bool>
- <int key="IBUISeparatorStyle">1</int>
- <int key="IBUISectionIndexMinimumDisplayRowCount">3</int>
- <float key="IBUIRowHeight">44</float>
- <float key="IBUISectionHeaderHeight">22</float>
- <float key="IBUISectionFooterHeight">22</float>
- </object>
- </object>
- <string key="NSFrameSize">{320, 320}</string>
- <reference key="NSSuperview"/>
- <reference key="IBUIBackgroundColor" ref="858066183"/>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="841351856"/>
- <reference key="destination" ref="766721923"/>
- </object>
- <int key="connectionID">3</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">dataSource</string>
- <reference key="source" ref="968153410"/>
- <reference key="destination" ref="841351856"/>
- </object>
- <int key="connectionID">18</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">delegate</string>
- <reference key="source" ref="968153410"/>
- <reference key="destination" ref="841351856"/>
- </object>
- <int key="connectionID">19</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">menuTable</string>
- <reference key="source" ref="841351856"/>
- <reference key="destination" ref="968153410"/>
- </object>
- <int key="connectionID">20</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="841351856"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="606714003"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">2</int>
- <reference key="object" ref="766721923"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="968153410"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">17</int>
- <reference key="object" ref="968153410"/>
- <reference key="parent" ref="766721923"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-1.showNotes</string>
- <string>-2.CustomClassName</string>
- <string>17.IBPluginDependency</string>
- <string>2.IBEditorWindowLastContentRect</string>
- <string>2.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>PopupMenuViewController</string>
- <boolean value="NO"/>
- <string>UIResponder</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{353, 836}, {320, 320}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">20</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">PopupMenuViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="outlets">
- <string key="NS.key.0">menuTable</string>
- <string key="NS.object.0">UITableView</string>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../cocoaTouch/iPad/PopupMenuViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
- <integer value="800" key="NS.object.0"/>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3100" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <string key="IBDocument.LastKnownRelativeProjectPath">../../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <string key="IBCocoaTouchPluginVersion">87</string>
- </data>
-</archive>
--- a/cocoaTouch/iPad/SettingsViewController.xib Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,476 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
- <data>
- <int key="IBDocument.SystemTarget">768</int>
- <string key="IBDocument.SystemVersion">10C540</string>
- <string key="IBDocument.InterfaceBuilderVersion">759</string>
- <string key="IBDocument.AppKitVersion">1038.25</string>
- <string key="IBDocument.HIToolboxVersion">458.00</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
- <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string key="NS.object.0">79</string>
- </object>
- <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <integer value="44"/>
- <integer value="1"/>
- </object>
- <object class="NSArray" key="IBDocument.PluginDependencies">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.Metadata">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys" id="0">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBProxyObject" id="372490531">
- <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBProxyObject" id="975951072">
- <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBUITextField" id="52230916">
- <nil key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{100, 18}, {200, 31}}</string>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentVerticalAlignment">0</int>
- <string key="IBUIText"/>
- <string key="IBUIPlaceholder">username</string>
- <object class="NSColor" key="IBUITextColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC40MDAwMDAwMDYgMC40MDAwMDAwMDYgMQA</bytes>
- </object>
- <object class="NSFont" key="IBUIFont" id="788314749">
- <string key="NSName">Helvetica</string>
- <double key="NSSize">15</double>
- <int key="NSfFlags">16</int>
- </object>
- <int key="IBUITextAlignment">2</int>
- <bool key="IBUIAdjustsFontSizeToFit">YES</bool>
- <float key="IBUIMinimumFontSize">17</float>
- <object class="IBUITextInputTraits" key="IBUITextInputTraits">
- <int key="IBUIAutocorrectionType">1</int>
- <int key="IBUIReturnKeyType">9</int>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- </object>
- </object>
- <object class="IBUITextField" id="809344278">
- <nil key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{100, 50}, {200, 31}}</string>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentVerticalAlignment">0</int>
- <string key="IBUIText"/>
- <string key="IBUIPlaceholder">network password (if any)</string>
- <object class="NSColor" key="IBUITextColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MAA</bytes>
- <object class="NSColorSpace" key="NSCustomColorSpace" id="753158763">
- <int key="NSID">2</int>
- </object>
- </object>
- <reference key="IBUIFont" ref="788314749"/>
- <int key="IBUITextAlignment">2</int>
- <bool key="IBUIClearsOnBeginEditing">YES</bool>
- <bool key="IBUIAdjustsFontSizeToFit">YES</bool>
- <float key="IBUIMinimumFontSize">17</float>
- <object class="IBUITextInputTraits" key="IBUITextInputTraits">
- <int key="IBUIAutocorrectionType">1</int>
- <int key="IBUIReturnKeyType">9</int>
- <bool key="IBUISecureTextEntry">YES</bool>
- <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
- </object>
- </object>
- <object class="IBUIView" id="191373211">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIImageView" id="411150667">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrame">{{272, 245}, {480, 278}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentMode">4</int>
- <bool key="IBUIUserInteractionEnabled">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <object class="NSCustomResource" key="IBUIImage">
- <string key="NSClassName">NSImage</string>
- <string key="NSResourceName">backgroundTop.png</string>
- </object>
- </object>
- <object class="IBUITableView" id="179734732">
- <reference key="NSNextResponder" ref="191373211"/>
- <int key="NSvFlags">274</int>
- <string key="NSFrame">{{272, 245}, {480, 278}}</string>
- <reference key="NSSuperview" ref="191373211"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
- <bool key="IBUICanCancelContentTouches">NO</bool>
- <bool key="IBUIBouncesZoom">NO</bool>
- <int key="IBUIStyle">1</int>
- <int key="IBUISeparatorStyle">1</int>
- <int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
- <float key="IBUIRowHeight">44</float>
- <float key="IBUISectionHeaderHeight">10</float>
- <float key="IBUISectionFooterHeight">10</float>
- </object>
- </object>
- <string key="NSFrameSize">{1024, 768}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MCAwIDAAA</bytes>
- </object>
- <int key="IBUIContentMode">4</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- <object class="IBUIView" id="399248671">
- <reference key="NSNextResponder"/>
- <int key="NSvFlags">292</int>
- <object class="NSMutableArray" key="NSSubviews">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBUIButton" id="227113826">
- <reference key="NSNextResponder" ref="399248671"/>
- <int key="NSvFlags">292</int>
- <string key="NSFrame">{{100, 39}, {280, 50}}</string>
- <reference key="NSSuperview" ref="399248671"/>
- <bool key="IBUIOpaque">NO</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- <int key="IBUIContentHorizontalAlignment">0</int>
- <int key="IBUIContentVerticalAlignment">0</int>
- <object class="NSFont" key="IBUIFont">
- <string key="NSName">Helvetica-Bold</string>
- <double key="NSSize">15</double>
- <int key="NSfFlags">16</int>
- </object>
- <int key="IBUIButtonType">1</int>
- <string key="IBUINormalTitle">Erase All Data</string>
- <object class="NSColor" key="IBUIHighlightedTitleColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleColor">
- <int key="NSColorSpace">1</int>
- <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
- </object>
- <object class="NSColor" key="IBUINormalTitleShadowColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MC41AA</bytes>
- </object>
- </object>
- </object>
- <string key="NSFrameSize">{480, 100}</string>
- <reference key="NSSuperview"/>
- <object class="NSColor" key="IBUIBackgroundColor">
- <int key="NSColorSpace">3</int>
- <bytes key="NSWhite">MQA</bytes>
- <reference key="NSCustomColorSpace" ref="753158763"/>
- </object>
- <bool key="IBUIAutoresizesSubviews">NO</bool>
- <bool key="IBUIClipsSubviews">YES</bool>
- <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
- <int key="IBUIContentMode">3</int>
- <string key="targetRuntimeIdentifier">IBIPadFramework</string>
- </object>
- </object>
- <object class="IBObjectContainer" key="IBDocument.Objects">
- <object class="NSMutableArray" key="connectionRecords">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">view</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="191373211"/>
- </object>
- <int key="connectionID">3</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">username</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="52230916"/>
- </object>
- <int key="connectionID">13</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">password</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="809344278"/>
- </object>
- <int key="connectionID">14</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">backgroundTap:</string>
- <reference key="source" ref="191373211"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">1</int>
- </object>
- <int key="connectionID">17</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">textFieldDoneEditing:</string>
- <reference key="source" ref="52230916"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">20</int>
- </object>
- <int key="connectionID">18</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">textFieldDoneEditing:</string>
- <reference key="source" ref="809344278"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">20</int>
- </object>
- <int key="connectionID">19</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">dataSource</string>
- <reference key="source" ref="179734732"/>
- <reference key="destination" ref="372490531"/>
- </object>
- <int key="connectionID">31</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">delegate</string>
- <reference key="source" ref="179734732"/>
- <reference key="destination" ref="372490531"/>
- </object>
- <int key="connectionID">32</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchEventConnection" key="connection">
- <string key="label">deleteData:</string>
- <reference key="source" ref="227113826"/>
- <reference key="destination" ref="372490531"/>
- <int key="IBEventType">7</int>
- </object>
- <int key="connectionID">42</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">buttonContainer</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="399248671"/>
- </object>
- <int key="connectionID">46</int>
- </object>
- <object class="IBConnectionRecord">
- <object class="IBCocoaTouchOutletConnection" key="connection">
- <string key="label">settingsTable</string>
- <reference key="source" ref="372490531"/>
- <reference key="destination" ref="179734732"/>
- </object>
- <int key="connectionID">47</int>
- </object>
- </object>
- <object class="IBMutableOrderedSet" key="objectRecords">
- <object class="NSArray" key="orderedObjects">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBObjectRecord">
- <int key="objectID">0</int>
- <reference key="object" ref="0"/>
- <reference key="children" ref="1000"/>
- <nil key="parent"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">1</int>
- <reference key="object" ref="191373211"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="411150667"/>
- <reference ref="179734732"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-1</int>
- <reference key="object" ref="372490531"/>
- <reference key="parent" ref="0"/>
- <string key="objectName">File's Owner</string>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">-2</int>
- <reference key="object" ref="975951072"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">4</int>
- <reference key="object" ref="411150667"/>
- <reference key="parent" ref="191373211"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">5</int>
- <reference key="object" ref="52230916"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">6</int>
- <reference key="object" ref="809344278"/>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">44</int>
- <reference key="object" ref="399248671"/>
- <object class="NSMutableArray" key="children">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference ref="227113826"/>
- </object>
- <reference key="parent" ref="0"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">41</int>
- <reference key="object" ref="227113826"/>
- <reference key="parent" ref="399248671"/>
- </object>
- <object class="IBObjectRecord">
- <int key="objectID">30</int>
- <reference key="object" ref="179734732"/>
- <reference key="parent" ref="191373211"/>
- </object>
- </object>
- </object>
- <object class="NSMutableDictionary" key="flattenedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>-1.CustomClassName</string>
- <string>-2.CustomClassName</string>
- <string>1.CustomClassName</string>
- <string>1.IBEditorWindowLastContentRect</string>
- <string>1.IBPluginDependency</string>
- <string>30.IBPluginDependency</string>
- <string>4.IBPluginDependency</string>
- <string>41.IBEditorWindowLastContentRect</string>
- <string>41.IBPluginDependency</string>
- <string>44.IBEditorWindowLastContentRect</string>
- <string>44.IBPluginDependency</string>
- <string>5.IBPluginDependency</string>
- <string>6.IBPluginDependency</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>SettingsViewController</string>
- <string>UIResponder</string>
- <string>UIControl</string>
- <string>{{476, 44}, {1024, 768}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{1352, 334}, {220, 50}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>{{725, 399}, {480, 100}}</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="unlocalizedProperties">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="activeLocalization"/>
- <object class="NSMutableDictionary" key="localizations">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <reference key="dict.sortedKeys" ref="0"/>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- </object>
- </object>
- <nil key="sourceID"/>
- <int key="maxID">47</int>
- </object>
- <object class="IBClassDescriber" key="IBDocument.Classes">
- <object class="NSMutableArray" key="referencedPartialClassDescriptions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="IBPartialClassDescription">
- <string key="className">SettingsViewController</string>
- <string key="superclassName">UIViewController</string>
- <object class="NSMutableDictionary" key="actions">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>backgroundTap:</string>
- <string>deleteData:</string>
- <string>textFieldDoneEditing:</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>id</string>
- <string>id</string>
- <string>id</string>
- </object>
- </object>
- <object class="NSMutableDictionary" key="outlets">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <object class="NSArray" key="dict.sortedKeys">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>buttonContainer</string>
- <string>password</string>
- <string>settingsTable</string>
- <string>username</string>
- </object>
- <object class="NSMutableArray" key="dict.values">
- <bool key="EncodedWithXMLCoder">YES</bool>
- <string>UIView</string>
- <string>UITextField</string>
- <string>UITableView</string>
- <string>UITextField</string>
- </object>
- </object>
- <object class="IBClassDescriptionSource" key="sourceIdentifier">
- <string key="majorKey">IBProjectSource</string>
- <string key="minorKey">../../cocoaTouch/SettingsViewController.h</string>
- </object>
- </object>
- </object>
- </object>
- <int key="IBDocument.localizationMode">0</int>
- <string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
- <integer value="768" key="NS.object.0"/>
- </object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
- <integer value="3000" key="NS.object.0"/>
- </object>
- <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
- <string key="IBDocument.LastKnownRelativeProjectPath">../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
- <int key="IBDocument.defaultPropertyAccessControl">3</int>
- <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
- <string key="NS.key.0">backgroundTop.png</string>
- <string key="NS.object.0">{480, 278}</string>
- </object>
- <string key="IBCocoaTouchPluginVersion">79</string>
- <nil key="IBCocoaTouchSimulationTargetRuntimeIdentifier"/>
- </data>
-</archive>
--- a/cocoaTouch/iPad/SingleTeamViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-//
-// SingleTeamViewController.h
-// HedgewarsMobile
-//
-// Created by Vittorio on 02/04/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-@class HogHatViewController;
-@interface SingleTeamViewController : UITableViewController {
- NSArray *hogsList;
- NSArray *secondaryItems;
- NSString *teamName;
-
- HogHatViewController *hogChildController;
-}
-
-@property (nonatomic,retain) NSArray *hogsList;
-@property (nonatomic,retain) NSArray *secondaryItems;
-@property (nonatomic,retain) NSString *teamName;
-@end
--- a/cocoaTouch/iPad/SingleTeamViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,207 +0,0 @@
-//
-// SingleTeamViewController.m
-// HedgewarsMobile
-//
-// Created by Vittorio on 02/04/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "SingleTeamViewController.h"
-#import "HogHatViewController.h"
-
-@implementation SingleTeamViewController
-@synthesize hogsList, secondaryItems, teamName;
-
-
-#pragma mark -
-#pragma mark View lifecycle
-- (void)viewDidLoad {
- [super viewDidLoad];
-
- // Uncomment the following line to preserve selection between presentations.
- //self.clearsSelectionOnViewWillAppear = NO;
-
- // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
- // self.navigationItem.rightBarButtonItem = self.editButtonItem;
-
- NSMutableArray *array = [[NSMutableArray alloc] initWithObjects:
- NSLocalizedString(@"Color",@""),
- NSLocalizedString(@"Grave",@""),
- NSLocalizedString(@"Voice",@""),
- NSLocalizedString(@"Fort",@""),
- NSLocalizedString(@"Flag",@""),
- NSLocalizedString(@"Level",@""),nil];
- self.secondaryItems = array;
- [array release];
-}
-
-
-- (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
- NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *teamFile = [[NSString alloc] initWithFormat:@"%@Teams/%@.plist",[paths objectAtIndex:0],self.teamName];
- NSDictionary *teamDict = [[NSDictionary alloc] initWithContentsOfFile:teamFile];
- [teamFile release];
-
- self.hogsList = [teamDict objectForKey:@"hedgehogs"];
- self.teamName = [teamDict objectForKey:@"teamname"];
- [teamDict release];
- self.title = teamName;
-}
-
-/*
-- (void)viewDidAppear:(BOOL)animated {
- [super viewDidAppear:animated];
-}
-*/
-/*
-- (void)viewWillDisappear:(BOOL)animated {
- [super viewWillDisappear:animated];
-}
-*/
-/*
-- (void)viewDidDisappear:(BOOL)animated {
- [super viewDidDisappear:animated];
-}
-*/
-
--(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
-
-#pragma mark -
-#pragma mark Table view data source
--(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
- return 3;
-}
-
--(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- NSInteger rows;
- switch (section) {
- case 0:
- rows = 1;
- break;
- case 1:
- rows = 8;
- break;
- case 2:
- rows = 6;
- break;
- default:
- break;
- }
- return rows;
-}
-
--(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *CellIdentifier = @"Cell";
-
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (cell == nil) {
- cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
- reuseIdentifier:CellIdentifier] autorelease];
- }
-
- NSInteger row = [indexPath row];
- switch ([indexPath section]) {
- case 0:
- cell.textLabel.text = teamName;
- break;
- case 1:
- cell.textLabel.text = [[self.hogsList objectAtIndex:row] objectForKey:@"hogname"];
- cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
- break;
- case 2:
- cell.textLabel.text = [self.secondaryItems objectAtIndex:row];
- break;
- default:
- break;
- }
-
- return cell;
-}
-
-
-/*
-// Override to support conditional editing of the table view.
-- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
- // Return NO if you do not want the specified item to be editable.
- return YES;
-}
-*/
-
-
-/*
-// Override to support editing the table view.
-- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
-
- if (editingStyle == UITableViewCellEditingStyleDelete) {
- // Delete the row from the data source
- [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
- }
- else if (editingStyle == UITableViewCellEditingStyleInsert) {
- // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
- }
-}
-*/
-
-
-/*
-// Override to support rearranging the table view.
-- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
-}
-*/
-
-
-/*
-// Override to support conditional rearranging of the table view.
-- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
- // Return NO if you do not want the item to be re-orderable.
- return YES;
-}
-*/
-
-
-#pragma mark -
-#pragma mark Table view delegate
-
--(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- if (1 == [indexPath section]) {
- if (nil == hogChildController) {
- hogChildController = [[HogHatViewController alloc] initWithStyle:UITableViewStyleGrouped];
- }
-
- hogChildController.hog = [hogsList objectAtIndex:[indexPath row]];
- //NSLog(@"%@",hogChildController.hog);
- [self.navigationController pushViewController:hogChildController animated:YES];
- }
-}
-
-
-#pragma mark -
-#pragma mark Memory management
-
--(void) didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
- // Relinquish ownership any cached data, images, etc that aren't in use.
-}
-
--(void) viewDidUnload {
- self.hogsList = nil;
- self.secondaryItems = nil;
- self.teamName = nil;
-}
-
-
--(void) dealloc {
- [secondaryItems release];
- [hogsList release];
- [teamName release];
- [super dealloc];
-}
-
-
-@end
-
--- a/cocoaTouch/iPad/SplitViewRootController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-//
-// SplitViewRootController.h
-// HedgewarsMobile
-//
-// Created by Vittorio on 27/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-@class MasterViewController;
-@class DetailViewController;
-@interface SplitViewRootController : UIViewController {
- UISplitViewController *splitViewController;
- MasterViewController *masterViewController;
- DetailViewController *detailViewController;
-}
-
-@property (nonatomic,retain) IBOutlet UISplitViewController *splitViewController;
-@property (nonatomic,retain) IBOutlet MasterViewController *masterViewController;
-@property (nonatomic,retain) IBOutlet DetailViewController *detailViewController;
-@end
--- a/cocoaTouch/iPad/SplitViewRootController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,87 +0,0 @@
- //
-// SplitViewRootController.m
-// HedgewarsMobile
-//
-// Created by Vittorio on 27/03/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "SplitViewRootController.h"
-#import "MasterViewController.h"
-#import "DetailViewController.h"
-
-@implementation SplitViewRootController
-@synthesize splitViewController, masterViewController, detailViewController;
-
-
--(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
--(void) didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
- // Release any cached data, images, etc that aren't in use.
-}
-
-// load the view programmatically; we need a splitViewController that handles a MasterViewController
-// (which is just a UITableViewController) and a DetailViewController where we present options
--(void) viewDidLoad {
- // init every possible controller
- splitViewController = [[UISplitViewController alloc] init];
- CGRect screensize = [[UIScreen mainScreen] bounds];
- splitViewController.view.frame = CGRectMake(0, 0, screensize.size.height, screensize.size.width);
- masterViewController = [[MasterViewController alloc] initWithStyle:UITableViewStylePlain];
- detailViewController = [[DetailViewController alloc] initWithStyle:UITableViewStyleGrouped];
-
- UINavigationController *mainNavController = [[UINavigationController alloc] initWithRootViewController:masterViewController];
- UINavigationController *detailedNavController = [[UINavigationController alloc] initWithRootViewController:detailViewController];
-
- // set attributes
- masterViewController.detailViewController = detailViewController;
- splitViewController.viewControllers = [NSArray arrayWithObjects: mainNavController, detailedNavController, nil];
- [mainNavController release];
- [detailedNavController release];
-
- splitViewController.delegate = detailViewController;
-
- // add view to main controller
- [self.view addSubview:splitViewController.view];
- [detailViewController release];
- [masterViewController release];
-
- [super viewDidLoad];
-}
-
--(void) dealloc {
- [detailViewController release];
- [masterViewController release];
- [splitViewController release];
- [super dealloc];
-}
-
-#pragma mark -
-#pragma mark additional methods as we're using a UINavigationController programmatically
-// see http://davidebenini.it/2009/01/03/viewwillappear-not-being-called-inside-a-uinavigationcontroller/
--(void) viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
- [detailViewController.navigationController viewWillAppear:animated];
-}
-
--(void) viewWillDisappear:(BOOL)animated {
- [super viewWillDisappear:animated];
- [detailViewController.navigationController viewWillDisappear:animated];
-}
-
--(void) viewDidAppear:(BOOL)animated {
- [super viewDidLoad];
- [detailViewController.navigationController viewDidAppear:animated];
-}
-
--(void) viewDidDisappear:(BOOL)animated {
- [super viewDidUnload];
- [detailViewController.navigationController viewDidDisappear:animated];
-}
-
-
-@end
--- a/cocoaTouch/iPad/TeamSettingsViewController.h Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-//
-// TeamSettingsViewController.h
-// HedgewarsMobile
-//
-// Created by Vittorio on 02/04/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-@class SingleTeamViewController;
-
-@interface TeamSettingsViewController : UITableViewController {
- NSArray *list;
- SingleTeamViewController *childController;
-}
-@property (nonatomic, retain) NSArray *list;
-
-@end
--- a/cocoaTouch/iPad/TeamSettingsViewController.m Sun Apr 04 16:38:00 2010 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,167 +0,0 @@
-//
-// TeamSettingsViewController.m
-// HedgewarsMobile
-//
-// Created by Vittorio on 02/04/10.
-// Copyright 2010 __MyCompanyName__. All rights reserved.
-//
-
-#import "TeamSettingsViewController.h"
-#import "SingleTeamViewController.h"
-
-@implementation TeamSettingsViewController
-@synthesize list;
-
-#pragma mark -
-#pragma mark View lifecycle
-- (void)viewDidLoad {
- [super viewDidLoad];
-
- NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *teamsDirectory = [[paths objectAtIndex:0] stringByAppendingString:@"Teams/"];
-
- NSArray *contents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:teamsDirectory
- error:NULL];
- self.list = contents;
-
- // Uncomment the following line to preserve selection between presentations.
- // self.clearsSelectionOnViewWillAppear = NO;
- // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
- self.navigationItem.rightBarButtonItem = self.editButtonItem;
-}
-
-- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
- // Override to allow orientations other than the default portrait orientation.
- return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
-}
-
-
-#pragma mark -
-#pragma mark Table view data source
-
-- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- // Return the number of sections.
- return 1;
-}
-
-
-- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- // Return the number of rows in the section.
- return [list count];
-}
-
-
-// Customize the appearance of table view cells.
-- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- static NSString *CellIdentifier = @"Cell";
-
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (cell == nil) {
- cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
- }
-
- NSUInteger row = [indexPath row];
- NSString *rowString = [[list objectAtIndex:row] stringByDeletingPathExtension];
- cell.textLabel.text = rowString;
- cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
- //cell.imageView.image = [UIImage imageNamed:@"Default.png"];
- //[rowString release];
-
- return cell;
-}
-
-
-/*
-// Override to support conditional editing of the table view.
-- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
- // Return NO if you do not want the specified item to be editable.
- return YES;
-}
-*/
-
-
-/*
-// Override to support editing the table view.
-- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
-
- if (editingStyle == UITableViewCellEditingStyleDelete) {
- // Delete the row from the data source
- [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
- }
- else if (editingStyle == UITableViewCellEditingStyleInsert) {
- // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
- }
-}
-*/
-
-
-/*
-// Override to support rearranging the table view.
-- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
-}
-*/
-
-
-/*
-// Override to support conditional rearranging of the table view.
-- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
- // Return NO if you do not want the item to be re-orderable.
- return YES;
-}
-*/
-
-
-#pragma mark -
-#pragma mark Table view delegate
-- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- if (childController == nil) {
- childController = [[SingleTeamViewController alloc] initWithStyle:UITableViewStyleGrouped];
- }
-
- NSInteger row = [indexPath row];
- NSString *selectedTeam = [[list objectAtIndex:row] stringByDeletingPathExtension];
-
- childController.teamName = selectedTeam;
- [self.navigationController pushViewController:childController animated:YES];
-}
-
-/*
--(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
- UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"Hey, do you see the disclosure button?"
- message:@"If you're trying to drill down, touch that instead"
- delegate:nil
- cancelButtonTitle:@"Won't happen again"
- otherButtonTitles:nil];
- [alert show];
- [alert release];
-}
-*/
-
-#pragma mark -
-#pragma mark Memory management
-
-- (void)didReceiveMemoryWarning {
- // Releases the view if it doesn't have a superview.
- [super didReceiveMemoryWarning];
-
- // Relinquish ownership any cached data, images, etc that aren't in use.
-}
-
-/*
-- (void)viewDidUnload {
- // Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
- // For example: self.myOutlet = nil;
-}
-*/
-
-- (void)dealloc {
- [list release];
- if (nil != childController)
- [childController release];
- [super dealloc];
-}
-
-
-@end
-
Binary file cocoaTouch/resources/Default-iPad.png has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/xib/MainMenuViewController-iPad.xib Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,631 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="7.10">
+ <data>
+ <int key="IBDocument.SystemTarget">800</int>
+ <string key="IBDocument.SystemVersion">10D573</string>
+ <string key="IBDocument.InterfaceBuilderVersion">762</string>
+ <string key="IBDocument.AppKitVersion">1038.29</string>
+ <string key="IBDocument.HIToolboxVersion">460.00</string>
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string key="NS.object.0">87</string>
+ </object>
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <integer value="1"/>
+ </object>
+ <object class="NSArray" key="IBDocument.PluginDependencies">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ </object>
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys" id="0">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBProxyObject" id="372490531">
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ </object>
+ <object class="IBProxyObject" id="975951072">
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ </object>
+ <object class="IBUIView" id="191373211">
+ <reference key="NSNextResponder"/>
+ <int key="NSvFlags">292</int>
+ <object class="NSMutableArray" key="NSSubviews">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBUIImageView" id="976741091">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">274</int>
+ <string key="NSFrameSize">{1024, 768}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <object class="NSCustomResource" key="IBUIImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">Background.png</string>
+ </object>
+ </object>
+ <object class="IBUIImageView" id="90394251">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{147, 20}, {745, 146}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <int key="IBUIContentMode">4</int>
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <object class="NSCustomResource" key="IBUIImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">HedgewarsTitle.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="867308721">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{147, 200}, {258, 215}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <object class="NSFont" key="IBUIFont" id="917635782">
+ <string key="NSName">Helvetica-Bold</string>
+ <double key="NSSize">15</double>
+ <int key="NSfFlags">16</int>
+ </object>
+ <object class="NSColor" key="IBUIHighlightedTitleColor" id="918890028">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MQA</bytes>
+ </object>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
+ </object>
+ <object class="NSColor" key="IBUINormalTitleShadowColor" id="112471976">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MC41AA</bytes>
+ </object>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">Multiplayer.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="607338789">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{634, 493}, {258, 215}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <int key="IBUITag">1</int>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="917635782"/>
+ <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="112471976"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">NetworkPlay.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="95106947">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{279, 591}, {18, 19}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <int key="IBUITag">2</int>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="917635782"/>
+ <int key="IBUIButtonType">3</int>
+ <bool key="IBUIShowsTouchWhenHighlighted">YES</bool>
+ <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="112471976"/>
+ </object>
+ <object class="IBUILabel" id="177360137">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{762, 183}, {87, 21}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClipsSubviews">YES</bool>
+ <int key="IBUIContentMode">7</int>
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <string key="IBUIText"/>
+ <object class="NSColor" key="IBUITextColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MSAxIDEAA</bytes>
+ <object class="NSColorSpace" key="NSCustomColorSpace">
+ <int key="NSID">1</int>
+ </object>
+ </object>
+ <nil key="IBUIHighlightedColor"/>
+ <int key="IBUIBaselineAdjustment">1</int>
+ <float key="IBUIMinimumFontSize">10</float>
+ </object>
+ </object>
+ <string key="NSFrameSize">{1024, 768}</string>
+ <reference key="NSSuperview"/>
+ <object class="NSColor" key="IBUIBackgroundColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
+ </object>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ </object>
+ </object>
+ <object class="IBObjectContainer" key="IBDocument.Objects">
+ <object class="NSMutableArray" key="connectionRecords">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchOutletConnection" key="connection">
+ <string key="label">view</string>
+ <reference key="source" ref="372490531"/>
+ <reference key="destination" ref="191373211"/>
+ </object>
+ <int key="connectionID">3</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">switchViews:</string>
+ <reference key="source" ref="95106947"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">47</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">switchViews:</string>
+ <reference key="source" ref="867308721"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">48</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">switchViews:</string>
+ <reference key="source" ref="607338789"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">49</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchOutletConnection" key="connection">
+ <string key="label">versionLabel</string>
+ <reference key="source" ref="372490531"/>
+ <reference key="destination" ref="177360137"/>
+ </object>
+ <int key="connectionID">51</int>
+ </object>
+ </object>
+ <object class="IBMutableOrderedSet" key="objectRecords">
+ <object class="NSArray" key="orderedObjects">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBObjectRecord">
+ <int key="objectID">0</int>
+ <reference key="object" ref="0"/>
+ <reference key="children" ref="1000"/>
+ <nil key="parent"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">1</int>
+ <reference key="object" ref="191373211"/>
+ <object class="NSMutableArray" key="children">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="90394251"/>
+ <reference ref="976741091"/>
+ <reference ref="607338789"/>
+ <reference ref="867308721"/>
+ <reference ref="95106947"/>
+ <reference ref="177360137"/>
+ </object>
+ <reference key="parent" ref="0"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">-1</int>
+ <reference key="object" ref="372490531"/>
+ <reference key="parent" ref="0"/>
+ <string key="objectName">File's Owner</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">-2</int>
+ <reference key="object" ref="975951072"/>
+ <reference key="parent" ref="0"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">37</int>
+ <reference key="object" ref="976741091"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">38</int>
+ <reference key="object" ref="90394251"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">39</int>
+ <reference key="object" ref="867308721"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">local</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">40</int>
+ <reference key="object" ref="607338789"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">multi</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">45</int>
+ <reference key="object" ref="95106947"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">50</int>
+ <reference key="object" ref="177360137"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ </object>
+ </object>
+ <object class="NSMutableDictionary" key="flattenedProperties">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>-1.CustomClassName</string>
+ <string>-2.CustomClassName</string>
+ <string>1.IBEditorWindowLastContentRect</string>
+ <string>1.IBPluginDependency</string>
+ <string>37.IBPluginDependency</string>
+ <string>38.IBPluginDependency</string>
+ <string>39.IBPluginDependency</string>
+ <string>40.IBPluginDependency</string>
+ <string>45.IBPluginDependency</string>
+ <string>50.IBPluginDependency</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>MainMenuViewController</string>
+ <string>UIResponder</string>
+ <string>{{224, 56}, {1024, 768}}</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ </object>
+ </object>
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference key="dict.sortedKeys" ref="0"/>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <nil key="activeLocalization"/>
+ <object class="NSMutableDictionary" key="localizations">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference key="dict.sortedKeys" ref="0"/>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <nil key="sourceID"/>
+ <int key="maxID">51</int>
+ </object>
+ <object class="IBClassDescriber" key="IBDocument.Classes">
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBPartialClassDescription">
+ <string key="className">MainMenuViewController</string>
+ <string key="superclassName">UIViewController</string>
+ <object class="NSMutableDictionary" key="actions">
+ <string key="NS.key.0">switchViews:</string>
+ <string key="NS.object.0">id</string>
+ </object>
+ <object class="NSMutableDictionary" key="outlets">
+ <string key="NS.key.0">versionLabel</string>
+ <string key="NS.object.0">UILabel</string>
+ </object>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBProjectSource</string>
+ <string key="minorKey">../../cocoaTouch/MainMenuViewController.h</string>
+ </object>
+ </object>
+ </object>
+ <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSError.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSNetServices.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSPort.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSStream.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSXMLParser.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">QuartzCore.framework/Headers/CALayer.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier" id="864669175">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIButton</string>
+ <string key="superclassName">UIControl</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIButton.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIControl</string>
+ <string key="superclassName">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIImageView</string>
+ <string key="superclassName">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIImageView.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UILabel</string>
+ <string key="superclassName">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIResponder</string>
+ <string key="superclassName">NSObject</string>
+ <reference key="sourceIdentifier" ref="864669175"/>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UISearchBar</string>
+ <string key="superclassName">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UISearchDisplayController</string>
+ <string key="superclassName">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIView</string>
+ <string key="superclassName">UIResponder</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIView.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIPopoverController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UISplitViewController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <string key="superclassName">UIResponder</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
+ </object>
+ </object>
+ </object>
+ </object>
+ <int key="IBDocument.localizationMode">0</int>
+ <string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
+ <integer value="800" key="NS.object.0"/>
+ </object>
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
+ <integer value="3000" key="NS.object.0"/>
+ </object>
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
+ <string key="IBDocument.LastKnownRelativeProjectPath">../../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
+ <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>Background.png</string>
+ <string>HedgewarsTitle.png</string>
+ <string>Multiplayer.png</string>
+ <string>NetworkPlay.png</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>{1024, 768}</string>
+ <string>{720, 140}</string>
+ <string>{264, 219}</string>
+ <string>{314, 260}</string>
+ </object>
+ </object>
+ <string key="IBCocoaTouchPluginVersion">87</string>
+ </data>
+</archive>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/xib/MainMenuViewController-iPhone.xib Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,746 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
+ <data>
+ <int key="IBDocument.SystemTarget">800</int>
+ <string key="IBDocument.SystemVersion">10D573</string>
+ <string key="IBDocument.InterfaceBuilderVersion">762</string>
+ <string key="IBDocument.AppKitVersion">1038.29</string>
+ <string key="IBDocument.HIToolboxVersion">460.00</string>
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string key="NS.object.0">87</string>
+ </object>
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ <object class="NSArray" key="IBDocument.PluginDependencies">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ </object>
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys" id="0">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBProxyObject" id="372490531">
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ </object>
+ <object class="IBProxyObject" id="975951072">
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ </object>
+ <object class="IBUIView" id="191373211">
+ <nil key="NSNextResponder"/>
+ <int key="NSvFlags">292</int>
+ <object class="NSMutableArray" key="NSSubviews">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBUIImageView" id="249993817">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">274</int>
+ <string key="NSFrame">{{0, 21}, {480, 278}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <object class="NSColor" key="IBUIBackgroundColor">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MCAwAA</bytes>
+ </object>
+ <int key="IBUIContentMode">4</int>
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <object class="NSCustomResource" key="IBUIImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">backgroundCenter.png</string>
+ </object>
+ </object>
+ <object class="IBUIImageView" id="171108356">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{13, 33}, {240, 52}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUIContentMode">4</int>
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <object class="NSCustomResource" key="IBUIImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">title.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="124270424">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{233, 127}, {220, 52}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <object class="NSColor" key="IBUIBackgroundColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MCAwIDAgMAA</bytes>
+ </object>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <object class="NSFont" key="IBUIFont" id="917635782">
+ <string key="NSName">Helvetica-Bold</string>
+ <double key="NSSize">15</double>
+ <int key="NSfFlags">16</int>
+ </object>
+ <object class="NSColor" key="IBUIHighlightedTitleColor" id="918890028">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MQA</bytes>
+ </object>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <object class="NSColor" key="IBUINormalTitleShadowColor" id="112471976">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MC41AA</bytes>
+ </object>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">playButton.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="745970938">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{233, 231}, {220, 52}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <object class="NSColor" key="IBUIBackgroundColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MCAwIDAgMAA</bytes>
+ </object>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">3</int>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="917635782"/>
+ <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="112471976"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">networkButton.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="836337039">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{33, 187}, {220, 52}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <object class="NSColor" key="IBUIBackgroundColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MCAwIDAgMAA</bytes>
+ </object>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">3</int>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="917635782"/>
+ <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
+ <object class="NSColor" key="IBUINormalTitleColor" id="111038951">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="111038951"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">storeButton.png</string>
+ </object>
+ </object>
+ <object class="IBUILabel" id="533529472">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{60, 102}, {145, 21}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClipsSubviews">YES</bool>
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <string key="IBUIText"/>
+ <object class="NSFont" key="IBUIFont">
+ <string key="NSName">Helvetica-Oblique</string>
+ <double key="NSSize">17</double>
+ <int key="NSfFlags">16</int>
+ </object>
+ <object class="NSColor" key="IBUITextColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MSAxIDEAA</bytes>
+ </object>
+ <nil key="IBUIHighlightedColor"/>
+ <int key="IBUIBaselineAdjustment">1</int>
+ <float key="IBUIMinimumFontSize">10</float>
+ <int key="IBUITextAlignment">1</int>
+ </object>
+ <object class="IBUIButton" id="753723574">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{313, 49}, {59, 52}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">2</int>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="917635782"/>
+ <reference key="IBUIHighlightedTitleColor" ref="918890028"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="112471976"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">settingsButton.png</string>
+ </object>
+ </object>
+ <object class="IBUIImageView" id="821240857">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">274</int>
+ <string key="NSFrameSize">{480, 21}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUIContentMode">4</int>
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <object class="NSCustomResource" key="IBUIImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">borderTop.png</string>
+ </object>
+ </object>
+ <object class="IBUIImageView" id="936485487">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">274</int>
+ <string key="NSFrame">{{0, 300}, {480, 20}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUIContentMode">4</int>
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <object class="NSCustomResource" key="IBUIImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">borderBottom.png</string>
+ </object>
+ </object>
+ </object>
+ <string key="NSFrameSize">{480, 320}</string>
+ <object class="NSColor" key="IBUIBackgroundColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
+ </object>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ </object>
+ </object>
+ <object class="IBObjectContainer" key="IBDocument.Objects">
+ <object class="NSMutableArray" key="connectionRecords">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchOutletConnection" key="connection">
+ <string key="label">view</string>
+ <reference key="source" ref="372490531"/>
+ <reference key="destination" ref="191373211"/>
+ </object>
+ <int key="connectionID">3</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">switchViews:</string>
+ <reference key="source" ref="753723574"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">30</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchOutletConnection" key="connection">
+ <string key="label">versionLabel</string>
+ <reference key="source" ref="372490531"/>
+ <reference key="destination" ref="533529472"/>
+ </object>
+ <int key="connectionID">37</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">switchViews:</string>
+ <reference key="source" ref="836337039"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">38</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">switchViews:</string>
+ <reference key="source" ref="745970938"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">39</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">switchViews:</string>
+ <reference key="source" ref="124270424"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">40</int>
+ </object>
+ </object>
+ <object class="IBMutableOrderedSet" key="objectRecords">
+ <object class="NSArray" key="orderedObjects">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBObjectRecord">
+ <int key="objectID">0</int>
+ <reference key="object" ref="0"/>
+ <reference key="children" ref="1000"/>
+ <nil key="parent"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">1</int>
+ <reference key="object" ref="191373211"/>
+ <object class="NSMutableArray" key="children">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="936485487"/>
+ <reference ref="821240857"/>
+ <reference ref="249993817"/>
+ <reference ref="171108356"/>
+ <reference ref="124270424"/>
+ <reference ref="745970938"/>
+ <reference ref="836337039"/>
+ <reference ref="533529472"/>
+ <reference ref="753723574"/>
+ </object>
+ <reference key="parent" ref="0"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">-1</int>
+ <reference key="object" ref="372490531"/>
+ <reference key="parent" ref="0"/>
+ <string key="objectName">File's Owner</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">-2</int>
+ <reference key="object" ref="975951072"/>
+ <reference key="parent" ref="0"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">35</int>
+ <reference key="object" ref="821240857"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">36</int>
+ <reference key="object" ref="936485487"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">22</int>
+ <reference key="object" ref="249993817"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">23</int>
+ <reference key="object" ref="171108356"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">24</int>
+ <reference key="object" ref="124270424"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">25</int>
+ <reference key="object" ref="745970938"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">26</int>
+ <reference key="object" ref="836337039"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">27</int>
+ <reference key="object" ref="533529472"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">28</int>
+ <reference key="object" ref="753723574"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ </object>
+ </object>
+ <object class="NSMutableDictionary" key="flattenedProperties">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>-1.CustomClassName</string>
+ <string>-2.CustomClassName</string>
+ <string>1.IBEditorWindowLastContentRect</string>
+ <string>1.IBPluginDependency</string>
+ <string>22.IBPluginDependency</string>
+ <string>23.IBPluginDependency</string>
+ <string>24.IBPluginDependency</string>
+ <string>25.IBPluginDependency</string>
+ <string>26.IBPluginDependency</string>
+ <string>27.IBPluginDependency</string>
+ <string>28.IBPluginDependency</string>
+ <string>35.IBPluginDependency</string>
+ <string>36.IBPluginDependency</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>MainMenuViewController</string>
+ <string>UIResponder</string>
+ <string>{{75, 599}, {480, 320}}</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ </object>
+ </object>
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference key="dict.sortedKeys" ref="0"/>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <nil key="activeLocalization"/>
+ <object class="NSMutableDictionary" key="localizations">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference key="dict.sortedKeys" ref="0"/>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <nil key="sourceID"/>
+ <int key="maxID">40</int>
+ </object>
+ <object class="IBClassDescriber" key="IBDocument.Classes">
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBPartialClassDescription">
+ <string key="className">MainMenuViewController</string>
+ <string key="superclassName">UIViewController</string>
+ <object class="NSMutableDictionary" key="actions">
+ <string key="NS.key.0">switchViews:</string>
+ <string key="NS.object.0">id</string>
+ </object>
+ <object class="NSMutableDictionary" key="outlets">
+ <string key="NS.key.0">versionLabel</string>
+ <string key="NS.object.0">UILabel</string>
+ </object>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBProjectSource</string>
+ <string key="minorKey">../../cocoaTouch/MainMenuViewController.h</string>
+ </object>
+ </object>
+ </object>
+ <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSError.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSNetServices.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSPort.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSStream.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">Foundation.framework/Headers/NSXMLParser.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">QuartzCore.framework/Headers/CAAnimation.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">QuartzCore.framework/Headers/CALayer.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier" id="238583711">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIButton</string>
+ <string key="superclassName">UIControl</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIButton.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIControl</string>
+ <string key="superclassName">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIImageView</string>
+ <string key="superclassName">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIImageView.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UILabel</string>
+ <string key="superclassName">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIResponder</string>
+ <string key="superclassName">NSObject</string>
+ <reference key="sourceIdentifier" ref="238583711"/>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UISearchBar</string>
+ <string key="superclassName">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UISearchDisplayController</string>
+ <string key="superclassName">NSObject</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIView</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIView</string>
+ <string key="superclassName">UIResponder</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIView.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIPopoverController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UISplitViewController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">UIViewController</string>
+ <string key="superclassName">UIResponder</string>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBFrameworkSource</string>
+ <string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
+ </object>
+ </object>
+ </object>
+ </object>
+ <int key="IBDocument.localizationMode">0</int>
+ <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
+ <integer value="800" key="NS.object.0"/>
+ </object>
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
+ <integer value="3000" key="NS.object.0"/>
+ </object>
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
+ <string key="IBDocument.LastKnownRelativeProjectPath">../../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
+ <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>backgroundCenter.png</string>
+ <string>borderBottom.png</string>
+ <string>borderTop.png</string>
+ <string>networkButton.png</string>
+ <string>playButton.png</string>
+ <string>settingsButton.png</string>
+ <string>storeButton.png</string>
+ <string>title.png</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>{480, 278}</string>
+ <string>{480, 21}</string>
+ <string>{480, 21}</string>
+ <string>{217, 51}</string>
+ <string>{216, 51}</string>
+ <string>{57, 51}</string>
+ <string>{216, 51}</string>
+ <string>{262, 84}</string>
+ </object>
+ </object>
+ <string key="IBCocoaTouchPluginVersion">87</string>
+ </data>
+</archive>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/xib/OverlayViewController-iPad.xib Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,718 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="7.10">
+ <data>
+ <int key="IBDocument.SystemTarget">800</int>
+ <string key="IBDocument.SystemVersion">10C540</string>
+ <string key="IBDocument.InterfaceBuilderVersion">762</string>
+ <string key="IBDocument.AppKitVersion">1038.25</string>
+ <string key="IBDocument.HIToolboxVersion">458.00</string>
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string key="NS.object.0">87</string>
+ </object>
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <integer value="1"/>
+ </object>
+ <object class="NSArray" key="IBDocument.PluginDependencies">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ </object>
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys" id="0">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBProxyObject" id="372490531">
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ </object>
+ <object class="IBProxyObject" id="975951072">
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ </object>
+ <object class="IBUIView" id="191373211">
+ <reference key="NSNextResponder"/>
+ <int key="NSvFlags">292</int>
+ <object class="NSMutableArray" key="NSSubviews">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBUIButton" id="584263820">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{0, 675}, {39, 53}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <object class="NSFont" key="IBUIFont" id="969592940">
+ <string key="NSName">Helvetica-Bold</string>
+ <double key="NSSize">15</double>
+ <int key="NSfFlags">16</int>
+ </object>
+ <object class="NSColor" key="IBUIHighlightedTitleColor" id="708011311">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MQA</bytes>
+ </object>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <object class="NSColor" key="IBUINormalTitleShadowColor" id="280149554">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MC41AA</bytes>
+ </object>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">arrowLeft.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="123494776">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{90, 675}, {39, 54}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">1</int>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">arrowRight.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="590902961">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{964, 690}, {64, 48}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">6</int>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <object class="NSCustomResource" key="IBUINormalImage" id="639745463">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">joyPush.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="132251648">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{919, 665}, {64, 50}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">5</int>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <reference key="IBUINormalImage" ref="639745463"/>
+ </object>
+ <object class="IBUIButton" id="752933969">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{908, 723}, {61, 45}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">4</int>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <reference key="IBUINormalImage" ref="639745463"/>
+ </object>
+ <object class="IBUIButton" id="261686746">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{37, 638}, {53, 39}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">2</int>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">arrowUp.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="81315603">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{37, 729}, {53, 39}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">3</int>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">arrowDown.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="873773099">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{956, -5}, {72, 64}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">menuCorner.png</string>
+ </object>
+ </object>
+ </object>
+ <string key="NSFrameSize">{1024, 768}</string>
+ <reference key="NSSuperview"/>
+ <object class="NSColor" key="IBUIBackgroundColor">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MSAwAA</bytes>
+ </object>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
+ <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
+ <int key="interfaceOrientation">3</int>
+ </object>
+ <string key="targetRuntimeIdentifier">IBIPadFramework</string>
+ </object>
+ </object>
+ <object class="IBObjectContainer" key="IBDocument.Objects">
+ <object class="NSMutableArray" key="connectionRecords">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchOutletConnection" key="connection">
+ <string key="label">view</string>
+ <reference key="source" ref="372490531"/>
+ <reference key="destination" ref="191373211"/>
+ </object>
+ <int key="connectionID">3</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="584263820"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">8</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="584263820"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">9</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="584263820"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">10</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="584263820"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">11</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="123494776"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">13</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="123494776"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">14</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="123494776"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">15</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="123494776"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">16</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="261686746"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">18</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="261686746"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">19</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="261686746"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">20</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="261686746"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">21</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="81315603"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">23</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="81315603"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">24</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="81315603"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">25</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="81315603"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">26</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="590902961"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">44</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="590902961"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">45</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="590902961"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">46</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="590902961"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">47</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="752933969"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">49</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="752933969"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">50</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="752933969"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">51</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="752933969"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">52</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="132251648"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">54</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="132251648"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">55</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="132251648"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">56</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="132251648"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">57</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">showPopover</string>
+ <reference key="source" ref="873773099"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">59</int>
+ </object>
+ </object>
+ <object class="IBMutableOrderedSet" key="objectRecords">
+ <object class="NSArray" key="orderedObjects">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBObjectRecord">
+ <int key="objectID">0</int>
+ <reference key="object" ref="0"/>
+ <reference key="children" ref="1000"/>
+ <nil key="parent"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">1</int>
+ <reference key="object" ref="191373211"/>
+ <object class="NSMutableArray" key="children">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="584263820"/>
+ <reference ref="123494776"/>
+ <reference ref="261686746"/>
+ <reference ref="81315603"/>
+ <reference ref="873773099"/>
+ <reference ref="590902961"/>
+ <reference ref="132251648"/>
+ <reference ref="752933969"/>
+ </object>
+ <reference key="parent" ref="0"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">-1</int>
+ <reference key="object" ref="372490531"/>
+ <reference key="parent" ref="0"/>
+ <string key="objectName">File's Owner</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">-2</int>
+ <reference key="object" ref="975951072"/>
+ <reference key="parent" ref="0"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">4</int>
+ <reference key="object" ref="584263820"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">left</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">12</int>
+ <reference key="object" ref="123494776"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">right</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">17</int>
+ <reference key="object" ref="261686746"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">up</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">22</int>
+ <reference key="object" ref="81315603"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">down</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">43</int>
+ <reference key="object" ref="590902961"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">push2</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">48</int>
+ <reference key="object" ref="752933969"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">push1</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">53</int>
+ <reference key="object" ref="132251648"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">push3</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">58</int>
+ <reference key="object" ref="873773099"/>
+ <reference key="parent" ref="191373211"/>
+ </object>
+ </object>
+ </object>
+ <object class="NSMutableDictionary" key="flattenedProperties">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>-1.CustomClassName</string>
+ <string>-2.CustomClassName</string>
+ <string>1.IBEditorWindowLastContentRect</string>
+ <string>1.IBPluginDependency</string>
+ <string>12.IBPluginDependency</string>
+ <string>17.IBPluginDependency</string>
+ <string>22.IBPluginDependency</string>
+ <string>4.IBPluginDependency</string>
+ <string>43.IBPluginDependency</string>
+ <string>48.IBPluginDependency</string>
+ <string>53.IBPluginDependency</string>
+ <string>58.IBPluginDependency</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>OverlayViewController</string>
+ <string>UIResponder</string>
+ <string>{{0, 273}, {1024, 768}}</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ </object>
+ </object>
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference key="dict.sortedKeys" ref="0"/>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <nil key="activeLocalization"/>
+ <object class="NSMutableDictionary" key="localizations">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference key="dict.sortedKeys" ref="0"/>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <nil key="sourceID"/>
+ <int key="maxID">59</int>
+ </object>
+ <object class="IBClassDescriber" key="IBDocument.Classes">
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBPartialClassDescription">
+ <string key="className">OverlayViewController</string>
+ <string key="superclassName">UIViewController</string>
+ <object class="NSMutableDictionary" key="actions">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>buttonPressed:</string>
+ <string>buttonReleased:</string>
+ <string>showPopover</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>id</string>
+ <string>id</string>
+ <string>id</string>
+ </object>
+ </object>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBProjectSource</string>
+ <string key="minorKey">../../cocoaTouch/iPad/OverlayViewController.h</string>
+ </object>
+ </object>
+ </object>
+ </object>
+ <int key="IBDocument.localizationMode">0</int>
+ <string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
+ <integer value="800" key="NS.object.0"/>
+ </object>
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
+ <integer value="3100" key="NS.object.0"/>
+ </object>
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
+ <string key="IBDocument.LastKnownRelativeProjectPath">../../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
+ <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>arrowDown.png</string>
+ <string>arrowLeft.png</string>
+ <string>arrowRight.png</string>
+ <string>arrowUp.png</string>
+ <string>joyPush.png</string>
+ <string>menuCorner.png</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>{64, 64}</string>
+ <string>{64, 64}</string>
+ <string>{64, 64}</string>
+ <string>{64, 64}</string>
+ <string>{64, 64}</string>
+ <string>{64, 64}</string>
+ </object>
+ </object>
+ <string key="IBCocoaTouchPluginVersion">87</string>
+ </data>
+</archive>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/cocoaTouch/xib/OverlayViewController-iPhone.xib Sun Apr 04 19:51:53 2010 +0000
@@ -0,0 +1,699 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
+ <data>
+ <int key="IBDocument.SystemTarget">768</int>
+ <string key="IBDocument.SystemVersion">10C540</string>
+ <string key="IBDocument.InterfaceBuilderVersion">762</string>
+ <string key="IBDocument.AppKitVersion">1038.25</string>
+ <string key="IBDocument.HIToolboxVersion">458.00</string>
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string key="NS.object.0">87</string>
+ </object>
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <integer value="1"/>
+ </object>
+ <object class="NSArray" key="IBDocument.PluginDependencies">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ </object>
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys" id="0">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBProxyObject" id="372490531">
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ </object>
+ <object class="IBProxyObject" id="975951072">
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ </object>
+ <object class="IBUIView" id="191373211">
+ <reference key="NSNextResponder"/>
+ <int key="NSvFlags">292</int>
+ <object class="NSMutableArray" key="NSSubviews">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBUIButton" id="584263820">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{0, 237}, {39, 53}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <object class="NSFont" key="IBUIFont" id="969592940">
+ <string key="NSName">Helvetica-Bold</string>
+ <double key="NSSize">15</double>
+ <int key="NSfFlags">16</int>
+ </object>
+ <object class="NSColor" key="IBUIHighlightedTitleColor" id="708011311">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MQA</bytes>
+ </object>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <object class="NSColor" key="IBUINormalTitleShadowColor" id="280149554">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MC41AA</bytes>
+ </object>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">arrowLeft.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="123494776">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{75, 237}, {39, 54}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">1</int>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">arrowRight.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="590902961">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{416, 233}, {64, 64}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">6</int>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <object class="NSCustomResource" key="IBUINormalImage" id="639745463">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">joyPush.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="132251648">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{368, 213}, {64, 64}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">5</int>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <reference key="IBUINormalImage" ref="639745463"/>
+ </object>
+ <object class="IBUIButton" id="752933969">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{344, 262}, {64, 64}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">4</int>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <reference key="IBUINormalImage" ref="639745463"/>
+ </object>
+ <object class="IBUIButton" id="261686746">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{29, 207}, {53, 39}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">2</int>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">arrowUp.png</string>
+ </object>
+ </object>
+ <object class="IBUIButton" id="81315603">
+ <reference key="NSNextResponder" ref="191373211"/>
+ <int key="NSvFlags">292</int>
+ <string key="NSFrame">{{29, 281}, {53, 39}}</string>
+ <reference key="NSSuperview" ref="191373211"/>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
+ <int key="IBUITag">3</int>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <int key="IBUIContentHorizontalAlignment">0</int>
+ <int key="IBUIContentVerticalAlignment">0</int>
+ <reference key="IBUIFont" ref="969592940"/>
+ <reference key="IBUIHighlightedTitleColor" ref="708011311"/>
+ <object class="NSColor" key="IBUINormalTitleColor">
+ <int key="NSColorSpace">1</int>
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
+ </object>
+ <reference key="IBUINormalTitleShadowColor" ref="280149554"/>
+ <object class="NSCustomResource" key="IBUINormalImage">
+ <string key="NSClassName">NSImage</string>
+ <string key="NSResourceName">arrowDown.png</string>
+ </object>
+ </object>
+ </object>
+ <string key="NSFrameSize">{480, 320}</string>
+ <reference key="NSSuperview"/>
+ <object class="NSColor" key="IBUIBackgroundColor">
+ <int key="NSColorSpace">3</int>
+ <bytes key="NSWhite">MSAwAA</bytes>
+ </object>
+ <bool key="IBUIOpaque">NO</bool>
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
+ <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
+ <int key="interfaceOrientation">3</int>
+ </object>
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ </object>
+ </object>
+ <object class="IBObjectContainer" key="IBDocument.Objects">
+ <object class="NSMutableArray" key="connectionRecords">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchOutletConnection" key="connection">
+ <string key="label">view</string>
+ <reference key="source" ref="372490531"/>
+ <reference key="destination" ref="191373211"/>
+ </object>
+ <int key="connectionID">3</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="584263820"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">8</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="584263820"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">9</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="584263820"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">10</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="584263820"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">11</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="123494776"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">13</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="123494776"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">14</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="123494776"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">15</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="123494776"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">16</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="261686746"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">18</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="261686746"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">19</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="261686746"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">20</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="261686746"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">21</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="81315603"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">23</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="81315603"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">24</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="81315603"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">25</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="81315603"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">26</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="590902961"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">44</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="590902961"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">45</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="590902961"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">46</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="590902961"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">47</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="752933969"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">49</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="752933969"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">50</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="752933969"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">51</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="752933969"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">52</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="132251648"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">9</int>
+ </object>
+ <int key="connectionID">54</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="132251648"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">7</int>
+ </object>
+ <int key="connectionID">55</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonPressed:</string>
+ <reference key="source" ref="132251648"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">1</int>
+ </object>
+ <int key="connectionID">56</int>
+ </object>
+ <object class="IBConnectionRecord">
+ <object class="IBCocoaTouchEventConnection" key="connection">
+ <string key="label">buttonReleased:</string>
+ <reference key="source" ref="132251648"/>
+ <reference key="destination" ref="372490531"/>
+ <int key="IBEventType">8</int>
+ </object>
+ <int key="connectionID">57</int>
+ </object>
+ </object>
+ <object class="IBMutableOrderedSet" key="objectRecords">
+ <object class="NSArray" key="orderedObjects">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBObjectRecord">
+ <int key="objectID">0</int>
+ <reference key="object" ref="0"/>
+ <reference key="children" ref="1000"/>
+ <nil key="parent"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">1</int>
+ <reference key="object" ref="191373211"/>
+ <object class="NSMutableArray" key="children">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference ref="584263820"/>
+ <reference ref="123494776"/>
+ <reference ref="261686746"/>
+ <reference ref="81315603"/>
+ <reference ref="590902961"/>
+ <reference ref="132251648"/>
+ <reference ref="752933969"/>
+ </object>
+ <reference key="parent" ref="0"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">-1</int>
+ <reference key="object" ref="372490531"/>
+ <reference key="parent" ref="0"/>
+ <string key="objectName">File's Owner</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">-2</int>
+ <reference key="object" ref="975951072"/>
+ <reference key="parent" ref="0"/>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">4</int>
+ <reference key="object" ref="584263820"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">left</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">12</int>
+ <reference key="object" ref="123494776"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">right</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">17</int>
+ <reference key="object" ref="261686746"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">up</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">22</int>
+ <reference key="object" ref="81315603"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">down</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">43</int>
+ <reference key="object" ref="590902961"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">push2</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">48</int>
+ <reference key="object" ref="752933969"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">push1</string>
+ </object>
+ <object class="IBObjectRecord">
+ <int key="objectID">53</int>
+ <reference key="object" ref="132251648"/>
+ <reference key="parent" ref="191373211"/>
+ <string key="objectName">push3</string>
+ </object>
+ </object>
+ </object>
+ <object class="NSMutableDictionary" key="flattenedProperties">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>-1.CustomClassName</string>
+ <string>-2.CustomClassName</string>
+ <string>1.IBEditorWindowLastContentRect</string>
+ <string>1.IBPluginDependency</string>
+ <string>12.IBPluginDependency</string>
+ <string>17.IBPluginDependency</string>
+ <string>22.IBPluginDependency</string>
+ <string>4.IBPluginDependency</string>
+ <string>43.IBPluginDependency</string>
+ <string>48.IBPluginDependency</string>
+ <string>53.IBPluginDependency</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>OverlayViewController</string>
+ <string>UIResponder</string>
+ <string>{{222, 776}, {480, 320}}</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
+ </object>
+ </object>
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference key="dict.sortedKeys" ref="0"/>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <nil key="activeLocalization"/>
+ <object class="NSMutableDictionary" key="localizations">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <reference key="dict.sortedKeys" ref="0"/>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ </object>
+ </object>
+ <nil key="sourceID"/>
+ <int key="maxID">57</int>
+ </object>
+ <object class="IBClassDescriber" key="IBDocument.Classes">
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="IBPartialClassDescription">
+ <string key="className">OverlayViewController</string>
+ <string key="superclassName">UIViewController</string>
+ <object class="NSMutableDictionary" key="actions">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>buttonPressed:</string>
+ <string>buttonReleased:</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>id</string>
+ <string>id</string>
+ </object>
+ </object>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBProjectSource</string>
+ <string key="minorKey">../../cocoaTouch/OverlayViewController.h</string>
+ </object>
+ </object>
+ <object class="IBPartialClassDescription">
+ <string key="className">OverlayViewController</string>
+ <string key="superclassName">UIViewController</string>
+ <object class="NSMutableDictionary" key="actions">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>buttonPressed:</string>
+ <string>buttonReleased:</string>
+ <string>showPopover</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>id</string>
+ <string>id</string>
+ <string>id</string>
+ </object>
+ </object>
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
+ <string key="majorKey">IBProjectSource</string>
+ <string key="minorKey">../../cocoaTouch/iPad/OverlayViewController.h</string>
+ </object>
+ </object>
+ </object>
+ </object>
+ <int key="IBDocument.localizationMode">0</int>
+ <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
+ <integer value="768" key="NS.object.0"/>
+ </object>
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
+ <integer value="3100" key="NS.object.0"/>
+ </object>
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
+ <string key="IBDocument.LastKnownRelativeProjectPath">../project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
+ <object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <object class="NSArray" key="dict.sortedKeys">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>arrowDown.png</string>
+ <string>arrowLeft.png</string>
+ <string>arrowRight.png</string>
+ <string>arrowUp.png</string>
+ <string>joyPush.png</string>
+ </object>
+ <object class="NSMutableArray" key="dict.values">
+ <bool key="EncodedWithXMLCoder">YES</bool>
+ <string>{64, 64}</string>
+ <string>{64, 64}</string>
+ <string>{64, 64}</string>
+ <string>{64, 64}</string>
+ <string>{64, 64}</string>
+ </object>
+ </object>
+ <string key="IBCocoaTouchPluginVersion">87</string>
+ </data>
+</archive>
--- a/hedgewars/uMisc.pas Sun Apr 04 16:38:00 2010 +0000
+++ b/hedgewars/uMisc.pas Sun Apr 04 19:51:53 2010 +0000
@@ -651,7 +651,7 @@
procedure initModule;
-{$IFDEF DEBUGFILE}var i: LongInt;{$ENDIF}
+{$IFDEF DEBUGFILE}{$IFNDEF IPHONEOS}var i: LongInt;{$ENDIF}{$ENDIF}
begin
cDrownSpeed.QWordValue := 257698038; // 0.06
cMaxWindSpeed.QWordValue:= 2147484; // 0.0005
--- a/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/project.pbxproj Sun Apr 04 16:38:00 2010 +0000
+++ b/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/project.pbxproj Sun Apr 04 19:51:53 2010 +0000
@@ -25,96 +25,6 @@
1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
28FD15000DC6FC520079059D /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28FD14FF0DC6FC520079059D /* OpenGLES.framework */; };
28FD15080DC6FC5B0079059D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28FD15070DC6FC5B0079059D /* QuartzCore.framework */; };
- 6100DA77115446B000F455E0 /* backgroundBottom.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A1E114ADD2600BA94A9 /* backgroundBottom.png */; };
- 6100DA78115446B000F455E0 /* backgroundCenter.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A1F114ADD2600BA94A9 /* backgroundCenter.png */; };
- 6100DA79115446B000F455E0 /* backgroundLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A20114ADD2600BA94A9 /* backgroundLeft.png */; };
- 6100DA7A115446B000F455E0 /* backgroundRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A21114ADD2600BA94A9 /* backgroundRight.png */; };
- 6100DA7B115446B000F455E0 /* backgroundTop.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A22114ADD2600BA94A9 /* backgroundTop.png */; };
- 6100DA7C115446B000F455E0 /* borderBottom.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A23114ADD2600BA94A9 /* borderBottom.png */; };
- 6100DA7D115446B000F455E0 /* borderTop.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A24114ADD2600BA94A9 /* borderTop.png */; };
- 6100DA7F115446B000F455E0 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A26114ADD2600BA94A9 /* Icon.png */; };
- 6100DA80115446B000F455E0 /* networkButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A27114ADD2600BA94A9 /* networkButton.png */; };
- 6100DA81115446B000F455E0 /* playButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A28114ADD2600BA94A9 /* playButton.png */; };
- 6100DA82115446B000F455E0 /* settingsButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A29114ADD2600BA94A9 /* settingsButton.png */; };
- 6100DA83115446B000F455E0 /* storeButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A2A114ADD2600BA94A9 /* storeButton.png */; };
- 6100DA84115446B000F455E0 /* title.png in Resources */ = {isa = PBXBuildFile; fileRef = 61798A2B114ADD2600BA94A9 /* title.png */; };
- 6100DA85115446B000F455E0 /* Data in Resources */ = {isa = PBXBuildFile; fileRef = 61798A5E114AE08600BA94A9 /* Data */; };
- 6100DA86115446B000F455E0 /* menuCorner.png in Resources */ = {isa = PBXBuildFile; fileRef = 6179934E114BD5AB00BA94A9 /* menuCorner.png */; };
- 6100DA87115446B000F455E0 /* arrowDown.png in Resources */ = {isa = PBXBuildFile; fileRef = 6179936711501D3D00BA94A9 /* arrowDown.png */; };
- 6100DA88115446B000F455E0 /* arrowLeft.png in Resources */ = {isa = PBXBuildFile; fileRef = 6179936811501D3D00BA94A9 /* arrowLeft.png */; };
- 6100DA89115446B000F455E0 /* arrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 6179936911501D3D00BA94A9 /* arrowRight.png */; };
- 6100DA8A115446B000F455E0 /* arrowUp.png in Resources */ = {isa = PBXBuildFile; fileRef = 6179936A11501D3D00BA94A9 /* arrowUp.png */; };
- 6100DA8C115446B000F455E0 /* joyPush.png in Resources */ = {isa = PBXBuildFile; fileRef = 617995311150403800BA94A9 /* joyPush.png */; };
- 6100DA8E115446B000F455E0 /* hwengine.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987E7114AA34C00BA94A9 /* hwengine.pas */; };
- 6100DA8F115446B000F455E0 /* hwLibrary.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987E9114AA34C00BA94A9 /* hwLibrary.pas */; };
- 6100DA90115446B000F455E0 /* PascalExports.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987EC114AA34C00BA94A9 /* PascalExports.pas */; };
- 6100DA91115446B000F455E0 /* SDLh.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987ED114AA34C00BA94A9 /* SDLh.pas */; };
- 6100DA92115446B000F455E0 /* uAI.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987F1114AA34C00BA94A9 /* uAI.pas */; };
- 6100DA93115446B000F455E0 /* uAIActions.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987F2114AA34C00BA94A9 /* uAIActions.pas */; };
- 6100DA94115446B000F455E0 /* uAIAmmoTests.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987F3114AA34C00BA94A9 /* uAIAmmoTests.pas */; };
- 6100DA95115446B000F455E0 /* uAIMisc.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987F4114AA34C00BA94A9 /* uAIMisc.pas */; };
- 6100DA96115446B000F455E0 /* uAmmos.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987F5114AA34C00BA94A9 /* uAmmos.pas */; };
- 6100DA97115446B000F455E0 /* uChat.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987F6114AA34C00BA94A9 /* uChat.pas */; };
- 6100DA98115446B000F455E0 /* uCollisions.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987F7114AA34C00BA94A9 /* uCollisions.pas */; };
- 6100DA99115446B000F455E0 /* uConsole.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987F8114AA34C00BA94A9 /* uConsole.pas */; };
- 6100DA9A115446B000F455E0 /* uConsts.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987F9114AA34C00BA94A9 /* uConsts.pas */; };
- 6100DA9B115446B000F455E0 /* uFloat.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987FA114AA34C00BA94A9 /* uFloat.pas */; };
- 6100DA9C115446B000F455E0 /* uGame.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987FB114AA34C00BA94A9 /* uGame.pas */; };
- 6100DA9D115446B000F455E0 /* uGears.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987FC114AA34C00BA94A9 /* uGears.pas */; };
- 6100DA9E115446B000F455E0 /* uIO.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987FD114AA34C00BA94A9 /* uIO.pas */; };
- 6100DA9F115446B000F455E0 /* uKeys.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987FE114AA34C00BA94A9 /* uKeys.pas */; };
- 6100DAA0115446B000F455E0 /* uLand.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987FF114AA34C00BA94A9 /* uLand.pas */; };
- 6100DAA1115446B000F455E0 /* uLandGraphics.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798800114AA34C00BA94A9 /* uLandGraphics.pas */; };
- 6100DAA2115446B000F455E0 /* uLandObjects.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798801114AA34C00BA94A9 /* uLandObjects.pas */; };
- 6100DAA3115446B000F455E0 /* uLandTemplates.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798802114AA34C00BA94A9 /* uLandTemplates.pas */; };
- 6100DAA4115446B000F455E0 /* uLandTexture.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798803114AA34C00BA94A9 /* uLandTexture.pas */; };
- 6100DAA5115446B000F455E0 /* uLocale.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798804114AA34C00BA94A9 /* uLocale.pas */; };
- 6100DAA6115446B000F455E0 /* uMisc.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798805114AA34C00BA94A9 /* uMisc.pas */; };
- 6100DAA7115446B000F455E0 /* uRandom.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798806114AA34C00BA94A9 /* uRandom.pas */; };
- 6100DAA8115446B000F455E0 /* uScript.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798807114AA34C00BA94A9 /* uScript.pas */; };
- 6100DAA9115446B000F455E0 /* uSHA.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798808114AA34C00BA94A9 /* uSHA.pas */; };
- 6100DAAA115446B000F455E0 /* uSound.pas in Sources */ = {isa = PBXBuildFile; fileRef = 61798809114AA34C00BA94A9 /* uSound.pas */; };
- 6100DAAB115446B000F455E0 /* uStats.pas in Sources */ = {isa = PBXBuildFile; fileRef = 6179880A114AA34C00BA94A9 /* uStats.pas */; };
- 6100DAAC115446B000F455E0 /* uStore.pas in Sources */ = {isa = PBXBuildFile; fileRef = 6179880B114AA34C00BA94A9 /* uStore.pas */; };
- 6100DAAD115446B000F455E0 /* uTeams.pas in Sources */ = {isa = PBXBuildFile; fileRef = 6179880C114AA34C00BA94A9 /* uTeams.pas */; };
- 6100DAAE115446B000F455E0 /* uVisualGears.pas in Sources */ = {isa = PBXBuildFile; fileRef = 6179880E114AA34C00BA94A9 /* uVisualGears.pas */; };
- 6100DAAF115446B000F455E0 /* uWorld.pas in Sources */ = {isa = PBXBuildFile; fileRef = 6179880F114AA34C00BA94A9 /* uWorld.pas */; };
- 6100DAB0115446B000F455E0 /* CGPointUtils.c in Sources */ = {isa = PBXBuildFile; fileRef = 61798856114AA48A00BA94A9 /* CGPointUtils.c */; };
- 6100DAB1115446B000F455E0 /* IMG_png.c in Sources */ = {isa = PBXBuildFile; fileRef = 61798858114AA48A00BA94A9 /* IMG_png.c */; };
- 6100DAB2115446B000F455E0 /* IMG.c in Sources */ = {isa = PBXBuildFile; fileRef = 61798859114AA48A00BA94A9 /* IMG.c */; };
- 6100DAB3115446B000F455E0 /* SDL_uikitappdelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */; };
- 6100DAB5115446B000F455E0 /* SDL_uikitwindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798868114AA4AA00BA94A9 /* SDL_uikitwindow.m */; };
- 6100DAB7115446B000F455E0 /* SchemeEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798872114AA4D000BA94A9 /* SchemeEditViewController.m */; };
- 6100DAB8115446B000F455E0 /* SettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798875114AA4D000BA94A9 /* SettingsViewController.m */; };
- 6100DAB9115446B000F455E0 /* TeamEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798878114AA4D000BA94A9 /* TeamEditViewController.m */; };
- 6100DABA115446B000F455E0 /* TeamMenuViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6179887B114AA4D000BA94A9 /* TeamMenuViewController.m */; };
- 6100DABB115446B000F455E0 /* GameSetup.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798888114AA4E600BA94A9 /* GameSetup.m */; };
- 6100DABE115446B000F455E0 /* libSDL_ttf.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 61798A13114AB65600BA94A9 /* libSDL_ttf.a */; };
- 6100DABF115446B000F455E0 /* libSDL_net.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 617989BB114AB47500BA94A9 /* libSDL_net.a */; };
- 6100DAC0115446B000F455E0 /* libSDLiPhoneOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 617988DA114AAA3900BA94A9 /* libSDLiPhoneOS.a */; };
- 6100DAC1115446B000F455E0 /* libSDL_mixer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 61798993114AB3FA00BA94A9 /* libSDL_mixer.a */; };
- 6100DAC2115446B000F455E0 /* libfpc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 928301170F10CAFC00CC5A3C /* libfpc.a */; };
- 6100DAC3115446B000F455E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
- 6100DAC4115446B000F455E0 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
- 6100DAC5115446B000F455E0 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28FD14FF0DC6FC520079059D /* OpenGLES.framework */; };
- 6100DAC6115446B000F455E0 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28FD15070DC6FC5B0079059D /* QuartzCore.framework */; };
- 6100DAC7115446B000F455E0 /* libfreetype_arm.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 61798916114AAF2100BA94A9 /* libfreetype_arm.a */; };
- 6100DAC8115446B000F455E0 /* libfreetype_x86.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 61798917114AAF2100BA94A9 /* libfreetype_x86.a */; };
- 6100DAC9115446B000F455E0 /* libpng_arm.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 61798918114AAF2100BA94A9 /* libpng_arm.a */; };
- 6100DACA115446B000F455E0 /* libpng_x86.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 61798919114AAF2100BA94A9 /* libpng_x86.a */; };
- 6100DACB115446B000F455E0 /* libvorbis_arm.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6179891A114AAF2100BA94A9 /* libvorbis_arm.a */; };
- 6100DACC115446B000F455E0 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61798934114AB25F00BA94A9 /* AudioToolbox.framework */; };
- 611FD993115590E700C2203D /* MainMenuViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 611FD990115590E700C2203D /* MainMenuViewController.xib */; };
- 611FD995115590E700C2203D /* SettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 611FD992115590E700C2203D /* SettingsViewController.xib */; };
- 611FD9C91155A1F200C2203D /* Background.png in Resources */ = {isa = PBXBuildFile; fileRef = 611FD9C81155A1F200C2203D /* Background.png */; };
- 611FD9CC1155A28C00C2203D /* HedgewarsTitle.png in Resources */ = {isa = PBXBuildFile; fileRef = 611FD9CB1155A28C00C2203D /* HedgewarsTitle.png */; };
- 611FD9D01155A40700C2203D /* NetworkPlay.png in Resources */ = {isa = PBXBuildFile; fileRef = 611FD9CF1155A40700C2203D /* NetworkPlay.png */; };
- 611FD9D21155A41000C2203D /* Multiplayer.png in Resources */ = {isa = PBXBuildFile; fileRef = 611FD9D11155A41000C2203D /* Multiplayer.png */; };
- 611FDB641155BFFF00C2203D /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 611FDB631155BFFF00C2203D /* Default.png */; };
- 615F159E1166216A002444F2 /* TeamSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 615F159D1166216A002444F2 /* TeamSettingsViewController.m */; };
- 615F15AE116628CC002444F2 /* SingleTeamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 615F15AD116628CC002444F2 /* SingleTeamViewController.m */; };
- 615F16DC11668358002444F2 /* HogHatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 615F16DB11668358002444F2 /* HogHatViewController.m */; };
- 615F19861166A6AB002444F2 /* untitled.m in Sources */ = {isa = PBXBuildFile; fileRef = 615F19851166A6AB002444F2 /* untitled.m */; };
61798816114AA34C00BA94A9 /* hwengine.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987E7114AA34C00BA94A9 /* hwengine.pas */; };
61798818114AA34C00BA94A9 /* hwLibrary.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987E9114AA34C00BA94A9 /* hwLibrary.pas */; };
6179881B114AA34C00BA94A9 /* PascalExports.pas in Sources */ = {isa = PBXBuildFile; fileRef = 617987EC114AA34C00BA94A9 /* PascalExports.pas */; };
@@ -155,15 +65,6 @@
61798869114AA4AA00BA94A9 /* SDL_uikitappdelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */; };
6179886B114AA4AA00BA94A9 /* SDL_uikitwindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798868114AA4AA00BA94A9 /* SDL_uikitwindow.m */; };
6179887D114AA4D000BA94A9 /* MainMenuViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */; };
- 6179887E114AA4D000BA94A9 /* MainMenuViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61798870114AA4D000BA94A9 /* MainMenuViewController.xib */; };
- 6179887F114AA4D000BA94A9 /* SchemeEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798872114AA4D000BA94A9 /* SchemeEditViewController.m */; };
- 61798880114AA4D000BA94A9 /* SchemeEditViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61798873114AA4D000BA94A9 /* SchemeEditViewController.xib */; };
- 61798881114AA4D000BA94A9 /* SettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798875114AA4D000BA94A9 /* SettingsViewController.m */; };
- 61798882114AA4D000BA94A9 /* SettingsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61798876114AA4D000BA94A9 /* SettingsViewController.xib */; };
- 61798883114AA4D000BA94A9 /* TeamEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798878114AA4D000BA94A9 /* TeamEditViewController.m */; };
- 61798884114AA4D000BA94A9 /* TeamEditViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61798879114AA4D000BA94A9 /* TeamEditViewController.xib */; };
- 61798885114AA4D000BA94A9 /* TeamMenuViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6179887B114AA4D000BA94A9 /* TeamMenuViewController.m */; };
- 61798886114AA4D000BA94A9 /* TeamMenuViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 6179887C114AA4D000BA94A9 /* TeamMenuViewController.xib */; };
61798889114AA4E600BA94A9 /* GameSetup.m in Sources */ = {isa = PBXBuildFile; fileRef = 61798888114AA4E600BA94A9 /* GameSetup.m */; };
617988DB114AAA4200BA94A9 /* libSDLiPhoneOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 617988DA114AAA3900BA94A9 /* libSDLiPhoneOS.a */; };
6179891B114AAF2100BA94A9 /* libfreetype_arm.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 61798916114AAF2100BA94A9 /* libfreetype_arm.a */; };
@@ -196,31 +97,28 @@
6179936D11501D3D00BA94A9 /* arrowRight.png in Resources */ = {isa = PBXBuildFile; fileRef = 6179936911501D3D00BA94A9 /* arrowRight.png */; };
6179936E11501D3D00BA94A9 /* arrowUp.png in Resources */ = {isa = PBXBuildFile; fileRef = 6179936A11501D3D00BA94A9 /* arrowUp.png */; };
617995321150403800BA94A9 /* joyPush.png in Resources */ = {isa = PBXBuildFile; fileRef = 617995311150403800BA94A9 /* joyPush.png */; };
- 61C0838A11567C83005D474F /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61C0838911567C83005D474F /* CoreGraphics.framework */; };
- 61CE24EE115E71C20098C467 /* OverlayViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61CE24EB115E71C20098C467 /* OverlayViewController.m */; };
- 61CE24EF115E71C20098C467 /* PopupMenuViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61CE24ED115E71C20098C467 /* PopupMenuViewController.m */; };
- 61CE2503115E73210098C467 /* OverlayViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61CE2501115E73210098C467 /* OverlayViewController.xib */; };
+ 61A118431168367200359010 /* OverlayViewController-iPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61A118421168367200359010 /* OverlayViewController-iPhone.xib */; };
+ 61A1188511683A8C00359010 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61A117FE1168322700359010 /* CoreGraphics.framework */; };
+ 61A118CA11683C7600359010 /* MainMenuViewController-iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61A118C911683C7600359010 /* MainMenuViewController-iPad.xib */; };
+ 61A118CC11683C7A00359010 /* MainMenuViewController-iPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61A118CB11683C7A00359010 /* MainMenuViewController-iPhone.xib */; };
+ 61A118D211683CD100359010 /* Background.png in Resources */ = {isa = PBXBuildFile; fileRef = 611FD9C81155A1F200C2203D /* Background.png */; };
+ 61A118D311683CD100359010 /* HedgewarsTitle.png in Resources */ = {isa = PBXBuildFile; fileRef = 611FD9CB1155A28C00C2203D /* HedgewarsTitle.png */; };
+ 61A118D411683CD100359010 /* Multiplayer.png in Resources */ = {isa = PBXBuildFile; fileRef = 611FD9D11155A41000C2203D /* Multiplayer.png */; };
+ 61A118D511683CD100359010 /* NetworkPlay.png in Resources */ = {isa = PBXBuildFile; fileRef = 611FD9CF1155A40700C2203D /* NetworkPlay.png */; };
+ 61A118DF11683D1F00359010 /* OverlayViewController-iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61A118401168366200359010 /* OverlayViewController-iPad.xib */; };
+ 61A11A4E1168D13600359010 /* PopoverMenuViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A11A4D1168D13600359010 /* PopoverMenuViewController.m */; };
+ 61A11AC11168D8B600359010 /* SplitViewRootController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A11AC01168D8B600359010 /* SplitViewRootController.m */; };
+ 61A11AC91168DA9400359010 /* MasterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A11AC81168DA9400359010 /* MasterViewController.m */; };
+ 61A11ACF1168DB1B00359010 /* TeamSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A11ACE1168DB1B00359010 /* TeamSettingsViewController.m */; };
+ 61A11AD61168DB3700359010 /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A11AD51168DB3700359010 /* DetailViewController.m */; };
+ 61A11AE11168DC6E00359010 /* SingleTeamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */; };
+ 61A11AE41168DC9400359010 /* HogHatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61A11AE31168DC9400359010 /* HogHatViewController.m */; };
+ 61A11B591169234900359010 /* Default-iPad.png in Resources */ = {isa = PBXBuildFile; fileRef = 61A11B581169234900359010 /* Default-iPad.png */; };
61CE250D115E749A0098C467 /* OverlayViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */; };
- 61CE2511115E74C90098C467 /* OverlayViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 61CE2510115E74C90098C467 /* OverlayViewController.xib */; };
- 61CE25C3115E7D1D0098C467 /* DetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */; };
- 61E2F06911567CC7002D33C1 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61E2F06811567CC7002D33C1 /* CoreGraphics.framework */; };
- 61FA761F115DA0DB00DA6ED0 /* MainMenuViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61FA761E115DA0DB00DA6ED0 /* MainMenuViewController.m */; };
- 61FA7647115DA6A300DA6ED0 /* SplitViewRootController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */; };
- 61FA765D115DAACC00DA6ED0 /* MasterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 61FA765B115DAACC00DA6ED0 /* MasterViewController.m */; };
922F64900F10F53100DC6EC0 /* libfpc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 928301170F10CAFC00CC5A3C /* libfpc.a */; };
/* End PBXBuildFile section */
/* Begin PBXBuildRule section */
- 6100DACE115446B000F455E0 /* PBXBuildRule */ = {
- isa = PBXBuildRule;
- compilerSpec = com.apple.compilers.proxy.script;
- fileType = sourcecode.pascal;
- isEditable = 1;
- outputFiles = (
- "$(DERIVED_SOURCES_DIR)-$(CURRENT_VARIANT)/$(CURRENT_ARCH)/$(INPUT_FILE_BASE).s",
- );
- script = "#!/bin/bash\n\n# Xcode's up-to-date checks are overzealous for us: a different SDK does not necessarily\n# mean we recompile all sources, because we do not have different units for different SDK\n# versions yet (and even if we did, not necessarily all files would be recompiled)...\n\ndestdir=\"${DERIVED_SOURCES_DIR}-${CURRENT_VARIANT}/${CURRENT_ARCH}\"\nif [ ! -f \"$destdir/compilefailed\" ]; then\n # check whether the assembler code is newer than the source code\n if [ \"$destdir/${INPUT_FILE_BASE}.s\" -nt \"$INPUT_FILE_PATH\" ]; then\n # in this case we're ok, just touch the assembler file to avoid us getting here again next time\n echo Updating assembler time stamp of \"$destdir/${INPUT_FILE_BASE}.s\"\n touch \"$destdir/${INPUT_FILE_BASE}.s\"\n exit 0\n fi\n\n echo File not found or not up-to-date: $destdir/${INPUT_FILE_BASE}.s\n echo \"$INPUT_FILE_PATH:1: error: 1: \\\"$INPUT_FILE_PATH\\\" was not (re)compiled. If it is no longer used, please remove it from the \\\"Compile Sources\\\" phase of the \\\"$TARGETNAME\\\" target.\"\n exit 1\nfi";
- };
9283015B0F10E46D00CC5A3C /* PBXBuildRule */ = {
isa = PBXBuildRule;
compilerSpec = com.apple.compilers.proxy.script;
@@ -234,13 +132,6 @@
/* End PBXBuildRule section */
/* Begin PBXContainerItemProxy section */
- 6100DA70115446B000F455E0 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 29B97313FDCFA39411CA2CEA /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 928301160F10CAFC00CC5A3C;
- remoteInfo = fpc;
- };
617988D9114AAA3900BA94A9 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 617988D3114AAA3900BA94A9 /* SDLiPhoneOS.xcodeproj */;
@@ -285,22 +176,10 @@
28FD14FF0DC6FC520079059D /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
28FD15070DC6FC5B0079059D /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
32CA4F630368D1EE00C91783 /* HedgewarsMobile_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HedgewarsMobile_Prefix.pch; sourceTree = "<group>"; };
- 6100DAD2115446B000F455E0 /* iHedgewars.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = iHedgewars.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 611FD990115590E700C2203D /* MainMenuViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = MainMenuViewController.xib; path = ../../cocoaTouch/iPad/MainMenuViewController.xib; sourceTree = SOURCE_ROOT; };
- 611FD992115590E700C2203D /* SettingsViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = SettingsViewController.xib; path = ../../cocoaTouch/iPad/SettingsViewController.xib; sourceTree = SOURCE_ROOT; };
611FD9C81155A1F200C2203D /* Background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Background.png; path = ../../QTfrontend/res/Background.png; sourceTree = SOURCE_ROOT; };
611FD9CB1155A28C00C2203D /* HedgewarsTitle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = HedgewarsTitle.png; path = ../../QTfrontend/res/HedgewarsTitle.png; sourceTree = SOURCE_ROOT; };
611FD9CF1155A40700C2203D /* NetworkPlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = NetworkPlay.png; path = ../../QTfrontend/res/NetworkPlay.png; sourceTree = SOURCE_ROOT; };
611FD9D11155A41000C2203D /* Multiplayer.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Multiplayer.png; path = ../../QTfrontend/res/Multiplayer.png; sourceTree = SOURCE_ROOT; };
- 611FDB631155BFFF00C2203D /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Default.png; path = ../../cocoaTouch/iPad/Default.png; sourceTree = SOURCE_ROOT; };
- 615F159C1166216A002444F2 /* TeamSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TeamSettingsViewController.h; path = ../../cocoaTouch/iPad/TeamSettingsViewController.h; sourceTree = SOURCE_ROOT; };
- 615F159D1166216A002444F2 /* TeamSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TeamSettingsViewController.m; path = ../../cocoaTouch/iPad/TeamSettingsViewController.m; sourceTree = SOURCE_ROOT; };
- 615F15AC116628CC002444F2 /* SingleTeamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SingleTeamViewController.h; path = ../../cocoaTouch/iPad/SingleTeamViewController.h; sourceTree = SOURCE_ROOT; };
- 615F15AD116628CC002444F2 /* SingleTeamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SingleTeamViewController.m; path = ../../cocoaTouch/iPad/SingleTeamViewController.m; sourceTree = SOURCE_ROOT; };
- 615F16DA11668358002444F2 /* HogHatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HogHatViewController.h; path = ../../cocoaTouch/iPad/HogHatViewController.h; sourceTree = SOURCE_ROOT; };
- 615F16DB11668358002444F2 /* HogHatViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HogHatViewController.m; path = ../../cocoaTouch/iPad/HogHatViewController.m; sourceTree = SOURCE_ROOT; };
- 615F19841166A6AB002444F2 /* untitled.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = untitled.h; sourceTree = "<group>"; };
- 615F19851166A6AB002444F2 /* untitled.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = untitled.m; sourceTree = "<group>"; };
617987E1114AA34C00BA94A9 /* CCHandlers.inc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.pascal; name = CCHandlers.inc; path = ../../hedgewars/CCHandlers.inc; sourceTree = SOURCE_ROOT; };
617987E4114AA34C00BA94A9 /* GSHandlers.inc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.pascal; name = GSHandlers.inc; path = ../../hedgewars/GSHandlers.inc; sourceTree = SOURCE_ROOT; };
617987E5114AA34C00BA94A9 /* HHHandlers.inc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.pascal; name = HHHandlers.inc; path = ../../hedgewars/HHHandlers.inc; sourceTree = SOURCE_ROOT; };
@@ -353,19 +232,6 @@
61798868114AA4AA00BA94A9 /* SDL_uikitwindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SDL_uikitwindow.m; path = ../../cocoaTouch/SDLOverrides/SDL_uikitwindow.m; sourceTree = SOURCE_ROOT; };
6179886E114AA4D000BA94A9 /* MainMenuViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainMenuViewController.h; path = ../../cocoaTouch/MainMenuViewController.h; sourceTree = SOURCE_ROOT; };
6179886F114AA4D000BA94A9 /* MainMenuViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainMenuViewController.m; path = ../../cocoaTouch/MainMenuViewController.m; sourceTree = SOURCE_ROOT; };
- 61798870114AA4D000BA94A9 /* MainMenuViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = MainMenuViewController.xib; path = ../../cocoaTouch/MainMenuViewController.xib; sourceTree = SOURCE_ROOT; };
- 61798871114AA4D000BA94A9 /* SchemeEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SchemeEditViewController.h; path = ../../cocoaTouch/SchemeEditViewController.h; sourceTree = SOURCE_ROOT; };
- 61798872114AA4D000BA94A9 /* SchemeEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SchemeEditViewController.m; path = ../../cocoaTouch/SchemeEditViewController.m; sourceTree = SOURCE_ROOT; };
- 61798873114AA4D000BA94A9 /* SchemeEditViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = SchemeEditViewController.xib; path = ../../cocoaTouch/SchemeEditViewController.xib; sourceTree = SOURCE_ROOT; };
- 61798874114AA4D000BA94A9 /* SettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingsViewController.h; path = ../../cocoaTouch/SettingsViewController.h; sourceTree = SOURCE_ROOT; };
- 61798875114AA4D000BA94A9 /* SettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingsViewController.m; path = ../../cocoaTouch/SettingsViewController.m; sourceTree = SOURCE_ROOT; };
- 61798876114AA4D000BA94A9 /* SettingsViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = SettingsViewController.xib; path = ../../cocoaTouch/SettingsViewController.xib; sourceTree = SOURCE_ROOT; };
- 61798877114AA4D000BA94A9 /* TeamEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TeamEditViewController.h; path = ../../cocoaTouch/TeamEditViewController.h; sourceTree = SOURCE_ROOT; };
- 61798878114AA4D000BA94A9 /* TeamEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TeamEditViewController.m; path = ../../cocoaTouch/TeamEditViewController.m; sourceTree = SOURCE_ROOT; };
- 61798879114AA4D000BA94A9 /* TeamEditViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = TeamEditViewController.xib; path = ../../cocoaTouch/TeamEditViewController.xib; sourceTree = SOURCE_ROOT; };
- 6179887A114AA4D000BA94A9 /* TeamMenuViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TeamMenuViewController.h; path = ../../cocoaTouch/TeamMenuViewController.h; sourceTree = SOURCE_ROOT; };
- 6179887B114AA4D000BA94A9 /* TeamMenuViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TeamMenuViewController.m; path = ../../cocoaTouch/TeamMenuViewController.m; sourceTree = SOURCE_ROOT; };
- 6179887C114AA4D000BA94A9 /* TeamMenuViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = TeamMenuViewController.xib; path = ../../cocoaTouch/TeamMenuViewController.xib; sourceTree = SOURCE_ROOT; };
61798887114AA4E600BA94A9 /* GameSetup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GameSetup.h; path = ../../cocoaTouch/GameSetup.h; sourceTree = SOURCE_ROOT; };
61798888114AA4E600BA94A9 /* GameSetup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GameSetup.m; path = ../../cocoaTouch/GameSetup.m; sourceTree = SOURCE_ROOT; };
617988D3114AAA3900BA94A9 /* SDLiPhoneOS.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SDLiPhoneOS.xcodeproj; path = "../../../Library/SDL-1.3/SDL/Xcode-iPhoneOS/SDL/SDLiPhoneOS.xcodeproj"; sourceTree = SOURCE_ROOT; };
@@ -399,24 +265,28 @@
6179936911501D3D00BA94A9 /* arrowRight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = arrowRight.png; path = ../../cocoaTouch/resources/arrowRight.png; sourceTree = SOURCE_ROOT; };
6179936A11501D3D00BA94A9 /* arrowUp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = arrowUp.png; path = ../../cocoaTouch/resources/arrowUp.png; sourceTree = SOURCE_ROOT; };
617995311150403800BA94A9 /* joyPush.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = joyPush.png; path = ../../cocoaTouch/resources/joyPush.png; sourceTree = SOURCE_ROOT; };
- 61C0838911567C83005D474F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 61CE24EA115E71C20098C467 /* OverlayViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OverlayViewController.h; path = ../../cocoaTouch/iPad/OverlayViewController.h; sourceTree = SOURCE_ROOT; };
- 61CE24EB115E71C20098C467 /* OverlayViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OverlayViewController.m; path = ../../cocoaTouch/iPad/OverlayViewController.m; sourceTree = SOURCE_ROOT; };
- 61CE24EC115E71C20098C467 /* PopupMenuViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PopupMenuViewController.h; path = ../../cocoaTouch/iPad/PopupMenuViewController.h; sourceTree = SOURCE_ROOT; };
- 61CE24ED115E71C20098C467 /* PopupMenuViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PopupMenuViewController.m; path = ../../cocoaTouch/iPad/PopupMenuViewController.m; sourceTree = SOURCE_ROOT; };
- 61CE2501115E73210098C467 /* OverlayViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = OverlayViewController.xib; path = ../../cocoaTouch/iPad/OverlayViewController.xib; sourceTree = SOURCE_ROOT; };
+ 61A117FE1168322700359010 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
+ 61A118401168366200359010 /* OverlayViewController-iPad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "OverlayViewController-iPad.xib"; path = "../../cocoaTouch/xib/OverlayViewController-iPad.xib"; sourceTree = SOURCE_ROOT; };
+ 61A118421168367200359010 /* OverlayViewController-iPhone.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "OverlayViewController-iPhone.xib"; path = "../../cocoaTouch/xib/OverlayViewController-iPhone.xib"; sourceTree = SOURCE_ROOT; };
+ 61A118C911683C7600359010 /* MainMenuViewController-iPad.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "MainMenuViewController-iPad.xib"; path = "../../cocoaTouch/xib/MainMenuViewController-iPad.xib"; sourceTree = SOURCE_ROOT; };
+ 61A118CB11683C7A00359010 /* MainMenuViewController-iPhone.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = "MainMenuViewController-iPhone.xib"; path = "../../cocoaTouch/xib/MainMenuViewController-iPhone.xib"; sourceTree = SOURCE_ROOT; };
+ 61A11A4C1168D13600359010 /* PopoverMenuViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PopoverMenuViewController.h; path = ../../cocoaTouch/PopoverMenuViewController.h; sourceTree = SOURCE_ROOT; };
+ 61A11A4D1168D13600359010 /* PopoverMenuViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PopoverMenuViewController.m; path = ../../cocoaTouch/PopoverMenuViewController.m; sourceTree = SOURCE_ROOT; };
+ 61A11ABF1168D8B600359010 /* SplitViewRootController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SplitViewRootController.h; path = ../../cocoaTouch/SplitViewRootController.h; sourceTree = SOURCE_ROOT; };
+ 61A11AC01168D8B600359010 /* SplitViewRootController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SplitViewRootController.m; path = ../../cocoaTouch/SplitViewRootController.m; sourceTree = SOURCE_ROOT; };
+ 61A11AC71168DA9400359010 /* MasterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MasterViewController.h; path = ../../cocoaTouch/MasterViewController.h; sourceTree = SOURCE_ROOT; };
+ 61A11AC81168DA9400359010 /* MasterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MasterViewController.m; path = ../../cocoaTouch/MasterViewController.m; sourceTree = SOURCE_ROOT; };
+ 61A11ACD1168DB1B00359010 /* TeamSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = TeamSettingsViewController.h; path = ../../cocoaTouch/TeamSettingsViewController.h; sourceTree = SOURCE_ROOT; };
+ 61A11ACE1168DB1B00359010 /* TeamSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = TeamSettingsViewController.m; path = ../../cocoaTouch/TeamSettingsViewController.m; sourceTree = SOURCE_ROOT; };
+ 61A11AD41168DB3700359010 /* DetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailViewController.h; path = ../../cocoaTouch/DetailViewController.h; sourceTree = SOURCE_ROOT; };
+ 61A11AD51168DB3700359010 /* DetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailViewController.m; path = ../../cocoaTouch/DetailViewController.m; sourceTree = SOURCE_ROOT; };
+ 61A11ADF1168DC6E00359010 /* SingleTeamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SingleTeamViewController.h; path = ../../cocoaTouch/SingleTeamViewController.h; sourceTree = SOURCE_ROOT; };
+ 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SingleTeamViewController.m; path = ../../cocoaTouch/SingleTeamViewController.m; sourceTree = SOURCE_ROOT; };
+ 61A11AE21168DC9400359010 /* HogHatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HogHatViewController.h; path = ../../cocoaTouch/HogHatViewController.h; sourceTree = SOURCE_ROOT; };
+ 61A11AE31168DC9400359010 /* HogHatViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HogHatViewController.m; path = ../../cocoaTouch/HogHatViewController.m; sourceTree = SOURCE_ROOT; };
+ 61A11B581169234900359010 /* Default-iPad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Default-iPad.png"; path = "../../cocoaTouch/resources/Default-iPad.png"; sourceTree = SOURCE_ROOT; };
61CE250B115E749A0098C467 /* OverlayViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OverlayViewController.h; path = ../../cocoaTouch/OverlayViewController.h; sourceTree = SOURCE_ROOT; };
61CE250C115E749A0098C467 /* OverlayViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OverlayViewController.m; path = ../../cocoaTouch/OverlayViewController.m; sourceTree = SOURCE_ROOT; };
- 61CE2510115E74C90098C467 /* OverlayViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = OverlayViewController.xib; path = ../../cocoaTouch/OverlayViewController.xib; sourceTree = SOURCE_ROOT; };
- 61E2F06811567CC7002D33C1 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 61FA761D115DA0DB00DA6ED0 /* MainMenuViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MainMenuViewController.h; path = ../../cocoaTouch/iPad/MainMenuViewController.h; sourceTree = SOURCE_ROOT; };
- 61FA761E115DA0DB00DA6ED0 /* MainMenuViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MainMenuViewController.m; path = ../../cocoaTouch/iPad/MainMenuViewController.m; sourceTree = SOURCE_ROOT; };
- 61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SplitViewRootController.h; path = ../../cocoaTouch/iPad/SplitViewRootController.h; sourceTree = SOURCE_ROOT; };
- 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SplitViewRootController.m; path = ../../cocoaTouch/iPad/SplitViewRootController.m; sourceTree = SOURCE_ROOT; };
- 61FA765A115DAACC00DA6ED0 /* MasterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MasterViewController.h; path = ../../cocoaTouch/iPad/MasterViewController.h; sourceTree = SOURCE_ROOT; };
- 61FA765B115DAACC00DA6ED0 /* MasterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = MasterViewController.m; path = ../../cocoaTouch/iPad/MasterViewController.m; sourceTree = SOURCE_ROOT; };
- 61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DetailViewController.h; path = ../../cocoaTouch/iPad/DetailViewController.h; sourceTree = SOURCE_ROOT; };
- 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DetailViewController.m; path = ../../cocoaTouch/iPad/DetailViewController.m; sourceTree = SOURCE_ROOT; };
8D1107310486CEB800E47090 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
928301170F10CAFC00CC5A3C /* libfpc.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libfpc.a; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
@@ -426,6 +296,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
+ 61A1188511683A8C00359010 /* CoreGraphics.framework in Frameworks */,
61798A14114AB65C00BA94A9 /* libSDL_ttf.a in Frameworks */,
617989BE114AB47A00BA94A9 /* libSDL_net.a in Frameworks */,
617988DB114AAA4200BA94A9 /* libSDLiPhoneOS.a in Frameworks */,
@@ -441,30 +312,6 @@
6179891E114AAF2100BA94A9 /* libpng_x86.a in Frameworks */,
6179891F114AAF2100BA94A9 /* libvorbis_arm.a in Frameworks */,
61798935114AB25F00BA94A9 /* AudioToolbox.framework in Frameworks */,
- 61C0838A11567C83005D474F /* CoreGraphics.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 6100DABD115446B000F455E0 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 6100DABE115446B000F455E0 /* libSDL_ttf.a in Frameworks */,
- 6100DABF115446B000F455E0 /* libSDL_net.a in Frameworks */,
- 6100DAC0115446B000F455E0 /* libSDLiPhoneOS.a in Frameworks */,
- 6100DAC1115446B000F455E0 /* libSDL_mixer.a in Frameworks */,
- 6100DAC2115446B000F455E0 /* libfpc.a in Frameworks */,
- 6100DAC3115446B000F455E0 /* Foundation.framework in Frameworks */,
- 6100DAC4115446B000F455E0 /* UIKit.framework in Frameworks */,
- 6100DAC5115446B000F455E0 /* OpenGLES.framework in Frameworks */,
- 6100DAC6115446B000F455E0 /* QuartzCore.framework in Frameworks */,
- 6100DAC7115446B000F455E0 /* libfreetype_arm.a in Frameworks */,
- 6100DAC8115446B000F455E0 /* libfreetype_x86.a in Frameworks */,
- 6100DAC9115446B000F455E0 /* libpng_arm.a in Frameworks */,
- 6100DACA115446B000F455E0 /* libpng_x86.a in Frameworks */,
- 6100DACB115446B000F455E0 /* libvorbis_arm.a in Frameworks */,
- 6100DACC115446B000F455E0 /* AudioToolbox.framework in Frameworks */,
- 61E2F06911567CC7002D33C1 /* CoreGraphics.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
@@ -474,11 +321,10 @@
080E96DDFE201D6D7F000001 /* Classes */ = {
isa = PBXGroup;
children = (
+ 61798860114AA49D00BA94A9 /* SDLOverrides */,
+ 61A118481168371400359010 /* Frontend */,
61798887114AA4E600BA94A9 /* GameSetup.h */,
61798888114AA4E600BA94A9 /* GameSetup.m */,
- 61FA7620115DA0EA00DA6ED0 /* iPad Frontend */,
- 6179886C114AA4B900BA94A9 /* iPhone Frontend */,
- 61798860114AA49D00BA94A9 /* SDLOverrides */,
);
path = Classes;
sourceTree = "<group>";
@@ -488,7 +334,6 @@
children = (
1D6058910D05DD3D006BFB54 /* HedgewarsMobile.app */,
928301170F10CAFC00CC5A3C /* libfpc.a */,
- 6100DAD2115446B000F455E0 /* iHedgewars.app */,
);
name = Products;
sourceTree = "<group>";
@@ -503,8 +348,6 @@
29B97317FDCFA39411CA2CEA /* Resources */,
6100DAD4115446B000F455E0 /* Resources-iPad */,
19C28FACFE9D520D11CA2CBB /* Products */,
- 615F19841166A6AB002444F2 /* untitled.h */,
- 615F19851166A6AB002444F2 /* untitled.m */,
);
name = CustomTemplate;
sourceTree = "<group>";
@@ -543,22 +386,21 @@
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
isa = PBXGroup;
children = (
- 61798A0B114AB65600BA94A9 /* SDL_ttf.xcodeproj */,
+ 617988D3114AAA3900BA94A9 /* SDLiPhoneOS.xcodeproj */,
617989B3114AB47500BA94A9 /* SDL_net.xcodeproj */,
6179898B114AB3FA00BA94A9 /* SDL_mixer.xcodeproj */,
- 617988D3114AAA3900BA94A9 /* SDLiPhoneOS.xcodeproj */,
- 28FD15070DC6FC5B0079059D /* QuartzCore.framework */,
+ 61798A0B114AB65600BA94A9 /* SDL_ttf.xcodeproj */,
+ 61798934114AB25F00BA94A9 /* AudioToolbox.framework */,
+ 61A117FE1168322700359010 /* CoreGraphics.framework */,
+ 1D30AB110D05D00D00671497 /* Foundation.framework */,
28FD14FF0DC6FC520079059D /* OpenGLES.framework */,
+ 28FD15070DC6FC5B0079059D /* QuartzCore.framework */,
1DF5F4DF0D08C38300B7A737 /* UIKit.framework */,
- 1D30AB110D05D00D00671497 /* Foundation.framework */,
- 61798934114AB25F00BA94A9 /* AudioToolbox.framework */,
61798916114AAF2100BA94A9 /* libfreetype_arm.a */,
61798917114AAF2100BA94A9 /* libfreetype_x86.a */,
61798918114AAF2100BA94A9 /* libpng_arm.a */,
61798919114AAF2100BA94A9 /* libpng_x86.a */,
6179891A114AAF2100BA94A9 /* libvorbis_arm.a */,
- 61C0838911567C83005D474F /* CoreGraphics.framework */,
- 61E2F06811567CC7002D33C1 /* CoreGraphics.framework */,
);
name = Frameworks;
sourceTree = "<group>";
@@ -567,7 +409,7 @@
isa = PBXGroup;
children = (
61CE2509115E74260098C467 /* XIB */,
- 611FDB631155BFFF00C2203D /* Default.png */,
+ 61A11B581169234900359010 /* Default-iPad.png */,
611FD9C81155A1F200C2203D /* Background.png */,
611FD9CB1155A28C00C2203D /* HedgewarsTitle.png */,
611FD9D11155A41000C2203D /* Multiplayer.png */,
@@ -579,34 +421,13 @@
6100DB1711544E8400F455E0 /* XIB */ = {
isa = PBXGroup;
children = (
- 61CE2510115E74C90098C467 /* OverlayViewController.xib */,
- 61798870114AA4D000BA94A9 /* MainMenuViewController.xib */,
- 61798873114AA4D000BA94A9 /* SchemeEditViewController.xib */,
- 61798876114AA4D000BA94A9 /* SettingsViewController.xib */,
- 61798879114AA4D000BA94A9 /* TeamEditViewController.xib */,
- 6179887C114AA4D000BA94A9 /* TeamMenuViewController.xib */,
+ 61A118CB11683C7A00359010 /* MainMenuViewController-iPhone.xib */,
+ 61A118421168367200359010 /* OverlayViewController-iPhone.xib */,
);
name = XIB;
path = Classes;
sourceTree = "<group>";
};
- 615F159B11662108002444F2 /* Settings */ = {
- isa = PBXGroup;
- children = (
- 61FA765A115DAACC00DA6ED0 /* MasterViewController.h */,
- 61FA765B115DAACC00DA6ED0 /* MasterViewController.m */,
- 61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */,
- 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */,
- 615F15AC116628CC002444F2 /* SingleTeamViewController.h */,
- 615F15AD116628CC002444F2 /* SingleTeamViewController.m */,
- 615F159C1166216A002444F2 /* TeamSettingsViewController.h */,
- 615F159D1166216A002444F2 /* TeamSettingsViewController.m */,
- 615F16DA11668358002444F2 /* HogHatViewController.h */,
- 615F16DB11668358002444F2 /* HogHatViewController.m */,
- );
- name = Settings;
- sourceTree = "<group>";
- };
61798860114AA49D00BA94A9 /* SDLOverrides */ = {
isa = PBXGroup;
children = (
@@ -618,25 +439,6 @@
name = SDLOverrides;
sourceTree = "<group>";
};
- 6179886C114AA4B900BA94A9 /* iPhone Frontend */ = {
- isa = PBXGroup;
- children = (
- 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */,
- 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */,
- 61798871114AA4D000BA94A9 /* SchemeEditViewController.h */,
- 61798872114AA4D000BA94A9 /* SchemeEditViewController.m */,
- 61798874114AA4D000BA94A9 /* SettingsViewController.h */,
- 61798875114AA4D000BA94A9 /* SettingsViewController.m */,
- 61798877114AA4D000BA94A9 /* TeamEditViewController.h */,
- 61798878114AA4D000BA94A9 /* TeamEditViewController.m */,
- 6179887A114AA4D000BA94A9 /* TeamMenuViewController.h */,
- 6179887B114AA4D000BA94A9 /* TeamMenuViewController.m */,
- 61CE250B115E749A0098C467 /* OverlayViewController.h */,
- 61CE250C115E749A0098C467 /* OverlayViewController.m */,
- );
- name = "iPhone Frontend";
- sourceTree = "<group>";
- };
61798892114AA56300BA94A9 /* inc */ = {
isa = PBXGroup;
children = (
@@ -719,40 +521,56 @@
name = buttons;
sourceTree = "<group>";
};
+ 61A118481168371400359010 /* Frontend */ = {
+ isa = PBXGroup;
+ children = (
+ 61A11AC31168DA2B00359010 /* Settings */,
+ 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */,
+ 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */,
+ 61CE250B115E749A0098C467 /* OverlayViewController.h */,
+ 61CE250C115E749A0098C467 /* OverlayViewController.m */,
+ 61A11A4C1168D13600359010 /* PopoverMenuViewController.h */,
+ 61A11A4D1168D13600359010 /* PopoverMenuViewController.m */,
+ );
+ name = Frontend;
+ sourceTree = "<group>";
+ };
+ 61A11AC31168DA2B00359010 /* Settings */ = {
+ isa = PBXGroup;
+ children = (
+ 61A11ABF1168D8B600359010 /* SplitViewRootController.h */,
+ 61A11AC01168D8B600359010 /* SplitViewRootController.m */,
+ 61A11AC71168DA9400359010 /* MasterViewController.h */,
+ 61A11AC81168DA9400359010 /* MasterViewController.m */,
+ 61A11AD41168DB3700359010 /* DetailViewController.h */,
+ 61A11AD51168DB3700359010 /* DetailViewController.m */,
+ 61A11AD01168DB1F00359010 /* Teams */,
+ );
+ name = Settings;
+ sourceTree = "<group>";
+ };
+ 61A11AD01168DB1F00359010 /* Teams */ = {
+ isa = PBXGroup;
+ children = (
+ 61A11ACD1168DB1B00359010 /* TeamSettingsViewController.h */,
+ 61A11ACE1168DB1B00359010 /* TeamSettingsViewController.m */,
+ 61A11ADF1168DC6E00359010 /* SingleTeamViewController.h */,
+ 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */,
+ 61A11AE21168DC9400359010 /* HogHatViewController.h */,
+ 61A11AE31168DC9400359010 /* HogHatViewController.m */,
+ );
+ name = Teams;
+ sourceTree = "<group>";
+ };
61CE2509115E74260098C467 /* XIB */ = {
isa = PBXGroup;
children = (
- 611FD990115590E700C2203D /* MainMenuViewController.xib */,
- 611FD992115590E700C2203D /* SettingsViewController.xib */,
- 61CE2501115E73210098C467 /* OverlayViewController.xib */,
+ 61A118C911683C7600359010 /* MainMenuViewController-iPad.xib */,
+ 61A118401168366200359010 /* OverlayViewController-iPad.xib */,
);
name = XIB;
sourceTree = "<group>";
};
- 61FA7620115DA0EA00DA6ED0 /* iPad Frontend */ = {
- isa = PBXGroup;
- children = (
- 615F159B11662108002444F2 /* Settings */,
- 61FA766A115DAB2A00DA6ED0 /* Overlay */,
- 61FA761D115DA0DB00DA6ED0 /* MainMenuViewController.h */,
- 61FA761E115DA0DB00DA6ED0 /* MainMenuViewController.m */,
- 61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */,
- 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */,
- );
- name = "iPad Frontend";
- sourceTree = "<group>";
- };
- 61FA766A115DAB2A00DA6ED0 /* Overlay */ = {
- isa = PBXGroup;
- children = (
- 61CE24EA115E71C20098C467 /* OverlayViewController.h */,
- 61CE24EB115E71C20098C467 /* OverlayViewController.m */,
- 61CE24EC115E71C20098C467 /* PopupMenuViewController.h */,
- 61CE24ED115E71C20098C467 /* PopupMenuViewController.m */,
- );
- name = Overlay;
- sourceTree = "<group>";
- };
9283015C0F10E48900CC5A3C /* Pascal Sources */ = {
isa = PBXGroup;
children = (
@@ -818,26 +636,6 @@
productReference = 1D6058910D05DD3D006BFB54 /* HedgewarsMobile.app */;
productType = "com.apple.product-type.application";
};
- 6100DA6E115446B000F455E0 /* iHedgewars */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 6100DACF115446B000F455E0 /* Build configuration list for PBXNativeTarget "iHedgewars" */;
- buildPhases = (
- 6100DA71115446B000F455E0 /* Resources */,
- 6100DA8D115446B000F455E0 /* Sources */,
- 6100DABD115446B000F455E0 /* Frameworks */,
- 6100DACD115446B000F455E0 /* ShellScript */,
- );
- buildRules = (
- 6100DACE115446B000F455E0 /* PBXBuildRule */,
- );
- dependencies = (
- 6100DA6F115446B000F455E0 /* PBXTargetDependency */,
- );
- name = iHedgewars;
- productName = HedgewarsMobile;
- productReference = 6100DAD2115446B000F455E0 /* iHedgewars.app */;
- productType = "com.apple.product-type.application";
- };
928301160F10CAFC00CC5A3C /* fpc */ = {
isa = PBXNativeTarget;
buildConfigurationList = 9283011C0F10CB4B00CC5A3C /* Build configuration list for PBXNativeTarget "fpc" */;
@@ -859,6 +657,9 @@
/* Begin PBXProject section */
29B97313FDCFA39411CA2CEA /* Project object */ = {
isa = PBXProject;
+ attributes = {
+ BuildIndependentTargetsInParallel = YES;
+ };
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "HedgewarsMobile" */;
compatibilityVersion = "Xcode 3.1";
hasScannedForEncodings = 1;
@@ -887,7 +688,6 @@
1D6058900D05DD3D006BFB54 /* HedgewarsMobile */,
928301160F10CAFC00CC5A3C /* fpc */,
6179928B114AE0C800BA94A9 /* UpdateDataFolder */,
- 6100DA6E115446B000F455E0 /* iHedgewars */,
);
};
/* End PBXProject section */
@@ -928,11 +728,11 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
- 6179887E114AA4D000BA94A9 /* MainMenuViewController.xib in Resources */,
- 61798880114AA4D000BA94A9 /* SchemeEditViewController.xib in Resources */,
- 61798882114AA4D000BA94A9 /* SettingsViewController.xib in Resources */,
- 61798884114AA4D000BA94A9 /* TeamEditViewController.xib in Resources */,
- 61798886114AA4D000BA94A9 /* TeamMenuViewController.xib in Resources */,
+ 61A118DF11683D1F00359010 /* OverlayViewController-iPad.xib in Resources */,
+ 61A118D211683CD100359010 /* Background.png in Resources */,
+ 61A118D311683CD100359010 /* HedgewarsTitle.png in Resources */,
+ 61A118D411683CD100359010 /* Multiplayer.png in Resources */,
+ 61A118D511683CD100359010 /* NetworkPlay.png in Resources */,
61798A2C114ADD2600BA94A9 /* backgroundBottom.png in Resources */,
61798A2D114ADD2600BA94A9 /* backgroundCenter.png in Resources */,
61798A2E114ADD2600BA94A9 /* backgroundLeft.png in Resources */,
@@ -954,61 +754,16 @@
6179936D11501D3D00BA94A9 /* arrowRight.png in Resources */,
6179936E11501D3D00BA94A9 /* arrowUp.png in Resources */,
617995321150403800BA94A9 /* joyPush.png in Resources */,
- 61CE2511115E74C90098C467 /* OverlayViewController.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 6100DA71115446B000F455E0 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 6100DA77115446B000F455E0 /* backgroundBottom.png in Resources */,
- 6100DA78115446B000F455E0 /* backgroundCenter.png in Resources */,
- 6100DA79115446B000F455E0 /* backgroundLeft.png in Resources */,
- 6100DA7A115446B000F455E0 /* backgroundRight.png in Resources */,
- 6100DA7B115446B000F455E0 /* backgroundTop.png in Resources */,
- 6100DA7C115446B000F455E0 /* borderBottom.png in Resources */,
- 6100DA7D115446B000F455E0 /* borderTop.png in Resources */,
- 6100DA7F115446B000F455E0 /* Icon.png in Resources */,
- 6100DA80115446B000F455E0 /* networkButton.png in Resources */,
- 6100DA81115446B000F455E0 /* playButton.png in Resources */,
- 6100DA82115446B000F455E0 /* settingsButton.png in Resources */,
- 6100DA83115446B000F455E0 /* storeButton.png in Resources */,
- 6100DA84115446B000F455E0 /* title.png in Resources */,
- 6100DA85115446B000F455E0 /* Data in Resources */,
- 6100DA86115446B000F455E0 /* menuCorner.png in Resources */,
- 6100DA87115446B000F455E0 /* arrowDown.png in Resources */,
- 6100DA88115446B000F455E0 /* arrowLeft.png in Resources */,
- 6100DA89115446B000F455E0 /* arrowRight.png in Resources */,
- 6100DA8A115446B000F455E0 /* arrowUp.png in Resources */,
- 6100DA8C115446B000F455E0 /* joyPush.png in Resources */,
- 611FD993115590E700C2203D /* MainMenuViewController.xib in Resources */,
- 611FD995115590E700C2203D /* SettingsViewController.xib in Resources */,
- 611FD9C91155A1F200C2203D /* Background.png in Resources */,
- 611FD9CC1155A28C00C2203D /* HedgewarsTitle.png in Resources */,
- 611FD9D01155A40700C2203D /* NetworkPlay.png in Resources */,
- 611FD9D21155A41000C2203D /* Multiplayer.png in Resources */,
- 611FDB641155BFFF00C2203D /* Default.png in Resources */,
- 61CE2503115E73210098C467 /* OverlayViewController.xib in Resources */,
+ 61A118431168367200359010 /* OverlayViewController-iPhone.xib in Resources */,
+ 61A118CA11683C7600359010 /* MainMenuViewController-iPad.xib in Resources */,
+ 61A118CC11683C7A00359010 /* MainMenuViewController-iPhone.xib in Resources */,
+ 61A11B591169234900359010 /* Default-iPad.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
- 6100DACD115446B000F455E0 /* ShellScript */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export CODESIGN_ALLOCATE=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate\nif [ \"${PLATFORM_NAME}\" == \"iphoneos\" ]; then\n\t${PROJECT_DIR}/gen_entitlements.py \"com.kodahedge.${PRODUCT_NAME:identifier}\" \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/${PROJECT_NAME}.xcent\";\n\tcodesign -f -s \"iPhone developer\" --entitlements \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/${PROJECT_NAME}.xcent\" \"${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/\"\nfi";
- };
61798A54114ADD5E00BA94A9 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
@@ -1033,7 +788,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
- shellScript = "cd ${PROJECT_DIR}/build/HedgewarsMobile.build/Debug-iphonesimulator/iHedgewars.build/DerivedSources-normal/\nrm -fr i386/\nln -sf ../../HedgewarsMobile.build/DerivedSources-normal/i386/ i386\ncd ${PROJECT_DIR}\n\n#copy new stuff over old stuff\nsvn export --force ${PROJECT_DIR}/../../share/hedgewars/Data ${PROJECT_DIR}/Data\n\n#delete all CMakeLists.txt\nfind ${PROJECT_DIR}/Data -name CMakeLists.txt -delete\nfind ${PROJECT_DIR}/Data -name *.svg -delete\nfind ${PROJECT_DIR}/Data -name *.sifz -delete\n\n#delete desktop frontend translation\nrm -rf ${PROJECT_DIR}/Data/Locale/hedgewars_*\n\n#the following ones must be removed when their support is implemented\n\n#delete all sound files\nrm -rf ${PROJECT_DIR}/Data/Sounds/\nrm -rf ${PROJECT_DIR}/Data/Music/\n\n#delete all names\nrm -rf ${PROJECT_DIR}/Data/Names/\n\n#delete all missions\nrm -rf ${PROJECT_DIR}/Data/Missions/\n\n#delete all forts\nrm -rf ${PROJECT_DIR}/Data/Forts/\n\n#delete all forts\nrm -rf ${PROJECT_DIR}/Data/Graphics/Hats/Reserved/";
+ shellScript = "#cd ${PROJECT_DIR}/build/HedgewarsMobile.build/Debug-iphonesimulator/iHedgewars.build/DerivedSources-normal/\n#rm -fr i386/\n#ln -sf ../../HedgewarsMobile.build/DerivedSources-normal/i386/ i386\n#cd ${PROJECT_DIR}\n\n#copy new stuff over old stuff\nsvn export --force ${PROJECT_DIR}/../../share/hedgewars/Data ${PROJECT_DIR}/Data\n\n#delete all CMakeLists.txt\nfind ${PROJECT_DIR}/Data -name CMakeLists.txt -delete\nfind ${PROJECT_DIR}/Data -name *.svg -delete\nfind ${PROJECT_DIR}/Data -name *.sifz -delete\n\n#delete desktop frontend translation\nrm -rf ${PROJECT_DIR}/Data/Locale/hedgewars_*\n\n#the following ones must be removed when their support is implemented\n\n#delete all sound files\nrm -rf ${PROJECT_DIR}/Data/Sounds/\nrm -rf ${PROJECT_DIR}/Data/Music/\n\n#delete all names\nrm -rf ${PROJECT_DIR}/Data/Names/\n\n#delete all missions\nrm -rf ${PROJECT_DIR}/Data/Missions/\n\n#delete all forts\nrm -rf ${PROJECT_DIR}/Data/Forts/\n\n#delete all forts\nrm -rf ${PROJECT_DIR}/Data/Graphics/Hats/Reserved/";
showEnvVarsInLog = 0;
};
9283011B0F10CB2D00CC5A3C /* Build libfpc.a */ = {
@@ -1114,84 +869,21 @@
61798869114AA4AA00BA94A9 /* SDL_uikitappdelegate.m in Sources */,
6179886B114AA4AA00BA94A9 /* SDL_uikitwindow.m in Sources */,
6179887D114AA4D000BA94A9 /* MainMenuViewController.m in Sources */,
- 6179887F114AA4D000BA94A9 /* SchemeEditViewController.m in Sources */,
- 61798881114AA4D000BA94A9 /* SettingsViewController.m in Sources */,
- 61798883114AA4D000BA94A9 /* TeamEditViewController.m in Sources */,
- 61798885114AA4D000BA94A9 /* TeamMenuViewController.m in Sources */,
61798889114AA4E600BA94A9 /* GameSetup.m in Sources */,
61CE250D115E749A0098C467 /* OverlayViewController.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 6100DA8D115446B000F455E0 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 6100DA8E115446B000F455E0 /* hwengine.pas in Sources */,
- 6100DA8F115446B000F455E0 /* hwLibrary.pas in Sources */,
- 6100DA90115446B000F455E0 /* PascalExports.pas in Sources */,
- 6100DA91115446B000F455E0 /* SDLh.pas in Sources */,
- 6100DA92115446B000F455E0 /* uAI.pas in Sources */,
- 6100DA93115446B000F455E0 /* uAIActions.pas in Sources */,
- 6100DA94115446B000F455E0 /* uAIAmmoTests.pas in Sources */,
- 6100DA95115446B000F455E0 /* uAIMisc.pas in Sources */,
- 6100DA96115446B000F455E0 /* uAmmos.pas in Sources */,
- 6100DA97115446B000F455E0 /* uChat.pas in Sources */,
- 6100DA98115446B000F455E0 /* uCollisions.pas in Sources */,
- 6100DA99115446B000F455E0 /* uConsole.pas in Sources */,
- 6100DA9A115446B000F455E0 /* uConsts.pas in Sources */,
- 6100DA9B115446B000F455E0 /* uFloat.pas in Sources */,
- 6100DA9C115446B000F455E0 /* uGame.pas in Sources */,
- 6100DA9D115446B000F455E0 /* uGears.pas in Sources */,
- 6100DA9E115446B000F455E0 /* uIO.pas in Sources */,
- 6100DA9F115446B000F455E0 /* uKeys.pas in Sources */,
- 6100DAA0115446B000F455E0 /* uLand.pas in Sources */,
- 6100DAA1115446B000F455E0 /* uLandGraphics.pas in Sources */,
- 6100DAA2115446B000F455E0 /* uLandObjects.pas in Sources */,
- 6100DAA3115446B000F455E0 /* uLandTemplates.pas in Sources */,
- 6100DAA4115446B000F455E0 /* uLandTexture.pas in Sources */,
- 6100DAA5115446B000F455E0 /* uLocale.pas in Sources */,
- 6100DAA6115446B000F455E0 /* uMisc.pas in Sources */,
- 6100DAA7115446B000F455E0 /* uRandom.pas in Sources */,
- 6100DAA8115446B000F455E0 /* uScript.pas in Sources */,
- 6100DAA9115446B000F455E0 /* uSHA.pas in Sources */,
- 6100DAAA115446B000F455E0 /* uSound.pas in Sources */,
- 6100DAAB115446B000F455E0 /* uStats.pas in Sources */,
- 6100DAAC115446B000F455E0 /* uStore.pas in Sources */,
- 6100DAAD115446B000F455E0 /* uTeams.pas in Sources */,
- 6100DAAE115446B000F455E0 /* uVisualGears.pas in Sources */,
- 6100DAAF115446B000F455E0 /* uWorld.pas in Sources */,
- 6100DAB0115446B000F455E0 /* CGPointUtils.c in Sources */,
- 6100DAB1115446B000F455E0 /* IMG_png.c in Sources */,
- 6100DAB2115446B000F455E0 /* IMG.c in Sources */,
- 6100DAB3115446B000F455E0 /* SDL_uikitappdelegate.m in Sources */,
- 6100DAB5115446B000F455E0 /* SDL_uikitwindow.m in Sources */,
- 6100DAB7115446B000F455E0 /* SchemeEditViewController.m in Sources */,
- 6100DAB8115446B000F455E0 /* SettingsViewController.m in Sources */,
- 6100DAB9115446B000F455E0 /* TeamEditViewController.m in Sources */,
- 6100DABA115446B000F455E0 /* TeamMenuViewController.m in Sources */,
- 6100DABB115446B000F455E0 /* GameSetup.m in Sources */,
- 61FA761F115DA0DB00DA6ED0 /* MainMenuViewController.m in Sources */,
- 61FA7647115DA6A300DA6ED0 /* SplitViewRootController.m in Sources */,
- 61FA765D115DAACC00DA6ED0 /* MasterViewController.m in Sources */,
- 61CE24EE115E71C20098C467 /* OverlayViewController.m in Sources */,
- 61CE24EF115E71C20098C467 /* PopupMenuViewController.m in Sources */,
- 61CE25C3115E7D1D0098C467 /* DetailViewController.m in Sources */,
- 615F159E1166216A002444F2 /* TeamSettingsViewController.m in Sources */,
- 615F15AE116628CC002444F2 /* SingleTeamViewController.m in Sources */,
- 615F16DC11668358002444F2 /* HogHatViewController.m in Sources */,
- 615F19861166A6AB002444F2 /* untitled.m in Sources */,
+ 61A11A4E1168D13600359010 /* PopoverMenuViewController.m in Sources */,
+ 61A11AC11168D8B600359010 /* SplitViewRootController.m in Sources */,
+ 61A11AC91168DA9400359010 /* MasterViewController.m in Sources */,
+ 61A11ACF1168DB1B00359010 /* TeamSettingsViewController.m in Sources */,
+ 61A11AD61168DB3700359010 /* DetailViewController.m in Sources */,
+ 61A11AE11168DC6E00359010 /* SingleTeamViewController.m in Sources */,
+ 61A11AE41168DC9400359010 /* HogHatViewController.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
- 6100DA6F115446B000F455E0 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 928301160F10CAFC00CC5A3C /* fpc */;
- targetProxy = 6100DA70115446B000F455E0 /* PBXContainerItemProxy */;
- };
9283015A0F10E41300CC5A3C /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = 928301160F10CAFC00CC5A3C /* fpc */;
@@ -1215,7 +907,7 @@
"\"$(SRCROOT)\"",
);
PRODUCT_NAME = HedgewarsMobile;
- TARGETED_DEVICE_FAMILY = 1;
+ TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
@@ -1236,38 +928,6 @@
};
name = Release;
};
- 6100DAD0115446B000F455E0 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- COPY_PHASE_STRIP = NO;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = HedgewarsMobile_Prefix.pch;
- INFOPLIST_FILE = Info.plist;
- LIBRARY_SEARCH_PATHS = "\"$(SRCROOT)\"";
- PRODUCT_NAME = iHedgewars;
- SDKROOT = iphoneos3.2;
- TARGETED_DEVICE_FAMILY = 2;
- };
- name = Debug;
- };
- 6100DAD1115446B000F455E0 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- COPY_PHASE_STRIP = YES;
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = HedgewarsMobile_Prefix.pch;
- INFOPLIST_FILE = Info.plist;
- LIBRARY_SEARCH_PATHS = "\"$(SRCROOT)\"";
- PRODUCT_NAME = iHedgewars;
- SDKROOT = iphonesimulator3.2;
- TARGETED_DEVICE_FAMILY = 2;
- };
- name = Release;
- };
6179928C114AE0C800BA94A9 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
@@ -1317,7 +977,7 @@
C01FCF4F08A954540054247B /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_32_BIT)";
+ ARCHS = "$(ARCHS_UNIVERSAL_IPHONE_OS)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
FPC_COMMON_OPTIONS = "-dIPHONEOS -Cs2000000 -vwi -B -Sgix";
@@ -1345,7 +1005,8 @@
"-Wl,-no_order_inits",
);
PREBINDING = NO;
- SDKROOT = iphonesimulator3.0;
+ SDKROOT = iphonesimulator3.2;
+ TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
@@ -1382,6 +1043,7 @@
PROVISIONING_PROFILE = "";
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
SDKROOT = iphoneos3.0;
+ TARGETED_DEVICE_FAMILY = "1,2";
};
name = Release;
};
@@ -1397,15 +1059,6 @@
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
- 6100DACF115446B000F455E0 /* Build configuration list for PBXNativeTarget "iHedgewars" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 6100DAD0115446B000F455E0 /* Debug */,
- 6100DAD1115446B000F455E0 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
61799290114AE0CD00BA94A9 /* Build configuration list for PBXAggregateTarget "UpdateDataFolder" */ = {
isa = XCConfigurationList;
buildConfigurations = (
--- a/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/vittorio.mode1v3 Sun Apr 04 16:38:00 2010 +0000
+++ b/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/vittorio.mode1v3 Sun Apr 04 19:51:53 2010 +0000
@@ -202,25 +202,25 @@
<key>Content</key>
<dict>
<key>PBXProjectModuleGUID</key>
- <string>615F167111664BE1002444F2</string>
+ <string>61A11B0C11691E2400359010</string>
<key>PBXProjectModuleLabel</key>
- <string>SingleTeamViewController.m</string>
+ <string>MainMenuViewController.m</string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
<dict>
<key>PBXProjectModuleGUID</key>
- <string>615F167211664BE1002444F2</string>
+ <string>61A11B0D11691E2400359010</string>
<key>PBXProjectModuleLabel</key>
- <string>SingleTeamViewController.m</string>
+ <string>MainMenuViewController.m</string>
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
- <string>612FA5281166ECE4001625AE</string>
+ <string>61A11B5E1169240500359010</string>
<key>history</key>
<array>
- <string>615F17D511668C5A002444F2</string>
- <string>615F21921166B73B002444F2</string>
+ <string>61A11B0E11691E2400359010</string>
+ <string>61A11B2611691EF100359010</string>
</array>
</dict>
<key>SplitCount</key>
@@ -232,11 +232,51 @@
<key>Geometry</key>
<dict>
<key>Frame</key>
- <string>{{0, 20}, {895, 596}}</string>
+ <string>{{0, 20}, {1058, 695}}</string>
<key>PBXModuleWindowStatusBarHidden2</key>
<false/>
<key>RubberWindowFrame</key>
- <string>129 335 895 637 0 0 1920 1178 </string>
+ <string>260 192 1058 736 0 0 1920 1178 </string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Content</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>61A11B1211691E2400359010</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>SingleTeamViewController.m</string>
+ <key>PBXSplitModuleInNavigatorKey</key>
+ <dict>
+ <key>Split0</key>
+ <dict>
+ <key>PBXProjectModuleGUID</key>
+ <string>61A11B1311691E2400359010</string>
+ <key>PBXProjectModuleLabel</key>
+ <string>SingleTeamViewController.m</string>
+ <key>_historyCapacity</key>
+ <integer>0</integer>
+ <key>bookmark</key>
+ <string>61A11B5F1169240500359010</string>
+ <key>history</key>
+ <array>
+ <string>61A11AEE1169069300359010</string>
+ </array>
+ </dict>
+ <key>SplitCount</key>
+ <string>1</string>
+ </dict>
+ <key>StatusBarVisibility</key>
+ <true/>
+ </dict>
+ <key>Geometry</key>
+ <dict>
+ <key>Frame</key>
+ <string>{{0, 20}, {1058, 695}}</string>
+ <key>PBXModuleWindowStatusBarHidden2</key>
+ <false/>
+ <key>RubberWindowFrame</key>
+ <string>222 248 1058 736 0 0 1920 1178 </string>
</dict>
</dict>
</array>
@@ -296,7 +336,7 @@
<dict>
<key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
<array>
- <real>186</real>
+ <real>235</real>
</array>
<key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
<array>
@@ -309,25 +349,25 @@
<array>
<string>29B97314FDCFA39411CA2CEA</string>
<string>080E96DDFE201D6D7F000001</string>
- <string>61FA7620115DA0EA00DA6ED0</string>
- <string>615F159B11662108002444F2</string>
- <string>29B97317FDCFA39411CA2CEA</string>
+ <string>61A118481168371400359010</string>
<string>6100DAD4115446B000F455E0</string>
+ <string>61CE2509115E74260098C467</string>
+ <string>19C28FACFE9D520D11CA2CBB</string>
<string>1C37FBAC04509CD000000102</string>
+ <string>61A118691168391A00359010</string>
+ <string>61A118BA11683B4100359010</string>
<string>1C37FABC05509CD000000102</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
<array>
<array>
- <integer>14</integer>
- <integer>6</integer>
- <integer>5</integer>
+ <integer>3</integer>
<integer>2</integer>
<integer>0</integer>
</array>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {186, 558}}</string>
+ <string>{{0, 0}, {235, 558}}</string>
</dict>
<key>PBXTopSmartGroupGIDs</key>
<array/>
@@ -339,19 +379,19 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 0}, {203, 576}}</string>
+ <string>{{0, 0}, {252, 576}}</string>
<key>GroupTreeTableConfiguration</key>
<array>
<string>MainColumn</string>
- <real>186</real>
+ <real>235</real>
</array>
<key>RubberWindowFrame</key>
- <string>242 382 801 617 0 0 1920 1178 </string>
+ <string>162 341 801 617 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXSmartGroupTreeModule</string>
<key>Proportion</key>
- <string>203pt</string>
+ <string>252pt</string>
</dict>
<dict>
<key>Dock</key>
@@ -362,7 +402,7 @@
<key>PBXProjectModuleGUID</key>
<string>1CE0B20306471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
- <string>HogHatViewController.m</string>
+ <string>amGirder.png</string>
<key>PBXSplitModuleInNavigatorKey</key>
<dict>
<key>Split0</key>
@@ -370,11 +410,11 @@
<key>PBXProjectModuleGUID</key>
<string>1CE0B20406471E060097A5F4</string>
<key>PBXProjectModuleLabel</key>
- <string>HogHatViewController.m</string>
+ <string>amGirder.png</string>
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
- <string>612FA5271166ECE4001625AE</string>
+ <string>61A11B5D1169240500359010</string>
<key>history</key>
<array>
<string>6179889D114AA5BD00BA94A9</string>
@@ -414,7 +454,6 @@
<string>61CE2577115E78900098C467</string>
<string>61CE2578115E78900098C467</string>
<string>61CE25B4115E7C940098C467</string>
- <string>615E2397115F023B00B0ACA1</string>
<string>61CCBE60116135FF00833FE8</string>
<string>61CCBF1E116162CA00833FE8</string>
<string>61CCBF451161637F00833FE8</string>
@@ -448,28 +487,17 @@
<string>615F1316116561BE002444F2</string>
<string>615F134D11656569002444F2</string>
<string>615F147F11659AC5002444F2</string>
- <string>615F148B11659BC2002444F2</string>
- <string>615F14AA11659E9A002444F2</string>
- <string>615F154E1165A976002444F2</string>
- <string>615F157111661DA5002444F2</string>
- <string>615F15B6116629A0002444F2</string>
<string>615F15B7116629A0002444F2</string>
- <string>615F15B8116629A0002444F2</string>
<string>615F15B9116629A0002444F2</string>
<string>615F15BB116629A0002444F2</string>
<string>615F15DC11662BE8002444F2</string>
- <string>615F162511663A99002444F2</string>
- <string>615F165211663FA7002444F2</string>
- <string>615F166F11664BE1002444F2</string>
<string>615F174311668823002444F2</string>
<string>615F180A11668DA5002444F2</string>
<string>615F198C1166A71E002444F2</string>
- <string>615F198D1166A71E002444F2</string>
<string>615F198E1166A71E002444F2</string>
<string>615F198F1166A71E002444F2</string>
<string>615F19911166A71E002444F2</string>
<string>615F19AA1166A803002444F2</string>
- <string>615F1BB81166B565002444F2</string>
<string>615F1E0B1166B68C002444F2</string>
<string>615F1E0D1166B68C002444F2</string>
<string>615F1E0F1166B68C002444F2</string>
@@ -503,7 +531,6 @@
<string>615F1E471166B68C002444F2</string>
<string>615F1E491166B68C002444F2</string>
<string>612FA4551166B907001625AE</string>
- <string>615F19331166A409002444F2</string>
</array>
</dict>
<key>SplitCount</key>
@@ -515,14 +542,14 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 0}, {593, 296}}</string>
+ <string>{{0, 0}, {544, 72}}</string>
<key>RubberWindowFrame</key>
- <string>242 382 801 617 0 0 1920 1178 </string>
+ <string>162 341 801 617 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
- <string>296pt</string>
+ <string>72pt</string>
</dict>
<dict>
<key>ContentConfiguration</key>
@@ -535,18 +562,18 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 301}, {593, 275}}</string>
+ <string>{{0, 77}, {544, 499}}</string>
<key>RubberWindowFrame</key>
- <string>242 382 801 617 0 0 1920 1178 </string>
+ <string>162 341 801 617 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>XCDetailModule</string>
<key>Proportion</key>
- <string>275pt</string>
+ <string>499pt</string>
</dict>
</array>
<key>Proportion</key>
- <string>593pt</string>
+ <string>544pt</string>
</dict>
</array>
<key>Name</key>
@@ -561,9 +588,9 @@
</array>
<key>TableOfContents</key>
<array>
- <string>612FA4181166B757001625AE</string>
+ <string>61A117441168280200359010</string>
<string>1CE0B1FE06471DED0097A5F4</string>
- <string>612FA4191166B757001625AE</string>
+ <string>61A117451168280200359010</string>
<string>1CE0B20306471E060097A5F4</string>
<string>1CE0B20506471E060097A5F4</string>
</array>
@@ -701,17 +728,20 @@
<integer>5</integer>
<key>WindowOrderList</key>
<array>
- <string>612FA4571166B907001625AE</string>
- <string>612FA4491166B7D9001625AE</string>
- <string>612FA43E1166B787001625AE</string>
+ <string>1C0AD2AF069F1E9B00FABCE6</string>
+ <string>61A118FE11683FAD00359010</string>
+ <string>61A118D911683CD700359010</string>
+ <string>61A1182D1168323000359010</string>
+ <string>61A117501168280200359010</string>
<string>1CD10A99069EF8BA00B06720</string>
<string>61798848114AA42600BA94A9</string>
+ <string>61A11B1211691E2400359010</string>
+ <string>1C78EAAD065D492600B07095</string>
+ <string>61A11B0C11691E2400359010</string>
<string>/Users/vittorio/hedgewars/trunk/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj</string>
- <string>615F167111664BE1002444F2</string>
- <string>1C78EAAD065D492600B07095</string>
</array>
<key>WindowString</key>
- <string>242 382 801 617 0 0 1920 1178 </string>
+ <string>162 341 801 617 0 0 1920 1178 </string>
<key>WindowToolsV3</key>
<array>
<dict>
@@ -739,16 +769,18 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 0}, {1065, 243}}</string>
+ <string>{{0, 0}, {605, 307}}</string>
<key>RubberWindowFrame</key>
- <string>253 402 1065 574 0 0 1920 1178 </string>
+ <string>956 539 605 638 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXNavigatorGroup</string>
<key>Proportion</key>
- <string>243pt</string>
+ <string>307pt</string>
</dict>
<dict>
+ <key>BecomeActive</key>
+ <true/>
<key>ContentConfiguration</key>
<dict>
<key>PBXProjectModuleGUID</key>
@@ -763,9 +795,9 @@
<key>GeometryConfiguration</key>
<dict>
<key>Frame</key>
- <string>{{0, 248}, {1065, 285}}</string>
+ <string>{{0, 312}, {605, 285}}</string>
<key>RubberWindowFrame</key>
- <string>253 402 1065 574 0 0 1920 1178 </string>
+ <string>956 539 605 638 0 0 1920 1178 </string>
</dict>
<key>Module</key>
<string>PBXBuildResultsModule</string>
@@ -774,7 +806,7 @@
</dict>
</array>
<key>Proportion</key>
- <string>533pt</string>
+ <string>597pt</string>
</dict>
</array>
<key>Name</key>
@@ -788,7 +820,7 @@
<key>TableOfContents</key>
<array>
<string>61798848114AA42600BA94A9</string>
- <string>612FA41F1166B757001625AE</string>
+ <string>61A117471168280200359010</string>
<string>1CD0528F0623707200166675</string>
<string>XCMainBuildResultsModuleGUID</string>
</array>
@@ -797,7 +829,7 @@
<key>WindowContentMinSize</key>
<string>486 300</string>
<key>WindowString</key>
- <string>253 402 1065 574 0 0 1920 1178 </string>
+ <string>956 539 605 638 0 0 1920 1178 </string>
<key>WindowToolGUID</key>
<string>61798848114AA42600BA94A9</string>
<key>WindowToolIsVisible</key>
@@ -875,13 +907,11 @@
<key>DebugVariablesTableConfiguration</key>
<array>
<string>Name</string>
- <real>120</real>
+ <real>149</real>
<string>Value</string>
- <real>85</real>
+ <real>114</real>
<string>Summary</string>
- <real>95</real>
- <string>Type</string>
- <real>84</real>
+ <real>124</real>
</array>
<key>Frame</key>
<string>{{0, 239}, {412, 239}}</string>
@@ -912,13 +942,13 @@
<key>TableOfContents</key>
<array>
<string>1CD10A99069EF8BA00B06720</string>
- <string>612FA4201166B757001625AE</string>
+ <string>61A117481168280200359010</string>
<string>1C162984064C10D400B95A72</string>
- <string>612FA4211166B757001625AE</string>
- <string>612FA4221166B757001625AE</string>
- <string>612FA4231166B757001625AE</string>
- <string>612FA4241166B757001625AE</string>
- <string>612FA4251166B757001625AE</string>
+ <string>61A117491168280200359010</string>
+ <string>61A1174A1168280200359010</string>
+ <string>61A1174B1168280200359010</string>
+ <string>61A1174C1168280200359010</string>
+ <string>61A1174D1168280200359010</string>
</array>
<key>ToolbarConfiguration</key>
<string>xcode.toolbar.config.debugV3</string>
@@ -1082,7 +1112,7 @@
<key>TableOfContents</key>
<array>
<string>1C78EAAD065D492600B07095</string>
- <string>612FA4261166B757001625AE</string>
+ <string>61A1174E1168280200359010</string>
<string>1C78EAAC065D492600B07095</string>
</array>
<key>ToolbarConfiguration</key>
@@ -1531,7 +1561,7 @@
<key>TableOfContents</key>
<array>
<string>1C0AD2AF069F1E9B00FABCE6</string>
- <string>619F1DA8115C156500A32B0B</string>
+ <string>61A1195A1168457500359010</string>
<string>1CA6456E063B45B4001379D8</string>
</array>
<key>ToolbarConfiguration</key>
--- a/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/vittorio.pbxuser Sun Apr 04 16:38:00 2010 +0000
+++ b/project_files/HedgewarsMobile/HedgewarsMobile.xcodeproj/vittorio.pbxuser Sun Apr 04 19:51:53 2010 +0000
@@ -8,18 +8,19 @@
};
29B97313FDCFA39411CA2CEA /* Project object */ = {
activeBuildConfigurationName = Debug;
- activeExecutable = 6100DAD3115446B000F455E0 /* iHedgewars */;
+ activeExecutable = 617987D7114AA2CD00BA94A9 /* HedgewarsMobile */;
activeSDKPreference = iphonesimulator3.2;
- activeTarget = 6100DA6E115446B000F455E0 /* iHedgewars */;
+ activeTarget = 1D6058900D05DD3D006BFB54 /* HedgewarsMobile */;
addToTargets = (
- 6100DA6E115446B000F455E0 /* iHedgewars */,
+ 1D6058900D05DD3D006BFB54 /* HedgewarsMobile */,
);
breakpoints = (
+ 61A11A651168D37800359010 /* OverlayViewController.m:144 */,
+ 61A11A671168D37900359010 /* OverlayViewController.m:147 */,
);
codeSenseManager = 617987E0114AA2EB00BA94A9 /* Code sense */;
executables = (
617987D7114AA2CD00BA94A9 /* HedgewarsMobile */,
- 6100DAD3115446B000F455E0 /* iHedgewars */,
);
ignoreBreakpointsInProjectsDict = {
SDL_mixer = Ignored;
@@ -55,7 +56,7 @@
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
PBXFileTableDataSourceColumnWidthsKey = (
20,
- 354,
+ 305,
20,
48,
43,
@@ -77,7 +78,7 @@
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
PBXFileTableDataSourceColumnWidthsKey = (
20,
- 314,
+ 265,
60,
20,
48,
@@ -94,141 +95,399 @@
PBXFileDataSource_Warnings_ColumnID,
);
};
- PBXPerProjectTemplateStateSaveDate = 291944260;
- PBXWorkspaceStateSaveDate = 291944260;
+ PBXPerProjectTemplateStateSaveDate = 292038637;
+ PBXWorkspaceStateSaveDate = 292038637;
};
perUserProjectItems = {
- 611FD81D1155111700C2203D /* PBXTextBookmark */ = 611FD81D1155111700C2203D /* PBXTextBookmark */;
- 611FD81F1155111700C2203D /* PBXTextBookmark */ = 611FD81F1155111700C2203D /* PBXTextBookmark */;
- 611FD8201155111700C2203D /* PBXTextBookmark */ = 611FD8201155111700C2203D /* PBXTextBookmark */;
- 611FD8211155111700C2203D /* PBXTextBookmark */ = 611FD8211155111700C2203D /* PBXTextBookmark */;
- 611FD8281155111700C2203D /* PBXTextBookmark */ = 611FD8281155111700C2203D /* PBXTextBookmark */;
- 611FD8291155111700C2203D /* PBXTextBookmark */ = 611FD8291155111700C2203D /* PBXTextBookmark */;
- 611FD82B1155111700C2203D /* PBXTextBookmark */ = 611FD82B1155111700C2203D /* PBXTextBookmark */;
- 611FD82C1155111700C2203D /* PBXTextBookmark */ = 611FD82C1155111700C2203D /* PBXTextBookmark */;
- 611FD95711551C3700C2203D /* PBXTextBookmark */ = 611FD95711551C3700C2203D /* PBXTextBookmark */;
- 611FD95811551C3700C2203D /* PBXBookmark */ = 611FD95811551C3700C2203D /* PBXBookmark */;
- 611FD95911551C3700C2203D /* PBXBookmark */ = 611FD95911551C3700C2203D /* PBXBookmark */;
- 611FD96611551E8000C2203D /* PBXBookmark */ = 611FD96611551E8000C2203D /* PBXBookmark */;
- 611FDAC41155B77500C2203D /* PBXTextBookmark */ = 611FDAC41155B77500C2203D /* PBXTextBookmark */;
- 611FDB481155BCE500C2203D /* PBXTextBookmark */ = 611FDB481155BCE500C2203D /* PBXTextBookmark */;
- 611FDB6B1155C0B300C2203D /* PBXBookmark */ = 611FDB6B1155C0B300C2203D /* PBXBookmark */;
- 611FDB6C1155C0B300C2203D /* PBXBookmark */ = 611FDB6C1155C0B300C2203D /* PBXBookmark */;
- 611FDB6D1155C0B300C2203D /* PBXBookmark */ = 611FDB6D1155C0B300C2203D /* PBXBookmark */;
- 611FDBF71155D39400C2203D /* PBXTextBookmark */ = 611FDBF71155D39400C2203D /* PBXTextBookmark */;
- 612D5C451165535400C6D842 /* PBXTextBookmark */ = 612D5C451165535400C6D842 /* PBXTextBookmark */;
- 612D616B1165536300C6D842 /* PBXTextBookmark */ = 612D616B1165536300C6D842 /* PBXTextBookmark */;
- 612D618F1165545F00C6D842 /* PBXTextBookmark */ = 612D618F1165545F00C6D842 /* PBXTextBookmark */;
- 612FA4551166B907001625AE /* PBXBookmark */ = 612FA4551166B907001625AE /* PBXBookmark */;
- 612FA5271166ECE4001625AE /* PBXTextBookmark */ = 612FA5271166ECE4001625AE /* PBXTextBookmark */;
- 612FA5281166ECE4001625AE /* PBXTextBookmark */ = 612FA5281166ECE4001625AE /* PBXTextBookmark */;
- 61430D3B1165551600E2C62D /* PBXTextBookmark */ = 61430D3B1165551600E2C62D /* PBXTextBookmark */;
- 61430D3D1165551600E2C62D /* PBXTextBookmark */ = 61430D3D1165551600E2C62D /* PBXTextBookmark */;
- 615E2397115F023B00B0ACA1 /* PBXTextBookmark */ = 615E2397115F023B00B0ACA1 /* PBXTextBookmark */;
- 615F12CE11655B21002444F2 /* PBXTextBookmark */ = 615F12CE11655B21002444F2 /* PBXTextBookmark */;
- 615F12CF11655B21002444F2 /* PBXTextBookmark */ = 615F12CF11655B21002444F2 /* PBXTextBookmark */;
- 615F12FB116560D9002444F2 /* PBXTextBookmark */ = 615F12FB116560D9002444F2 /* PBXTextBookmark */;
- 615F1316116561BE002444F2 /* PBXTextBookmark */ = 615F1316116561BE002444F2 /* PBXTextBookmark */;
- 615F134D11656569002444F2 /* PBXTextBookmark */ = 615F134D11656569002444F2 /* PBXTextBookmark */;
- 615F147F11659AC5002444F2 /* PBXTextBookmark */ = 615F147F11659AC5002444F2 /* PBXTextBookmark */;
- 615F148B11659BC2002444F2 /* PBXTextBookmark */ = 615F148B11659BC2002444F2 /* PBXTextBookmark */;
- 615F14AA11659E9A002444F2 /* PBXTextBookmark */ = 615F14AA11659E9A002444F2 /* PBXTextBookmark */;
- 615F154E1165A976002444F2 /* PBXTextBookmark */ = 615F154E1165A976002444F2 /* PBXTextBookmark */;
- 615F157111661DA5002444F2 /* PBXTextBookmark */ = 615F157111661DA5002444F2 /* PBXTextBookmark */;
- 615F15B6116629A0002444F2 /* PBXTextBookmark */ = 615F15B6116629A0002444F2 /* PBXTextBookmark */;
- 615F15B7116629A0002444F2 /* PBXTextBookmark */ = 615F15B7116629A0002444F2 /* PBXTextBookmark */;
- 615F15B8116629A0002444F2 /* PBXTextBookmark */ = 615F15B8116629A0002444F2 /* PBXTextBookmark */;
- 615F15B9116629A0002444F2 /* PBXTextBookmark */ = 615F15B9116629A0002444F2 /* PBXTextBookmark */;
- 615F15BB116629A0002444F2 /* PBXTextBookmark */ = 615F15BB116629A0002444F2 /* PBXTextBookmark */;
- 615F15DC11662BE8002444F2 /* PBXTextBookmark */ = 615F15DC11662BE8002444F2 /* PBXTextBookmark */;
- 615F162511663A99002444F2 /* PBXTextBookmark */ = 615F162511663A99002444F2 /* PBXTextBookmark */;
- 615F165211663FA7002444F2 /* PBXTextBookmark */ = 615F165211663FA7002444F2 /* PBXTextBookmark */;
- 615F166F11664BE1002444F2 /* PBXTextBookmark */ = 615F166F11664BE1002444F2 /* PBXTextBookmark */;
- 615F174311668823002444F2 /* PBXTextBookmark */ = 615F174311668823002444F2 /* PBXTextBookmark */;
- 615F17D511668C5A002444F2 /* PBXTextBookmark */ = 615F17D511668C5A002444F2 /* PBXTextBookmark */;
- 615F180A11668DA5002444F2 /* PBXTextBookmark */ = 615F180A11668DA5002444F2 /* PBXTextBookmark */;
- 615F19331166A409002444F2 /* PBXTextBookmark */ = 615F19331166A409002444F2 /* PBXTextBookmark */;
- 615F198C1166A71E002444F2 /* PBXBookmark */ = 615F198C1166A71E002444F2 /* PBXBookmark */;
- 615F198D1166A71E002444F2 /* PBXTextBookmark */ = 615F198D1166A71E002444F2 /* PBXTextBookmark */;
- 615F198E1166A71E002444F2 /* PBXTextBookmark */ = 615F198E1166A71E002444F2 /* PBXTextBookmark */;
- 615F198F1166A71E002444F2 /* PBXTextBookmark */ = 615F198F1166A71E002444F2 /* PBXTextBookmark */;
- 615F19911166A71E002444F2 /* PBXTextBookmark */ = 615F19911166A71E002444F2 /* PBXTextBookmark */;
- 615F19AA1166A803002444F2 /* PBXTextBookmark */ = 615F19AA1166A803002444F2 /* PBXTextBookmark */;
- 615F1BB81166B565002444F2 /* PBXTextBookmark */ = 615F1BB81166B565002444F2 /* PBXTextBookmark */;
- 615F1E0B1166B68C002444F2 /* PBXBookmark */ = 615F1E0B1166B68C002444F2 /* PBXBookmark */;
- 615F1E0D1166B68C002444F2 /* PBXBookmark */ = 615F1E0D1166B68C002444F2 /* PBXBookmark */;
- 615F1E0F1166B68C002444F2 /* PBXBookmark */ = 615F1E0F1166B68C002444F2 /* PBXBookmark */;
- 615F1E111166B68C002444F2 /* PBXBookmark */ = 615F1E111166B68C002444F2 /* PBXBookmark */;
- 615F1E131166B68C002444F2 /* PBXBookmark */ = 615F1E131166B68C002444F2 /* PBXBookmark */;
- 615F1E151166B68C002444F2 /* PBXBookmark */ = 615F1E151166B68C002444F2 /* PBXBookmark */;
- 615F1E171166B68C002444F2 /* PBXBookmark */ = 615F1E171166B68C002444F2 /* PBXBookmark */;
- 615F1E191166B68C002444F2 /* PBXBookmark */ = 615F1E191166B68C002444F2 /* PBXBookmark */;
- 615F1E1B1166B68C002444F2 /* PBXBookmark */ = 615F1E1B1166B68C002444F2 /* PBXBookmark */;
- 615F1E1D1166B68C002444F2 /* PBXBookmark */ = 615F1E1D1166B68C002444F2 /* PBXBookmark */;
- 615F1E1F1166B68C002444F2 /* PBXBookmark */ = 615F1E1F1166B68C002444F2 /* PBXBookmark */;
- 615F1E211166B68C002444F2 /* PBXBookmark */ = 615F1E211166B68C002444F2 /* PBXBookmark */;
- 615F1E231166B68C002444F2 /* PBXBookmark */ = 615F1E231166B68C002444F2 /* PBXBookmark */;
- 615F1E251166B68C002444F2 /* PBXBookmark */ = 615F1E251166B68C002444F2 /* PBXBookmark */;
- 615F1E271166B68C002444F2 /* PBXBookmark */ = 615F1E271166B68C002444F2 /* PBXBookmark */;
- 615F1E291166B68C002444F2 /* PBXBookmark */ = 615F1E291166B68C002444F2 /* PBXBookmark */;
- 615F1E2B1166B68C002444F2 /* PBXBookmark */ = 615F1E2B1166B68C002444F2 /* PBXBookmark */;
- 615F1E2D1166B68C002444F2 /* PBXBookmark */ = 615F1E2D1166B68C002444F2 /* PBXBookmark */;
- 615F1E2F1166B68C002444F2 /* PBXBookmark */ = 615F1E2F1166B68C002444F2 /* PBXBookmark */;
- 615F1E311166B68C002444F2 /* PBXBookmark */ = 615F1E311166B68C002444F2 /* PBXBookmark */;
- 615F1E331166B68C002444F2 /* PBXBookmark */ = 615F1E331166B68C002444F2 /* PBXBookmark */;
- 615F1E351166B68C002444F2 /* PBXBookmark */ = 615F1E351166B68C002444F2 /* PBXBookmark */;
- 615F1E371166B68C002444F2 /* PBXBookmark */ = 615F1E371166B68C002444F2 /* PBXBookmark */;
- 615F1E391166B68C002444F2 /* PBXBookmark */ = 615F1E391166B68C002444F2 /* PBXBookmark */;
- 615F1E3B1166B68C002444F2 /* PBXBookmark */ = 615F1E3B1166B68C002444F2 /* PBXBookmark */;
- 615F1E3D1166B68C002444F2 /* PBXBookmark */ = 615F1E3D1166B68C002444F2 /* PBXBookmark */;
- 615F1E3F1166B68C002444F2 /* PBXBookmark */ = 615F1E3F1166B68C002444F2 /* PBXBookmark */;
- 615F1E411166B68C002444F2 /* PBXBookmark */ = 615F1E411166B68C002444F2 /* PBXBookmark */;
- 615F1E431166B68C002444F2 /* PBXBookmark */ = 615F1E431166B68C002444F2 /* PBXBookmark */;
- 615F1E451166B68C002444F2 /* PBXBookmark */ = 615F1E451166B68C002444F2 /* PBXBookmark */;
- 615F1E471166B68C002444F2 /* PBXBookmark */ = 615F1E471166B68C002444F2 /* PBXBookmark */;
- 615F1E491166B68C002444F2 /* PBXBookmark */ = 615F1E491166B68C002444F2 /* PBXBookmark */;
- 615F21921166B73B002444F2 /* PBXTextBookmark */ = 615F21921166B73B002444F2 /* PBXTextBookmark */;
- 61697B9E1163478A00CCDF37 /* PBXTextBookmark */ = 61697B9E1163478A00CCDF37 /* PBXTextBookmark */;
- 6179889D114AA5BD00BA94A9 /* PBXTextBookmark */ = 6179889D114AA5BD00BA94A9 /* PBXTextBookmark */;
- 61799342114B297000BA94A9 /* PBXBookmark */ = 61799342114B297000BA94A9 /* PBXBookmark */;
- 61799343114B297000BA94A9 /* PBXBookmark */ = 61799343114B297000BA94A9 /* PBXBookmark */;
- 6179937111501D7800BA94A9 /* PBXBookmark */ = 6179937111501D7800BA94A9 /* PBXBookmark */;
- 6179937411501D7800BA94A9 /* PBXBookmark */ = 6179937411501D7800BA94A9 /* PBXBookmark */;
- 6179937511501D7800BA94A9 /* PBXBookmark */ = 6179937511501D7800BA94A9 /* PBXBookmark */;
- 6179938511501FFA00BA94A9 /* PBXBookmark */ = 6179938511501FFA00BA94A9 /* PBXBookmark */;
- 6179943111502CEA00BA94A9 /* PBXBookmark */ = 6179943111502CEA00BA94A9 /* PBXBookmark */;
- 618AFC07115BE92A003D411B /* PBXBookmark */ = 618AFC07115BE92A003D411B /* PBXBookmark */;
- 6194CC0711505FCF00A4BA5C /* PlistBookmark */ = 6194CC0711505FCF00A4BA5C /* PlistBookmark */;
- 61CCBE60116135FF00833FE8 /* PBXTextBookmark */ = 61CCBE60116135FF00833FE8 /* PBXTextBookmark */;
- 61CCBF1E116162CA00833FE8 /* PBXTextBookmark */ = 61CCBF1E116162CA00833FE8 /* PBXTextBookmark */;
- 61CCBF451161637F00833FE8 /* PBXTextBookmark */ = 61CCBF451161637F00833FE8 /* PBXTextBookmark */;
- 61CCBF461161637F00833FE8 /* PBXTextBookmark */ = 61CCBF461161637F00833FE8 /* PBXTextBookmark */;
- 61CCBF471161637F00833FE8 /* PBXTextBookmark */ = 61CCBF471161637F00833FE8 /* PBXTextBookmark */;
- 61CCBF791161657400833FE8 /* PBXTextBookmark */ = 61CCBF791161657400833FE8 /* PBXTextBookmark */;
- 61CCBF7B1161657400833FE8 /* PBXTextBookmark */ = 61CCBF7B1161657400833FE8 /* PBXTextBookmark */;
- 61CCBF7C1161657400833FE8 /* PBXTextBookmark */ = 61CCBF7C1161657400833FE8 /* PBXTextBookmark */;
- 61CCBF7E1161657400833FE8 /* PBXTextBookmark */ = 61CCBF7E1161657400833FE8 /* PBXTextBookmark */;
- 61CCBF7F1161657400833FE8 /* PBXTextBookmark */ = 61CCBF7F1161657400833FE8 /* PBXTextBookmark */;
- 61CCBFD11161833800833FE8 /* PBXTextBookmark */ = 61CCBFD11161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD21161833800833FE8 /* PBXTextBookmark */ = 61CCBFD21161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD31161833800833FE8 /* PBXTextBookmark */ = 61CCBFD31161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD41161833800833FE8 /* PBXTextBookmark */ = 61CCBFD41161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD51161833800833FE8 /* PBXTextBookmark */ = 61CCBFD51161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD71161833800833FE8 /* PBXTextBookmark */ = 61CCBFD71161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD81161833800833FE8 /* PBXTextBookmark */ = 61CCBFD81161833800833FE8 /* PBXTextBookmark */;
- 61CCBFD91161833800833FE8 /* PBXTextBookmark */ = 61CCBFD91161833800833FE8 /* PBXTextBookmark */;
- 61CCBFDA1161833800833FE8 /* PBXTextBookmark */ = 61CCBFDA1161833800833FE8 /* PBXTextBookmark */;
- 61CCBFDB1161833800833FE8 /* PBXTextBookmark */ = 61CCBFDB1161833800833FE8 /* PBXTextBookmark */;
- 61CCBFDC1161833800833FE8 /* PBXTextBookmark */ = 61CCBFDC1161833800833FE8 /* PBXTextBookmark */;
- 61CE23E7115E49560098C467 /* PBXTextBookmark */ = 61CE23E7115E49560098C467 /* PBXTextBookmark */;
- 61CE23FF115E4B290098C467 /* PBXBookmark */ = 61CE23FF115E4B290098C467 /* PBXBookmark */;
- 61CE2514115E74CC0098C467 /* PBXBookmark */ = 61CE2514115E74CC0098C467 /* PBXBookmark */;
- 61CE2515115E74CC0098C467 /* PBXTextBookmark */ = 61CE2515115E74CC0098C467 /* PBXTextBookmark */;
- 61CE251F115E75A70098C467 /* PBXBookmark */ = 61CE251F115E75A70098C467 /* PBXBookmark */;
- 61CE2577115E78900098C467 /* PBXTextBookmark */ = 61CE2577115E78900098C467 /* PBXTextBookmark */;
- 61CE2578115E78900098C467 /* PBXTextBookmark */ = 61CE2578115E78900098C467 /* PBXTextBookmark */;
- 61CE25B4115E7C940098C467 /* PBXTextBookmark */ = 61CE25B4115E7C940098C467 /* PBXTextBookmark */;
- 61E2F0811156B170002D33C1 /* PBXTextBookmark */ = 61E2F0811156B170002D33C1 /* PBXTextBookmark */;
+ 611FD81D1155111700C2203D = 611FD81D1155111700C2203D /* PBXTextBookmark */;
+ 611FD81F1155111700C2203D = 611FD81F1155111700C2203D /* PBXTextBookmark */;
+ 611FD8201155111700C2203D = 611FD8201155111700C2203D /* PBXTextBookmark */;
+ 611FD8211155111700C2203D = 611FD8211155111700C2203D /* PBXTextBookmark */;
+ 611FD8281155111700C2203D = 611FD8281155111700C2203D /* PBXTextBookmark */;
+ 611FD8291155111700C2203D = 611FD8291155111700C2203D /* PBXTextBookmark */;
+ 611FD82B1155111700C2203D = 611FD82B1155111700C2203D /* PBXTextBookmark */;
+ 611FD82C1155111700C2203D = 611FD82C1155111700C2203D /* PBXTextBookmark */;
+ 611FD95711551C3700C2203D = 611FD95711551C3700C2203D /* PBXTextBookmark */;
+ 611FD95811551C3700C2203D = 611FD95811551C3700C2203D /* PBXBookmark */;
+ 611FD95911551C3700C2203D = 611FD95911551C3700C2203D /* PBXBookmark */;
+ 611FD96611551E8000C2203D = 611FD96611551E8000C2203D /* PBXBookmark */;
+ 611FDAC41155B77500C2203D = 611FDAC41155B77500C2203D /* PBXTextBookmark */;
+ 611FDB481155BCE500C2203D = 611FDB481155BCE500C2203D /* PBXTextBookmark */;
+ 611FDB6B1155C0B300C2203D = 611FDB6B1155C0B300C2203D /* PBXBookmark */;
+ 611FDB6C1155C0B300C2203D = 611FDB6C1155C0B300C2203D /* PBXBookmark */;
+ 611FDB6D1155C0B300C2203D = 611FDB6D1155C0B300C2203D /* PBXBookmark */;
+ 611FDBF71155D39400C2203D = 611FDBF71155D39400C2203D /* PBXTextBookmark */;
+ 612D5C451165535400C6D842 = 612D5C451165535400C6D842 /* PBXTextBookmark */;
+ 612D616B1165536300C6D842 = 612D616B1165536300C6D842 /* PBXTextBookmark */;
+ 612D618F1165545F00C6D842 = 612D618F1165545F00C6D842 /* PBXTextBookmark */;
+ 612FA4551166B907001625AE = 612FA4551166B907001625AE /* PBXBookmark */;
+ 612FA5271166ECE4001625AE = 612FA5271166ECE4001625AE /* PBXTextBookmark */;
+ 612FA5281166ECE4001625AE = 612FA5281166ECE4001625AE /* PBXTextBookmark */;
+ 61430D3B1165551600E2C62D = 61430D3B1165551600E2C62D /* PBXTextBookmark */;
+ 61430D3D1165551600E2C62D = 61430D3D1165551600E2C62D /* PBXTextBookmark */;
+ 615E2397115F023B00B0ACA1 = 615E2397115F023B00B0ACA1 /* PBXTextBookmark */;
+ 615F12CE11655B21002444F2 = 615F12CE11655B21002444F2 /* PBXTextBookmark */;
+ 615F12CF11655B21002444F2 = 615F12CF11655B21002444F2 /* PBXTextBookmark */;
+ 615F12FB116560D9002444F2 = 615F12FB116560D9002444F2 /* PBXTextBookmark */;
+ 615F1316116561BE002444F2 = 615F1316116561BE002444F2 /* PBXTextBookmark */;
+ 615F134D11656569002444F2 = 615F134D11656569002444F2 /* PBXTextBookmark */;
+ 615F147F11659AC5002444F2 = 615F147F11659AC5002444F2 /* PBXTextBookmark */;
+ 615F148B11659BC2002444F2 = 615F148B11659BC2002444F2 /* PBXTextBookmark */;
+ 615F14AA11659E9A002444F2 = 615F14AA11659E9A002444F2 /* PBXTextBookmark */;
+ 615F154E1165A976002444F2 = 615F154E1165A976002444F2 /* PBXTextBookmark */;
+ 615F157111661DA5002444F2 = 615F157111661DA5002444F2 /* PBXTextBookmark */;
+ 615F15B6116629A0002444F2 = 615F15B6116629A0002444F2 /* PBXTextBookmark */;
+ 615F15B7116629A0002444F2 = 615F15B7116629A0002444F2 /* PBXTextBookmark */;
+ 615F15B8116629A0002444F2 = 615F15B8116629A0002444F2 /* PBXTextBookmark */;
+ 615F15B9116629A0002444F2 = 615F15B9116629A0002444F2 /* PBXTextBookmark */;
+ 615F15BB116629A0002444F2 = 615F15BB116629A0002444F2 /* PBXTextBookmark */;
+ 615F15DC11662BE8002444F2 = 615F15DC11662BE8002444F2 /* PBXTextBookmark */;
+ 615F162511663A99002444F2 = 615F162511663A99002444F2 /* PBXTextBookmark */;
+ 615F165211663FA7002444F2 = 615F165211663FA7002444F2 /* PBXTextBookmark */;
+ 615F166F11664BE1002444F2 = 615F166F11664BE1002444F2 /* PBXTextBookmark */;
+ 615F174311668823002444F2 = 615F174311668823002444F2 /* PBXTextBookmark */;
+ 615F17D511668C5A002444F2 = 615F17D511668C5A002444F2 /* PBXTextBookmark */;
+ 615F180A11668DA5002444F2 = 615F180A11668DA5002444F2 /* PBXTextBookmark */;
+ 615F19331166A409002444F2 = 615F19331166A409002444F2 /* PBXTextBookmark */;
+ 615F198C1166A71E002444F2 = 615F198C1166A71E002444F2 /* PBXBookmark */;
+ 615F198D1166A71E002444F2 = 615F198D1166A71E002444F2 /* PBXTextBookmark */;
+ 615F198E1166A71E002444F2 = 615F198E1166A71E002444F2 /* PBXTextBookmark */;
+ 615F198F1166A71E002444F2 = 615F198F1166A71E002444F2 /* PBXTextBookmark */;
+ 615F19911166A71E002444F2 = 615F19911166A71E002444F2 /* PBXTextBookmark */;
+ 615F19AA1166A803002444F2 = 615F19AA1166A803002444F2 /* PBXTextBookmark */;
+ 615F1BB81166B565002444F2 = 615F1BB81166B565002444F2 /* PBXTextBookmark */;
+ 615F1E0B1166B68C002444F2 = 615F1E0B1166B68C002444F2 /* PBXBookmark */;
+ 615F1E0D1166B68C002444F2 = 615F1E0D1166B68C002444F2 /* PBXBookmark */;
+ 615F1E0F1166B68C002444F2 = 615F1E0F1166B68C002444F2 /* PBXBookmark */;
+ 615F1E111166B68C002444F2 = 615F1E111166B68C002444F2 /* PBXBookmark */;
+ 615F1E131166B68C002444F2 = 615F1E131166B68C002444F2 /* PBXBookmark */;
+ 615F1E151166B68C002444F2 = 615F1E151166B68C002444F2 /* PBXBookmark */;
+ 615F1E171166B68C002444F2 = 615F1E171166B68C002444F2 /* PBXBookmark */;
+ 615F1E191166B68C002444F2 = 615F1E191166B68C002444F2 /* PBXBookmark */;
+ 615F1E1B1166B68C002444F2 = 615F1E1B1166B68C002444F2 /* PBXBookmark */;
+ 615F1E1D1166B68C002444F2 = 615F1E1D1166B68C002444F2 /* PBXBookmark */;
+ 615F1E1F1166B68C002444F2 = 615F1E1F1166B68C002444F2 /* PBXBookmark */;
+ 615F1E211166B68C002444F2 = 615F1E211166B68C002444F2 /* PBXBookmark */;
+ 615F1E231166B68C002444F2 = 615F1E231166B68C002444F2 /* PBXBookmark */;
+ 615F1E251166B68C002444F2 = 615F1E251166B68C002444F2 /* PBXBookmark */;
+ 615F1E271166B68C002444F2 = 615F1E271166B68C002444F2 /* PBXBookmark */;
+ 615F1E291166B68C002444F2 = 615F1E291166B68C002444F2 /* PBXBookmark */;
+ 615F1E2B1166B68C002444F2 = 615F1E2B1166B68C002444F2 /* PBXBookmark */;
+ 615F1E2D1166B68C002444F2 = 615F1E2D1166B68C002444F2 /* PBXBookmark */;
+ 615F1E2F1166B68C002444F2 = 615F1E2F1166B68C002444F2 /* PBXBookmark */;
+ 615F1E311166B68C002444F2 = 615F1E311166B68C002444F2 /* PBXBookmark */;
+ 615F1E331166B68C002444F2 = 615F1E331166B68C002444F2 /* PBXBookmark */;
+ 615F1E351166B68C002444F2 = 615F1E351166B68C002444F2 /* PBXBookmark */;
+ 615F1E371166B68C002444F2 = 615F1E371166B68C002444F2 /* PBXBookmark */;
+ 615F1E391166B68C002444F2 = 615F1E391166B68C002444F2 /* PBXBookmark */;
+ 615F1E3B1166B68C002444F2 = 615F1E3B1166B68C002444F2 /* PBXBookmark */;
+ 615F1E3D1166B68C002444F2 = 615F1E3D1166B68C002444F2 /* PBXBookmark */;
+ 615F1E3F1166B68C002444F2 = 615F1E3F1166B68C002444F2 /* PBXBookmark */;
+ 615F1E411166B68C002444F2 = 615F1E411166B68C002444F2 /* PBXBookmark */;
+ 615F1E431166B68C002444F2 = 615F1E431166B68C002444F2 /* PBXBookmark */;
+ 615F1E451166B68C002444F2 = 615F1E451166B68C002444F2 /* PBXBookmark */;
+ 615F1E471166B68C002444F2 = 615F1E471166B68C002444F2 /* PBXBookmark */;
+ 615F1E491166B68C002444F2 = 615F1E491166B68C002444F2 /* PBXBookmark */;
+ 615F21921166B73B002444F2 = 615F21921166B73B002444F2 /* PBXTextBookmark */;
+ 61697B9E1163478A00CCDF37 = 61697B9E1163478A00CCDF37 /* PBXTextBookmark */;
+ 6179889D114AA5BD00BA94A9 = 6179889D114AA5BD00BA94A9 /* PBXTextBookmark */;
+ 61799342114B297000BA94A9 = 61799342114B297000BA94A9 /* PBXBookmark */;
+ 61799343114B297000BA94A9 = 61799343114B297000BA94A9 /* PBXBookmark */;
+ 6179937111501D7800BA94A9 = 6179937111501D7800BA94A9 /* PBXBookmark */;
+ 6179937411501D7800BA94A9 = 6179937411501D7800BA94A9 /* PBXBookmark */;
+ 6179937511501D7800BA94A9 = 6179937511501D7800BA94A9 /* PBXBookmark */;
+ 6179938511501FFA00BA94A9 = 6179938511501FFA00BA94A9 /* PBXBookmark */;
+ 6179943111502CEA00BA94A9 = 6179943111502CEA00BA94A9 /* PBXBookmark */;
+ 618AFC07115BE92A003D411B = 618AFC07115BE92A003D411B /* PBXBookmark */;
+ 6194CC0711505FCF00A4BA5C = 6194CC0711505FCF00A4BA5C /* PlistBookmark */;
+ 61A117421168280200359010 /* PBXTextBookmark */ = 61A117421168280200359010 /* PBXTextBookmark */;
+ 61A117431168280200359010 /* PBXTextBookmark */ = 61A117431168280200359010 /* PBXTextBookmark */;
+ 61A117461168280200359010 /* PBXTextBookmark */ = 61A117461168280200359010 /* PBXTextBookmark */;
+ 61A118231168323000359010 /* PBXTextBookmark */ = 61A118231168323000359010 /* PBXTextBookmark */;
+ 61A118241168323000359010 /* PBXTextBookmark */ = 61A118241168323000359010 /* PBXTextBookmark */;
+ 61A118251168323000359010 /* PBXTextBookmark */ = 61A118251168323000359010 /* PBXTextBookmark */;
+ 61A118261168323000359010 /* PBXTextBookmark */ = 61A118261168323000359010 /* PBXTextBookmark */;
+ 61A118291168323000359010 /* PBXTextBookmark */ = 61A118291168323000359010 /* PBXTextBookmark */;
+ 61A1182A1168323000359010 /* PBXTextBookmark */ = 61A1182A1168323000359010 /* PBXTextBookmark */;
+ 61A1182B1168323000359010 /* PBXTextBookmark */ = 61A1182B1168323000359010 /* PBXTextBookmark */;
+ 61A1182F1168325800359010 /* PBXTextBookmark */ = 61A1182F1168325800359010 /* PBXTextBookmark */;
+ 61A118301168325800359010 /* PBXTextBookmark */ = 61A118301168325800359010 /* PBXTextBookmark */;
+ 61A118381168340700359010 /* PBXBookmark */ = 61A118381168340700359010 /* PBXBookmark */;
+ 61A1183B116834FC00359010 /* PBXTextBookmark */ = 61A1183B116834FC00359010 /* PBXTextBookmark */;
+ 61A1183E116834FC00359010 /* PBXTextBookmark */ = 61A1183E116834FC00359010 /* PBXTextBookmark */;
+ 61A1183F116834FC00359010 /* PBXTextBookmark */ = 61A1183F116834FC00359010 /* PBXTextBookmark */;
+ 61A11844116836A600359010 /* PBXBookmark */ = 61A11844116836A600359010 /* PBXBookmark */;
+ 61A1186B1168391A00359010 /* PBXTextBookmark */ = 61A1186B1168391A00359010 /* PBXTextBookmark */;
+ 61A1186C1168391A00359010 /* PBXTextBookmark */ = 61A1186C1168391A00359010 /* PBXTextBookmark */;
+ 61A1186E1168391A00359010 /* PBXTextBookmark */ = 61A1186E1168391A00359010 /* PBXTextBookmark */;
+ 61A118721168391A00359010 /* PBXTextBookmark */ = 61A118721168391A00359010 /* PBXTextBookmark */;
+ 61A11875116839F400359010 /* PBXTextBookmark */ = 61A11875116839F400359010 /* PBXTextBookmark */;
+ 61A11876116839F400359010 /* PBXTextBookmark */ = 61A11876116839F400359010 /* PBXTextBookmark */;
+ 61A118BB11683B4100359010 /* PBXTextBookmark */ = 61A118BB11683B4100359010 /* PBXTextBookmark */;
+ 61A118BC11683B4100359010 /* PBXTextBookmark */ = 61A118BC11683B4100359010 /* PBXTextBookmark */;
+ 61A118C511683BBB00359010 /* PBXTextBookmark */ = 61A118C511683BBB00359010 /* PBXTextBookmark */;
+ 61A118C611683BBB00359010 /* PBXTextBookmark */ = 61A118C611683BBB00359010 /* PBXTextBookmark */;
+ 61A118C811683C0000359010 /* PBXBookmark */ = 61A118C811683C0000359010 /* PBXBookmark */;
+ 61A118D811683CD700359010 /* PBXTextBookmark */ = 61A118D811683CD700359010 /* PBXTextBookmark */;
+ 61A118DB11683CD700359010 /* PBXTextBookmark */ = 61A118DB11683CD700359010 /* PBXTextBookmark */;
+ 61A118DC11683CD700359010 /* PBXTextBookmark */ = 61A118DC11683CD700359010 /* PBXTextBookmark */;
+ 61A118E111683D2500359010 /* PBXTextBookmark */ = 61A118E111683D2500359010 /* PBXTextBookmark */;
+ 61A118E211683D2500359010 /* PBXTextBookmark */ = 61A118E211683D2500359010 /* PBXTextBookmark */;
+ 61A118E311683D2500359010 /* PBXTextBookmark */ = 61A118E311683D2500359010 /* PBXTextBookmark */;
+ 61A118E611683D7800359010 /* PBXTextBookmark */ = 61A118E611683D7800359010 /* PBXTextBookmark */;
+ 61A118E711683D7800359010 /* PBXTextBookmark */ = 61A118E711683D7800359010 /* PBXTextBookmark */;
+ 61A118E811683D7800359010 /* PBXTextBookmark */ = 61A118E811683D7800359010 /* PBXTextBookmark */;
+ 61A118FD11683FAD00359010 /* PBXTextBookmark */ = 61A118FD11683FAD00359010 /* PBXTextBookmark */;
+ 61A1190011683FAD00359010 /* PBXTextBookmark */ = 61A1190011683FAD00359010 /* PBXTextBookmark */;
+ 61A1190111683FAD00359010 /* PBXTextBookmark */ = 61A1190111683FAD00359010 /* PBXTextBookmark */;
+ 61A1190211683FAD00359010 /* PBXTextBookmark */ = 61A1190211683FAD00359010 /* PBXTextBookmark */;
+ 61A1190511683FAD00359010 /* PBXTextBookmark */ = 61A1190511683FAD00359010 /* PBXTextBookmark */;
+ 61A1190611683FAD00359010 /* PBXTextBookmark */ = 61A1190611683FAD00359010 /* PBXTextBookmark */;
+ 61A1190711683FAD00359010 /* PBXTextBookmark */ = 61A1190711683FAD00359010 /* PBXTextBookmark */;
+ 61A1190811683FAD00359010 /* PBXTextBookmark */ = 61A1190811683FAD00359010 /* PBXTextBookmark */;
+ 61A1190B11683FFA00359010 /* PBXTextBookmark */ = 61A1190B11683FFA00359010 /* PBXTextBookmark */;
+ 61A1190C11683FFA00359010 /* PBXTextBookmark */ = 61A1190C11683FFA00359010 /* PBXTextBookmark */;
+ 61A1190D11683FFA00359010 /* PBXTextBookmark */ = 61A1190D11683FFA00359010 /* PBXTextBookmark */;
+ 61A1190E11683FFA00359010 /* PBXTextBookmark */ = 61A1190E11683FFA00359010 /* PBXTextBookmark */;
+ 61A119171168410F00359010 /* PBXTextBookmark */ = 61A119171168410F00359010 /* PBXTextBookmark */;
+ 61A119181168410F00359010 /* PBXTextBookmark */ = 61A119181168410F00359010 /* PBXTextBookmark */;
+ 61A119191168410F00359010 /* PBXTextBookmark */ = 61A119191168410F00359010 /* PBXTextBookmark */;
+ 61A11930116841E100359010 /* PBXTextBookmark */ = 61A11930116841E100359010 /* PBXTextBookmark */;
+ 61A11931116841E100359010 /* PBXTextBookmark */ = 61A11931116841E100359010 /* PBXTextBookmark */;
+ 61A11932116841E100359010 /* PBXTextBookmark */ = 61A11932116841E100359010 /* PBXTextBookmark */;
+ 61A119431168430E00359010 /* PBXTextBookmark */ = 61A119431168430E00359010 /* PBXTextBookmark */;
+ 61A119441168430E00359010 /* PBXTextBookmark */ = 61A119441168430E00359010 /* PBXTextBookmark */;
+ 61A119451168430E00359010 /* PBXTextBookmark */ = 61A119451168430E00359010 /* PBXTextBookmark */;
+ 61A1195D1168479600359010 /* PBXTextBookmark */ = 61A1195D1168479600359010 /* PBXTextBookmark */;
+ 61A1195E1168479600359010 /* PBXTextBookmark */ = 61A1195E1168479600359010 /* PBXTextBookmark */;
+ 61A1195F1168479600359010 /* PBXTextBookmark */ = 61A1195F1168479600359010 /* PBXTextBookmark */;
+ 61A1197B1168497B00359010 /* PBXTextBookmark */ = 61A1197B1168497B00359010 /* PBXTextBookmark */;
+ 61A1197C1168497B00359010 /* PBXTextBookmark */ = 61A1197C1168497B00359010 /* PBXTextBookmark */;
+ 61A1197D1168497B00359010 /* PBXTextBookmark */ = 61A1197D1168497B00359010 /* PBXTextBookmark */;
+ 61A1199111684A4F00359010 /* PBXTextBookmark */ = 61A1199111684A4F00359010 /* PBXTextBookmark */;
+ 61A1199211684A4F00359010 /* PBXTextBookmark */ = 61A1199211684A4F00359010 /* PBXTextBookmark */;
+ 61A1199311684A4F00359010 /* PBXTextBookmark */ = 61A1199311684A4F00359010 /* PBXTextBookmark */;
+ 61A1199711684B3200359010 /* PBXBookmark */ = 61A1199711684B3200359010 /* PBXBookmark */;
+ 61A119A511684F6C00359010 /* PBXBookmark */ = 61A119A511684F6C00359010 /* PBXBookmark */;
+ 61A119A611684F6D00359010 /* PBXTextBookmark */ = 61A119A611684F6D00359010 /* PBXTextBookmark */;
+ 61A119A911684F6D00359010 /* PBXTextBookmark */ = 61A119A911684F6D00359010 /* PBXTextBookmark */;
+ 61A119AA11684F6D00359010 /* PBXTextBookmark */ = 61A119AA11684F6D00359010 /* PBXTextBookmark */;
+ 61A119AB11684F6D00359010 /* PBXTextBookmark */ = 61A119AB11684F6D00359010 /* PBXTextBookmark */;
+ 61A119AE11684F6D00359010 /* PBXTextBookmark */ = 61A119AE11684F6D00359010 /* PBXTextBookmark */;
+ 61A119AF11684F6D00359010 /* PBXTextBookmark */ = 61A119AF11684F6D00359010 /* PBXTextBookmark */;
+ 61A119C11168500F00359010 /* XCBuildMessageTextBookmark */ = 61A119C11168500F00359010 /* XCBuildMessageTextBookmark */;
+ 61A119C31168502900359010 /* XCBuildMessageTextBookmark */ = 61A119C31168502900359010 /* XCBuildMessageTextBookmark */;
+ 61A119D71168515100359010 /* PBXTextBookmark */ = 61A119D71168515100359010 /* PBXTextBookmark */;
+ 61A119D81168515100359010 /* PBXTextBookmark */ = 61A119D81168515100359010 /* PBXTextBookmark */;
+ 61A119D91168515100359010 /* PBXTextBookmark */ = 61A119D91168515100359010 /* PBXTextBookmark */;
+ 61A119DC1168515100359010 /* PBXTextBookmark */ = 61A119DC1168515100359010 /* PBXTextBookmark */;
+ 61A119DD1168515100359010 /* PBXTextBookmark */ = 61A119DD1168515100359010 /* PBXTextBookmark */;
+ 61A119E01168515100359010 /* PBXTextBookmark */ = 61A119E01168515100359010 /* PBXTextBookmark */;
+ 61A119E31168515100359010 /* PBXTextBookmark */ = 61A119E31168515100359010 /* PBXTextBookmark */;
+ 61A119E41168515100359010 /* PBXTextBookmark */ = 61A119E41168515100359010 /* PBXTextBookmark */;
+ 61A119E51168515100359010 /* PBXTextBookmark */ = 61A119E51168515100359010 /* PBXTextBookmark */;
+ 61A119E61168515100359010 /* PBXTextBookmark */ = 61A119E61168515100359010 /* PBXTextBookmark */;
+ 61A119E71168515100359010 /* PBXTextBookmark */ = 61A119E71168515100359010 /* PBXTextBookmark */;
+ 61A119FD1168533300359010 /* PBXTextBookmark */ = 61A119FD1168533300359010 /* PBXTextBookmark */;
+ 61A119FE1168533300359010 /* PBXTextBookmark */ = 61A119FE1168533300359010 /* PBXTextBookmark */;
+ 61A119FF1168533300359010 /* PBXTextBookmark */ = 61A119FF1168533300359010 /* PBXTextBookmark */;
+ 61A11A001168533300359010 /* PBXTextBookmark */ = 61A11A001168533300359010 /* PBXTextBookmark */;
+ 61A11A031168533300359010 /* PBXTextBookmark */ = 61A11A031168533300359010 /* PBXTextBookmark */;
+ 61A11A041168533300359010 /* PBXTextBookmark */ = 61A11A041168533300359010 /* PBXTextBookmark */;
+ 61A11A051168533300359010 /* PBXTextBookmark */ = 61A11A051168533300359010 /* PBXTextBookmark */;
+ 61A11A061168533300359010 /* PBXTextBookmark */ = 61A11A061168533300359010 /* PBXTextBookmark */;
+ 61A11A071168533300359010 /* PBXTextBookmark */ = 61A11A071168533300359010 /* PBXTextBookmark */;
+ 61A11A081168533300359010 /* PBXTextBookmark */ = 61A11A081168533300359010 /* PBXTextBookmark */;
+ 61A11A091168533300359010 /* PBXTextBookmark */ = 61A11A091168533300359010 /* PBXTextBookmark */;
+ 61A11A0A1168533300359010 /* PBXTextBookmark */ = 61A11A0A1168533300359010 /* PBXTextBookmark */;
+ 61A11A111168541700359010 /* PBXTextBookmark */ = 61A11A111168541700359010 /* PBXTextBookmark */;
+ 61A11A121168541700359010 /* PBXTextBookmark */ = 61A11A121168541700359010 /* PBXTextBookmark */;
+ 61A11A131168541700359010 /* PBXTextBookmark */ = 61A11A131168541700359010 /* PBXTextBookmark */;
+ 61A11A141168541700359010 /* PBXTextBookmark */ = 61A11A141168541700359010 /* PBXTextBookmark */;
+ 61A11A151168541700359010 /* PBXTextBookmark */ = 61A11A151168541700359010 /* PBXTextBookmark */;
+ 61A11A161168541700359010 /* PBXTextBookmark */ = 61A11A161168541700359010 /* PBXTextBookmark */;
+ 61A11A171168541700359010 /* PBXTextBookmark */ = 61A11A171168541700359010 /* PBXTextBookmark */;
+ 61A11A181168541700359010 /* PBXTextBookmark */ = 61A11A181168541700359010 /* PBXTextBookmark */;
+ 61A11A191168541700359010 /* PBXTextBookmark */ = 61A11A191168541700359010 /* PBXTextBookmark */;
+ 61A11A1A1168541700359010 /* PBXTextBookmark */ = 61A11A1A1168541700359010 /* PBXTextBookmark */;
+ 61A11A1D1168546800359010 /* PBXTextBookmark */ = 61A11A1D1168546800359010 /* PBXTextBookmark */;
+ 61A11A1E1168546800359010 /* PBXTextBookmark */ = 61A11A1E1168546800359010 /* PBXTextBookmark */;
+ 61A11A1F1168546800359010 /* PBXTextBookmark */ = 61A11A1F1168546800359010 /* PBXTextBookmark */;
+ 61A11A201168546800359010 /* PBXTextBookmark */ = 61A11A201168546800359010 /* PBXTextBookmark */;
+ 61A11A211168546800359010 /* PBXTextBookmark */ = 61A11A211168546800359010 /* PBXTextBookmark */;
+ 61A11A221168546800359010 /* PBXTextBookmark */ = 61A11A221168546800359010 /* PBXTextBookmark */;
+ 61A11A231168546800359010 /* PBXTextBookmark */ = 61A11A231168546800359010 /* PBXTextBookmark */;
+ 61A11A241168546800359010 /* PBXTextBookmark */ = 61A11A241168546800359010 /* PBXTextBookmark */;
+ 61A11A251168546800359010 /* PBXTextBookmark */ = 61A11A251168546800359010 /* PBXTextBookmark */;
+ 61A11A261168546800359010 /* PBXTextBookmark */ = 61A11A261168546800359010 /* PBXTextBookmark */;
+ 61A11A291168549200359010 /* PBXTextBookmark */ = 61A11A291168549200359010 /* PBXTextBookmark */;
+ 61A11A2A1168549200359010 /* PBXTextBookmark */ = 61A11A2A1168549200359010 /* PBXTextBookmark */;
+ 61A11A2B1168549200359010 /* PBXTextBookmark */ = 61A11A2B1168549200359010 /* PBXTextBookmark */;
+ 61A11A2C1168549200359010 /* PBXTextBookmark */ = 61A11A2C1168549200359010 /* PBXTextBookmark */;
+ 61A11A2D1168549200359010 /* PBXTextBookmark */ = 61A11A2D1168549200359010 /* PBXTextBookmark */;
+ 61A11A2E1168549200359010 /* PBXTextBookmark */ = 61A11A2E1168549200359010 /* PBXTextBookmark */;
+ 61A11A2F1168549200359010 /* PBXTextBookmark */ = 61A11A2F1168549200359010 /* PBXTextBookmark */;
+ 61A11A301168549200359010 /* PBXTextBookmark */ = 61A11A301168549200359010 /* PBXTextBookmark */;
+ 61A11A431168569A00359010 /* PBXTextBookmark */ = 61A11A431168569A00359010 /* PBXTextBookmark */;
+ 61A11A441168569A00359010 /* PBXTextBookmark */ = 61A11A441168569A00359010 /* PBXTextBookmark */;
+ 61A11A451168569A00359010 /* PBXTextBookmark */ = 61A11A451168569A00359010 /* PBXTextBookmark */;
+ 61A11A461168569A00359010 /* PBXTextBookmark */ = 61A11A461168569A00359010 /* PBXTextBookmark */;
+ 61A11A471168569A00359010 /* PBXTextBookmark */ = 61A11A471168569A00359010 /* PBXTextBookmark */;
+ 61A11A481168569A00359010 /* PBXTextBookmark */ = 61A11A481168569A00359010 /* PBXTextBookmark */;
+ 61A11A491168569A00359010 /* PBXTextBookmark */ = 61A11A491168569A00359010 /* PBXTextBookmark */;
+ 61A11A5B1168D33A00359010 /* PBXTextBookmark */ = 61A11A5B1168D33A00359010 /* PBXTextBookmark */;
+ 61A11A5E1168D33A00359010 /* PBXTextBookmark */ = 61A11A5E1168D33A00359010 /* PBXTextBookmark */;
+ 61A11A5F1168D33A00359010 /* PBXTextBookmark */ = 61A11A5F1168D33A00359010 /* PBXTextBookmark */;
+ 61A11A601168D33A00359010 /* PBXTextBookmark */ = 61A11A601168D33A00359010 /* PBXTextBookmark */;
+ 61A11A611168D33A00359010 /* PBXTextBookmark */ = 61A11A611168D33A00359010 /* PBXTextBookmark */;
+ 61A11A621168D33A00359010 /* PBXTextBookmark */ = 61A11A621168D33A00359010 /* PBXTextBookmark */;
+ 61A11A631168D33A00359010 /* PBXTextBookmark */ = 61A11A631168D33A00359010 /* PBXTextBookmark */;
+ 61A11A641168D33A00359010 /* PBXTextBookmark */ = 61A11A641168D33A00359010 /* PBXTextBookmark */;
+ 61A11A691168D37B00359010 /* PBXTextBookmark */ = 61A11A691168D37B00359010 /* PBXTextBookmark */;
+ 61A11A6A1168D37B00359010 /* PBXTextBookmark */ = 61A11A6A1168D37B00359010 /* PBXTextBookmark */;
+ 61A11A6B1168D37B00359010 /* PBXTextBookmark */ = 61A11A6B1168D37B00359010 /* PBXTextBookmark */;
+ 61A11A6C1168D37B00359010 /* PBXTextBookmark */ = 61A11A6C1168D37B00359010 /* PBXTextBookmark */;
+ 61A11A6D1168D37B00359010 /* PBXTextBookmark */ = 61A11A6D1168D37B00359010 /* PBXTextBookmark */;
+ 61A11A6E1168D37B00359010 /* PBXTextBookmark */ = 61A11A6E1168D37B00359010 /* PBXTextBookmark */;
+ 61A11A6F1168D37B00359010 /* PBXTextBookmark */ = 61A11A6F1168D37B00359010 /* PBXTextBookmark */;
+ 61A11A771168D3D600359010 /* PBXTextBookmark */ = 61A11A771168D3D600359010 /* PBXTextBookmark */;
+ 61A11A781168D3D600359010 /* PBXTextBookmark */ = 61A11A781168D3D600359010 /* PBXTextBookmark */;
+ 61A11A791168D3D600359010 /* PBXTextBookmark */ = 61A11A791168D3D600359010 /* PBXTextBookmark */;
+ 61A11A7A1168D3D600359010 /* PBXTextBookmark */ = 61A11A7A1168D3D600359010 /* PBXTextBookmark */;
+ 61A11A7B1168D3D600359010 /* PBXTextBookmark */ = 61A11A7B1168D3D600359010 /* PBXTextBookmark */;
+ 61A11A7C1168D3D600359010 /* PBXTextBookmark */ = 61A11A7C1168D3D600359010 /* PBXTextBookmark */;
+ 61A11A801168D3EF00359010 /* PBXTextBookmark */ = 61A11A801168D3EF00359010 /* PBXTextBookmark */;
+ 61A11A811168D3EF00359010 /* PBXTextBookmark */ = 61A11A811168D3EF00359010 /* PBXTextBookmark */;
+ 61A11A821168D3EF00359010 /* PBXTextBookmark */ = 61A11A821168D3EF00359010 /* PBXTextBookmark */;
+ 61A11A831168D3EF00359010 /* PBXTextBookmark */ = 61A11A831168D3EF00359010 /* PBXTextBookmark */;
+ 61A11A841168D3EF00359010 /* PBXTextBookmark */ = 61A11A841168D3EF00359010 /* PBXTextBookmark */;
+ 61A11A851168D3EF00359010 /* PBXTextBookmark */ = 61A11A851168D3EF00359010 /* PBXTextBookmark */;
+ 61A11A891168D57100359010 /* PBXTextBookmark */ = 61A11A891168D57100359010 /* PBXTextBookmark */;
+ 61A11A8A1168D57100359010 /* PBXTextBookmark */ = 61A11A8A1168D57100359010 /* PBXTextBookmark */;
+ 61A11A8B1168D57100359010 /* PBXTextBookmark */ = 61A11A8B1168D57100359010 /* PBXTextBookmark */;
+ 61A11A8C1168D57100359010 /* PBXTextBookmark */ = 61A11A8C1168D57100359010 /* PBXTextBookmark */;
+ 61A11A8D1168D57100359010 /* PBXTextBookmark */ = 61A11A8D1168D57100359010 /* PBXTextBookmark */;
+ 61A11A8E1168D57100359010 /* PBXTextBookmark */ = 61A11A8E1168D57100359010 /* PBXTextBookmark */;
+ 61A11A8F1168D57100359010 /* PBXTextBookmark */ = 61A11A8F1168D57100359010 /* PBXTextBookmark */;
+ 61A11A901168D57100359010 /* PBXTextBookmark */ = 61A11A901168D57100359010 /* PBXTextBookmark */;
+ 61A11A951168D5A000359010 /* PBXTextBookmark */ = 61A11A951168D5A000359010 /* PBXTextBookmark */;
+ 61A11A961168D5A000359010 /* PBXTextBookmark */ = 61A11A961168D5A000359010 /* PBXTextBookmark */;
+ 61A11A971168D5A000359010 /* PBXTextBookmark */ = 61A11A971168D5A000359010 /* PBXTextBookmark */;
+ 61A11A9A1168D5A000359010 /* PBXTextBookmark */ = 61A11A9A1168D5A000359010 /* PBXTextBookmark */;
+ 61A11A9B1168D5A000359010 /* PBXTextBookmark */ = 61A11A9B1168D5A000359010 /* PBXTextBookmark */;
+ 61A11A9C1168D5A000359010 /* PBXTextBookmark */ = 61A11A9C1168D5A000359010 /* PBXTextBookmark */;
+ 61A11A9D1168D5A000359010 /* PBXTextBookmark */ = 61A11A9D1168D5A000359010 /* PBXTextBookmark */;
+ 61A11A9E1168D5A000359010 /* PBXTextBookmark */ = 61A11A9E1168D5A000359010 /* PBXTextBookmark */;
+ 61A11A9F1168D5A000359010 /* PBXTextBookmark */ = 61A11A9F1168D5A000359010 /* PBXTextBookmark */;
+ 61A11AA41168D71300359010 /* PBXTextBookmark */ = 61A11AA41168D71300359010 /* PBXTextBookmark */;
+ 61A11AA51168D71300359010 /* PBXTextBookmark */ = 61A11AA51168D71300359010 /* PBXTextBookmark */;
+ 61A11AA81168D71300359010 /* PBXTextBookmark */ = 61A11AA81168D71300359010 /* PBXTextBookmark */;
+ 61A11AAA1168D71300359010 /* PBXTextBookmark */ = 61A11AAA1168D71300359010 /* PBXTextBookmark */;
+ 61A11AAC1168D71300359010 /* PBXTextBookmark */ = 61A11AAC1168D71300359010 /* PBXTextBookmark */;
+ 61A11AAD1168D71300359010 /* PBXTextBookmark */ = 61A11AAD1168D71300359010 /* PBXTextBookmark */;
+ 61A11AAE1168D71300359010 /* PBXTextBookmark */ = 61A11AAE1168D71300359010 /* PBXTextBookmark */;
+ 61A11AAF1168D71300359010 /* PBXTextBookmark */ = 61A11AAF1168D71300359010 /* PBXTextBookmark */;
+ 61A11AB01168D71300359010 /* PBXTextBookmark */ = 61A11AB01168D71300359010 /* PBXTextBookmark */;
+ 61A11AB51168D77400359010 /* PBXTextBookmark */ = 61A11AB51168D77400359010 /* PBXTextBookmark */;
+ 61A11AB61168D77400359010 /* PBXTextBookmark */ = 61A11AB61168D77400359010 /* PBXTextBookmark */;
+ 61A11AB71168D77400359010 /* PBXTextBookmark */ = 61A11AB71168D77400359010 /* PBXTextBookmark */;
+ 61A11AB81168D77400359010 /* PBXTextBookmark */ = 61A11AB81168D77400359010 /* PBXTextBookmark */;
+ 61A11AB91168D77400359010 /* PBXTextBookmark */ = 61A11AB91168D77400359010 /* PBXTextBookmark */;
+ 61A11ABA1168D77400359010 /* PBXTextBookmark */ = 61A11ABA1168D77400359010 /* PBXTextBookmark */;
+ 61A11ABB1168D77400359010 /* PBXTextBookmark */ = 61A11ABB1168D77400359010 /* PBXTextBookmark */;
+ 61A11AC41168DA4200359010 /* PBXTextBookmark */ = 61A11AC41168DA4200359010 /* PBXTextBookmark */;
+ 61A11AC51168DA4200359010 /* PBXTextBookmark */ = 61A11AC51168DA4200359010 /* PBXTextBookmark */;
+ 61A11AC61168DA4200359010 /* PBXTextBookmark */ = 61A11AC61168DA4200359010 /* PBXTextBookmark */;
+ 61A11ACA1168DAB700359010 /* PBXTextBookmark */ = 61A11ACA1168DAB700359010 /* PBXTextBookmark */;
+ 61A11ACB1168DAB700359010 /* PBXTextBookmark */ = 61A11ACB1168DAB700359010 /* PBXTextBookmark */;
+ 61A11ACC1168DAB700359010 /* PBXTextBookmark */ = 61A11ACC1168DAB700359010 /* PBXTextBookmark */;
+ 61A11AD11168DB2C00359010 /* PBXTextBookmark */ = 61A11AD11168DB2C00359010 /* PBXTextBookmark */;
+ 61A11AD21168DB2C00359010 /* PBXTextBookmark */ = 61A11AD21168DB2C00359010 /* PBXTextBookmark */;
+ 61A11AD31168DB2C00359010 /* PBXTextBookmark */ = 61A11AD31168DB2C00359010 /* PBXTextBookmark */;
+ 61A11ADB1168DB5000359010 /* PBXTextBookmark */ = 61A11ADB1168DB5000359010 /* PBXTextBookmark */;
+ 61A11ADC1168DB5000359010 /* PBXTextBookmark */ = 61A11ADC1168DB5000359010 /* PBXTextBookmark */;
+ 61A11ADD1168DB5000359010 /* PBXTextBookmark */ = 61A11ADD1168DB5000359010 /* PBXTextBookmark */;
+ 61A11AE51168DC9A00359010 /* PBXTextBookmark */ = 61A11AE51168DC9A00359010 /* PBXTextBookmark */;
+ 61A11AE61168DC9A00359010 /* PBXTextBookmark */ = 61A11AE61168DC9A00359010 /* PBXTextBookmark */;
+ 61A11AE71168DC9A00359010 /* PBXTextBookmark */ = 61A11AE71168DC9A00359010 /* PBXTextBookmark */;
+ 61A11AE81169054200359010 /* PBXBookmark */ = 61A11AE81169054200359010 /* PBXBookmark */;
+ 61A11AEE1169069300359010 /* PBXBookmark */ = 61A11AEE1169069300359010 /* PBXBookmark */;
+ 61A11B0711691E2400359010 /* PBXTextBookmark */ = 61A11B0711691E2400359010 /* PBXTextBookmark */;
+ 61A11B0811691E2400359010 /* PBXTextBookmark */ = 61A11B0811691E2400359010 /* PBXTextBookmark */;
+ 61A11B0B11691E2400359010 /* PBXTextBookmark */ = 61A11B0B11691E2400359010 /* PBXTextBookmark */;
+ 61A11B0E11691E2400359010 /* PBXTextBookmark */ = 61A11B0E11691E2400359010 /* PBXTextBookmark */;
+ 61A11B0F11691E2400359010 /* PBXTextBookmark */ = 61A11B0F11691E2400359010 /* PBXTextBookmark */;
+ 61A11B1011691E2400359010 /* PBXTextBookmark */ = 61A11B1011691E2400359010 /* PBXTextBookmark */;
+ 61A11B1111691E2400359010 /* PBXTextBookmark */ = 61A11B1111691E2400359010 /* PBXTextBookmark */;
+ 61A11B1411691E2400359010 /* PBXTextBookmark */ = 61A11B1411691E2400359010 /* PBXTextBookmark */;
+ 61A11B1511691E5F00359010 /* PBXTextBookmark */ = 61A11B1511691E5F00359010 /* PBXTextBookmark */;
+ 61A11B1611691E5F00359010 /* PBXTextBookmark */ = 61A11B1611691E5F00359010 /* PBXTextBookmark */;
+ 61A11B1711691E5F00359010 /* PBXTextBookmark */ = 61A11B1711691E5F00359010 /* PBXTextBookmark */;
+ 61A11B1811691E5F00359010 /* PBXTextBookmark */ = 61A11B1811691E5F00359010 /* PBXTextBookmark */;
+ 61A11B1911691E5F00359010 /* PBXTextBookmark */ = 61A11B1911691E5F00359010 /* PBXTextBookmark */;
+ 61A11B1A11691E6700359010 /* PBXTextBookmark */ = 61A11B1A11691E6700359010 /* PBXTextBookmark */;
+ 61A11B1B11691E6700359010 /* PBXTextBookmark */ = 61A11B1B11691E6700359010 /* PBXTextBookmark */;
+ 61A11B1C11691E6700359010 /* PBXTextBookmark */ = 61A11B1C11691E6700359010 /* PBXTextBookmark */;
+ 61A11B1D11691E6700359010 /* PBXTextBookmark */ = 61A11B1D11691E6700359010 /* PBXTextBookmark */;
+ 61A11B1E11691E6700359010 /* PBXTextBookmark */ = 61A11B1E11691E6700359010 /* PBXTextBookmark */;
+ 61A11B2111691EE400359010 /* PBXTextBookmark */ = 61A11B2111691EE400359010 /* PBXTextBookmark */;
+ 61A11B2211691EE400359010 /* PBXTextBookmark */ = 61A11B2211691EE400359010 /* PBXTextBookmark */;
+ 61A11B2311691EE400359010 /* PBXTextBookmark */ = 61A11B2311691EE400359010 /* PBXTextBookmark */;
+ 61A11B2411691EE400359010 /* PBXTextBookmark */ = 61A11B2411691EE400359010 /* PBXTextBookmark */;
+ 61A11B2511691EE400359010 /* PBXTextBookmark */ = 61A11B2511691EE400359010 /* PBXTextBookmark */;
+ 61A11B2611691EF100359010 /* XCBuildMessageTextBookmark */ = 61A11B2611691EF100359010 /* XCBuildMessageTextBookmark */;
+ 61A11B2911691EFE00359010 /* XCBuildMessageTextBookmark */ = 61A11B2911691EFE00359010 /* XCBuildMessageTextBookmark */;
+ 61A11B2C11691F0B00359010 /* PBXTextBookmark */ = 61A11B2C11691F0B00359010 /* PBXTextBookmark */;
+ 61A11B2D11691F0B00359010 /* PBXTextBookmark */ = 61A11B2D11691F0B00359010 /* PBXTextBookmark */;
+ 61A11B2E11691F0B00359010 /* PBXTextBookmark */ = 61A11B2E11691F0B00359010 /* PBXTextBookmark */;
+ 61A11B2F11691F0B00359010 /* PBXTextBookmark */ = 61A11B2F11691F0B00359010 /* PBXTextBookmark */;
+ 61A11B3011691F0B00359010 /* PBXTextBookmark */ = 61A11B3011691F0B00359010 /* PBXTextBookmark */;
+ 61A11B451169210B00359010 /* PBXTextBookmark */ = 61A11B451169210B00359010 /* PBXTextBookmark */;
+ 61A11B481169210B00359010 /* PBXTextBookmark */ = 61A11B481169210B00359010 /* PBXTextBookmark */;
+ 61A11B491169210B00359010 /* PBXTextBookmark */ = 61A11B491169210B00359010 /* PBXTextBookmark */;
+ 61A11B4A1169210B00359010 /* PBXTextBookmark */ = 61A11B4A1169210B00359010 /* PBXTextBookmark */;
+ 61A11B4B1169210B00359010 /* PBXTextBookmark */ = 61A11B4B1169210B00359010 /* PBXTextBookmark */;
+ 61A11B4C1169210B00359010 /* PBXTextBookmark */ = 61A11B4C1169210B00359010 /* PBXTextBookmark */;
+ 61A11B4D1169210B00359010 /* PBXTextBookmark */ = 61A11B4D1169210B00359010 /* PBXTextBookmark */;
+ 61A11B54116922FF00359010 /* PBXBookmark */ = 61A11B54116922FF00359010 /* PBXBookmark */;
+ 61A11B55116922FF00359010 /* PBXTextBookmark */ = 61A11B55116922FF00359010 /* PBXTextBookmark */;
+ 61A11B56116922FF00359010 /* PBXTextBookmark */ = 61A11B56116922FF00359010 /* PBXTextBookmark */;
+ 61A11B5A1169235C00359010 /* PBXBookmark */ = 61A11B5A1169235C00359010 /* PBXBookmark */;
+ 61A11B5B1169235C00359010 /* PBXTextBookmark */ = 61A11B5B1169235C00359010 /* PBXTextBookmark */;
+ 61A11B5C1169235C00359010 /* PBXTextBookmark */ = 61A11B5C1169235C00359010 /* PBXTextBookmark */;
+ 61A11B5D1169240500359010 /* PBXBookmark */ = 61A11B5D1169240500359010 /* PBXBookmark */;
+ 61A11B5E1169240500359010 /* PBXTextBookmark */ = 61A11B5E1169240500359010 /* PBXTextBookmark */;
+ 61A11B5F1169240500359010 /* PBXTextBookmark */ = 61A11B5F1169240500359010 /* PBXTextBookmark */;
+ 61CCBE60116135FF00833FE8 = 61CCBE60116135FF00833FE8 /* PBXTextBookmark */;
+ 61CCBF1E116162CA00833FE8 = 61CCBF1E116162CA00833FE8 /* PBXTextBookmark */;
+ 61CCBF451161637F00833FE8 = 61CCBF451161637F00833FE8 /* PBXTextBookmark */;
+ 61CCBF461161637F00833FE8 = 61CCBF461161637F00833FE8 /* PBXTextBookmark */;
+ 61CCBF471161637F00833FE8 = 61CCBF471161637F00833FE8 /* PBXTextBookmark */;
+ 61CCBF791161657400833FE8 = 61CCBF791161657400833FE8 /* PBXTextBookmark */;
+ 61CCBF7B1161657400833FE8 = 61CCBF7B1161657400833FE8 /* PBXTextBookmark */;
+ 61CCBF7C1161657400833FE8 = 61CCBF7C1161657400833FE8 /* PBXTextBookmark */;
+ 61CCBF7E1161657400833FE8 = 61CCBF7E1161657400833FE8 /* PBXTextBookmark */;
+ 61CCBF7F1161657400833FE8 = 61CCBF7F1161657400833FE8 /* PBXTextBookmark */;
+ 61CCBFD11161833800833FE8 = 61CCBFD11161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD21161833800833FE8 = 61CCBFD21161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD31161833800833FE8 = 61CCBFD31161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD41161833800833FE8 = 61CCBFD41161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD51161833800833FE8 = 61CCBFD51161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD71161833800833FE8 = 61CCBFD71161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD81161833800833FE8 = 61CCBFD81161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFD91161833800833FE8 = 61CCBFD91161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFDA1161833800833FE8 = 61CCBFDA1161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFDB1161833800833FE8 = 61CCBFDB1161833800833FE8 /* PBXTextBookmark */;
+ 61CCBFDC1161833800833FE8 = 61CCBFDC1161833800833FE8 /* PBXTextBookmark */;
+ 61CE23E7115E49560098C467 = 61CE23E7115E49560098C467 /* PBXTextBookmark */;
+ 61CE23FF115E4B290098C467 = 61CE23FF115E4B290098C467 /* PBXBookmark */;
+ 61CE2514115E74CC0098C467 = 61CE2514115E74CC0098C467 /* PBXBookmark */;
+ 61CE2515115E74CC0098C467 = 61CE2515115E74CC0098C467 /* PBXTextBookmark */;
+ 61CE251F115E75A70098C467 = 61CE251F115E75A70098C467 /* PBXBookmark */;
+ 61CE2577115E78900098C467 = 61CE2577115E78900098C467 /* PBXTextBookmark */;
+ 61CE2578115E78900098C467 = 61CE2578115E78900098C467 /* PBXTextBookmark */;
+ 61CE25B4115E7C940098C467 = 61CE25B4115E7C940098C467 /* PBXTextBookmark */;
+ 61E2F0811156B170002D33C1 = 61E2F0811156B170002D33C1 /* PBXTextBookmark */;
};
sourceControlManager = 617987DF114AA2EB00BA94A9 /* Source Control */;
userBuildSettings = {
@@ -241,44 +500,6 @@
sepNavVisRange = "{106, 119}";
};
};
- 6100DA6E115446B000F455E0 /* iHedgewars */ = {
- activeExec = 0;
- executables = (
- 6100DAD3115446B000F455E0 /* iHedgewars */,
- );
- };
- 6100DAD3115446B000F455E0 /* iHedgewars */ = {
- isa = PBXExecutable;
- activeArgIndices = (
- );
- argumentStrings = (
- );
- autoAttachOnCrash = 1;
- breakpointsEnabled = 1;
- configStateDict = {
- };
- customDataFormattersEnabled = 1;
- dataTipCustomDataFormattersEnabled = 1;
- dataTipShowTypeColumn = 1;
- dataTipSortType = 0;
- debuggerPlugin = GDBDebugging;
- disassemblyDisplayState = 0;
- dylibVariantSuffix = "";
- enableDebugStr = 1;
- environmentEntries = (
- );
- executableSystemSymbolLevel = 0;
- executableUserSymbolLevel = 0;
- libgmallocEnabled = 0;
- name = iHedgewars;
- savedGlobals = {
- };
- showTypeColumn = 0;
- sourceDirectories = (
- );
- variableFormatDictionary = {
- };
- };
611FD81D1155111700C2203D /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 6179885B114AA48A00BA94A9 /* SDL_image.h */;
@@ -401,6 +622,13 @@
vrLen = 295;
vrLoc = 763;
};
+ 611FDB631155BFFF00C2203D /* Default.png */ = {
+ isa = PBXFileReference;
+ lastKnownFileType = image.png;
+ name = Default.png;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/Default.png;
+ sourceTree = "<absolute>";
+ };
611FDB6B1155C0B300C2203D /* PBXBookmark */ = {
isa = PBXBookmark;
fRef = 611FDB631155BFFF00C2203D /* Default.png */;
@@ -608,6 +836,12 @@
vrLoc = 0;
};
615F159C1166216A002444F2 /* TeamSettingsViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = TeamSettingsViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/TeamSettingsViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {836, 565}}";
sepNavSelRange = "{328, 0}";
@@ -615,14 +849,26 @@
};
};
615F159D1166216A002444F2 /* TeamSettingsViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = TeamSettingsViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/TeamSettingsViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 2145}}";
- sepNavSelRange = "{4393, 0}";
- sepNavVisRange = "{3602, 1564}";
+ sepNavIntBoundsRect = "{{0, 0}, {810, 2093}}";
+ sepNavSelRange = "{939, 0}";
+ sepNavVisRange = "{279, 839}";
sepNavWindowFrame = "{{366, 119}, {895, 693}}";
};
};
615F15AC116628CC002444F2 /* SingleTeamViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = SingleTeamViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/SingleTeamViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {836, 542}}";
sepNavSelRange = "{325, 24}";
@@ -630,10 +876,16 @@
};
};
615F15AD116628CC002444F2 /* SingleTeamViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = SingleTeamViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/SingleTeamViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1048, 2704}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1048, 2782}}";
sepNavSelRange = "{5604, 0}";
- sepNavVisRange = "{4612, 1359}";
+ sepNavVisRange = "{4663, 1308}";
sepNavWindowFrame = "{{129, 279}, {895, 693}}";
};
};
@@ -728,6 +980,12 @@
vrLoc = 53;
};
615F16DA11668358002444F2 /* HogHatViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = HogHatViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/HogHatViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {836, 565}}";
sepNavSelRange = "{258, 0}";
@@ -735,11 +993,17 @@
};
};
615F16DB11668358002444F2 /* HogHatViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = HogHatViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/HogHatViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavFolds = "{\n c = (\n {\n l = DetailViewController;\n r = \"{4910, 24}\";\n s = 1;\n },\n {\n l = DetailViewController;\n r = \"{4961, 24}\";\n s = 1;\n },\n {\n l = \"Nib name\";\n r = \"{5011, 12}\";\n s = 1;\n }\n );\n r = \"{0, 5820}\";\n s = 0;\n}";
- sepNavIntBoundsRect = "{{0, 0}, {1048, 2626}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1048, 2418}}";
sepNavSelRange = "{5516, 0}";
- sepNavVisRange = "{4678, 550}";
+ sepNavVisRange = "{3593, 651}";
sepNavWindowFrame = "{{515, 111}, {895, 693}}";
};
};
@@ -784,20 +1048,18 @@
vrLoc = 4626;
};
615F19841166A6AB002444F2 /* untitled.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = untitled.h;
+ path = /Users/vittorio/hedgewars/trunk/project_files/HedgewarsMobile/untitled.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {532, 182}}";
sepNavSelRange = "{0, 0}";
sepNavVisRange = "{0, 41}";
};
};
- 615F19851166A6AB002444F2 /* untitled.m */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1146, 754}}";
- sepNavSelRange = "{360, 219}";
- sepNavVisRange = "{0, 1042}";
- sepNavWindowFrame = "{{222, 291}, {895, 693}}";
- };
- };
615F198C1166A71E002444F2 /* PBXBookmark */ = {
isa = PBXBookmark;
fRef = 611FD9CF1155A40700C2203D /* NetworkPlay.png */;
@@ -1255,7 +1517,7 @@
argumentStrings = (
);
autoAttachOnCrash = 1;
- breakpointsEnabled = 0;
+ breakpointsEnabled = 1;
configStateDict = {
};
customDataFormattersEnabled = 1;
@@ -1344,9 +1606,9 @@
};
617987EB114AA34C00BA94A9 /* options.inc */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {532, 572}}";
+ sepNavIntBoundsRect = "{{0, 0}, {862, 572}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 49}";
+ sepNavVisRange = "{317, 874}";
sepNavWindowFrame = "{{864, 517}, {921, 605}}";
};
};
@@ -1535,9 +1797,9 @@
};
61798805114AA34C00BA94A9 /* uMisc.pas */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1034, 9659}}";
- sepNavSelRange = "{19704, 6}";
- sepNavVisRange = "{18808, 1596}";
+ sepNavIntBoundsRect = "{{0, 0}, {1034, 10127}}";
+ sepNavSelRange = "{16907, 0}";
+ sepNavVisRange = "{15663, 1986}";
sepNavWindowFrame = "{{84, 143}, {938, 967}}";
};
};
@@ -1615,9 +1877,10 @@
};
61798852114AA44900BA94A9 /* config.inc */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {620, 286}}";
+ sepNavIntBoundsRect = "{{0, 0}, {999, 664}}";
sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{0, 874}";
+ sepNavVisRange = "{0, 871}";
+ sepNavWindowFrame = "{{753, -247}, {1058, 792}}";
};
};
61798856114AA48A00BA94A9 /* CGPointUtils.c */ = {
@@ -1666,18 +1929,18 @@
};
61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1004, 611}}";
- sepNavSelRange = "{1430, 0}";
- sepNavVisRange = "{1109, 510}";
- sepNavWindowFrame = "{{156, 236}, {803, 674}}";
+ sepNavIntBoundsRect = "{{0, 0}, {744, 754}}";
+ sepNavSelRange = "{1258, 0}";
+ sepNavVisRange = "{745, 1228}";
+ sepNavWindowFrame = "{{471, 203}, {803, 674}}";
};
};
61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {796, 1898}}";
- sepNavSelRange = "{3476, 0}";
- sepNavVisRange = "{1912, 1246}";
- sepNavWindowFrame = "{{156, 236}, {803, 674}}";
+ sepNavIntBoundsRect = "{{0, 0}, {845, 2093}}";
+ sepNavSelRange = "{2443, 57}";
+ sepNavVisRange = "{1935, 1195}";
+ sepNavWindowFrame = "{{567, 167}, {803, 674}}";
};
};
61798867114AA4AA00BA94A9 /* SDL_uikitwindow.h */ = {
@@ -1698,20 +1961,26 @@
6179886E114AA4D000BA94A9 /* MainMenuViewController.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {716, 495}}";
- sepNavSelRange = "{354, 0}";
- sepNavVisRange = "{0, 692}";
- sepNavWindowFrame = "{{525, 308}, {775, 623}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 515}";
+ sepNavWindowFrame = "{{852, 335}, {775, 623}}";
};
};
6179886F114AA4D000BA94A9 /* MainMenuViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {901, 2431}}";
- sepNavSelRange = "{1601, 0}";
- sepNavVisRange = "{1080, 935}";
- sepNavWindowFrame = "{{525, 308}, {775, 623}}";
+ sepNavIntBoundsRect = "{{0, 0}, {999, 2600}}";
+ sepNavSelRange = "{1076, 0}";
+ sepNavVisRange = "{787, 2320}";
+ sepNavWindowFrame = "{{260, 136}, {1058, 792}}";
};
};
61798871114AA4D000BA94A9 /* SchemeEditViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = SchemeEditViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/SchemeEditViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {719, 273}}";
sepNavSelRange = "{0, 0}";
@@ -1719,6 +1988,12 @@
};
};
61798872114AA4D000BA94A9 /* SchemeEditViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = SchemeEditViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/SchemeEditViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1146, 936}}";
sepNavSelRange = "{1129, 0}";
@@ -1727,6 +2002,12 @@
};
};
61798874114AA4D000BA94A9 /* SettingsViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = SettingsViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/SettingsViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {551, 494}}";
sepNavSelRange = "{0, 0}";
@@ -1735,6 +2016,12 @@
};
};
61798875114AA4D000BA94A9 /* SettingsViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = SettingsViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/SettingsViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {901, 4173}}";
sepNavSelRange = "{6297, 0}";
@@ -1743,6 +2030,12 @@
};
};
61798877114AA4D000BA94A9 /* TeamEditViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = TeamEditViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/TeamEditViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {532, 195}}";
sepNavSelRange = "{0, 0}";
@@ -1750,6 +2043,12 @@
};
};
61798878114AA4D000BA94A9 /* TeamEditViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = TeamEditViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/TeamEditViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1146, 816}}";
sepNavSelRange = "{1057, 0}";
@@ -1758,6 +2057,12 @@
};
};
6179887A114AA4D000BA94A9 /* TeamMenuViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = TeamMenuViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/TeamMenuViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {532, 195}}";
sepNavSelRange = "{0, 0}";
@@ -1765,6 +2070,12 @@
};
};
6179887B114AA4D000BA94A9 /* TeamMenuViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = TeamMenuViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/TeamMenuViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {532, 806}}";
sepNavSelRange = "{0, 0}";
@@ -1798,6 +2109,11 @@
vrLen = 874;
vrLoc = 0;
};
+ 61798A1F114ADD2600BA94A9 /* backgroundCenter.png */ = {
+ uiCtxt = {
+ sepNavWindowFrame = "{{38, 360}, {1058, 792}}";
+ };
+ };
6179928B114AE0C800BA94A9 /* UpdateDataFolder */ = {
activeExec = 0;
};
@@ -1809,6 +2125,11 @@
isa = PBXBookmark;
fRef = 61798A21114ADD2600BA94A9 /* backgroundRight.png */;
};
+ 6179934E114BD5AB00BA94A9 /* menuCorner.png */ = {
+ uiCtxt = {
+ sepNavWindowFrame = "{{15, 381}, {1058, 792}}";
+ };
+ };
6179937111501D7800BA94A9 /* PBXBookmark */ = {
isa = PBXBookmark;
fRef = 61798A1E114ADD2600BA94A9 /* backgroundBottom.png */;
@@ -1845,6 +2166,2650 @@
rLen = 0;
rLoc = 9223372036854775808;
};
+ 61A117421168280200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 615F16DB11668358002444F2 /* HogHatViewController.m */;
+ name = "HogHatViewController.m: 177";
+ rLen = 0;
+ rLoc = 5573;
+ rType = 0;
+ vrLen = 651;
+ vrLoc = 3593;
+ };
+ 61A117431168280200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 13";
+ rLen = 0;
+ rLoc = 267;
+ rType = 0;
+ vrLen = 764;
+ vrLoc = 1617;
+ };
+ 61A117461168280200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 615F15AD116628CC002444F2 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 178";
+ rLen = 0;
+ rLoc = 5604;
+ rType = 0;
+ vrLen = 1306;
+ vrLoc = 4663;
+ };
+ 61A118231168323000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 13";
+ rLen = 0;
+ rLoc = 267;
+ rType = 0;
+ vrLen = 798;
+ vrLoc = 1583;
+ };
+ 61A118241168323000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 615F159D1166216A002444F2 /* TeamSettingsViewController.m */;
+ name = "TeamSettingsViewController.m: 29";
+ rLen = 0;
+ rLoc = 939;
+ rType = 0;
+ vrLen = 839;
+ vrLoc = 279;
+ };
+ 61A118251168323000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 31";
+ rLen = 0;
+ rLoc = 1096;
+ rType = 0;
+ vrLen = 1283;
+ vrLoc = 753;
+ };
+ 61A118261168323000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */;
+ name = "SplitViewRootController.h: 14";
+ rLen = 0;
+ rLoc = 299;
+ rType = 0;
+ vrLen = 442;
+ vrLoc = 0;
+ };
+ 61A118291168323000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 15";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 692;
+ vrLoc = 0;
+ };
+ 61A1182A1168323000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 22";
+ rLen = 0;
+ rLoc = 242;
+ rType = 0;
+ vrLen = 1275;
+ vrLoc = 0;
+ };
+ 61A1182B1168323000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 158";
+ rLen = 0;
+ rLoc = 242;
+ rType = 0;
+ vrLen = 1418;
+ vrLoc = 4322;
+ };
+ 61A1182F1168325800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */;
+ name = "SplitViewRootController.h: 14";
+ rLen = 0;
+ rLoc = 299;
+ rType = 0;
+ vrLen = 442;
+ vrLoc = 0;
+ };
+ 61A118301168325800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 158";
+ rLen = 0;
+ rLoc = 242;
+ rType = 0;
+ vrLen = 1418;
+ vrLoc = 4322;
+ };
+ 61A118381168340700359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61CE24EB115E71C20098C467 /* OverlayViewController.m */;
+ };
+ 61A1183B116834FC00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */;
+ name = "SplitViewRootController.h: 14";
+ rLen = 0;
+ rLoc = 299;
+ rType = 0;
+ vrLen = 606;
+ vrLoc = 0;
+ };
+ 61A1183E116834FC00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE24EB115E71C20098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 44";
+ rLen = 0;
+ rLoc = 1489;
+ rType = 0;
+ vrLen = 2155;
+ vrLoc = 0;
+ };
+ 61A1183F116834FC00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 158";
+ rLen = 0;
+ rLoc = 242;
+ rType = 0;
+ vrLen = 1418;
+ vrLoc = 4322;
+ };
+ 61A11844116836A600359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ };
+ 61A1186B1168391A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */;
+ name = "SplitViewRootController.h: 14";
+ rLen = 0;
+ rLoc = 299;
+ rType = 0;
+ vrLen = 606;
+ vrLoc = 0;
+ };
+ 61A1186C1168391A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186D1168391A00359010 /* MainMenuViewController.h */;
+ rLen = 0;
+ rLoc = 9223372036854776071;
+ rType = 0;
+ };
+ 61A1186D1168391A00359010 /* MainMenuViewController.h */ = {
+ isa = PBXFileReference;
+ lastKnownFileType = sourcecode.c.h;
+ name = MainMenuViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/MainMenuViewController.h;
+ sourceTree = "<absolute>";
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {551, 364}}";
+ sepNavSelRange = "{691, 0}";
+ sepNavVisRange = "{148, 539}";
+ };
+ };
+ 61A1186E1168391A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 539;
+ vrLoc = 148;
+ };
+ 61A1186F1168391A00359010 /* MainMenuViewController.h */ = {
+ isa = PBXFileReference;
+ lastKnownFileType = sourcecode.c.h;
+ name = MainMenuViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/MainMenuViewController.h;
+ sourceTree = "<absolute>";
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {551, 364}}";
+ sepNavSelRange = "{691, 0}";
+ sepNavVisRange = "{148, 115}";
+ };
+ };
+ 61A118721168391A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 268";
+ rLen = 0;
+ rLoc = 8751;
+ rType = 0;
+ vrLen = 2152;
+ vrLoc = 0;
+ };
+ 61A11875116839F400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186D1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 543;
+ vrLoc = 148;
+ };
+ 61A11876116839F400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 268";
+ rLen = 0;
+ rLoc = 8751;
+ rType = 0;
+ vrLen = 2155;
+ vrLoc = 0;
+ };
+ 61A118BB11683B4100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186D1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 539;
+ vrLoc = 148;
+ };
+ 61A118BC11683B4100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 268";
+ rLen = 0;
+ rLoc = 8751;
+ rType = 0;
+ vrLen = 2152;
+ vrLoc = 0;
+ };
+ 61A118C511683BBB00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186D1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 539;
+ vrLoc = 148;
+ };
+ 61A118C611683BBB00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 268";
+ rLen = 0;
+ rLoc = 8751;
+ rType = 0;
+ vrLen = 2152;
+ vrLoc = 0;
+ };
+ 61A118C811683C0000359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ };
+ 61A118D811683CD700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A118DB11683CD700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 120";
+ rLen = 0;
+ rLoc = 4224;
+ rType = 0;
+ vrLen = 1737;
+ vrLoc = 3461;
+ };
+ 61A118DC11683CD700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 268";
+ rLen = 0;
+ rLoc = 8751;
+ rType = 0;
+ vrLen = 2316;
+ vrLoc = 406;
+ };
+ 61A118E111683D2500359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A118E211683D2500359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 120";
+ rLen = 0;
+ rLoc = 4224;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A118E311683D2500359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 268";
+ rLen = 0;
+ rLoc = 8751;
+ rType = 0;
+ vrLen = 2395;
+ vrLoc = 406;
+ };
+ 61A118E611683D7800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A118E711683D7800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 120";
+ rLen = 0;
+ rLoc = 4224;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A118E811683D7800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 268";
+ rLen = 0;
+ rLoc = 8751;
+ rType = 0;
+ vrLen = 2395;
+ vrLoc = 406;
+ };
+ 61A118FD11683FAD00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A1190011683FAD00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250B115E749A0098C467 /* OverlayViewController.h */;
+ name = "OverlayViewController.h: 35";
+ rLen = 0;
+ rLoc = 859;
+ rType = 0;
+ vrLen = 844;
+ vrLoc = 0;
+ };
+ 61A1190111683FAD00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 268";
+ rLen = 0;
+ rLoc = 8751;
+ rType = 0;
+ vrLen = 2113;
+ vrLoc = 3577;
+ };
+ 61A1190211683FAD00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2113;
+ vrLoc = 3577;
+ };
+ 61A1190511683FAD00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */;
+ name = "SplitViewRootController.h: 19";
+ rLen = 0;
+ rLoc = 514;
+ rType = 0;
+ vrLen = 703;
+ vrLoc = 0;
+ };
+ 61A1190611683FAD00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 14";
+ rLen = 0;
+ rLoc = 338;
+ rType = 0;
+ vrLen = 2359;
+ vrLoc = 156;
+ };
+ 61A1190711683FAD00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 35";
+ rLen = 0;
+ rLoc = 1246;
+ rType = 0;
+ vrLen = 2462;
+ vrLoc = 0;
+ };
+ 61A1190811683FAD00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 120";
+ rLen = 0;
+ rLoc = 4224;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A1190B11683FFA00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A1190C11683FFA00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2063;
+ vrLoc = 3492;
+ };
+ 61A1190D11683FFA00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 35";
+ rLen = 0;
+ rLoc = 1246;
+ rType = 0;
+ vrLen = 2426;
+ vrLoc = 0;
+ };
+ 61A1190E11683FFA00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 120";
+ rLen = 0;
+ rLoc = 4224;
+ rType = 0;
+ vrLen = 1737;
+ vrLoc = 3461;
+ };
+ 61A119171168410F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A119181168410F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2063;
+ vrLoc = 3492;
+ };
+ 61A119191168410F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 120";
+ rLen = 0;
+ rLoc = 4224;
+ rType = 0;
+ vrLen = 1737;
+ vrLoc = 3461;
+ };
+ 61A11930116841E100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11931116841E100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2154;
+ vrLoc = 3492;
+ };
+ 61A11932116841E100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 120";
+ rLen = 0;
+ rLoc = 4224;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A119431168430E00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A119441168430E00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A119451168430E00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2154;
+ vrLoc = 3492;
+ };
+ 61A1195D1168479600359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A1195E1168479600359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A1195F1168479600359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2154;
+ vrLoc = 3492;
+ };
+ 61A1197B1168497B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A1197C1168497B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A1197D1168497B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2154;
+ vrLoc = 3492;
+ };
+ 61A1199111684A4F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A1199211684A4F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A1199311684A4F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2154;
+ vrLoc = 3492;
+ };
+ 61A1199711684B3200359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ };
+ 61A119A511684F6C00359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ };
+ 61A119A611684F6D00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A119A911684F6D00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 40";
+ rLen = 0;
+ rLoc = 1430;
+ rType = 0;
+ vrLen = 1473;
+ vrLoc = 146;
+ };
+ 61A119AA11684F6D00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A119AB11684F6D00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A119AE11684F6D00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A119AF11684F6D00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2154;
+ vrLoc = 3492;
+ };
+ 61A119C11168500F00359010 /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "Expected specifier-qualifier-list before 'UIPopoverController'";
+ fRef = 61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 21;
+ rType = 1;
+ };
+ 61A119C31168502900359010 /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "'splitViewRootController' undeclared (first use in this function)";
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 64;
+ rType = 1;
+ };
+ 61A119D71168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A119D81168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 149";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2154;
+ vrLoc = 3492;
+ };
+ 61A119D91168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 158";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 1967;
+ vrLoc = 3492;
+ };
+ 61A119DC1168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250B115E749A0098C467 /* OverlayViewController.h */;
+ name = "OverlayViewController.h: 13";
+ rLen = 0;
+ rLoc = 256;
+ rType = 0;
+ vrLen = 844;
+ vrLoc = 0;
+ };
+ 61A119DD1168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250B115E749A0098C467 /* OverlayViewController.h */;
+ name = "OverlayViewController.h: 14";
+ rLen = 0;
+ rLoc = 302;
+ rType = 0;
+ vrLen = 834;
+ vrLoc = 0;
+ };
+ 61A119E01168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */;
+ name = "DetailViewController.h: 19";
+ rLen = 0;
+ rLoc = 494;
+ rType = 0;
+ vrLen = 565;
+ vrLoc = 0;
+ };
+ 61A119E31168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */;
+ name = "SplitViewRootController.h: 4";
+ rLen = 0;
+ rLoc = 55;
+ rType = 0;
+ vrLen = 703;
+ vrLoc = 0;
+ };
+ 61A119E41168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2383;
+ vrLoc = 262;
+ };
+ 61A119E51168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 57";
+ rLen = 0;
+ rLoc = 1972;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A119E61168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1737;
+ vrLoc = 3461;
+ };
+ 61A119E71168515100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A119FD1168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A119FE1168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250B115E749A0098C467 /* OverlayViewController.h */;
+ name = "OverlayViewController.h: 14";
+ rLen = 0;
+ rLoc = 302;
+ rType = 0;
+ vrLen = 834;
+ vrLoc = 0;
+ };
+ 61A119FF1168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ rLen = 0;
+ rLoc = 9223372036854775699;
+ rType = 0;
+ };
+ 61A11A001168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 160";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 1871;
+ vrLoc = 3492;
+ };
+ 61A11A031168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */;
+ name = "SplitViewRootController.h: 19";
+ rLen = 0;
+ rLoc = 490;
+ rType = 0;
+ vrLen = 685;
+ vrLoc = 0;
+ };
+ 61A11A041168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 34";
+ rLen = 0;
+ rLoc = 1161;
+ rType = 0;
+ vrLen = 2407;
+ vrLoc = 262;
+ };
+ 61A11A051168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 52";
+ rLen = 0;
+ rLoc = 2354;
+ rType = 0;
+ vrLen = 1906;
+ vrLoc = 1572;
+ };
+ 61A11A061168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */;
+ name = "DetailViewController.h: 19";
+ rLen = 0;
+ rLoc = 494;
+ rType = 0;
+ vrLen = 565;
+ vrLoc = 0;
+ };
+ 61A11A071168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2396;
+ vrLoc = 262;
+ };
+ 61A11A081168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 57";
+ rLen = 0;
+ rLoc = 1972;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A091168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1737;
+ vrLoc = 3461;
+ };
+ 61A11A0A1168533300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A111168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A11A121168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250B115E749A0098C467 /* OverlayViewController.h */;
+ name = "OverlayViewController.h: 14";
+ rLen = 0;
+ rLoc = 302;
+ rType = 0;
+ vrLen = 834;
+ vrLoc = 0;
+ };
+ 61A11A131168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 156";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 1869;
+ vrLoc = 3492;
+ };
+ 61A11A141168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 158";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 1891;
+ vrLoc = 3476;
+ };
+ 61A11A151168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 52";
+ rLen = 0;
+ rLoc = 2354;
+ rType = 0;
+ vrLen = 2463;
+ vrLoc = 558;
+ };
+ 61A11A161168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */;
+ name = "DetailViewController.h: 19";
+ rLen = 0;
+ rLoc = 494;
+ rType = 0;
+ vrLen = 565;
+ vrLoc = 0;
+ };
+ 61A11A171168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2396;
+ vrLoc = 262;
+ };
+ 61A11A181168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 57";
+ rLen = 0;
+ rLoc = 1972;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A191168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1737;
+ vrLoc = 3461;
+ };
+ 61A11A1A1168541700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A1D1168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A11A1E1168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250B115E749A0098C467 /* OverlayViewController.h */;
+ name = "OverlayViewController.h: 18";
+ rLen = 0;
+ rLoc = 403;
+ rType = 0;
+ vrLen = 859;
+ vrLoc = 0;
+ };
+ 61A11A1F1168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 160";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 2004;
+ vrLoc = 3476;
+ };
+ 61A11A201168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 144";
+ rLen = 0;
+ rLoc = 4408;
+ rType = 0;
+ vrLen = 1971;
+ vrLoc = 3492;
+ };
+ 61A11A211168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 52";
+ rLen = 0;
+ rLoc = 2354;
+ rType = 0;
+ vrLen = 2463;
+ vrLoc = 558;
+ };
+ 61A11A221168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */;
+ name = "DetailViewController.h: 19";
+ rLen = 0;
+ rLoc = 494;
+ rType = 0;
+ vrLen = 565;
+ vrLoc = 0;
+ };
+ 61A11A231168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2396;
+ vrLoc = 262;
+ };
+ 61A11A241168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 57";
+ rLen = 0;
+ rLoc = 1972;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A251168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1737;
+ vrLoc = 3461;
+ };
+ 61A11A261168546800359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A291168549200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11A2A1168549200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 159";
+ rLen = 0;
+ rLoc = 5135;
+ rType = 0;
+ vrLen = 1716;
+ vrLoc = 4792;
+ };
+ 61A11A2B1168549200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 52";
+ rLen = 0;
+ rLoc = 2354;
+ rType = 0;
+ vrLen = 2466;
+ vrLoc = 558;
+ };
+ 61A11A2C1168549200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */;
+ name = "DetailViewController.h: 19";
+ rLen = 0;
+ rLoc = 494;
+ rType = 0;
+ vrLen = 565;
+ vrLoc = 0;
+ };
+ 61A11A2D1168549200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2398;
+ vrLoc = 262;
+ };
+ 61A11A2E1168549200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 57";
+ rLen = 0;
+ rLoc = 1972;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A2F1168549200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 117";
+ rLen = 23;
+ rLoc = 3959;
+ rType = 0;
+ vrLen = 1739;
+ vrLoc = 3461;
+ };
+ 61A11A301168549200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A431168569A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A11A441168569A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */;
+ name = "DetailViewController.h: 22";
+ rLen = 0;
+ rLoc = 527;
+ rType = 0;
+ vrLen = 650;
+ vrLoc = 0;
+ };
+ 61A11A451168569A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 121";
+ rLen = 0;
+ rLoc = 4090;
+ rType = 0;
+ vrLen = 1489;
+ vrLoc = 0;
+ };
+ 61A11A461168569A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 121";
+ rLen = 0;
+ rLoc = 4090;
+ rType = 0;
+ vrLen = 1475;
+ vrLoc = 0;
+ };
+ 61A11A471168569A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2396;
+ vrLoc = 262;
+ };
+ 61A11A481168569A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A491168569A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A4C1168D13600359010 /* PopoverMenuViewController.h */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {999, 664}}";
+ sepNavSelRange = "{218, 0}";
+ sepNavVisRange = "{0, 367}";
+ };
+ };
+ 61A11A4D1168D13600359010 /* PopoverMenuViewController.m */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {999, 1638}}";
+ sepNavSelRange = "{299, 0}";
+ sepNavVisRange = "{0, 1306}";
+ sepNavWindowFrame = "{{84, 318}, {1058, 792}}";
+ };
+ };
+ 61A11A5B1168D33A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11A5E1168D33A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250B115E749A0098C467 /* OverlayViewController.h */;
+ name = "OverlayViewController.h: 18";
+ rLen = 0;
+ rLoc = 403;
+ rType = 0;
+ vrLen = 859;
+ vrLoc = 0;
+ };
+ 61A11A5F1168D33A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 142";
+ rLen = 25;
+ rLoc = 4229;
+ rType = 0;
+ vrLen = 2210;
+ vrLoc = 3792;
+ };
+ 61A11A601168D33A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 142";
+ rLen = 25;
+ rLoc = 4229;
+ rType = 0;
+ vrLen = 2157;
+ vrLoc = 0;
+ };
+ 61A11A611168D33A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 109";
+ rLen = 20;
+ rLoc = 3305;
+ rType = 0;
+ vrLen = 2290;
+ vrLoc = 2182;
+ };
+ 61A11A621168D33A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A631168D33A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2398;
+ vrLoc = 262;
+ };
+ 61A11A641168D33A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A651168D37800359010 /* OverlayViewController.m:144 */ = {
+ isa = PBXFileBreakpoint;
+ actions = (
+ );
+ breakpointStyle = 0;
+ continueAfterActions = 0;
+ countType = 0;
+ delayBeforeContinue = 0;
+ fileReference = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ functionName = "-showPopover";
+ hitCount = 0;
+ ignoreCount = 0;
+ lineNumber = 144;
+ location = HedgewarsMobile;
+ modificationTime = 292102915.039599;
+ originalNumberOfMultipleMatches = 1;
+ state = 1;
+ };
+ 61A11A671168D37900359010 /* OverlayViewController.m:147 */ = {
+ isa = PBXFileBreakpoint;
+ actions = (
+ );
+ breakpointStyle = 0;
+ continueAfterActions = 0;
+ countType = 0;
+ delayBeforeContinue = 0;
+ fileReference = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ functionName = "-showPopover";
+ hitCount = 0;
+ ignoreCount = 0;
+ lineNumber = 147;
+ location = HedgewarsMobile;
+ modificationTime = 292102915.039659;
+ originalNumberOfMultipleMatches = 1;
+ state = 1;
+ };
+ 61A11A691168D37B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A11A6A1168D37B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 142";
+ rLen = 25;
+ rLoc = 4229;
+ rType = 0;
+ vrLen = 2215;
+ vrLoc = 3718;
+ };
+ 61A11A6B1168D37B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 142";
+ rLen = 25;
+ rLoc = 4229;
+ rType = 0;
+ vrLen = 2215;
+ vrLoc = 3718;
+ };
+ 61A11A6C1168D37B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 109";
+ rLen = 20;
+ rLoc = 3305;
+ rType = 0;
+ vrLen = 2290;
+ vrLoc = 2182;
+ };
+ 61A11A6D1168D37B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A6E1168D37B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2396;
+ vrLoc = 262;
+ };
+ 61A11A6F1168D37B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A771168D3D600359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A11A781168D3D600359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 109";
+ rLen = 20;
+ rLoc = 3305;
+ rType = 0;
+ vrLen = 2290;
+ vrLoc = 2182;
+ };
+ 61A11A791168D3D600359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 142";
+ rLen = 25;
+ rLoc = 4229;
+ rType = 0;
+ vrLen = 2215;
+ vrLoc = 3718;
+ };
+ 61A11A7A1168D3D600359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A7B1168D3D600359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2396;
+ vrLoc = 262;
+ };
+ 61A11A7C1168D3D600359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A801168D3EF00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A11A811168D3EF00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 146";
+ rLen = 0;
+ rLoc = 4444;
+ rType = 0;
+ vrLen = 2185;
+ vrLoc = 3718;
+ };
+ 61A11A821168D3EF00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 109";
+ rLen = 20;
+ rLoc = 3305;
+ rType = 0;
+ vrLen = 2290;
+ vrLoc = 2182;
+ };
+ 61A11A831168D3EF00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A841168D3EF00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2396;
+ vrLoc = 262;
+ };
+ 61A11A851168D3EF00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A891168D57100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A11A8A1168D57100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250B115E749A0098C467 /* OverlayViewController.h */;
+ name = "OverlayViewController.h: 18";
+ rLen = 0;
+ rLoc = 403;
+ rType = 0;
+ vrLen = 859;
+ vrLoc = 0;
+ };
+ 61A11A8B1168D57100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 146";
+ rLen = 0;
+ rLoc = 4444;
+ rType = 0;
+ vrLen = 2197;
+ vrLoc = 3718;
+ };
+ 61A11A8C1168D57100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 151";
+ rLen = 0;
+ rLoc = 4792;
+ rType = 0;
+ vrLen = 2172;
+ vrLoc = 3718;
+ };
+ 61A11A8D1168D57100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 109";
+ rLen = 20;
+ rLoc = 3305;
+ rType = 0;
+ vrLen = 2290;
+ vrLoc = 2182;
+ };
+ 61A11A8E1168D57100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A8F1168D57100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2396;
+ vrLoc = 262;
+ };
+ 61A11A901168D57100359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11A951168D5A000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11A961168D5A000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 109";
+ rLen = 20;
+ rLoc = 3305;
+ rType = 0;
+ vrLen = 2290;
+ vrLoc = 2182;
+ };
+ 61A11A971168D5A000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 151";
+ rLen = 0;
+ rLoc = 4792;
+ rType = 0;
+ vrLen = 2197;
+ vrLoc = 3718;
+ };
+ 61A11A9A1168D5A000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798864114AA4AA00BA94A9 /* SDL_uikitappdelegate.m */;
+ name = "SDL_uikitappdelegate.m: 82";
+ rLen = 0;
+ rLoc = 2439;
+ rType = 0;
+ vrLen = 1294;
+ vrLoc = 1935;
+ };
+ 61A11A9B1168D5A000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ rLen = 0;
+ rLoc = 9223372036854775807;
+ rType = 0;
+ };
+ 61A11A9C1168D5A000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 48";
+ rLen = 12;
+ rLoc = 1628;
+ rType = 0;
+ vrLen = 1300;
+ vrLoc = 673;
+ };
+ 61A11A9D1168D5A000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11A9E1168D5A000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2398;
+ vrLoc = 262;
+ };
+ 61A11A9F1168D5A000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11AA41168D71300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11AA51168D71300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 146";
+ rLen = 0;
+ rLoc = 4441;
+ rType = 0;
+ vrLen = 2196;
+ vrLoc = 3718;
+ };
+ 61A11AA81168D71300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AA91168D71300359010 /* AvailabilityInternal.h */;
+ rLen = 1;
+ rLoc = 52;
+ rType = 1;
+ };
+ 61A11AA91168D71300359010 /* AvailabilityInternal.h */ = {
+ isa = PBXFileReference;
+ lastKnownFileType = sourcecode.c.h;
+ name = AvailabilityInternal.h;
+ path = /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2.sdk/usr/include/AvailabilityInternal.h;
+ sourceTree = "<absolute>";
+ uiCtxt = {
+ sepNavWindowFrame = "{{107, 297}, {1058, 792}}";
+ };
+ };
+ 61A11AAA1168D71300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AAB1168D71300359010 /* AvailabilityInternal.h */;
+ name = "AvailabilityInternal.h: 45";
+ rLen = 0;
+ rLoc = 1891;
+ rType = 0;
+ vrLen = 2506;
+ vrLoc = 1113;
+ };
+ 61A11AAB1168D71300359010 /* AvailabilityInternal.h */ = {
+ isa = PBXFileReference;
+ name = AvailabilityInternal.h;
+ path = /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2.sdk/usr/include/AvailabilityInternal.h;
+ sourceTree = "<absolute>";
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {999, 4745}}";
+ sepNavSelRange = "{1891, 0}";
+ sepNavVisRange = "{1113, 2506}";
+ };
+ };
+ 61A11AAC1168D71300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 109";
+ rLen = 0;
+ rLoc = 3308;
+ rType = 0;
+ vrLen = 2290;
+ vrLoc = 2182;
+ };
+ 61A11AAD1168D71300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 48";
+ rLen = 12;
+ rLoc = 1628;
+ rType = 0;
+ vrLen = 1300;
+ vrLoc = 673;
+ };
+ 61A11AAE1168D71300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11AAF1168D71300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2398;
+ vrLoc = 262;
+ };
+ 61A11AB01168D71300359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11AB51168D77400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11AB61168D77400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */;
+ name = "DetailViewController.m: 110";
+ rLen = 0;
+ rLoc = 3325;
+ rType = 0;
+ vrLen = 2259;
+ vrLoc = 2182;
+ };
+ 61A11AB71168D77400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
+ name = "OverlayViewController.m: 146";
+ rLen = 20;
+ rLoc = 4438;
+ rType = 0;
+ vrLen = 2196;
+ vrLoc = 3718;
+ };
+ 61A11AB81168D77400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 48";
+ rLen = 12;
+ rLoc = 1628;
+ rType = 0;
+ vrLen = 1300;
+ vrLoc = 673;
+ };
+ 61A11AB91168D77400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11ABA1168D77400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */;
+ name = "SplitViewRootController.m: 65";
+ rLen = 0;
+ rLoc = 2598;
+ rType = 0;
+ vrLen = 2398;
+ vrLoc = 262;
+ };
+ 61A11ABB1168D77400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11AC01168D8B600359010 /* SplitViewRootController.m */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {999, 1183}}";
+ sepNavSelRange = "{2614, 0}";
+ sepNavVisRange = "{263, 2437}";
+ sepNavWindowFrame = "{{83, 130}, {1058, 792}}";
+ };
+ };
+ 61A11AC41168DA4200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11AC51168DA4200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11AC61168DA4200359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11AC81168DA9400359010 /* MasterViewController.m */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {1048, 1677}}";
+ sepNavSelRange = "{3389, 0}";
+ sepNavVisRange = "{2898, 1640}";
+ sepNavWindowFrame = "{{719, 139}, {1058, 792}}";
+ };
+ };
+ 61A11ACA1168DAB700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11ACB1168DAB700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11ACC1168DAB700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11ACE1168DB1B00359010 /* TeamSettingsViewController.m */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {999, 2184}}";
+ sepNavSelRange = "{1115, 0}";
+ sepNavVisRange = "{0, 1718}";
+ sepNavWindowFrame = "{{245, 171}, {1058, 792}}";
+ };
+ };
+ 61A11AD11168DB2C00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11AD21168DB2C00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11AD31168DB2C00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11AD41168DB3700359010 /* DetailViewController.h */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {999, 641}}";
+ sepNavSelRange = "{583, 0}";
+ sepNavVisRange = "{0, 642}";
+ sepNavWindowFrame = "{{734, 254}, {1058, 792}}";
+ };
+ };
+ 61A11AD51168DB3700359010 /* DetailViewController.m */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {1503, 1807}}";
+ sepNavSelRange = "{4789, 0}";
+ sepNavVisRange = "{0, 1489}";
+ sepNavWindowFrame = "{{734, 254}, {1058, 792}}";
+ };
+ };
+ 61A11ADB1168DB5000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 59;
+ vrLoc = 148;
+ };
+ 61A11ADC1168DB5000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11ADD1168DB5000359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */ = {
+ uiCtxt = {
+ sepNavIntBoundsRect = "{{0, 0}, {999, 2613}}";
+ sepNavSelRange = "{0, 0}";
+ sepNavVisRange = "{0, 1810}";
+ };
+ };
+ 61A11AE51168DC9A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11AE61168DC9A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61798863114AA4AA00BA94A9 /* SDL_uikitappdelegate.h */;
+ name = "SDL_uikitappdelegate.h: 28";
+ rLen = 0;
+ rLoc = 1045;
+ rType = 0;
+ vrLen = 1228;
+ vrLoc = 745;
+ };
+ 61A11AE71168DC9A00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 427;
+ vrLoc = 0;
+ };
+ 61A11AE81169054200359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61A11AC81168DA9400359010 /* MasterViewController.m */;
+ };
+ 61A11AEE1169069300359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ };
+ 61A11B0711691E2400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11B0811691E2400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11B0B11691E2400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AC81168DA9400359010 /* MasterViewController.m */;
+ name = "MasterViewController.m: 91";
+ rLen = 0;
+ rLoc = 3337;
+ rType = 0;
+ vrLen = 1726;
+ vrLoc = 0;
+ };
+ 61A11B0E11691E2400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 18";
+ rLen = 0;
+ rLoc = 415;
+ rType = 0;
+ vrLen = 515;
+ vrLoc = 0;
+ };
+ 61A11B0F11691E2400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 171";
+ rLen = 0;
+ rLoc = 6718;
+ rType = 0;
+ vrLen = 1921;
+ vrLoc = 5108;
+ };
+ 61A11B1011691E2400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 42";
+ rLen = 0;
+ rLoc = 891;
+ rType = 0;
+ vrLen = 1862;
+ vrLoc = 319;
+ };
+ 61A11B1111691E2400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 515;
+ vrLoc = 0;
+ };
+ 61A11B1411691E2400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1810;
+ vrLoc = 0;
+ };
+ 61A11B1511691E5F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11B1611691E5F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 41";
+ rLen = 0;
+ rLoc = 886;
+ rType = 0;
+ vrLen = 1845;
+ vrLoc = 522;
+ };
+ 61A11B1711691E5F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AC81168DA9400359010 /* MasterViewController.m */;
+ name = "MasterViewController.m: 91";
+ rLen = 0;
+ rLoc = 3337;
+ rType = 0;
+ vrLen = 1726;
+ vrLoc = 0;
+ };
+ 61A11B1811691E5F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 515;
+ vrLoc = 0;
+ };
+ 61A11B1911691E5F00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1810;
+ vrLoc = 0;
+ };
+ 61A11B1A11691E6700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11B1B11691E6700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 41";
+ rLen = 0;
+ rLoc = 886;
+ rType = 0;
+ vrLen = 1845;
+ vrLoc = 522;
+ };
+ 61A11B1C11691E6700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AC81168DA9400359010 /* MasterViewController.m */;
+ name = "MasterViewController.m: 91";
+ rLen = 0;
+ rLoc = 3337;
+ rType = 0;
+ vrLen = 1726;
+ vrLoc = 0;
+ };
+ 61A11B1D11691E6700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 515;
+ vrLoc = 0;
+ };
+ 61A11B1E11691E6700359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1810;
+ vrLoc = 0;
+ };
+ 61A11B2111691EE400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11B2211691EE400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 41";
+ rLen = 0;
+ rLoc = 886;
+ rType = 0;
+ vrLen = 1823;
+ vrLoc = 5612;
+ };
+ 61A11B2311691EE400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AC81168DA9400359010 /* MasterViewController.m */;
+ name = "MasterViewController.m: 91";
+ rLen = 0;
+ rLoc = 3337;
+ rType = 0;
+ vrLen = 1726;
+ vrLoc = 0;
+ };
+ 61A11B2411691EE400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 515;
+ vrLoc = 0;
+ };
+ 61A11B2511691EE400359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1810;
+ vrLoc = 0;
+ };
+ 61A11B2611691EF100359010 /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "Expected expression before 'NSThread'";
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 48;
+ rType = 1;
+ };
+ 61A11B2911691EFE00359010 /* XCBuildMessageTextBookmark */ = {
+ isa = PBXTextBookmark;
+ comments = "Expected ']' before ';' token";
+ fRef = 61A11AC81168DA9400359010 /* MasterViewController.m */;
+ fallbackIsa = XCBuildMessageTextBookmark;
+ rLen = 1;
+ rLoc = 100;
+ rType = 1;
+ };
+ 61A11B2C11691F0B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11B2D11691F0B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AC81168DA9400359010 /* MasterViewController.m */;
+ name = "MasterViewController.m: 101";
+ rLen = 0;
+ rLoc = 3854;
+ rType = 0;
+ vrLen = 1650;
+ vrLoc = 2887;
+ };
+ 61A11B2E11691F0B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 48";
+ rLen = 0;
+ rLoc = 1078;
+ rType = 0;
+ vrLen = 1957;
+ vrLoc = 633;
+ };
+ 61A11B2F11691F0B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886E114AA4D000BA94A9 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 515;
+ vrLoc = 0;
+ };
+ 61A11B3011691F0B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1810;
+ vrLoc = 0;
+ };
+ 61A11B451169210B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A1186F1168391A00359010 /* MainMenuViewController.h */;
+ name = "MainMenuViewController.h: 28";
+ rLen = 0;
+ rLoc = 691;
+ rType = 0;
+ vrLen = 115;
+ vrLoc = 148;
+ };
+ 61A11B481169210B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AD51168DB3700359010 /* DetailViewController.m */;
+ name = "DetailViewController.m: 136";
+ rLen = 0;
+ rLoc = 4787;
+ rType = 0;
+ vrLen = 1917;
+ vrLoc = 2877;
+ };
+ 61A11B491169210B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AD41168DB3700359010 /* DetailViewController.h */;
+ rLen = 0;
+ rLoc = 642;
+ rType = 0;
+ };
+ 61A11B4A1169210B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AD41168DB3700359010 /* DetailViewController.h */;
+ name = "DetailViewController.h: 22";
+ rLen = 0;
+ rLoc = 499;
+ rType = 0;
+ vrLen = 687;
+ vrLoc = 0;
+ };
+ 61A11B4B1169210B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AC81168DA9400359010 /* MasterViewController.m */;
+ name = "MasterViewController.m: 123";
+ rLen = 128;
+ rLoc = 4402;
+ rType = 0;
+ vrLen = 1640;
+ vrLoc = 2898;
+ };
+ 61A11B4C1169210B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 46";
+ rLen = 0;
+ rLoc = 1076;
+ rType = 0;
+ vrLen = 2320;
+ vrLoc = 787;
+ };
+ 61A11B4D1169210B00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1810;
+ vrLoc = 0;
+ };
+ 61A11B54116922FF00359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 615F21901166B73B002444F2 /* amGirder.png */;
+ };
+ 61A11B55116922FF00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 46";
+ rLen = 0;
+ rLoc = 1076;
+ rType = 0;
+ vrLen = 2320;
+ vrLoc = 787;
+ };
+ 61A11B56116922FF00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1810;
+ vrLoc = 0;
+ };
+ 61A11B5A1169235C00359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 615F21901166B73B002444F2 /* amGirder.png */;
+ };
+ 61A11B5B1169235C00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 46";
+ rLen = 0;
+ rLoc = 1076;
+ rType = 0;
+ vrLen = 2320;
+ vrLoc = 787;
+ };
+ 61A11B5C1169235C00359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1810;
+ vrLoc = 0;
+ };
+ 61A11B5D1169240500359010 /* PBXBookmark */ = {
+ isa = PBXBookmark;
+ fRef = 615F21901166B73B002444F2 /* amGirder.png */;
+ };
+ 61A11B5E1169240500359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 6179886F114AA4D000BA94A9 /* MainMenuViewController.m */;
+ name = "MainMenuViewController.m: 46";
+ rLen = 0;
+ rLoc = 1076;
+ rType = 0;
+ vrLen = 2320;
+ vrLoc = 787;
+ };
+ 61A11B5F1169240500359010 /* PBXTextBookmark */ = {
+ isa = PBXTextBookmark;
+ fRef = 61A11AE01168DC6E00359010 /* SingleTeamViewController.m */;
+ name = "SingleTeamViewController.m: 1";
+ rLen = 0;
+ rLoc = 0;
+ rType = 0;
+ vrLen = 1810;
+ vrLoc = 0;
+ };
61CCBE60116135FF00833FE8 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 61798800114AA34C00BA94A9 /* uLandGraphics.pas */;
@@ -2070,22 +5035,40 @@
fRef = 611FD9CB1155A28C00C2203D /* HedgewarsTitle.png */;
};
61CE24EA115E71C20098C467 /* OverlayViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = OverlayViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/OverlayViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {532, 455}}";
- sepNavSelRange = "{257, 0}";
- sepNavVisRange = "{0, 91}";
+ sepNavIntBoundsRect = "{{0, 0}, {879, 839}}";
+ sepNavSelRange = "{844, 0}";
+ sepNavVisRange = "{0, 844}";
sepNavWindowFrame = "{{15, 206}, {938, 967}}";
};
};
61CE24EB115E71C20098C467 /* OverlayViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = OverlayViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/OverlayViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {915, 3419}}";
- sepNavSelRange = "{700, 181}";
- sepNavVisRange = "{406, 913}";
- sepNavWindowFrame = "{{586, 162}, {938, 967}}";
+ sepNavSelRange = "{0, 8495}";
+ sepNavVisRange = "{0, 2155}";
+ sepNavWindowFrame = "{{632, 132}, {938, 967}}";
};
};
61CE24EC115E71C20098C467 /* PopupMenuViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = PopupMenuViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/PopupMenuViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {838, 564}}";
sepNavSelRange = "{0, 0}";
@@ -2094,27 +5077,33 @@
};
};
61CE24ED115E71C20098C467 /* PopupMenuViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = PopupMenuViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/PopupMenuViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 1534}}";
+ sepNavIntBoundsRect = "{{0, 0}, {838, 1508}}";
sepNavSelRange = "{3509, 0}";
- sepNavVisRange = "{1105, 1225}";
+ sepNavVisRange = "{717, 1388}";
sepNavWindowFrame = "{{530, 457}, {897, 692}}";
};
};
61CE250B115E749A0098C467 /* OverlayViewController.h */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {879, 814}}";
- sepNavSelRange = "{664, 0}";
- sepNavVisRange = "{0, 718}";
- sepNavWindowFrame = "{{1103, 125}, {938, 967}}";
+ sepNavIntBoundsRect = "{{0, 0}, {879, 839}}";
+ sepNavSelRange = "{403, 0}";
+ sepNavVisRange = "{0, 859}";
+ sepNavWindowFrame = "{{982, 125}, {938, 967}}";
};
};
61CE250C115E749A0098C467 /* OverlayViewController.m */ = {
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {936, 3510}}";
- sepNavSelRange = "{4169, 0}";
- sepNavVisRange = "{0, 369}";
- sepNavWindowFrame = "{{737, 168}, {938, 967}}";
+ sepNavIntBoundsRect = "{{0, 0}, {1090, 3666}}";
+ sepNavSelRange = "{3955, 0}";
+ sepNavVisRange = "{3718, 1863}";
+ sepNavWindowFrame = "{{819, 136}, {938, 967}}";
};
};
61CE2514115E74CC0098C467 /* PBXBookmark */ = {
@@ -2160,7 +5149,7 @@
fRef = 61CE250C115E749A0098C467 /* OverlayViewController.m */;
name = "OverlayViewController.m: 129";
rLen = 0;
- rLoc = 3947;
+ rLoc = 391;
rType = 0;
vrLen = 488;
vrLoc = 3790;
@@ -2176,38 +5165,68 @@
vrLoc = 0;
};
61FA761D115DA0DB00DA6ED0 /* MainMenuViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = MainMenuViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/MainMenuViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {868, 717}}";
sepNavSelRange = "{0, 0}";
sepNavVisRange = "{0, 427}";
- sepNavWindowFrame = "{{275, 284}, {927, 845}}";
+ sepNavWindowFrame = "{{525, 213}, {927, 845}}";
};
};
61FA761E115DA0DB00DA6ED0 /* MainMenuViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = MainMenuViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/MainMenuViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {868, 2353}}";
- sepNavSelRange = "{6573, 0}";
- sepNavVisRange = "{5233, 1890}";
- sepNavWindowFrame = "{{681, 203}, {927, 845}}";
+ sepNavIntBoundsRect = "{{0, 0}, {868, 2860}}";
+ sepNavSelRange = "{172, 0}";
+ sepNavVisRange = "{0, 1342}";
+ sepNavWindowFrame = "{{721, 173}, {927, 845}}";
};
};
61FA7644115DA6A300DA6ED0 /* SplitViewRootController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = SplitViewRootController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/SplitViewRootController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {868, 717}}";
- sepNavSelRange = "{276, 16}";
- sepNavVisRange = "{0, 693}";
+ sepNavSelRange = "{55, 0}";
+ sepNavVisRange = "{0, 685}";
sepNavWindowFrame = "{{213, 231}, {927, 845}}";
};
};
61FA7645115DA6A300DA6ED0 /* SplitViewRootController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = SplitViewRootController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/SplitViewRootController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1004, 1066}}";
- sepNavSelRange = "{2324, 0}";
- sepNavVisRange = "{855, 1122}";
- sepNavWindowFrame = "{{60, 191}, {927, 845}}";
+ sepNavIntBoundsRect = "{{0, 0}, {971, 1183}}";
+ sepNavSelRange = "{2598, 0}";
+ sepNavVisRange = "{262, 2398}";
+ sepNavWindowFrame = "{{213, 231}, {927, 845}}";
};
};
61FA765A115DAACC00DA6ED0 /* MasterViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = MasterViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/MasterViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {586, 325}}";
sepNavSelRange = "{0, 0}";
@@ -2216,6 +5235,12 @@
};
};
61FA765B115DAACC00DA6ED0 /* MasterViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = MasterViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/MasterViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1048, 1638}}";
sepNavSelRange = "{1543, 0}";
@@ -2224,19 +5249,31 @@
};
};
61FA7665115DAB1B00DA6ED0 /* DetailViewController.h */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.h;
+ name = DetailViewController.h;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/DetailViewController.h;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {838, 312}}";
- sepNavSelRange = "{0, 0}";
- sepNavVisRange = "{53, 124}";
+ sepNavIntBoundsRect = "{{0, 0}, {868, 717}}";
+ sepNavSelRange = "{527, 0}";
+ sepNavVisRange = "{0, 650}";
sepNavWindowFrame = "{{364, 237}, {927, 845}}";
};
};
61FA7666115DAB1B00DA6ED0 /* DetailViewController.m */ = {
+ isa = PBXFileReference;
+ fileEncoding = 4;
+ lastKnownFileType = sourcecode.c.objc;
+ name = DetailViewController.m;
+ path = /Users/vittorio/hedgewars/trunk/cocoaTouch/iPad/DetailViewController.m;
+ sourceTree = "<absolute>";
uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {532, 1768}}";
- sepNavSelRange = "{267, 0}";
- sepNavVisRange = "{190, 134}";
- sepNavWindowFrame = "{{543, 159}, {927, 845}}";
+ sepNavIntBoundsRect = "{{0, 0}, {868, 1833}}";
+ sepNavSelRange = "{1272, 0}";
+ sepNavVisRange = "{754, 1625}";
+ sepNavWindowFrame = "{{364, 237}, {927, 845}}";
};
};
928301160F10CAFC00CC5A3C /* fpc */ = {