cocoaTouch/SettingsViewController.h
author koda
Sat, 23 Jan 2010 13:15:27 +0000
changeset 2701 3a8560c00f78
parent 2696 41aa7b56c17b
child 2702 48fc46a922fd
permissions -rw-r--r--
settings tab has now a very nice iphone-like interface
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
2701
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    12
@interface SettingsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
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;
2701
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    15
	UISwitch *musicSwitch;
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    16
	UISwitch *effectsSwitch;
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    17
	UISwitch *altDamageSwitch;
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;
2701
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    20
	UITableView *table;
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    21
	UITableViewCell *volumeCell;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    22
}
2694
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 UITextField *username;
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 UITextField *password;
2701
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    25
@property (nonatomic, retain) UISwitch *musicSwitch;
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    26
@property (nonatomic, retain) UISwitch *effectsSwitch;
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    27
@property (nonatomic, retain) UISwitch *altDamageSwitch;
2694
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    28
@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
    29
@property (nonatomic, retain) IBOutlet UILabel *volumeLabel;
2701
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    30
@property (nonatomic, retain) IBOutlet UITableView *table;
3a8560c00f78 settings tab has now a very nice iphone-like interface
koda
parents: 2696
diff changeset
    31
@property (nonatomic, retain) IBOutlet UITableViewCell *volumeCell;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    32
2694
dcd248e04f3d can use latest sdlimage, work on setting panel and option when launching the game, minor fixes
koda
parents: 2687
diff changeset
    33
-(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
    34
-(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
    35
-(IBAction) textFieldDoneEditing: (id)sender;
2687
28b8330b8af1 add stub files for other views and prevent useless crashes
koda
parents:
diff changeset
    36
@end