-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathViewStateController.h
More file actions
31 lines (24 loc) · 908 Bytes
/
ViewStateController.h
File metadata and controls
31 lines (24 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// ViewAdjuster.h
// MultiWebExplorer
//
// Created by gungor on 8/7/14.
// Copyright (c) 2014 gungor. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "WebViewObject.h"
#import "ViewPosition.h"
@interface ViewStateController : NSObject
- (id)init;
- (void)rotateClockwise;
- (void)rotateCounterClockwise;
- (void)hide: (UIView *) view;
- (void)show: (UIView *) view;
- (void) changePosition: (UIView *) translationPanel;
- (void)changeToSingleView: (UIButton *) multiplyButton : (UIButton *) hideButton ;
- (void)changeToMultipleView: (UIButton *) multiplyButton : (UIButton *) hideButton;
- (void)rotateClockwise: (UIView *) view : (UIButton *) rotateCW : (UIButton *) rotateCCW ;
- (void)rotateCounterClockwise: (UIView *) view : (UIButton *) rotateCW : (UIButton *) rotateCCW ;
- (void) adjustComponents: (NSMutableArray *) components ;
- (ViewPosition) getPosition;
@end