cocoaTouch/MainMenuViewController.h
author unc0rr
Mon, 05 Apr 2010 16:31:02 +0000
changeset 3306 fcdf6d85b042
parent 3305 91074496d5c9
child 3312 6d8f1c76756d
permissions -rw-r--r--
Return to -dev builds
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     1
//
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     2
//  MainMenuViewController.h
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     3
//  hwengine
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     4
//
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     5
//  Created by Vittorio on 08/01/10.
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     7
//
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     8
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
2740
03df0573a9fd programmatically load main controller
koda
parents: 2687
diff changeset
    10
#import "SettingsViewController.h"
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    11
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    12
@interface MainMenuViewController : UIViewController {
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    13
    UIView *cover;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    14
    UILabel *versionLabel;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    15
}
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    16
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    17
@property (nonatomic,retain) UIView *cover;
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    18
@property (nonatomic,retain) IBOutlet UILabel *versionLabel;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    19
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 2743
diff changeset
    20
-(void) appear;
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 2743
diff changeset
    21
-(void) disappear;
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    22
-(void) hideBehind;
3027
32890edaa483 lotsa optimizations and redraws for the iFrontend
koda
parents: 2743
diff changeset
    23
3305
91074496d5c9 merged code from ipad and iphone frontends
koda
parents: 3029
diff changeset
    24
-(IBAction) switchViews:(id)sender;
2685
0ba746be5d59 frontend images by Tiy, first setup of frontend
koda
parents:
diff changeset
    25
@end