From a58af9fc29f9d8f86f932d0bdd72ead9217637b7 Mon Sep 17 00:00:00 2001 From: Joseph Heenan Date: Thu, 2 Oct 2014 19:51:34 +0200 Subject: iOS: Move instance variables from .h to .m These are private details that, since changes in Xcode, no longer need to be exposed in the headers. --- platform/ios/Classes/MuPageViewNormal.m | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'platform/ios/Classes/MuPageViewNormal.m') diff --git a/platform/ios/Classes/MuPageViewNormal.m b/platform/ios/Classes/MuPageViewNormal.m index eacd611b..26809c8c 100644 --- a/platform/ios/Classes/MuPageViewNormal.m +++ b/platform/ios/Classes/MuPageViewNormal.m @@ -580,6 +580,35 @@ static void updatePixmap(fz_document *doc, fz_display_list *page_list, fz_displa @implementation MuPageViewNormal +{ + MuDocRef *docRef; + fz_document *doc; + fz_page *page; + fz_display_list *page_list; + fz_display_list *annot_list; + int number; + UIActivityIndicatorView *loadingView; + fz_pixmap *image_pix; + CGDataProviderRef imageData; + UIImageView *imageView; + fz_pixmap *tile_pix; + CGDataProviderRef tileData; + UIImageView *tileView; + MuHitView *hitView; + MuHitView *linkView; + MuTextSelectView *textSelectView; + MuInkView *inkView; + MuAnnotSelectView *annotSelectView; + NSArray *widgetRects; + NSArray *annotations; + int selectedAnnotationIndex; + CGSize pageSize; + CGRect tileFrame; + float tileScale; + BOOL cancel; + id dialogCreator; + id updater; +} - (void) ensurePageLoaded { -- cgit v1.2.3