mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2025-06-03 00:00:20 +00:00
25 lines
439 B
Objective-C
25 lines
439 B
Objective-C
//
|
|
// BlockBackground.h
|
|
// arrived
|
|
//
|
|
// Created by Gustavo Ambrozio on 29/11/11.
|
|
// Copyright (c) 2011 N/A. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface BlockBackground : UIWindow
|
|
|
|
+ (BlockBackground *) sharedInstance;
|
|
|
|
- (void)addToMainWindow:(UIView *)view;
|
|
- (void)reduceAlphaIfEmpty;
|
|
- (void)removeView:(UIView *)view;
|
|
|
|
- (UIInterfaceOrientation)orientation;
|
|
- (CGFloat)statusBarHeight;
|
|
|
|
- (void)sizeToFill;
|
|
|
|
@end
|