Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
805 | - | 1 | // |
2 | // InAppSettingsPotiValueController.h |
||
3 | // MK4PhoneNav |
||
4 | // |
||
5 | // Created by Frank Blumenberg on 05.05.10. |
||
6 | // Copyright 2010 __MyCompanyName__. All rights reserved. |
||
7 | // |
||
8 | |||
9 | #import <UIKit/UIKit.h> |
||
10 | #import "InAppSettings.h" |
||
11 | |||
12 | |||
13 | @interface InAppSettingsPotiValueController : UIViewController<InAppSettingsChildPane, UITextFieldDelegate> { |
||
14 | |||
15 | InAppSettingsSpecifier* setting; |
||
16 | |||
17 | UITextField *numberField; |
||
18 | UILabel *sliderLabel; |
||
19 | UISwitch *potiSwitch; |
||
20 | |||
21 | UIPickerView *potiPicker; |
||
22 | NSArray *pickerData; |
||
23 | } |
||
24 | |||
25 | @property (nonatomic, retain) NSArray *pickerData; |
||
26 | @property (nonatomic, retain) InAppSettingsSpecifier* setting; |
||
27 | |||
28 | @property (nonatomic, retain) IBOutlet UIPickerView *potiPicker; |
||
29 | @property (nonatomic, retain) IBOutlet UITextField *numberField; |
||
30 | @property (nonatomic, retain) IBOutlet UILabel *sliderLabel; |
||
31 | @property (nonatomic, retain) IBOutlet UISwitch *potiSwitch; |
||
32 | |||
33 | - (IBAction)textFieldDoneEditing:(id)sender; |
||
34 | - (IBAction)backgroundTap:(id)sender; |
||
35 | - (IBAction)toggleControls:(id)sender; |
||
36 | |||
37 | @end |