cocoaTouch/SettingsViewController.h
author koda
Fri, 15 Jan 2010 10:03:31 +0000
changeset 2696 41aa7b56c17b
parent 2694 dcd248e04f3d
child 2701 3a8560c00f78
permissions -rw-r--r--
settings are applied to game launch
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     1
//
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     2
//  SettingsViewController.h
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     3
//  hwengine
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     4
//
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     5
//  Created by Vittorio on 08/01/10.
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     7
//
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     8
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    10
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    11
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    12
@interface SettingsViewController : UIViewController {
2694
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    13
	UITextField *username;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    14
	UITextField *password;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    15
	UISwitch *musicOn;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    16
	UISwitch *effectsOn;
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2694
diff changeset
    17
	UISwitch *altDamageOn;
2694
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    18
	UISlider *volumeSlider;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    19
	UILabel *volumeLabel;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    20
}
2694
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    21
@property (nonatomic, retain) IBOutlet UITextField *username;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    22
@property (nonatomic, retain) IBOutlet UITextField *password;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    23
@property (nonatomic, retain) IBOutlet UISwitch *musicOn;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    24
@property (nonatomic, retain) IBOutlet UISwitch *effectsOn;
2696
41aa7b56c17b settings are applied to game launch
koda
parents: 2694
diff changeset
    25
@property (nonatomic, retain) IBOutlet UISwitch *altDamageOn;
2694
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    26
@property (nonatomic, retain) IBOutlet UISlider *volumeSlider;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    27
@property (nonatomic, retain) IBOutlet UILabel *volumeLabel;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    28
2694
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    29
-(IBAction) sliderChanged: (id)sender;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    30
-(IBAction) backgroundTap: (id)sender;
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    31
-(IBAction) textFieldDoneEditing: (id)sender;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    32
@end