summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuDocumentController.m
diff options
context:
space:
mode:
authorJoseph Heenan <joseph@emobix.co.uk>2014-10-02 19:51:34 +0200
committerJoseph Heenan <joseph@emobix.co.uk>2014-10-04 08:11:35 -0500
commita58af9fc29f9d8f86f932d0bdd72ead9217637b7 (patch)
tree03213e5170dd9ee8a3c9c1ca4db2b8fe8df6b2e6 /platform/ios/Classes/MuDocumentController.m
parent39ee719d76c9c3522a0e51d2507f826bf9692a80 (diff)
downloadmupdf-a58af9fc29f9d8f86f932d0bdd72ead9217637b7.tar.xz
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.
Diffstat (limited to 'platform/ios/Classes/MuDocumentController.m')
-rw-r--r--platform/ios/Classes/MuDocumentController.m29
1 files changed, 29 insertions, 0 deletions
diff --git a/platform/ios/Classes/MuDocumentController.m b/platform/ios/Classes/MuDocumentController.m
index 752eaff0..43b64be8 100644
--- a/platform/ios/Classes/MuDocumentController.m
+++ b/platform/ios/Classes/MuDocumentController.m
@@ -124,6 +124,35 @@ static void saveDoc(char *current_path, fz_document *doc)
@implementation MuDocumentController
{
+ fz_document *doc;
+ MuDocRef *docRef;
+ NSString *key;
+ char *filePath;
+ BOOL reflowMode;
+ MuOutlineController *outline;
+ UIScrollView *canvas;
+ UILabel *indicator;
+ UISlider *slider;
+ UISearchBar *searchBar;
+ UIBarButtonItem *nextButton, *prevButton, *cancelButton, *searchButton, *outlineButton, *linkButton;
+ UIBarButtonItem *moreButton;
+ UIBarButtonItem *shareButton, *printButton, *annotButton;
+ UIBarButtonItem *highlightButton, *underlineButton, *strikeoutButton;
+ UIBarButtonItem *inkButton;
+ UIBarButtonItem *tickButton;
+ UIBarButtonItem *deleteButton;
+ UIBarButtonItem *reflowButton;
+ UIBarButtonItem *backButton;
+ UIBarButtonItem *sliderWrapper;
+ int barmode;
+ int searchPage;
+ int cancelSearch;
+ int showLinks;
+ int width; // current screen size
+ int height;
+ int current; // currently visible page
+ int scroll_animating; // stop view updates during scrolling animations
+ float scale; // scale applied to views (only used in reflow mode)
BOOL _isRotating;
}