project_files/HedgewarsMobile/Classes/DetailViewController.h
author nemo
Sun, 20 Jun 2010 22:35:10 -0400
changeset 3526 a1d2180fef42
parent 3514 59dbd31e9953
child 3535 9e78c1f3d8d8
permissions -rw-r--r--
Replace SHA1 with adler32. For simple purposes of checking to see if players are playing the same map, this should be quite adequate and runs 15 times faster.
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
//  DetailViewController.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
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    11
@class GeneralSettingsViewController;
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    12
@class TeamSettingsViewController;
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    13
@class WeaponSettingsViewController;
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    14
@class SchemeSettingsViewController;
3490
016b3172b645 a bunch of minor stuff
koda
parents: 3356
diff changeset
    15
3513
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    16
@interface DetailViewController : UITableViewController
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    17
#if __IPHONE_3_2
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    18
<UISplitViewControllerDelegate, UIPopoverControllerDelegate>
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    19
#endif
f589230fa21b now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents: 3490
diff changeset
    20
{
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    21
    NSArray *controllerNames;
3490
016b3172b645 a bunch of minor stuff
koda
parents: 3356
diff changeset
    22
    
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    23
    GeneralSettingsViewController *generalSettingsViewController;
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    24
    TeamSettingsViewController *teamSettingsViewController;
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    25
    WeaponSettingsViewController *weaponSettingsViewController;
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    26
    SchemeSettingsViewController *schemeSettingsViewController;
3490
016b3172b645 a bunch of minor stuff
koda
parents: 3356
diff changeset
    27
    UIPopoverController *popoverController;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    28
}
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    29
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    30
// used in iphone version
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    31
-(IBAction) dismissSplitView;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    32
3356
3ae3fccb439e add missing controller stubs
koda
parents: 3321
diff changeset
    33
@property (nonatomic, retain) NSArray *controllerNames;
3490
016b3172b645 a bunch of minor stuff
koda
parents: 3356
diff changeset
    34
@property (nonatomic,retain) UIPopoverController *popoverController;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    35
91074496d5c9 merged code from ipad and iphone frontends
koda
parents:
diff changeset
    36
@end