Files
UnrealEngineUWP/Engine/Source/Programs/IOS/UDKRemote/Classes/FlipsideViewController.h
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

50 lines
1.6 KiB
Objective-C

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
//
// FlipsideViewController.h
// UDKRemote
//
// Created by jadams on 7/28/10.
//
#import <UIKit/UIKit.h>
@class UDKRemoteAppDelegate;
@interface FlipsideViewController : UINavigationController <UITextFieldDelegate>
{
/** Cached app delegate */
UDKRemoteAppDelegate* AppDelegate;
}
/** Table cell types */
@property (nonatomic, retain) IBOutlet UITableViewCell* DestIPCell;
@property (nonatomic, retain) IBOutlet UITableViewCell* PortCell;
@property (nonatomic, retain) IBOutlet UITableViewCell* TiltCell;
@property (nonatomic, retain) IBOutlet UITableViewCell* TouchCell;
@property (nonatomic, retain) IBOutlet UITableViewCell* LockCell;
/** Useful objects inside the table view cells */
@property (nonatomic, assign) IBOutlet UITextField* SubIPTextField;
@property (nonatomic, assign) IBOutlet UITextField* PortTextField;
@property (nonatomic, assign) IBOutlet UISwitch* SubTiltSwitch;
@property (nonatomic, assign) IBOutlet UISwitch* SubTouchSwitch;
@property (nonatomic, assign) IBOutlet UISwitch* SubLockSwitch;
/** The table views in the hierarchy */
@property (nonatomic, retain) IBOutlet UITableView* MainSettingsTable;
@property (nonatomic, retain) IBOutlet UITableView* RecentComputersTable;
@property (nonatomic, retain) IBOutlet UIViewController* RecentComputersController;
@property (nonatomic, assign) UITextField* NewComputerTextField;
@property (nonatomic, assign) IBOutlet UIBarButtonItem* ComputerListEdit;
@property (nonatomic, retain) UIAlertView* TextAlert;
- (IBAction)done;
- (IBAction)AddComputer;
- (IBAction)EditList;
- (IBAction)CalibrateTilt;
@end