cocoaTouch/MasterViewController.h
author koda
Thu, 17 Jun 2010 19:57:51 +0200
changeset 3513 f589230fa21b
parent 3357 3836a31879e7
permissions -rw-r--r--
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive) add rotation for iphone build too make the ifrontend work again with 3.0 sdk reworked openalbridge following most of an old implementation by Smaxx and making it more modular -- now sources are limited but the memory extension and cleanup is todo nil'd many variables in engine that were causing intialization problems
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     1
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     2
//  MasterViewController.h
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     3
//  HedgewarsMobile
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     4
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     5
//  Created by Vittorio on 27/03/10.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     7
//
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     8
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    10
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    11
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    12
@class DetailViewController;
3357
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    13
@class GeneralSettingsViewController;
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    14
@class TeamSettingsViewController;
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    15
@class WeaponSettingsViewController;
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    16
@class SchemeSettingsViewController;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    17
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    18
@interface MasterViewController : UITableViewController {
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    19
    DetailViewController *detailViewController;
3357
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    20
    NSArray *controllerNames;
3316
52f0482b043f fix a couple of leaks in hte ifrontend
koda
parents: 3312
diff changeset
    21
    NSIndexPath *lastIndexPath;
3357
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    22
    GeneralSettingsViewController *generalSettingsViewController;
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    23
    TeamSettingsViewController *teamSettingsViewController;
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    24
    WeaponSettingsViewController *weaponSettingsViewController;
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    25
    SchemeSettingsViewController *schemeSettingsViewController;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    26
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    27
3312
6d8f1c76756d restore and update the old general settings
koda
parents: 3305
diff changeset
    28
@property (nonatomic, retain) DetailViewController *detailViewController;
3357
3836a31879e7 draw a hedgehog when presenting hats
koda
parents: 3316
diff changeset
    29
@property (nonatomic, retain) NSArray *controllerNames;
3316
52f0482b043f fix a couple of leaks in hte ifrontend
koda
parents: 3312
diff changeset
    30
@property (nonatomic, retain) NSIndexPath *lastIndexPath;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    31
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    32
-(IBAction) dismissSplitView;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    33
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    34
@end