46 lines
1.2 KiB
Objective-C
46 lines
1.2 KiB
Objective-C
//
|
|
// ViewController.h
|
|
// FMC Planner 2
|
|
//
|
|
// Created by Kilian Hofmann on 19.03.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
#import "SharedDeclerations.h"
|
|
#import "ViewControllerKeyboard.h"
|
|
#import "ViewControllerScreen.h"
|
|
#import "ViewControllerServiceMenu.h"
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ViewController : UIViewController <UIAlertViewDelegate>
|
|
|
|
#pragma mark - Refrence to other views in app
|
|
|
|
@property (strong, nonatomic) ViewControllerScreen *screen;
|
|
@property (strong, nonatomic) ViewControllerKeyboard *keys;
|
|
|
|
#pragma mark - Save and loading
|
|
|
|
@property (strong, nonatomic) NSMutableDictionary *save;
|
|
@property (nonatomic) BOOL firstLoad;
|
|
@property (strong, nonatomic) NSString *backupCoRte;
|
|
|
|
#pragma mark - Refrences to views for corner rounding
|
|
|
|
@property (strong, nonatomic) IBOutlet UIView *backdropKeys;
|
|
@property (strong, nonatomic) IBOutlet UIView *backdropScreen;
|
|
|
|
#pragma mark - Network indictaors
|
|
@property (nonatomic) BOOL downloadActive;
|
|
@property (nonatomic) BOOL uploadActive;
|
|
@property (nonatomic) BOOL oldSavesActive;
|
|
@property (nonatomic) BOOL exportActive;
|
|
@property (nonatomic) BOOL navDataActive;
|
|
|
|
#pragma mark - Save and loading methods
|
|
|
|
- (void)loadSave:(NSString *)file;
|
|
- (void)saveToFile:(NSDictionary *)save;
|
|
|
|
@end
|