fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / ios / shared / ios_sharedlo / objective_c / MLOManager.h
blob534613a4069e2af10404b512b5ff0a6f0f54bf64
1 // -*- Mode: ObjC; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 //
3 // This file is part of the LibreOffice project.
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 #import "MLOObject.h"
10 #import "MLOInvoker.h"
12 @class MLOMainViewController;
13 @interface MLOManager : UIResponder <UIApplicationDelegate>
14 @property MLOMainViewController * mainViewController;
16 +(MLOManager *) getInstance;
18 -(void)openInLibreOfficeFilePath:(NSString *) filePath fileNameWithExtension:(NSString *) fileName superView:(UIView *) superview window:(UIWindow *) window invoker:(NSObject<MLOInvoker> *) invoker;
19 -(void)openInLibreOfficeFilePath:(NSString *) filePath superView:(UIView *) superview window:(UIWindow *) window invoker:(NSObject<MLOInvoker> *) invoker;
20 -(void) hideLibreOffice;
21 -(NSString *)filenameWithExtension;
22 -(NSString *)extension;
23 -(CGRect)bounds;
24 -(void)start;
25 @end