9 #import "ISOFormFieldControllerDelegate.h"
12 #define FORM_FIELD_DEFAULT_BG_COLOR [UIColor colorWithRed:221.0f/255.0f green:228.0f/255.0f blue:255.0f/255.0f alpha:1.0]
13 #define FORM_FIELD_DEFAULT_BG_COLOR_W_TRANSP [UIColor colorWithRed:85.0f/255.0f green:120.0f/255.0f blue:255.0f/255.0f alpha:0.2]
14 #define FORM_FIELD_SELECTED_ITEM_COLOR [UIColor colorWithRed:(153.0f + 5)/255.0f green:(193.0f + 5)/255.0f blue:(228.0f + 5)/255.0f alpha:1.0]
15 #define SIGNATURE_FIELD_EDITING_COLOR [UIColor colorWithRed:255.0f/255.0f green:255.0f/255.0f blue:0.0f/255.0f alpha:0.65]
22 #define FORM_FIELD_TYPE_SIGNATURE @"Signature"
23 #define FORM_FIELD_TYPE_TEXTFIELD @"Text"
24 #define FORM_FIELD_TYPE_CHECKBOX @"Checkbox"
25 #define FORM_FIELD_TYPE_RADIOBUTTON @"Radiobutton"
26 #define FORM_FIELD_TYPE_LISTBOX @"Listbox"
27 #define FORM_FIELD_TYPE_COMBOBOX @"Choice"
28 #define FORM_FIELD_TYPE_PHOTOFIELD @"photofield" //TODO
29 #define FORM_FIELD_TYPE_PHOTOSIGNARUREFIELD @"photosignaturefield" //TODO
33 @property (strong, nonatomic, getter=getParameters) NSMutableDictionary* parameters;
34 @property (weak, nonatomic, setter=setDelegate:, getter=getDelegate) id<ISOFormFieldControllerDelegate> delegate;
35 @property (strong, nonatomic) NSString* type;
36 @property (strong, nonatomic) NSString* identifier;
37 @property (nonatomic, assign) BOOL hasFocus;
38 @property (nonatomic, assign)
int pageIndex;
39 @property (nonatomic, assign) BOOL required;
40 @property (nonatomic, assign) BOOL locked;
44 - (CGRect)frameForPresentation;
45 - (id)initWithParameters:(NSMutableDictionary*)params;
Definition: ISODocumentViewController.h:14