// // MenuTableViewController.h // DUREX Vendor Control // // Created by Imanol Barba on 5/23/14. // Copyright (c) 2014 Emmoco. All rights reserved. // #import #import "EMFramework.h" #import "CommunicationProtocol.h" #import "Stack.h" #define num(x) [NSNumber numberWithUnsignedInt:x] #define MENU_ELEMENTS @"Maintenance",@"Basic Configuration",@"Sending a Report" #define MENU_CELLS_PER_SECTION num(3) #define MENU_HEADERS nil #define MAINTENANCE_ELEMENTS @"Time",@"20€ Notes",@"10€ Notes",@"5€ Notes",@"2€ Coins",@"1€ Coins",@"50c Coins",@"CPP_TABLE",@"1€ Change",@"50c Change" #define MAINTENANCE_CELLS_PER_SECTION num(10),num(0) #define MAINTENANCE_HEADERS @"Status",@"Sensors" #define CELL_IDENTIFIERS @"MenuCell",@"MaintenanceCell",@"ConfigCell",@"ReportCell" #define NUM_CHANNELS 8 enum { MENU = 0, MAINTENANCE, BASIC_CONFIGURATION, REPORT, } navigationLevel; @interface MenuTableViewController : UITableViewController @property (strong,nonatomic) Stack *parentLayout; - (void) navBack; @end