-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefinitions.h
executable file
·37 lines (22 loc) · 1014 Bytes
/
Definitions.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//
// Definitions.h
// NITableGridDemo
//
// Created by Your Company Name on 25/04/13.
// Copyright (c) 2015 Your Company Name. All rights reserved.
//
#define VERBOSEOUTPUT 0
#define FULLWIDTH [UIScreen mainScreen].bounds.size.width
#define FULLHEIGHT [UIScreen mainScreen].bounds.size.height
#define STDTABLEFONTSIZE 11
#define FULLTABLEFONTSIZE 14
#define GENERICTABLEBUTTONBARHEIGHT 35
static NSString* transportProtocolPrefix = @"https://";
static NSString* alternateTransportProtocolPrefix = @"http://"; // this is the transport protocol prefix to be removed from the URL at the user input
typedef enum ReportType {DemoTable} ReportType;
extern char* reportNames[];
typedef enum SortOrder {Original, Ascending, Descending, FilterSearch} SortOrder;
typedef enum ColumnType {Text, String, Date, Cash, Percentage, Number, NonFormattedNumber, Portfolio, Integer} ColumnType;
typedef enum RedrawType {GraphHolder, PDF} RedrawType;
void displayMemoryWarning();
NSString* convertField(id field);