You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
50 lines
1.6 KiB
Objective-C
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
|