Library
ISOPageScrollView.h
1 //
2 // ISOPageScrollView.h
3 // iSignatureOffice
4 //
5 // Created by Florian Student on 8/13/12.
6 // Copyright (c) 2012 Florian Student. All rights reserved.
7 //
8 
9 #import "ISOSignatureFormFieldController.h"
10 #import "ISOPageScrollViewDelegate.h"
12 
13 //@interface ISOPageScrollView : UIScrollView <UIScrollViewDelegate, ISOFormFieldControllerDelegate> {
14 @interface ISOPageScrollView : UIView <UIScrollViewDelegate, ISOFormFieldControllerDelegate> {
15  UIView* containerView;
16  UIImageView* imageView;
17 }
18 
19 @property (weak, nonatomic) ISODocumentViewController* documentViewController;
20 
21 @property (assign, setter=setIndex:, getter=getIndex) int index;
22 @property (strong, nonatomic) NSMutableArray* formFieldControllers;
23 @property (assign) BOOL displayingDummyImage;
24 //@property (nonatomic, strong) UIView* coloredOverlayToBeHidden;
25 
26 - (void)displayImage:(UIImage *)image;
27 
28 - (void)addFormField:(ISOFormFieldController*)ctrl;
29 - (void)addFormFields;
30 - (void)removeAllFormFields;
31 - (void)recycle;
32 
33 - (void)keyboardWillShow:(NSNotification*)notif;
34 //- (void)keyboardWillHide:(NSNotification*)notif;
35 - (void)keyboardDidShow:(NSNotification*)notif;
36 
37 - (CGSize)getPageSize;
38 
39 @end
Definition: ISOPageScrollView.h:14
Definition: ISOFormFieldController.h:31
Definition: ISOFormFieldControllerDelegate.h:12
Definition: ISODocumentViewController.h:14