123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671 |
- //
- // KMAnnotationPropertiesViewController.m
- // SignFlow
- //
- // Created by wanjun on 2021/6/15.
- //
- #import "KMAnnotationPropertiesViewController.h"
- #import "KMGeneralAnnotationViewController.h"
- #import "KMAnnotationLinkViewController.h"
- #import "KMSelfSignAnnotation.h"
- #import "KMSelfSignAnnotationFreeText.h"
- #import "NSString_SKExtensions.h"
- #import "KMAnnotationStampViewController.h"
- #if VERSION_DMG
- #import <PDF_Master-Swift.h>
- #else
- #import <PDF_Master-Swift.h>
- #endif
- #import "KMSignatureAnnotationViewController.h"
- #import "CSelfSignAnnotation.h"
- #import "CSelfSignAnnotationFreeText.h"
- #define KMFromContentButtonHeightFloat 32
- @interface KMClipView : NSClipView
- @end
- @implementation KMClipView
- - (BOOL)isFlipped {
- return YES;
- }
- @end
- @interface KMAnnotationPropertiesViewController ()
- @property (assign) IBOutlet NSBox *propertiesBox;
- @property (nonatomic,assign) IBOutlet NSView *gradientView;
- @property (weak) IBOutlet NSImageView *emptyImageView;
- @property (nonatomic,assign) IBOutlet NSTextField *titleLabel;
- @property (nonatomic,assign) IBOutlet NSTextField *subTitleLabel;
- @property (nonatomic,assign) IBOutlet NSView *emptyView;
- @property (nonatomic,retain) NSViewController *contentViewController;
- @property (weak) IBOutlet NSLayoutConstraint *titleViewHeightConstraint;
- @end
- @implementation KMAnnotationPropertiesViewController
- #pragma mark - View Methods
- - (void)loadView {
- [super loadView];
-
- self.view.wantsLayer = YES;
- self.view.layer.backgroundColor = [NSColor colorWithRed:247.0/255.0 green:248.0/255.0 blue:250.0/255.0 alpha:1].CGColor;
- self.view.layer.shadowColor = [NSColor colorWithRed:0/255.0 green:0/255.0 blue:0/255.0 alpha:0.15].CGColor;
- self.view.layer.shadowOffset = NSMakeSize(0, 0);
- self.view.layer.shadowRadius = 4;
-
- self.emptyImageView.image = [NSImage imageNamed:@"KMImageNameMarkupEmpty"];
- self.subTitleLabel.stringValue = NSLocalizedString(@"Show/Hide Annotation Properties Panel", nil);
- NSMutableParagraphStyle *ps = [[NSMutableParagraphStyle alloc] init];
- ps.lineSpacing = 10;
- ps.alignment = NSTextAlignmentCenter;
- self.subTitleLabel.attributedStringValue = [[NSAttributedString alloc] initWithString:self.subTitleLabel.stringValue attributes:@{
- NSForegroundColorAttributeName : [NSColor colorWithRed:148/255.f green:152/255.f blue:156/255.f alpha:1.f],
- NSFontAttributeName : [NSFont fontWithName:@"SFProText-Regular" size:12],
- NSParagraphStyleAttributeName : ps}];
- self.subTitleLabel.textColor = [NSColor grayColor];
-
- self.titleLabel.font = [NSFont SFProTextSemibold:14.0];
- self.titleLabel.textColor = [NSColor colorWithRed:0.145 green:0.149 blue:0.161 alpha:1];
- }
- #pragma mark - Setter Methods
- -(void)setAnnotations:(NSArray *)annotations
- {
- if (_annotations != annotations) {
- _annotations = annotations;
- }
-
- CPDFAnnotation *annotation = _annotations.firstObject;
- if (self.contentViewController) {
- [self.contentViewController.view removeFromSuperview];
- self.contentViewController = nil;
- }
- if (!annotation || [annotation isKindOfClass:[CPDFRedactAnnotation class]]) {
- return;
- }
- if (_annotations.count > 1) {
- [self selectAnnotations:_annotations];
- return;
- }
-
- if ([annotation isKindOfClass:[CPDFTextWidgetAnnotation class]]){
- self.titleLabel.stringValue = NSLocalizedString(@"Text Field", nil);
- } else if ([annotation isKindOfClass:[CPDFButtonWidgetAnnotation class]]) {
- CPDFButtonWidgetAnnotation *buttonWidget = (CPDFButtonWidgetAnnotation *)annotation;
- if (buttonWidget.controlType == 1) {
- self.titleLabel.stringValue = NSLocalizedString(@"Radio Button", nil);
- } else if (buttonWidget.controlType == 2) {
- self.titleLabel.stringValue = NSLocalizedString(@"Check Box", nil);
- } else if (buttonWidget.controlType == 0) {
- self.titleLabel.stringValue = NSLocalizedString(@"Button", nil);
- }
- } else if ([annotation isKindOfClass:[CPDFChoiceWidgetAnnotation class]]) {
- CPDFChoiceWidgetAnnotation *choiceWidget = (CPDFChoiceWidgetAnnotation *)annotation;
- if (choiceWidget.isListChoice) {
- self.titleLabel.stringValue = NSLocalizedString(@"List Box", nil);
- } else {
- self.titleLabel.stringValue = NSLocalizedString(@"Combo Box", nil);
- }
- } else if ([annotation isKindOfClass:[KMSelfSignAnnotation class]]) {
- KMSelfSignAnnotation *newAnnotation = (KMSelfSignAnnotation *)annotation;
- CAnnotationType type = newAnnotation.annotationType;
- NSString *returnString = @"";
- if (type == CAnnotationTypeSignFalse) {
- returnString = NSLocalizedString(@"X", nil);
- } else if (type == CAnnotationTypeSignTure) {
- returnString = NSLocalizedString(@"Check mark", nil);
- } else if (type == CAnnotationTypeSignCircle) {
- returnString = NSLocalizedString(@"Circle", nil);
- } else if (type == CAnnotationTypeSignLine) {
- returnString = NSLocalizedString(@"Line", nil);
- } else if (type == CAnnotationTypeSignDot) {
- returnString = NSLocalizedString(@"Dot", nil);
- } else if (type == CAnnotationTypeSignText) {
- returnString = NSLocalizedString(@"Text", nil);
- }
- self.titleLabel.stringValue = returnString;
- } else if ([annotation isKindOfClass:[CPDFLinkAnnotation class]]) {
- self.titleLabel.stringValue = NSLocalizedString(@"Link", @"Description for export");
- } else if ([annotation isKindOfClass:[CPDFFreeTextAnnotation class]]) {
- if ([annotation isKindOfClass:[KMSelfSignAnnotationFreeText class]]) {
- KMSelfSignAnnotationFreeText *signFreeText = (KMSelfSignAnnotationFreeText *)annotation;
- if ([signFreeText subType] == KMSelfSignAnnotationFreeTextSubType_Profile) {
- self.titleLabel.stringValue = NSLocalizedString(@"Text", nil);
- } else {
- self.titleLabel.stringValue = NSLocalizedString(@"Date", nil);
- }
- } else {
- self.titleLabel.stringValue = [[annotation type] typeName];
- }
- } else if ([annotation isKindOfClass:[CPDFSignatureWidgetAnnotation class]] ||
- [annotation isKindOfClass:[CPDFSignatureAnnotation class]]) {
- self.titleLabel.stringValue = NSLocalizedString(@"Signature", nil);
- } else if ([annotation isKindOfClass:[CSelfSignAnnotation class]]) {
- CSelfSignAnnotation *newAnnotation = (CSelfSignAnnotation *)annotation;
- if (newAnnotation.annotationType == CAnnotationTypeSignFalse) {
- self.titleLabel.stringValue = NSLocalizedString(@"Fork", nil);
- } else if (newAnnotation.annotationType == CAnnotationTypeSignTure) {
- self.titleLabel.stringValue = NSLocalizedString(@"Hook", nil);
- } else if (newAnnotation.annotationType == CAnnotationTypeSignCircle) {
- self.titleLabel.stringValue = NSLocalizedString(@"Rectangle", nil);
- } else if (newAnnotation.annotationType == CAnnotationTypeSignLine) {
- self.titleLabel.stringValue = NSLocalizedString(@"Line", nil);
- } else if (newAnnotation.annotationType == CAnnotationTypeSignDot) {
- self.titleLabel.stringValue = NSLocalizedString(@"Dot", nil);
- } else if (newAnnotation.annotationType == CAnnotationTypeSignText) {
- self.titleLabel.stringValue = NSLocalizedString(@"Text", nil);
- } else if (newAnnotation.annotationType == CAnnotationTypeSignDate) {
- self.titleLabel.stringValue = NSLocalizedString(@"Date", nil);
- }
- } else {
- self.titleLabel.stringValue = [[annotation type] typeName];
- }
-
- CPDFAnnotationModel *annotationModel = [[CPDFAnnotationModel alloc] initWithPDFAnnotations:_annotations];
- if ([annotation isKindOfClass:[CPDFTextWidgetAnnotation class]] ||
- [annotation isKindOfClass:[CPDFChoiceWidgetAnnotation class]] ||
- [annotation isKindOfClass:[CPDFButtonWidgetAnnotation class]]){
- KMFormPropertPanelViewController *vc = [[KMFormPropertPanelViewController alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- } else if ([annotation isKindOfClass:[CPDFSignatureWidgetAnnotation class]]) {
- KMFillSignShapePanel *vc = [[KMFillSignShapePanel alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- vc.callback = ^(CAnnotationType type) {
- if (type == CAnnotationTypeSignFalse) {
- self.titleLabel.stringValue = NSLocalizedString(@"Fork", nil);
- } else if (type == CAnnotationTypeSignTure) {
- self.titleLabel.stringValue = NSLocalizedString(@"Hook", nil);
- } else if (type == CAnnotationTypeSignCircle) {
- self.titleLabel.stringValue = NSLocalizedString(@"Rectangle", nil);
- } else if (type == CAnnotationTypeSignLine) {
- self.titleLabel.stringValue = NSLocalizedString(@"Line", nil);
- } else if (type == CAnnotationTypeSignDot) {
- self.titleLabel.stringValue = NSLocalizedString(@"Dot", nil);
- }
- };
- } else if ([annotation isKindOfClass:[CPDFLinkAnnotation class]]) {
- CPDFLinkAnnotation *linkAnnotation = annotations.firstObject;
- NSString *contents = nil;
- if ([linkAnnotation URL]) {
- contents = [linkAnnotation URL];
- if (contents) {
- contents = [NSString stringWithFormat:@"1%@", contents];
- } else {
- contents = @"";
- }
- } else {
- contents = [NSString stringWithFormat:@"0%@", @([[linkAnnotation destination] pageIndex]+1)];
- }
-
- KMAnnotationLinkViewController *vc = [[KMAnnotationLinkViewController alloc] init];
- vc.annotationModel = annotationModel;
- vc.pdfview = self.pdfView;
- vc.pageCount = self.pdfView.document.pageCount;
- [vc setContent:contents];
- vc.startDestination = [[CPDFDestination alloc] initWithDocument:self.pdfView.document pageIndex:linkAnnotation.page.pageIndex atPoint:linkAnnotation.bounds.origin zoom:self.pdfView.scaleFactor];
- if (linkAnnotation.destination) {
- CPDFDestination *des = linkAnnotation.destination;
- vc.targetDestination = [[CPDFDestination alloc] initWithDocument:des.document pageIndex:des.pageIndex atPoint:des.point zoom:des.zoom];
- }
-
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- } else if ([annotation isKindOfClass:[CSelfSignAnnotation class]]) {
- CSelfSignAnnotation *newAnnotation = (CSelfSignAnnotation *)annotation;
- if (newAnnotation.annotationType == CAnnotationTypeSignFalse ||
- newAnnotation.annotationType == CAnnotationTypeSignTure ||
- newAnnotation.annotationType == CAnnotationTypeSignCircle ||
- newAnnotation.annotationType == CAnnotationTypeSignLine ||
- newAnnotation.annotationType == CAnnotationTypeSignDot) {
- KMFillSignShapePanel *vc = [[KMFillSignShapePanel alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- vc.callback = ^(CAnnotationType type) {
- if (type == CAnnotationTypeSignFalse) {
- self.titleLabel.stringValue = NSLocalizedString(@"Fork", nil);
- } else if (type == CAnnotationTypeSignTure) {
- self.titleLabel.stringValue = NSLocalizedString(@"Hook", nil);
- } else if (type == CAnnotationTypeSignCircle) {
- self.titleLabel.stringValue = NSLocalizedString(@"Rectangle", nil);
- } else if (type == CAnnotationTypeSignLine) {
- self.titleLabel.stringValue = NSLocalizedString(@"Line", nil);
- } else if (type == CAnnotationTypeSignDot) {
- self.titleLabel.stringValue = NSLocalizedString(@"Dot", nil);
- }
- };
- } else if (newAnnotation.annotationType == CAnnotationTypeSignText ||
- newAnnotation.annotationType == CAnnotationTypeSignDate) {
- KMFillSignTextPanel *vc = [[KMFillSignTextPanel alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- }
- } else if ([annotation isKindOfClass:[CSelfSignAnnotationFreeText class]]) {
- CSelfSignAnnotationFreeText *newAnnotation = (CSelfSignAnnotationFreeText *)annotation;
- if (newAnnotation.subType == CAnnotationTypeSignText ||
- newAnnotation.subType == CAnnotationTypeSignDate) {
- KMFillSignTextPanel *vc = [[KMFillSignTextPanel alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- }
-
- } else if ([annotation isKindOfClass:[CPDFStampAnnotation class]]) {
- // KMAnnotationStampViewController *vc = [[KMAnnotationStampViewController alloc] init];
- // vc.annotationModel = annotationModel;
- // vc.pdfView = self.pdfView;
- // self.propertiesBox.contentView = vc.view;
- // self.contentViewController = vc;
- } else if ([annotation isKindOfClass:[CPDFListSignatureAnnotation class]]) {
-
- } else if ([annotation isKindOfClass:[CPDFSignatureAnnotation class]]) {
-
- } else {
- KMGeneralAnnotationViewController *vc = [[KMGeneralAnnotationViewController alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- if ([annotation isKindOfClass:[KMSelfSignAnnotation class]]) {
- __block typeof(self) blockSelf = self;
- vc.callBack = ^(CAnnotationType newType) {
- NSString *returnString = @"";
- if (newType == CAnnotationTypeSignFalse) {
- returnString = NSLocalizedString(@"X", nil);
- } else if (newType == CAnnotationTypeSignTure) {
- returnString = NSLocalizedString(@"Check mark", nil);
- } else if (newType == CAnnotationTypeSignCircle) {
- returnString = NSLocalizedString(@"Circle", nil);
- } else if (newType == CAnnotationTypeSignLine) {
- returnString = NSLocalizedString(@"Line", nil);
- } else if (newType == CAnnotationTypeSignDot) {
- returnString = NSLocalizedString(@"Dot", nil);
- } else if (newType == CAnnotationTypeSignText) {
- returnString = NSLocalizedString(@"Text", nil);
- } else if (newType == CAnnotationTypeInk) {
- returnString = NSLocalizedString(@"Pen", nil);
- } else if (newType == CAnnotationTypeEraser) {
- returnString = NSLocalizedString(@"Eraser", nil);
- }
- blockSelf.titleLabel.stringValue = returnString;
- };
- } else {
- vc.callBack = nil;
- }
- }
- }
- - (void)selectAnnotations:(NSArray *)annotations {
- CPDFAnnotation *fristAnnotation = annotations.firstObject;
- CAnnotationType annotationMode = CAnnotationTypeUnkown;
- if ([fristAnnotation isKindOfClass:[CPDFMarkupAnnotation class]]) {
- annotationMode = CAnnotationTypeHighlight;
- } else if ([fristAnnotation isKindOfClass:[CPDFInkAnnotation class]]) {
- annotationMode = CAnnotationTypeInk;
- } else if ([fristAnnotation isKindOfClass:[CPDFTextAnnotation class]]) {
- annotationMode = CAnnotationTypeAnchored;
- } else if ([fristAnnotation isKindOfClass:[CPDFSquareAnnotation class]]) {
- annotationMode = CAnnotationTypeSquare;
- } else if ([fristAnnotation isKindOfClass:[CPDFCircleAnnotation class]]) {
- annotationMode = CAnnotationTypeCircle;
- } else if ([fristAnnotation isKindOfClass:[CPDFLineAnnotation class]]) {
- if(((CPDFLineAnnotation *)fristAnnotation).startLineStyle == CPDFLineStyleNone &&
- ((CPDFLineAnnotation *)fristAnnotation).endLineStyle == CPDFLineStyleOpenArrow ) {
- annotationMode = CAnnotationTypeArrow;
- } else {
- annotationMode = CAnnotationTypeLine;
- }
- } else if ([fristAnnotation isKindOfClass:[CPDFLinkAnnotation class]]) {
- annotationMode = CAnnotationTypeLink;
- } else if ([fristAnnotation isKindOfClass:[CPDFStampAnnotation class]]) {
- if ([fristAnnotation isKindOfClass:[CSelfSignAnnotation class]]) {
- CSelfSignAnnotation *newAnnotation = (CSelfSignAnnotation *)fristAnnotation;
- if (newAnnotation.annotationType == CAnnotationTypeSignFalse)
- annotationMode = CAnnotationTypeSignFalse;
- else if(newAnnotation.annotationType == CAnnotationTypeSignTure)
- annotationMode = CAnnotationTypeSignTure;
- else if(newAnnotation.annotationType == CAnnotationTypeSignCircle)
- annotationMode = CAnnotationTypeSignCircle;
- else if(newAnnotation.annotationType == CAnnotationTypeSignLine)
- annotationMode = CAnnotationTypeSignLine;
- else if(newAnnotation.annotationType == CAnnotationTypeSignDot)
- annotationMode = CAnnotationTypeSignDot;
- else if(newAnnotation.annotationType == CAnnotationTypeSignDot)
- annotationMode = CAnnotationTypeSignDot;
- } else if ([fristAnnotation isKindOfClass:[CSelfSignAnnotationFreeText class]]) {
- CSelfSignAnnotationFreeText *newAnnotation = (CSelfSignAnnotationFreeText *)fristAnnotation;
- if (newAnnotation.subType == CAnnotationTypeSignText)
- annotationMode = CAnnotationTypeSignText;
- else if(newAnnotation.subType == CAnnotationTypeSignDate)
- annotationMode = CAnnotationTypeSignDate;
- } else {
- annotationMode = CAnnotationTypeStamp;
- }
- } else if ([fristAnnotation isKindOfClass:[CPDFSignatureAnnotation class]]) {
- annotationMode = CAnnotationTypeSignature;
- } else if ([fristAnnotation isKindOfClass:[CPDFFreeTextAnnotation class]]) {
- if ([fristAnnotation isKindOfClass:[CSelfSignAnnotationFreeText class]]) {
- CSelfSignAnnotationFreeText *newAnnotation = (CSelfSignAnnotationFreeText *)fristAnnotation;
- if (newAnnotation.subType == CAnnotationTypeSignText)
- annotationMode = CAnnotationTypeSignText;
- else if(newAnnotation.subType == CAnnotationTypeSignDate)
- annotationMode = CAnnotationTypeSignDate;
- } else {
- annotationMode = CAnnotationTypeFreeText;
- }
- }
-
- self.annotationMode = annotationMode;
-
- }
- - (void)setAnnotationMode:(CAnnotationType)annotationMode {
- _annotationMode = annotationMode;
- if (self.contentViewController) {
- [self.contentViewController.view removeFromSuperview];
- self.contentViewController = nil;
- }
- NSString *title = @"";
- if (annotationMode == CAnnotationTypeFreeText)
- title = NSLocalizedString(@"Text", @"Description for export");
- else if (annotationMode == CAnnotationTypeCircle)
- title = NSLocalizedString(@"Circle", @"Description for export");
- else if (annotationMode == CAnnotationTypeSquare)
- title = NSLocalizedString(@"Shape", @"Description for export");
- else if (annotationMode == CAnnotationTypeHighlight) {
- title = NSLocalizedString(@"Highlight", @"Description for export");
- if (_annotations.count > 1)
- title = NSLocalizedString(@"General", @"Description for export");
- }
- else if (annotationMode == CAnnotationTypeUnderline) {
- title = NSLocalizedString(@"Underline", @"Description for export");
- if (_annotations.count > 1)
- title = NSLocalizedString(@"General", @"Description for export");
- }
- else if (annotationMode == CAnnotationTypeStrikeOut)
- title = NSLocalizedString(@"Strikethrough", @"Description for export");
- else if (annotationMode == CAnnotationTypeLine)
- title = NSLocalizedString(@"Line", @"Description for export");
- else if (annotationMode == CAnnotationTypeArrow)
- title = NSLocalizedString(@"Arrow", @"Description for export");
- else if (annotationMode == CAnnotationTypeInk || annotationMode == CAnnotationTypeEraser)
- title = NSLocalizedString(@"Pen", @"Description for export");
- else if (annotationMode == CAnnotationTypeAnchored)
- title = NSLocalizedString(@"Note", @"Description for export");
- else if (annotationMode == CAnnotationTypeLink)
- title = NSLocalizedString(@"Link", @"Description for export");
- else if (annotationMode == CAnnotationTypeTextField)
- title = NSLocalizedString(@"Text Field", @"Description for export");
- else if (annotationMode == CAnnotationTypeCheckBox)
- title = NSLocalizedString(@"Check Box", @"Description for export");
- else if (annotationMode == CAnnotationTypeListMenu)
- title = NSLocalizedString(@"List Box", @"Description for export");
- else if (annotationMode == CAnnotationTypeComboBox)
- title = NSLocalizedString(@"Combo Box", @"Description for export");
- else if (annotationMode == CAnnotationTypeRadioButton)
- title = NSLocalizedString(@"Radio Button", @"Description for export");
- else if (annotationMode == CAnnotationTypeActionButton)
- title = NSLocalizedString(@"Button", @"Description for export");
- else if (annotationMode == CAnnotationTypeSignature)
- title = NSLocalizedString(@"Sample", @"Description for export");
- else if (annotationMode == CAnnotationTypeSignDot)
- title = NSLocalizedString(@"Dot", @"Description for export");
- else if (annotationMode == CAnnotationTypeSignLine)
- title = NSLocalizedString(@"Line", @"Description for export");
- else if (annotationMode == CAnnotationTypeSignCircle)
- title = NSLocalizedString(@"Rectangle", @"Description for export");
- else if (annotationMode == CAnnotationTypeSignFalse)
- title = NSLocalizedString(@"Fork", nil);
- else if (annotationMode == CAnnotationTypeSignTure)
- title = NSLocalizedString(@"Hook", nil);
- else if (annotationMode == CAnnotationTypeSignText)
- title = NSLocalizedString(@"Text", nil);
- else if (annotationMode == CAnnotationTypeSignDate)
- title = NSLocalizedString(@"Date", nil);
- else
- title = @"";
- if(_annotations.count > 1) {
- title = NSLocalizedString(@"Properties", nil);
- }
- self.titleLabel.stringValue = title;
- self.titleViewHeightConstraint.constant = 40;
- CPDFAnnotationModel *annotationModel = [[CPDFAnnotationModel alloc] initWithAnnotationType:annotationMode];
- if (annotationMode == CAnnotationTypeFreeText ||
- annotationMode == CAnnotationTypeAnchored ||
- annotationMode == CAnnotationTypeCircle ||
- annotationMode == CAnnotationTypeSquare ||
- annotationMode == CAnnotationTypeHighlight ||
- annotationMode == CAnnotationTypeUnderline ||
- annotationMode == CAnnotationTypeStrikeOut ||
- annotationMode == CAnnotationTypeLine ||
- annotationMode == CAnnotationTypeInk ||
- annotationMode == CAnnotationTypeEraser ||
- annotationMode == CAnnotationTypeArrow) {
- //处理多选
- if(_annotations.count > 1) {
- annotationModel = [[CPDFAnnotationModel alloc] initWithPDFAnnotations:_annotations];
- }
- KMGeneralAnnotationViewController *vc = [[KMGeneralAnnotationViewController alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- if (annotationMode == CAnnotationTypeInk || annotationMode == CAnnotationTypeEraser) {
- __block typeof(self) blockSelf = self;
- vc.callBack = ^(CAnnotationType newType) {
- NSString *returnString = @"";
- if (newType == CAnnotationTypeInk) {
- returnString = NSLocalizedString(@"Pen", nil);
- } else if (newType == CAnnotationTypeEraser) {
- returnString = NSLocalizedString(@"Eraser", nil);
- }
- blockSelf.titleLabel.stringValue = returnString;
- };
- } else {
- vc.callBack = nil;
- }
- } else if (annotationMode == CAnnotationTypeLink) {
- // KMAnnotationEmptyLinkViewController *vc = [[KMAnnotationEmptyLinkViewController alloc] init];
- // vc.annotationModel = annotationModel;
- // self.propertiesBox.contentView = vc.view;
- // self.contentViewController = vc;
-
- } else if (annotationMode == CAnnotationTypeRadioButton ||
- annotationMode == CAnnotationTypeCheckBox ||
- annotationMode == CAnnotationTypeTextField ||
- annotationMode == CAnnotationTypeComboBox ||
- annotationMode == CAnnotationTypeListMenu ||
- annotationMode == CAnnotationTypeActionButton) {
- KMFormPropertPanelViewController *vc = [[KMFormPropertPanelViewController alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- } else if (annotationMode == CAnnotationTypeSignFalse ||
- annotationMode == CAnnotationTypeSignTure ||
- annotationMode == CAnnotationTypeSignCircle ||
- annotationMode == CAnnotationTypeSignLine ||
- annotationMode == CAnnotationTypeSignDot) {
- if(_annotations.count > 1) {
- annotationModel = [[CPDFAnnotationModel alloc] initWithPDFAnnotations:_annotations];
- }
- KMFillSignShapePanel *vc = [[KMFillSignShapePanel alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- vc.callback = ^(CAnnotationType type) {
- if (type == CAnnotationTypeSignFalse) {
- self.titleLabel.stringValue = NSLocalizedString(@"Fork", nil);
- } else if (type == CAnnotationTypeSignTure) {
- self.titleLabel.stringValue = NSLocalizedString(@"Hook", nil);
- } else if (type == CAnnotationTypeSignCircle) {
- self.titleLabel.stringValue = NSLocalizedString(@"Rectangle", nil);
- } else if (type == CAnnotationTypeSignLine) {
- self.titleLabel.stringValue = NSLocalizedString(@"Line", nil);
- } else if (type == CAnnotationTypeSignDot) {
- self.titleLabel.stringValue = NSLocalizedString(@"Dot", nil);
- }
- };
- } else if (annotationMode == CAnnotationTypeSignText ||
- annotationMode == CAnnotationTypeSignDate) {
- if(_annotations.count > 1) {
- annotationModel = [[CPDFAnnotationModel alloc] initWithPDFAnnotations:_annotations];
- }
- KMFillSignTextPanel *vc = [[KMFillSignTextPanel alloc] init];
- vc.pdfView = self.pdfView;
- vc.annotationModel = annotationModel;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- } else if (annotationMode == CAnnotationTypeStamp) {
- self.titleViewHeightConstraint.constant = 0;
- KMAnnotationStampViewController *vc = [[KMAnnotationStampViewController alloc] init];
- vc.annotationModel = annotationModel;
- vc.pdfView = self.pdfView;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- } else if (annotationMode == CAnnotationTypeSignSignature) {
- KMSignatureAnnotationViewController *vc = [[KMSignatureAnnotationViewController alloc] init];
- self.titleViewHeightConstraint.constant = 0;
- vc.annotationModel = annotationModel;
- vc.pdfView = self.pdfView;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- }
- }
- - (void)setIsEmptyAnnotation:(BOOL)isEmptyAnnotation
- {
- _isEmptyAnnotation = isEmptyAnnotation;
- if (isEmptyAnnotation) {
- self.titleLabel.hidden = YES;
- self.emptyView.hidden = NO;
- } else {
- self.titleLabel.hidden = NO;
- self.emptyView.hidden = YES;
- }
- }
- - (void)setOpenPropertiesType:(KMOpenPropertiesType)openPropertiesType {
- _openPropertiesType = openPropertiesType;
- CPDFAnnotationModel * annotationModel = [[CPDFAnnotationModel alloc] initWithPDFAnnotations:_pdfView.activeAnnotations];
- if (openPropertiesType == KMOpenPropertiesType_PageDisplay) {
- // self.titleLabel.stringValue = NSLocalizedString(@"View Settings", nil);
- // KMPageDisplayPropertiesViewController *vc = [[KMPageDisplayPropertiesViewController alloc] init];
- // vc.mainController = self.mainController;
- // vc.pdfView = self.pdfView;
- // __block typeof(self) blockSelf = self;
- // vc.readerModeBlock = ^(BOOL isReaderMode) {
- // [blockSelf.mainController readMode:blockSelf];
- // };
- // self.propertiesBox.contentView = vc.view;
- // self.contentViewController = vc;
-
- } else if (openPropertiesType == KMOpenPropertiesType_Stamp) {
- // self.titleLabel.stringValue = NSLocalizedString(@"Stamp", nil);
- // KMAnnotationStampViewController *vc = [[KMAnnotationStampViewController alloc] init];
- // vc.annotationModel = annotationModel;
- // vc.pdfView = self.pdfView;
- // self.propertiesBox.contentView = vc.view;
- // self.contentViewController = vc;
-
- } else if (openPropertiesType == KMOpenPropertiesType_Link) {
- self.titleLabel.stringValue = NSLocalizedString(@"Link", nil);
- KMAnnotationLinkViewController *vc = [[KMAnnotationLinkViewController alloc] init];
- vc.annotationModel = annotationModel;
- vc.pdfview = self.pdfView;
- vc.pageCount = self.pdfView.document.pageCount;
- [vc setIsCreateLink:YES];
- self.propertiesBox.contentView = vc.view;
- } else if (openPropertiesType == KMOpenPropertiesType_ListBox ||
- openPropertiesType == KMOpenPropertiesType_ComboBox ||
- openPropertiesType == KMOpenPropertiesType_Button) {
-
- }
- }
- - (void)setIsContinuousAddStamp:(BOOL)isContinuousAddStamp {
- if (_annotations.count <= 0) {
- return;
- }
- CPDFAnnotation *annotation = _annotations.firstObject;
- CPDFAnnotationModel *annotationModel = [[CPDFAnnotationModel alloc] initWithPDFAnnotations:_annotations];
- if ([annotation isKindOfClass:[CPDFStampAnnotation class]]) {
- if (isContinuousAddStamp) {
- self.titleViewHeightConstraint.constant = 0;
- KMAnnotationStampViewController *vc = [[KMAnnotationStampViewController alloc] init];
- vc.annotationModel = annotationModel;
- vc.pdfView = self.pdfView;
- vc.isContinuousAddStamp = YES;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- }
- } else if ([annotation isKindOfClass:[CPDFSignatureAnnotation class]]) {
- if (isContinuousAddStamp) {
- KMSignatureAnnotationViewController *vc = [[KMSignatureAnnotationViewController alloc] init];
- self.titleViewHeightConstraint.constant = 0;
- vc.annotationModel = annotationModel;
- vc.pdfView = self.pdfView;
- self.propertiesBox.contentView = vc.view;
- self.contentViewController = vc;
- }
- }
- }
- + (CGFloat)heightWithAnnotation:(CPDFAnnotation *)annotation {
- if (!annotation) {
- return 0;
- }
- if ([annotation isKindOfClass:[CPDFLinkAnnotation class]] ||
- [annotation isKindOfClass:[CPDFMovieAnnotation class]] ||
- [annotation isKindOfClass:[CPDFSoundAnnotation class]]) {
- return 0;
- } else if ([annotation isKindOfClass:[KMSelfSignAnnotation class]]) {
- return 279;
- } else if ([annotation isKindOfClass:[CPDFStampAnnotation class]]) {
- return 279;
- } else if ([annotation isKindOfClass:[CPDFSignatureAnnotation class]]) {
- return 279;
- } else if ([annotation isKindOfClass:[CPDFSignatureWidgetAnnotation class]]) {
- return 279;
- } else {
- return 279;
- }
- }
- + (CGFloat)heightWithAnnotationMode:(CAnnotationType)annotationMode {
- if (CAnnotationTypeSignature == annotationMode ||
- CAnnotationTypeUnkown == annotationMode) {
- return 0;
- }
- return 279;
- }
- @end
|