12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145 |
- //
- // CPDFListView.m
- // ComPDFKit
- //
- // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
- //
- // THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
- // AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
- // UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
- // This notice may not be removed from this file.
- //
- #import "CPDFListView.h"
- #import "CPDFAnnotationModel.h"
- #import "CSelfSignAnnotation.h"
- #import "CSelfSignAnnotationFreeText.h"
- #import "CPDFListView+Private.h"
- #import "CPDFListView+Event.h"
- #import "CPDFListView+Tool.h"
- #import "CPDFListView+Extension.h"
- #import "CPDFListView+UndoManager.h"
- #import "NSImage+PDFListView.h"
- #import "NSCursor+PDFListView.h"
- #import "CPDFMarkupAnnotation+PDFListView.h"
- #import "CPDFListView+Extension.h"
- #import <PDF_Master-Swift.h>
- NSNotificationName const CPDFListViewSelectionChangedNotification = @"CPDFListViewSelectionChangedNotification";
- NSNotificationName const CPDFListViewToolModeChangeNotification = @"CPDFListViewToolModeChangeNotification";
- NSNotificationName const CPDFListViewAnnotationTypeChangeNotification = @"CPDFListViewAnnotationTypeChangeNotification";
- NSNotificationName const CPDFListViewMagnificationChangedNotification = @"CPDFListViewMagnificationChangedNotification";
- NSNotificationName const CPDFListViewDidAddAnnotationNotification = @"CPDFListViewDidAddAnnotationNotification";
- NSNotificationName const CPDFListViewDidRemoveAnnotationNotification = @"CPDFListViewDidRemoveAnnotationNotification";
- NSNotificationName const CPDFListViewActiveAnnotationsChangeNotification = @"CPDFListViewActiveAnnotationsChangeNotification";
- NSNotificationName const CPDFListViewAnnotationsAttributeHasChangeNotification = @"CPDFListViewAnnotationsAttributeHasChangeNotification";
- @implementation CPDFListView
- #pragma mark - Init
- - (id)init {
- self = [super init];
- if (self) {
- [self commonInitialization];
- }
- return self;
- }
- - (id)initWithFrame:(NSRect)frameRect {
- self = [super initWithFrame:frameRect];
- if (self) {
- [self commonInitialization];
- }
- return self;
- }
- - (id)initWithCoder:(NSCoder *)decoder {
- self = [super initWithCoder:decoder];
- if (self) {
- [self commonInitialization];
- }
- return self;
- }
- - (void)updateLayer {
- [super updateLayer];
- if (@available(macOS 10.14, *)) {
- if ([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewBackgroundColor)]) {
- NSColor *color = [self.pdfListViewDelegate PDFListViewBackgroundColor];
- self.backgroundColor = color;
- }
- }
- }
- - (void)commonInitialization {
- self.selectionPageIndex = NSNotFound;
- self.clickLineAnnotation = nil;
- self.isClickDoubleCreatLine = NO;
-
- self.activeAnnotations = [NSMutableArray array];
- self.selectAnnotations = [NSMutableArray array];
- self.dragHoverPoints = [NSMutableArray array];
- self.aCopyAnnotations = [NSMutableArray array];
-
- [self registerAsObserver];
-
- [self addTrackingArea];
-
- [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handlePageChangedNotification:)
- name:CPDFViewPageChangedNotification object:self];
- }
- - (void)addTrackingArea {
- NSTrackingArea *trackingArea = [[NSTrackingArea alloc] initWithRect:self.bounds options:NSTrackingMouseEnteredAndExited | NSTrackingInVisibleRect | NSTrackingActiveInKeyWindow | NSTrackingMouseMoved owner:self userInfo:nil];
- [self addTrackingArea:trackingArea];
- }
- - (void)goToPageIndex:(NSInteger)pageIndex animated:(BOOL)animated {
- if (self.currentPageIndex != pageIndex) {
- [self recordForwardBackWithPageIndex:self.currentPageIndex];
- }
-
- [super goToPageIndex:pageIndex animated:animated];
- }
- - (void)goToSelection:(CPDFSelection *)selection animated:(BOOL)animated {
- if (self.currentPageIndex != selection.page.pageIndex) {
- [self recordForwardBackWithPageIndex:self.currentPageIndex];
- }
-
- [super goToSelection:selection animated:animated];
- }
- - (void)goToDestination:(CPDFDestination *)destination {
- [super goToDestination:destination];
- }
- - (void)goToRect:(CGRect)rect onPage:(CPDFPage *)page animated:(BOOL)animated {
- if (self.currentPageIndex != page.pageIndex) {
- [self recordForwardBackWithPageIndex:self.currentPageIndex];
- }
-
- [super goToRect:rect onPage:page animated:animated];
- }
- - (void)goToTargetPoint:(NSPoint)point onPage:(CPDFPage *)page atScrollPosition:(CScrollPosition)scrollPosition {
- if (self.currentPageIndex != page.pageIndex) {
- [self recordForwardBackWithPageIndex:self.currentPageIndex];
- }
-
- [super goToTargetPoint:point onPage:page atScrollPosition:scrollPosition];
- }
- #pragma mark - Setter & Get
- - (void)setDocument:(CPDFDocument *)document {
- @synchronized (self) {
- self.selectionRect = NSZeroRect;
- self.selectionPageIndex = NSNotFound;
- }
- // self.toolMode = CFormToolMode;
- // self.annotationType = CAnnotationTypeRadioButton;
- // CStampSignatureObject *objc = [[CStampSignatureObject alloc] initImageStampWithFilePath:[[NSBundle mainBundle] pathForResource:@"Quick Start Guide" ofType:@"pdf"]];
- // [self setAddStampObject:objc keepToolModel:YES];
- //
- [super setDocument:document];
-
- [self.window makeFirstResponder:self];
-
- }
- -(void)setToolMode:(CToolMode)newToolMode {
- if(newToolMode != _toolMode) {
- BOOL isDisplayAnnotationView = NO;
-
- if(self.isSetLinkDestinationArea)
- self.isSetLinkDestinationArea = NO;
-
- if ((CTextToolMode == _toolMode || CNoteToolMode == _toolMode) && CTextToolMode != newToolMode) {
- if (newToolMode != CNoteToolMode && self.activeAnnotation) {
- if([self.activeAnnotation isKindOfClass:[CPDFFreeTextAnnotation class]]) {
- CPDFFreeTextAnnotation *freeTextAn = (CPDFFreeTextAnnotation *)self.activeAnnotation;
- if ([self isEditWithCurrentFreeText:freeTextAn]) {
- [self commitEditAnnotationFreeText:freeTextAn];
- }
- }
- [self updateActiveAnnotations:@[]];
- }
- if ([self currentSelection])
- [self setCurrentSelection:nil];
- } else if (_toolMode == CSelectToolMode && NSEqualRects(self.selectionRect, NSZeroRect) == NO) {
- self.selectionRect = NSZeroRect;
- self.selectionPageIndex = NSNotFound;
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFViewSelectionChangedNotification object:self];
- });
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewChangedSelectionOrMagnification:)])
- [self.pdfListViewDelegate PDFListViewChangedSelectionOrMagnification:self];
-
- isDisplayAnnotationView = YES;
- }
-
- BOOL highlightFormFiled = [[NSUserDefaults standardUserDefaults] boolForKey:@"kPDFViewHighlightFormFiledKey"];
- if (CFormToolMode == _toolMode && !highlightFormFiled) {
- [[CPDFKitConfig sharedInstance] setEnableFormFieldHighlight:highlightFormFiled];
- isDisplayAnnotationView = YES;
- } else if (CFormToolMode == newToolMode && !highlightFormFiled) {
- [[CPDFKitConfig sharedInstance] setEnableFormFieldHighlight:YES];
- isDisplayAnnotationView = YES;
- }
-
- if(CEditPDFToolMode == newToolMode)
- [self beginEditingLoadType:CEditingLoadTypeText|CEditingLoadTypeImage];
-
- if(_toolMode == CEditPDFToolMode) {
- if(self.isEdited) {
- [self commitEditing];
- }
- [self endOfEditing];
- }
-
- _toolMode = newToolMode;
-
- self.selectZoomToolModeZoomOut = NO;
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewChangedToolMode:forToolMode:)])
- [self.pdfListViewDelegate PDFListViewChangedToolMode:self forToolMode:newToolMode];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFListViewToolModeChangeNotification object:self];
- });
- [self resetPDFViewAnnotation];
-
- if(isDisplayAnnotationView)
- [self setNeedsDisplayAnnotationViewForVisiblePages];
- }
- }
- -(void)setShowHopnumber:(BOOL)showHopnumber {
- _showHopnumber = showHopnumber;
- [self setNeedsDisplayAnnotationViewForVisiblePages];
- }
- - (void)setAnnotationType:(CAnnotationType)annotationType {
- if (_annotationType != annotationType) {
- if(CAnnotationTypeLink == annotationType || CAnnotationTypeLink == _annotationType)
- [self setNeedsDisplayAnnotationViewForVisiblePages];
- _annotationType = annotationType;
-
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewChangedAnnotationType:forAnnotationType:)])
- [self.pdfListViewDelegate PDFListViewChangedAnnotationType:self forAnnotationType:annotationType];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFListViewAnnotationTypeChangeNotification object:self];
- });
- }
- if(self.activeAnnotations.count > 0) {
- if([self.activeAnnotation isKindOfClass:[CPDFFreeTextAnnotation class]]) {
- CPDFFreeTextAnnotation *freeTextAn = (CPDFFreeTextAnnotation *)self.activeAnnotation;
- if ([self isEditWithCurrentFreeText:freeTextAn]) {
- [self commitEditAnnotationFreeText:freeTextAn];
- }
- }
- [self updateActiveAnnotations:@[]];
- [self setNeedsDisplayAnnotationViewForVisiblePages];
- }
-
- if(self.isSetLinkDestinationArea)
- self.isSetLinkDestinationArea = NO;
- [self resetPDFViewAnnotation];
- }
- - (NSRect)currentSelectionRect {
- if (CSelectToolMode == self.toolMode)
- return self.selectionRect;
- return NSZeroRect;
- }
- - (CPDFAnnotation *)activeAnnotation {
- return self.activeAnnotations.lastObject;
- }
- - (void)setHideNotes:(BOOL)hideNotes {
- _hideNotes = hideNotes;
-
- for(NSInteger i = 0;i<self.document.pageCount;i++) {
- CPDFPage *page = [self.document pageAtIndex:i];
- for (CPDFAnnotation *annotation in page.annotations) {
- [annotation setAnnotationShouldDisplay:!self.hideNotes];
- [annotation setHidden: self.hideNotes];
- }
- }
- [self setNeedsDisplayAnnotationViewForVisiblePages];
- }
- -(void)setIsSetLinkDestinationArea:(BOOL)isSetLinkDestinationArea {
- _isSetLinkDestinationArea = isSetLinkDestinationArea;
- if (_isSetLinkDestinationArea) {
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewLinkDestinationStart:withActiveAnnotation:)]) {
- [self.pdfListViewDelegate PDFListViewLinkDestinationStart:self withActiveAnnotation:self.activeAnnotation];
- }
- } else {
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewLinkDestinationEnd:withActiveAnnotation:)]) {
- [self.pdfListViewDelegate PDFListViewLinkDestinationEnd:self withActiveAnnotation:self.activeAnnotation];
- }
- }
- }
- #pragma mark - Public
- - (CPDFAnnotation *)addAnnotationWithType:(CAnnotationType)annotationType selection:(CPDFSelection *)selection page:(CPDFPage *)page bounds:(NSRect)bounds {
- CPDFAnnotation *annotation = nil;
-
- NSString *text = [selection PDFListViewCleanedString];
-
- if([CPDFListView isMarkupAnnotationType:annotationType]) {
- if(selection){
- annotation = [self addPDFSelection:selection annotationTyoe:annotationType];
- [annotation setContents:text?:@""];
- } else NSBeep();
- } else {
- BOOL isInitial = NO;
- if(selection) {
- CGRect noteRect = selection.bounds;
- isInitial = NSEqualSizes(noteRect.size, NSZeroSize);
- } else {
- isInitial = NSEqualSizes(bounds.size, NSZeroSize);
- }
- CPDFAnnotationModel *annotationModel = [[CPDFAnnotationModel alloc]initWithAnnotationType:annotationType];
- CGSize size = CGSizeMake(annotationModel.noteWidth, annotationModel.noteHeight);
- if(annotationType == CAnnotationTypeAnchored)
- bounds = CGRectMake(bounds.origin.x, bounds.origin.y, size.width, size.height);
- if (annotationType == CAnnotationTypeCircle || annotationType == CAnnotationTypeSquare || annotationType == CAnnotationTypeLine || annotationType == CAnnotationTypeArrow || annotationType == CAnnotationTypeAnchored) {
- bounds = KMConstrainRect(bounds, [page boundsForBox:[self displayBox]]);
- }
-
- if (isInitial)
- bounds = annotationType == CAnnotationTypeAnchored ? CPDFListViewRectFromCenterAndSize(bounds.origin, size) : CPDFListViewRectFromCenterAndSquareSize(bounds.origin, MIN_NOTE_SIZE);
- switch (annotationType) {
- case CAnnotationTypeFreeText:
- annotation = [[CPDFFreeTextAnnotation alloc]initWithPDFListViewNoteWith:self.document];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeAnchored:
- annotation = [[CPDFTextAnnotation alloc]initWithPDFListViewNoteWith:self.document];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeCircle:
- annotation = [[CPDFCircleAnnotation alloc]initWithPDFListViewNoteWith:self.document];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeSquare:
- annotation = [[CPDFSquareAnnotation alloc]initWithPDFListViewNoteWith:self.document];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeLine:
- annotation = [[CPDFLineAnnotation alloc]initWithPDFListViewNoteWith:self.document annotationType:CAnnotationTypeLine];
- [(CPDFLineAnnotation *)annotation setObservedStartPoint:CGPointMake(bounds.origin.x, bounds.origin.y)];
- [(CPDFLineAnnotation *)annotation setObservedEndPoint:CGPointMake(bounds.origin.x + bounds.size.width,bounds.origin.y+ bounds.size.height)];
- [(CPDFLineAnnotation *)annotation setStartLineStyle:CPDFLineStyleNone];
- [(CPDFLineAnnotation *)annotation setEndLineStyle:CPDFLineStyleNone];
- break;
- case CAnnotationTypeArrow: {
- annotation = [[CPDFLineAnnotation alloc]initWithPDFListViewNoteWith:self.document annotationType:CAnnotationTypeArrow];
- [(CPDFLineAnnotation *)annotation setObservedStartPoint:CGPointMake(bounds.origin.x, bounds.origin.y)];
- [(CPDFLineAnnotation *)annotation setObservedEndPoint:CGPointMake(bounds.origin.x + bounds.size.width,bounds.origin.y+ bounds.size.height)];
- }
- break;
- case CAnnotationTypeLink:
- annotation = [[CPDFLinkAnnotation alloc] initWithPDFListViewNoteWith:self.document];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeTextField:
- annotation = [[CPDFTextWidgetAnnotation alloc] initWithPDFListViewNoteWith:self.document];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeCheckBox:
- annotation = [[CPDFButtonWidgetAnnotation alloc] initWithPDFListViewNoteWith:self.document controlType:CPDFWidgetCheckBoxControl];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeRadioButton:
- annotation = [[CPDFButtonWidgetAnnotation alloc] initWithPDFListViewNoteWith:self.document controlType:CPDFWidgetRadioButtonControl];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeListMenu:
- annotation = [[CPDFChoiceWidgetAnnotation alloc] initWithPDFListViewNoteWith:self.document listChoice:YES];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeComboBox:
- annotation = [[CPDFChoiceWidgetAnnotation alloc] initWithPDFListViewNoteWith:self.document listChoice:NO];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeSignature:
- annotation = [[CPDFSignatureWidgetAnnotation alloc] initWithPDFListViewNoteWith:self.document];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeActionButton:
- annotation = [[CPDFButtonWidgetAnnotation alloc] initWithPDFListViewNoteWith:self.document controlType:CPDFWidgetPushButtonControl];
- annotation.bounds = bounds;
- break;
- case CAnnotationTypeSignFalse:
- case CAnnotationTypeSignTure:
- case CAnnotationTypeSignCircle:
- case CAnnotationTypeSignLine:
- case CAnnotationTypeSignDot:
- annotation = [[CSelfSignAnnotation alloc]initPDFListViewNoteWithDocument:self.document type:self.annotationType];
- annotation.bounds = bounds;
- [(CSelfSignAnnotation *)annotation updateAppearanceStream];
- break;
- case CAnnotationTypeSignText:
- case CAnnotationTypeSignConfig:
- case CAnnotationTypeSignDate:
- annotation = [[CSelfSignAnnotationFreeText alloc]initPDFListViewNoteWithDocument:self.document subType:self.annotationType string:@"" bounds:bounds];
- break;
- case CAnnotationTypeRedact:
- annotation = [self addRedactPDFSelection:selection];
- break;
- default:
- break;
- }
- }
-
- if (annotation) {
- if (annotationType != CAnnotationTypeLine && annotationType != CAnnotationTypeArrow && annotationType != CAnnotationTypeInk && [text length] > 0)
- [annotation setString:text];
-
- [self addAnnotation:annotation toPage:page];
- }
-
- return annotation;
- }
- - (void)drawAnnotation:(CPDFAnnotation *)annotation toContext:(CGContextRef)context {
- [super drawAnnotation:annotation toContext:context];
-
- if ([self.pdfListViewDelegate respondsToSelector:@selector(PDFListView:needDrawAnnotation:)]) {
- if ([self.pdfListViewDelegate PDFListView:self needDrawAnnotation:annotation] == false) {
- return;
- }
- }
-
- if (CFormToolMode == _toolMode &&
- [annotation isKindOfClass:[CPDFWidgetAnnotation class]] && self.showFormFieldName && !annotation.isHidden) {
-
- CPDFWidgetAnnotation *annotationWidget = (CPDFWidgetAnnotation*)annotation;
- NSString *fieldName = annotationWidget.fieldName;
- if(self.showHopnumber) {
- NSInteger hopNumen = annotationWidget.widgetHopNumber;
- if(fieldName) {
- fieldName = [NSString stringWithFormat:@"%ld %@",hopNumen,fieldName];
- } else {
- fieldName = [NSString stringWithFormat:@"%ld",hopNumen];
- }
-
- }
- if (fieldName.length > 0) {
- CGContextSaveGState(context);
- NSMutableParagraphStyle *paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
- paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
- paragraphStyle.alignment = NSTextAlignmentLeft;
- NSColor *backgroundColor = [NSColor blackColor];
- if ([self.activeAnnotations containsObject:annotation]) {
- backgroundColor = [NSColor colorWithRed:82.0/255.0 green:102.0/255.0 blue:204.0/255.0 alpha:1.0];
- }
-
- if([CPDFKitConfig sharedInstance].isShowFormRequiredFlagColor)
- backgroundColor = [CPDFKitConfig sharedInstance].formRequiredFlagColor?:[NSColor redColor];
-
- NSDictionary *attributes = @{NSFontAttributeName : [NSFont systemFontOfSize:12],
- NSForegroundColorAttributeName : [NSColor whiteColor],
- NSBackgroundColorAttributeName : backgroundColor,
- NSParagraphStyleAttributeName : paragraphStyle};
- NSString* drawString = fieldName;
- drawString = [drawString getMaxStringWithBounds:annotationWidget.bounds attributes:attributes];
-
- CGSize size = [drawString sizeWithAttributes:attributes];
- CGRect drawRect = annotationWidget.bounds;
- drawRect.origin.y += (drawRect.size.height - size.height)/2.0;
- drawRect.origin.x += (drawRect.size.width - size.width)/2.0;
- drawRect.size.height = size.height;
- drawRect.size.width = size.width;
-
- [NSGraphicsContext saveGraphicsState];
- [NSGraphicsContext setCurrentContext:[NSGraphicsContext graphicsContextWithGraphicsPort:context flipped:NO]];
- [drawString drawInRect:drawRect withAttributes:attributes];
- [NSGraphicsContext restoreGraphicsState];
- CGContextRestoreGState(context);
-
- NSRect rect = [self integralRect:[annotationWidget bounds] onPage:[annotationWidget page]];
- CGFloat lineWidth = [self unitWidthOnPage:[annotationWidget page]];
- CGContextSaveGState(context);
- CGColorRef color = [NSColor blackColor].CGColor;
- CGContextSetStrokeColorWithColor(context, color);
- CGContextStrokeRectWithWidth(context, CGRectInset(NSRectToCGRect(rect), 0,0), lineWidth);
- }
- } else if(CNoteToolMode== _toolMode && _annotationType == CAnnotationTypeLink && [annotation isKindOfClass:[CPDFLinkAnnotation class]]) {
- CGContextSaveGState(context);
- NSMutableParagraphStyle *paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
- paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
- paragraphStyle.alignment = NSTextAlignmentLeft;
- NSColor *backgroundColor = [NSColor clearColor];
-
- NSDictionary *attributes = @{NSFontAttributeName : [NSFont systemFontOfSize:12],
- NSForegroundColorAttributeName : [NSColor whiteColor],
- NSBackgroundColorAttributeName : backgroundColor,
- NSParagraphStyleAttributeName : paragraphStyle};
-
- NSString *drawString = NSLocalizedString(@"No Destination", nil);
- CPDFDestination *destination = [(CPDFLinkAnnotation *)annotation destination];
- if(destination) {
- CPDFPage *page = destination.page;
- NSString * url = [(CPDFLinkAnnotation *)annotation URL];
-
- if(destination.page) {
- NSUInteger index = [self.document indexForPage:page] + 1;
- drawString = [NSString stringWithFormat:@"%@ %@",NSLocalizedString(@"to Page",nil),@(index)];
- } else if(url.length > 0) {
- drawString = url;
- }
- }
- drawString = [drawString getMaxStringWithBounds:annotation.bounds attributes:attributes];
-
- CGSize size = [drawString sizeWithAttributes:attributes];
- CGRect drawRect = annotation.bounds;
- drawRect.origin.y += (drawRect.size.height - size.height)/2.0;
- drawRect.origin.x += (drawRect.size.width - size.width)/2.0;
- drawRect.size.height = size.height;
- drawRect.size.width = size.width;
-
- CGContextSaveGState(context);
- CGContextSetFillColorWithColor(context, [NSColor colorWithRed:23.0/255.0 green:112.0/255.0 blue:244.0/255.0 alpha:0.5].CGColor);
- CGContextFillRect(context,annotation.bounds);
- CGContextRestoreGState(context);
-
- [NSGraphicsContext saveGraphicsState];
- CGRect frameRect=CGRectMake(annotation.bounds.origin.x, annotation.bounds.origin.y + (annotation.bounds.size.height - 20)/2, annotation.bounds.size.width, 20);
- float fontSize = 9;
- NSColor *textColor = [NSColor whiteColor];
- CTTextAlignment alignMent = kCTTextAlignmentCenter;
- CFStringRef stringRef = (__bridge CFStringRef)drawString;
- NSMutableAttributedString* attString = [[NSMutableAttributedString alloc] initWithString:drawString];
- NSInteger _stringLength=[drawString length];
- CTTextAlignment theAlignment = alignMent;
- CTParagraphStyleSetting theSettings[1] =
- {
- { kCTParagraphStyleSpecifierAlignment, sizeof(CTTextAlignment),&theAlignment
- }
-
- };
-
- CTParagraphStyleRef paragraphStyleRef = CTParagraphStyleCreate(theSettings, 1);
- [attString addAttribute:(id)kCTParagraphStyleAttributeName value:(id)paragraphStyleRef range:NSMakeRange(0, _stringLength)];
- [attString addAttribute:(id)kCTForegroundColorAttributeName value:(id)textColor.CGColor range:NSMakeRange(0, _stringLength)];
- [attString addAttribute:(id)kCTFontNameAttribute value:@"Courier" range:NSMakeRange(0, _stringLength)];
- CFAttributedStringRef attrString =(__bridge CFAttributedStringRef) attString;
- CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString(attrString);
- CGMutablePathRef framePath = CGPathCreateMutable();
- CGPathAddRect(framePath, NULL, frameRect);
- CFRange currentRange = CFRangeMake(0, 0);
- CTFrameRef frameRef = CTFramesetterCreateFrame(framesetter, currentRange, framePath, NULL);
- CGPathRelease(framePath);
- CTFrameDraw(frameRef, context);
- CFRelease(frameRef);
- CFRelease(framesetter);
- [NSGraphicsContext restoreGraphicsState];
- CGContextRestoreGState(context);
- }
- }
- - (void)setAddStampObject:(CStampSignatureObject *)stampObject keepToolModel:(BOOL)isToolModel {
- if (CAnnotationTypeStamp == self.annotationType ||
- CAnnotationTypeSignSignature == self.annotationType) {
- self.stampObject = stampObject;
- self.isStampModel = isToolModel;
- [NSCursor clearStampCursor];
- }
- }
- - (void)addAnnotationWithImage:(NSImage *)image page:(CPDFPage *)page point:(NSPoint)point {
- NSRect bounds = NSZeroRect;
- CPDFSelection *selection = [self currentSelection];
-
- CGFloat defaultWidth = 360;
- CGFloat defaultHeight = 90;
- NSSize defaultSize = ([page rotation] % 180 == 0) ? NSMakeSize(defaultWidth, defaultHeight) : NSMakeSize(defaultHeight, defaultWidth);
- bounds = CPDFListViewRectFromCenterAndSize(point, defaultSize);
-
- // Make sure it fits in the page
- bounds = CPDFListViewConstrainRect(bounds, [page boundsForBox:[self displayBox]],[CPDFListViewConfig defaultManager].annotationBorderOffset.floatValue);
- // bounds = CPDFListViewConstrainRect(bounds, [page boundsForBox:[self displayBox]]);
- if (page != nil) {
- BOOL isInitial = NSEqualSizes(bounds.size, NSZeroSize) && selection == nil;
- // new note added by note tool mode, don't add actual zero sized notes
- if (isInitial)
- bounds = CPDFListViewRectFromCenterAndSquareSize(bounds.origin, 8.0);
-
- CGFloat borderDefaultWidth = image.size.width;
- CGFloat borderScale = borderDefaultWidth/image.size.height;
- if (bounds.size.width/bounds.size.height > borderScale) {
- bounds.size.height = bounds.size.height;
- bounds.size.width = bounds.size.height*borderScale;
- } else {
- bounds.size.width = bounds.size.width;
- bounds.size.height = bounds.size.width/borderScale;
- }
-
- CPDFListStampAnnotation *newAnnotation = [[CPDFListStampAnnotation alloc] initWithDocument:self.document image:image];
- newAnnotation.bounds = bounds;
- [newAnnotation setBorderBoundsWithImage:image];
- [self addAnnotation:newAnnotation toPage:page];
- [[self undoManager] setActionName:NSLocalizedString(@"Add Note", @"Undo action name")];
-
- [self updateActiveAnnotations:@[newAnnotation]];
- [self setNeedsDisplayAnnotation:newAnnotation];
- }
- else NSBeep();
- }
- - (void)updateIsRightActiveAnnotations:(NSArray<CPDFAnnotation *> *)activeAnnotations {
- [self refreshActiveAnnotations:activeAnnotations isRight:YES];
- }
- - (void)updateActiveAnnotations:(NSArray<CPDFAnnotation *> *)activeAnnotations {
- [self refreshActiveAnnotations:activeAnnotations isRight:NO];
- }
- -(void)refreshActiveAnnotations:(NSArray<CPDFAnnotation *> *)activeAnnotations isRight:(BOOL)isRight {
- // for (CPDFAnnotation *annotation in self.activeAnnotations) {
- // if([annotation isKindOfClass:[CPDFLinkAnnotation class]]) {
- // CPDFLinkAnnotation *linkAnnotation = (CPDFLinkAnnotation *)annotation;
- // if((linkAnnotation.destination || linkAnnotation.URL.length > 0)) {
- // } else {
- // [self removeAnnotation:linkAnnotation];
- // }
- // }
- // }
-
- if(activeAnnotations) {
- NSArray *selectTure = [activeAnnotations filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF in %@", self.activeAnnotations]];
-
- BOOL isSame = NO;
- if(self.activeAnnotations.count == activeAnnotations.count && self.activeAnnotations.count == selectTure.count) isSame = YES;
-
- if(!isSame) {
- self.activeAnnotations = [NSMutableArray arrayWithArray:activeAnnotations];
-
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewChangeatioActiveAnnotations:forActiveAnnotations:isRightMenu:)])
- [self.pdfListViewDelegate PDFListViewChangeatioActiveAnnotations:self forActiveAnnotations:self.activeAnnotations isRightMenu:isRight];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFListViewActiveAnnotationsChangeNotification object:self];
- });
- }
- } else if (!activeAnnotations && self.activeAnnotations.count > 0) {
- [self.activeAnnotations removeAllObjects];
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewChangeatioActiveAnnotations:forActiveAnnotations:isRightMenu:)])
- [self.pdfListViewDelegate PDFListViewChangeatioActiveAnnotations:self forActiveAnnotations:self.activeAnnotations isRightMenu:isRight];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFListViewActiveAnnotationsChangeNotification object:self];
- });
- }
- }
- - (void)addActiveAnnotations:(NSArray<CPDFAnnotation *> *)activeAnnotations {
- BOOL isContains = YES;
- for (CPDFAnnotation *annotation in activeAnnotations) {
- if(![self.activeAnnotations containsObject:annotation]) {
- [self.activeAnnotations addObject:annotation];
- isContains = NO;
- }
- }
-
- if(!isContains) {
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewChangeatioActiveAnnotations:forActiveAnnotations:isRightMenu:)])
- [self.pdfListViewDelegate PDFListViewChangeatioActiveAnnotations:self forActiveAnnotations:self.activeAnnotations isRightMenu:NO];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFListViewActiveAnnotationsChangeNotification object:self];
- });
- }
- }
- - (void)removeActiveAnnotations:(NSArray<CPDFAnnotation *> *)removeAnnotations {
- BOOL isContains = NO;
- NSMutableArray *tarr = [NSMutableArray arrayWithArray:self.activeAnnotations];
- [tarr removeObjectsInArray:removeAnnotations];
- self.activeAnnotations = tarr;
- isContains = YES;
- if(isContains) {
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewChangeatioActiveAnnotations:forActiveAnnotations:isRightMenu:)])
- [self.pdfListViewDelegate PDFListViewChangeatioActiveAnnotations:self forActiveAnnotations:self.activeAnnotations isRightMenu:NO];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFListViewActiveAnnotationsChangeNotification object:self];
- });
- }
- }
- - (void)editAnnotation:(CPDFAnnotation *)annotation {
- if ([annotation isKindOfClass:[CPDFFreeTextAnnotation class]]) {
- [self editAnnotationFreeText:(CPDFFreeTextAnnotation *)annotation];
- [[self window] makeFirstResponder:self];
-
- [self setNeedsDisplayAnnotation:annotation];
- } else {
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewEditAnnotation:forAnnotation:)]) {
- [self.pdfListViewDelegate PDFListViewEditAnnotation:self forAnnotation:annotation];
- } else {
- [CPDFListView cancelPreviousPerformRequestsWithTarget:self selector:@selector(showHUDHint:) object:self.hoverAnnotation];
- if (!self.popOver) {
- _popOver = [[NSPopover alloc] init];
- }
-
- if([annotation isKindOfClass:[CPDFTextAnnotation class]]) {
- __block typeof(self) blockSelf = self;
- _popOver.delegate = self;
- CPDFListEditAnnotationViewController *vc = [[CPDFListEditAnnotationViewController alloc] initWithNibName:@"CPDFListEditAnnotationViewController" bundle:[NSBundle mainBundle] annotation:annotation];
- vc.pdflistView = self;
- _popOver.contentViewController = vc;
- vc.closeCallBack = ^{
- [blockSelf.popOver close];
- };
- NSBox *box = (NSBox *)vc.view;
- NSView *popoverView = [[[self.popOver contentViewController] view] superview];
- [popoverView setWantsLayer:YES];
-
- vc.changeColorCallBack = ^{
- NSColor *borColor = annotation.color?:[NSColor whiteColor];
- [[popoverView layer] setBackgroundColor:borColor.CGColor];
- [blockSelf setNeedsDisplayAnnotationViewForPage:annotation.page];
- };
- NSColor *borColor = annotation.color?:[NSColor whiteColor];
- [[popoverView layer] setBackgroundColor:borColor.CGColor];
- _popOver.animates = YES;
- _popOver.behavior = NSPopoverBehaviorTransient;
- [_popOver showRelativeToRect:[self convertRect:annotation.bounds fromPage:annotation.page] ofView:self preferredEdge:NSMaxXEdge];
- } else if(![annotation isKindOfClass:[CPDFLinkAnnotation class]]){
- CPDFListAnnotationNoteWindowController *wc = [CPDFListAnnotationNoteWindowController sharedInstance];
- CGRect rect = wc.window.frame;
- CGRect anBounds = [self convertRect:annotation.bounds fromPage:annotation.page];
-
- anBounds = [self convertRectToScreen:anBounds];
- rect.origin.x = anBounds.origin.x;
- rect.origin.y = anBounds.origin.y;
- if (@available(macOS 10.13, *))
- [wc.window makeKeyAndOrderFront:nil];
- else
- [wc showWindow:nil];
- [wc updateAnnotation:annotation];
- [wc.window setFrame:rect display:YES animate:NO];
- wc.window.title = @"";
- }
-
- }
- }
- }
- - (void)rotateStampAnnotation:(CPDFListStampAnnotation *)annotation rotateAngle:(NSInteger)angle {
- if([annotation isKindOfClass:[CPDFListStampAnnotation class]]) {
- CPDFListStampAnnotation *stampAnnotation = (CPDFListStampAnnotation *)annotation;
- NSInteger rotation = stampAnnotation.rotation;
- rotation = rotation - angle;
-
- if (rotation < 0) {
- rotation += 360;
- } else if (rotation >= 360) {
- rotation-=360;
- }
- [annotation setRotation:rotation];
- rotation = [annotation appearanceStreamRotation];
-
- [self setNeedsDisplayAnnotationViewForPage:annotation.page];
-
- [[[self undoManager] prepareWithInvocationTarget:self] rotateStampAnnotation:annotation rotateAngle:-angle];
- }
- }
- - (void)rotateSignatureAnnotation:(CPDFListSignatureAnnotation *)annotation rotateAngle:(NSInteger)angle {
- if([annotation isKindOfClass:[CPDFListSignatureAnnotation class]]) {
- CPDFListSignatureAnnotation *signatureAnnotation = (CPDFListSignatureAnnotation *)annotation;
- NSInteger rotation = signatureAnnotation.rotation;
- rotation = rotation - angle;
-
- if (rotation < 0) {
- rotation += 360;
- } else if (rotation >= 360) {
- rotation-=360;
- }
- [signatureAnnotation setRotation:rotation];
- rotation = [signatureAnnotation appearanceStreamRotation];
-
- [self setNeedsDisplayAnnotationViewForPage:annotation.page];
-
- [[[self undoManager] prepareWithInvocationTarget:self] rotateSignatureAnnotation:annotation rotateAngle:-angle];
- }
- }
- - (void)addAnnotation:(CPDFAnnotation *)annotation toPage:(CPDFPage *)page {
- [[[self undoManager] prepareWithInvocationTarget:self] removeAnnotation:annotation];
-
- [annotation setModificationDate:[NSDate date]];
- //widget设置作者与fieldName冲突
- if (![annotation isKindOfClass:[CPDFWidgetAnnotation class]]) {
- [annotation setUserName:CPDFKitShareConfig.annotationAuthor?:NSFullUserName()];
- }
- [page addAnnotation:annotation];
- [self setNeedsDisplayAnnotation:annotation];
- [[self undoManager] setActionName:NSLocalizedString(@"Add Note", @"Undo action name")];
-
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFListViewDidAddAnnotationNotification object:self userInfo:[NSDictionary dictionaryWithObjectsAndKeys:page, CPDFListViewPageKey, annotation, CPDFListViewAnnotationKey, nil]];
- });
-
-
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewAddAnnotations:forAddAnnotations:inPage:)])
- [self.pdfListViewDelegate PDFListViewAddAnnotations:self forAddAnnotations:@[annotation] inPage:page];
- }
- - (void)removeAnnotation:(CPDFAnnotation *)annotation {
- if ([annotation isKindOfClass:[CPDFTextAnnotation class]] && self.popOver.isShown) {
- // if (annotation.contents.length <= 0) {
- CPDFAnnotation *wasAnnotation = annotation;
- CPDFPage *page = wasAnnotation.page;
-
- [[[self undoManager] prepareWithInvocationTarget:self] addAnnotation:wasAnnotation toPage:page];
-
- [page removeAnnotation:wasAnnotation];
- [self annotationsChangedOnPage:page];
- [self setNeedsDisplayAnnotation:wasAnnotation];
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFListViewDidRemoveAnnotationNotification object:self
- userInfo:[NSDictionary dictionaryWithObjectsAndKeys:wasAnnotation, CPDFListViewAnnotationKey, page, CPDFListViewPageKey, nil]];
- });
-
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewRemoveAnnotations:forRemoveAnnotations:inPage:)])
- [self.pdfListViewDelegate PDFListViewRemoveAnnotations:self forRemoveAnnotations:@[annotation] inPage:page];
- // }
- } else {
- CPDFAnnotation *wasAnnotation = annotation;
- CPDFPage *page = wasAnnotation.page;
-
- [[[self undoManager] prepareWithInvocationTarget:self] addAnnotation:wasAnnotation toPage:page];
-
- [page removeAnnotation:wasAnnotation];
- [self annotationsChangedOnPage:page];
- [self setNeedsDisplayAnnotation:wasAnnotation];
- dispatch_async(dispatch_get_main_queue(), ^{
- [[NSNotificationCenter defaultCenter] postNotificationName:CPDFListViewDidRemoveAnnotationNotification object:self
- userInfo:[NSDictionary dictionaryWithObjectsAndKeys:wasAnnotation, CPDFListViewAnnotationKey, page, CPDFListViewPageKey, nil]];
- });
-
- if([self.pdfListViewDelegate respondsToSelector:@selector(PDFListViewRemoveAnnotations:forRemoveAnnotations:inPage:)])
- [self.pdfListViewDelegate PDFListViewRemoveAnnotations:self forRemoveAnnotations:@[annotation] inPage:page];
- }
- }
- - (void)drawPage:(CPDFPage *)pdfPage toContext:(CGContextRef)context {
-
- [super drawPage:pdfPage toContext:context];
-
- [self drawSelectionForPage:pdfPage inContext:context];
-
- BOOL isIncludText = NO;
- NSMutableArray *currentActiveAnnotations = [NSMutableArray array];
- NSMutableArray *currentPageAnnotations = [NSMutableArray array];
- for (CPDFAnnotation *an in self.activeAnnotations) {
- if([an.page isEqual:pdfPage]) {
- if([an isKindOfClass:[CPDFFreeTextAnnotation class]])
- isIncludText = YES;
-
- //多选注释框去除mark注释与便签注释
- if(!([an isKindOfClass:[CPDFMarkupAnnotation class]] || [an isKindOfClass:[CPDFTextAnnotation class]])) {
- [currentActiveAnnotations addObject:an];
- }
-
- [currentPageAnnotations addObject:an];
- }
- }
-
- if(currentActiveAnnotations.count > 1) {
- NSRect rect = [self selectionMultipleBoundsWithAnnotations:currentActiveAnnotations];
-
- CGFloat lineWidth = [self unitWidthOnPage:pdfPage];
- CGContextSaveGState(context);
- CGColorRef color = [CPDFListViewConfig defaultManager].annotationBorderColor.CGColor;
- CGContextSetStrokeColorWithColor(context, color);
- CGContextStrokeRectWithWidth(context, CGRectInset(NSRectToCGRect(rect), 0,0), lineWidth);
- CGContextRestoreGState(context);
- CGContextSaveGState(context);
- if(isIncludText) {
- [CPDFListView DrawFreeTextResizeHandle:context rect:rect radius: 4.0 * lineWidth active:true];
- } else {
- [CPDFListView DrawResizeHandles:context rect:rect radius:4.0 * lineWidth active:true];
- }
- CGContextRestoreGState(context);
- }
-
- if(self.multiplAnnotationObject &&
- !CGRectIsEmpty(self.multiplAnnotationObject.drawRect) &&
- self.multiplAnnotationObject.page == pdfPage) {
- CGRect selectAnnotationBounds = self.multiplAnnotationObject.drawRect;
-
- NSRect rect = selectAnnotationBounds;
- CGFloat lineWidth = [self unitWidthOnPage:pdfPage];
- CGContextSaveGState(context);
- CGColorRef color = [CPDFListViewConfig defaultManager].annotationBorderColor.CGColor;
- CGContextSetStrokeColorWithColor(context, color);
- CGContextStrokeRectWithWidth(context, CGRectInset(NSRectToCGRect(rect), 0,0), lineWidth);
- CGContextRestoreGState(context);
- }
-
- [currentPageAnnotations enumerateObjectsUsingBlock:^(CPDFAnnotation *annotation, NSUInteger idx, BOOL * _Nonnull stop) {
- if (annotation.page && [annotation.page isEqual:pdfPage]) {
- [annotation drawSelectionHighlightForView:self inContext:context isHover:NO];
- }
- }];
-
- [self.selectAnnotations enumerateObjectsUsingBlock:^(CPDFAnnotation *annotation, NSUInteger idx, BOOL * _Nonnull stop) {
- if (annotation.page && [annotation.page isEqual:pdfPage]) {
- [annotation drawSelectionHighlightForView:self inContext:context isHover:NO];
- }
- }];
-
- if (self.hoverAnnotation.page && [self.hoverAnnotation.page isEqual:pdfPage] && ![self.activeAnnotations containsObject:self.hoverAnnotation]) {
- [self.hoverAnnotation drawSelectionHighlightForView:self inContext:context isHover:YES];
- }
-
- if(!CGRectEqualToRect(self.multiplSelectBounds, CGRectZero) && [self.multiplSelectPage isEqual:pdfPage]) {
- @synchronized (self) {
- CGContextSetLineCap(context, kCGLineCapRound);
- CGContextSetLineWidth(context, 1.0);
- CGContextSetStrokeColorWithColor(context, [CPDFListViewConfig defaultManager].annotationBorderColor.CGColor);
- CGContextBeginPath(context);
- CGContextMoveToPoint(context, self.multiplSelectBounds.origin.x, self.multiplSelectBounds.origin.y);
- CGContextAddLineToPoint(context, self.multiplSelectBounds.origin.x+ self.multiplSelectBounds.size.width,self.multiplSelectBounds.origin.y);
- CGContextAddLineToPoint(context, self.multiplSelectBounds.origin.x + self.multiplSelectBounds.size.width,self.multiplSelectBounds.origin.y + + self.multiplSelectBounds.size.height);
- CGContextAddLineToPoint(context, self.multiplSelectBounds.origin.x,self.multiplSelectBounds.origin.y + + self.multiplSelectBounds.size.height);
- CGContextClosePath(context);
- CGFloat lengths[] = {5,5};
- CGContextSetLineDash(context, 0, lengths,2);
- CGContextStrokePath(context);
- }
- }
-
- }
- - (void)drawSelectionForPage:(CPDFPage *)pdfPage inContext:(CGContextRef)context {
- NSRect rect;
- NSUInteger pageIndex;
- @synchronized (self) {
- pageIndex = self.selectionPageIndex;
- rect = self.selectionRect;
- }
- if (pageIndex != NSNotFound) {
- BOOL isWidget = NO;
- for (CPDFAnnotation * annotation in self.activeAnnotations) {
- if ([annotation isForm]) {
- isWidget = YES;
- break;
- }
- }
-
- if (isWidget &&
- _toolMode != CFormToolMode) {
- return;
- }
-
- NSRect bounds = [pdfPage boundsForBox:[self displayBox]];
- CGFloat radius = HANDLE_SIZE * [self unitWidthOnPage:pdfPage];
- CGColorRef color = CGColorCreateGenericGray(0.0, 0.6);
- CGContextSetFillColorWithColor(context, color);
- CGColorRelease(color);
- CGContextBeginPath(context);
- CGContextAddRect(context, NSRectToCGRect(bounds));
- CGContextAddRect(context, NSRectToCGRect(rect));
- CGContextEOFillPath(context);
- if ([pdfPage pageIndex] != pageIndex) {
- color = CGColorCreateGenericGray(0.0, 0.3);
- CGContextSetFillColorWithColor(context, color);
- CGColorRelease(color);
- CGContextFillRect(context, NSRectToCGRect(rect));
- }
- [CPDFListView DrawResizeHandles:context rect:rect radius:radius active:true];
- }
- }
- - (void)removeShapeLayer {
- if (![self.shapeLayerTopH isEqual:nil] && ![self.shapeLayerBottomH isEqual:nil] && ![self.shapeLayerLeftV isEqual:nil] && ![self.shapeLayerRightV isEqual:nil]) {
- [self.shapeLayerTopH removeFromSuperlayer];
- [self.shapeLayerBottomH removeFromSuperlayer];
- [self.shapeLayerLeftV removeFromSuperlayer];
- [self.shapeLayerRightV removeFromSuperlayer];
- self.shapeLayerTopH = nil;
- self.shapeLayerBottomH = nil;
- self.shapeLayerLeftV = nil;
- self.shapeLayerRightV = nil;
- }
- }
- - (BOOL)consistentTypeWithAnnotation:(CPDFAnnotation *)annotation {
- if (self.annotationType == CAnnotationTypeSignSignature) {
- if (![annotation isKindOfClass:[CPDFSignatureAnnotation class]])
- return NO;
- } else if (self.annotationType == CAnnotationTypeStamp) {
- if (![annotation isKindOfClass:[CPDFStampAnnotation class]])
- return NO;
- } else if (self.annotationType == CAnnotationTypeAnchored) {
- if (![annotation isKindOfClass:[CPDFTextAnnotation class]])
- return NO;
- } else if (self.annotationType == CAnnotationTypeLink) {
- if (![annotation isKindOfClass:[CPDFLinkAnnotation class]])
- return NO;
- } else if (self.annotationType == CAnnotationTypeFreeText) {
- if (![annotation isKindOfClass:[CPDFFreeTextAnnotation class]])
- return NO;
- } else if (self.annotationType == CAnnotationTypeLine || self.annotationType == CAnnotationTypeArrow || self.annotationType == CAnnotationTypeSquare || self.annotationType == CAnnotationTypeCircle) {
- if (![annotation isKindOfClass:[CPDFLineAnnotation class]] && ![annotation isKindOfClass:[CPDFSquareAnnotation class]] && ![annotation isKindOfClass:[CPDFCircleAnnotation class]])
- return NO;
- } else if (self.annotationType == CAnnotationTypeHighlight || self.annotationType == CAnnotationTypeUnderline || self.annotationType == CAnnotationTypeStrikeOut) {
- if (![annotation isKindOfClass:[CPDFMarkupAnnotation class]])
- return NO;
- } else if (self.annotationType == CAnnotationTypeInk) {
- if (![annotation isKindOfClass:[CPDFInkAnnotation class]])
- return NO;
- } else if (self.annotationType == CAnnotationTypeRadioButton) {
-
- } else if (self.annotationType == CAnnotationTypeCheckBox) {
-
- } else if (self.annotationType == CAnnotationTypeTextField) {
-
- } else if (self.annotationType == CAnnotationTypeComboBox) {
-
- } else if (self.annotationType == CAnnotationTypeListMenu) {
-
- } else if (self.annotationType == CAnnotationTypeActionButton) {
-
- } else if (self.annotationType == CAnnotationTypeSignature) {
-
- } else if (self.annotationType == CAnnotationTypeSignText) {
-
- } else if (self.annotationType == CAnnotationTypeSignFalse) {
-
- } else if (self.annotationType == CAnnotationTypeSignTure) {
-
- } else if (self.annotationType == CAnnotationTypeSignCircle) {
-
- } else if (self.annotationType == CAnnotationTypeSignLine) {
-
- } else if (self.annotationType == CAnnotationTypeSignDot) {
-
- } else if (self.annotationType == CAnnotationTypeSignConfig) {
-
- } else if (self.annotationType == CAnnotationTypeSignDate) {
-
- }
- return YES;
- }
- #pragma mark Zooming
- - (void)zoomToRect:(NSRect)rect onPage:(CPDFPage *)page {
- if (NSIsEmptyRect(rect) == NO) {
- BOOL isLegacy = [NSScroller respondsToSelector:@selector(preferredScrollerStyle)] == NO || [NSScroller preferredScrollerStyle] == NSScrollerStyleLegacy;
- NSRect bounds = [self bounds];
- CGFloat scale = 1.0;
- if (isLegacy) {
- bounds.size.width -= [NSScroller scrollerWidth];
- bounds.size.height -= [NSScroller scrollerWidth];
- }
- if (NSWidth(bounds) * NSHeight(rect) > NSWidth(rect) * NSHeight(bounds))
- scale = NSHeight(bounds) / NSHeight(rect);
- else
- scale = NSWidth(bounds) / NSWidth(rect);
- [self setScaleFactor:scale];
- NSScrollView *scrollView = [self scrollView];
- if (isLegacy && ([scrollView hasHorizontalScroller] == NO || [scrollView hasVerticalScroller] == NO)) {
- if ([scrollView hasVerticalScroller])
- bounds.size.width -= [NSScroller scrollerWidth];
- if ([scrollView hasHorizontalScroller])
- bounds.size.height -= [NSScroller scrollerWidth];
- if (NSWidth(bounds) * NSHeight(rect) > NSWidth(rect) * NSHeight(bounds))
- scale = NSHeight(bounds) / NSHeight(rect);
- else
- scale = NSWidth(bounds) / NSWidth(rect);
- [self setScaleFactor:scale];
- }
- [self goToRect:rect onPage:page];
-
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- CGPoint tPagePoint = CGPointMake(rect.origin.x, rect.origin.y+rect.size.height);
- [self goToTargetPoint:tPagePoint onPage:page atScrollPosition:CScrollPositionTop];
- });
- }
- }
- #pragma mark - NSPopoverDelegate
- - (void)popoverWillClose:(NSNotification *)notification {
- NSPopover *popover = notification.object;
-
- if([popover.contentViewController isKindOfClass:[CPDFListEditAnnotationViewController class]]) {
- CPDFListEditAnnotationViewController *listEditAnnotationViewController = (CPDFListEditAnnotationViewController *)popover.contentViewController;
- CPDFAnnotation *annotation = listEditAnnotationViewController.annotation;
- NSString *contensString = listEditAnnotationViewController.contentString;
- if([annotation isKindOfClass:[CPDFTextAnnotation class]]) {
- if(contensString && contensString.length > 0) {
- annotation.contents = listEditAnnotationViewController.contentString;
- [self setNeedsDisplayAnnotation:annotation];
- } else {
- if([self.activeAnnotations containsObject:annotation]) {
- [self.activeAnnotations removeObject:annotation];
- }
- [self removeAnnotation:annotation];
- }
- } else {
- annotation.contents = listEditAnnotationViewController.contentString;
- [self setNeedsDisplayAnnotation:annotation];
- }
- }
- self.popOver = nil;
- }
- - (void)handlePageChangedNotification:(NSNotification *)notification {
- self.copyCount = 0;
- }
- @end
|