summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuDocumentController.h
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-01-09 13:27:17 +0100
committerTor Andersson <tor.andersson@artifex.com>2017-01-09 17:46:26 +0100
commit9d96d035d3b7af53256ee64b5ddb0ad8bcf8df38 (patch)
tree408cbbb72315089db1b8efe58bce322f8734bb1b /platform/ios/Classes/MuDocumentController.h
parent50b39c939345c36eb5e95c8a71ccdb8cd24c9aad (diff)
downloadmupdf-9d96d035d3b7af53256ee64b5ddb0ad8bcf8df38.tar.xz
Remove platform/ios directory.
The iOS viewer has been moved to its own git repository.
Diffstat (limited to 'platform/ios/Classes/MuDocumentController.h')
-rw-r--r--platform/ios/Classes/MuDocumentController.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/platform/ios/Classes/MuDocumentController.h b/platform/ios/Classes/MuDocumentController.h
deleted file mode 100644
index c7c1fcdb..00000000
--- a/platform/ios/Classes/MuDocumentController.h
+++ /dev/null
@@ -1,40 +0,0 @@
-#import <UIKit/UIKit.h>
-
-#undef ABS
-#undef MIN
-#undef MAX
-
-#include "mupdf/fitz.h"
-
-#import "MuOutlineController.h"
-#import "MuDocRef.h"
-#import "MuDialogCreator.h"
-#import "MuUpdater.h"
-
-enum
-{
- BARMODE_MAIN,
- BARMODE_SEARCH,
- BARMODE_MORE,
- BARMODE_ANNOTATION,
- BARMODE_HIGHLIGHT,
- BARMODE_UNDERLINE,
- BARMODE_STRIKE,
- BARMODE_INK,
- BARMODE_DELETE
-};
-
-@interface MuDocumentController : UIViewController <UIScrollViewDelegate, UIGestureRecognizerDelegate, UISearchBarDelegate, MuDialogCreator, MuUpdater>
-- (instancetype) initWithFilename: (NSString*)nsfilename path:(NSString *)path document:(MuDocRef *)aDoc;
-- (void) createPageView: (int)number;
-- (void) gotoPage: (int)number animated: (BOOL)animated;
-- (void) onShowOutline: (id)sender;
-- (void) onShowSearch: (id)sender;
-- (void) onCancel: (id)sender;
-- (void) resetSearch;
-- (void) showSearchResults: (int)count forPage: (int)number;
-- (void) onSlide: (id)sender;
-- (void) onTap: (UITapGestureRecognizer*)sender;
-- (void) showNavigationBar;
-- (void) hideNavigationBar;
-@end