Bug 134269 - [iOS][WK2] Implement WKPDFView smart magnification
Summary: [iOS][WK2] Implement WKPDFView smart magnification
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit2 (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Tim Horton
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2014-06-24 14:53 PDT by Tim Horton
Modified: 2014-06-26 19:11 PDT (History)
8 users (show)

See Also:


Attachments
patch (8.62 KB, patch)
2014-06-24 15:02 PDT, Tim Horton
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Tim Horton 2014-06-24 14:53:25 PDT
<rdar://problem/17272825>
Comment 1 Tim Horton 2014-06-24 15:02:29 PDT
Created attachment 233746 [details]
patch
Comment 2 Tim Horton 2014-06-26 16:37:35 PDT
Comment on attachment 233746 [details]
patch

View in context: https://bugs.webkit.org/attachment.cgi?id=233746&action=review

r=dan with lots of comments below

> Source/WebKit2/UIProcess/ios/WKPDFView.h:30
>  #import <UIKit/UIView.h>
> +#import <CorePDF/UIPDFPageView.h>

sorting!

> Source/WebKit2/UIProcess/ios/WKPDFView.mm:49
> +static const float smartMagnificationElementPadding = 0.05;

CGFloat

> Source/WebKit2/UIProcess/ios/WKPDFView.mm:72
> +    bool _isStartingZoom;

Big BOOL

> Source/WebKit2/UIProcess/ios/WKPDFView.mm:185
> +        [pageInfo.view setDelegate:self];

clear delegates

> Source/WebKit2/UIProcess/ios/WKPDFView.mm:270
> +    _isStartingZoom = true;

YES etc

> Source/WebKit2/UIProcess/ios/WKPDFView.mm:272
> +    bool isImage = kind == kUIPDFObjectKindGraphic;

Big BOOL

> Source/WebKit2/UIProcess/ios/WKPDFView.mm:275
> +        double dx = smartMagnificationElementPadding * targetRect.size.width;

CGFloat

> Source/WebKit2/UIProcess/ios/WKPDFView.mm:277
> +        targetRect.origin.x -= dx;
> +        targetRect.size.width += 2 * dx;

There should be a CGRect thing for this
Comment 3 Tim Horton 2014-06-26 19:11:45 PDT
http://trac.webkit.org/changeset/170515