summaryrefslogtreecommitdiff
path: root/ios/shared/ios_sharedlo/objective_c/utils/NSObject+MLOUtils.m
diff options
context:
space:
mode:
Diffstat (limited to 'ios/shared/ios_sharedlo/objective_c/utils/NSObject+MLOUtils.m')
-rw-r--r--ios/shared/ios_sharedlo/objective_c/utils/NSObject+MLOUtils.m66
1 files changed, 0 insertions, 66 deletions
diff --git a/ios/shared/ios_sharedlo/objective_c/utils/NSObject+MLOUtils.m b/ios/shared/ios_sharedlo/objective_c/utils/NSObject+MLOUtils.m
deleted file mode 100644
index 5a4e27c09da0..000000000000
--- a/ios/shared/ios_sharedlo/objective_c/utils/NSObject+MLOUtils.m
+++ /dev/null
@@ -1,66 +0,0 @@
-// -*- Mode: ObjC; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-//
-// This file is part of the LibreOffice project.
-//
-// This Source Code Form is subject to the terms of the Mozilla Public
-// License, v. 2.0. If a copy of the MPL was not distributed with this
-// file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-#import "NSObject+MLOUtils.h"
-static CGFloat smaller = -1,bigger = -1;
-static CGRect portrait,landscape;
-
-@implementation NSObject (MLOUtils)
-
--(void)fetchStatics{
- if(smaller<0){
- smaller = [UIScreen mainScreen].bounds.size.height;
- bigger = [UIScreen mainScreen].bounds.size.width;
- if(smaller> bigger){
- NSInteger temp = bigger;
- bigger= smaller;
- smaller= temp;
- }
- portrait = CGRectMake(0, 0, smaller, bigger);
- landscape = CGRectMake(0, 0, bigger, smaller);
- }
-}
-
--(CGRect) getFullFrameForRect:(CGRect) similarRect{
- [self fetchStatics];
- if(similarRect.size.width >smaller){
-
- return landscape;
- }
- return portrait;
-}
-- (void)performBlock:(void (^)(void))block
- afterDelay:(NSTimeInterval)delay
-{
- [self performSelector:@selector(fireBlockAfterDelay:)
- withObject:block
- afterDelay:delay];
-}
-
-- (void)fireBlockAfterDelay:(void (^)(void))block {
- block();
-}
-
--(BOOL)returnSuccees:(BOOL) success forAction:(NSString *) action andAlertForError:(NSError *) error {
- if(!success){
-
- UIAlertView *failedDeleteAlert =
- [[UIAlertView alloc]initWithTitle:@"Meh:"
- message:[NSString stringWithFormat:@"Failed to perform: %@",action]
- delegate:self
- cancelButtonTitle:@"Close"
- otherButtonTitles:nil];
-
- [failedDeleteAlert show];
-
- NSLog(@"Could not %@ :%@ ",action,[error localizedDescription]);
- }
- return success;
-}
-
-@end