Library
ISOFormFieldControllerDelegate.h
1 //
2 // ISOFormFieldControllerDelegate.h
3 // iSignatureOffice
4 //
5 // Created by Florian Student on 8/14/12.
6 // Copyright (c) 2012 Florian Student. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
11 
12 @protocol ISOFormFieldControllerDelegate <NSObject>
18 - (void)formFieldControllerInteractionWasCancelled:(ISOFormFieldController*)formFieldCtrl;
19 - (void)formFieldControllerInteractionWasRestarted:(ISOFormFieldController*)formFieldCtrl;
20 - (NSNumber*)formFieldControllerInteractionWasCompletedSuccessfully:(ISOFormFieldController*)formFieldCtrl;
21 - (NSNumber*)formFieldControllerInteractionWasSkipped:(ISOFormFieldController*)formFieldCtrl;
22 - (NSNumber*)formFieldControllerInteractionWasJumpedBack:(ISOFormFieldController*)formFieldCtrl;
23 
24 @optional
25 - (void)setLockState:(BOOL)locked;
26 - (void)presentFormFieldController:(ISOFormFieldController*)formFieldController;
27 - (void)dismissFormFieldController:(ISOFormFieldController*)formFieldController;
28 - (void)dismissCurrentFormFieldController;
29 - (BOOL)shouldFormFieldBecomeActive:(ISOFormFieldController*)formFieldCtrl;
30 - (void)suppressKeyboardHideAndShow;
31 - (void)blockOneContentOffsetChange;
32 - (void)adjustScrollPositionOfRect:(CGRect)formFieldRect duration:(NSTimeInterval)duration force:(BOOL)force;
33 - (void)removeFormField:(ISOFormFieldController*)ctrl; // when the formfield (e.g. a SignatureFormField) is deleted
34 - (void)refocusFormFieldControllerIfActive:(ISOFormFieldController*)ctrl;
35 
36 @end
Definition: ISOFormFieldController.h:31
Definition: ISOFormFieldControllerDelegate.h:12