FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
BlockBackground.h
1//
2// BlockBackground.h
3// arrived
4//
5// Created by Gustavo Ambrozio on 29/11/11.
6// Copyright (c) 2011 N/A. All rights reserved.
7//
8
9#import <UIKit/UIKit.h>
10
11@interface BlockBackground : UIWindow
12{
13 @private
14 UIWindow *_previousKeyWindow;
15}
16
17+ (BlockBackground *)sharedInstance;
18
19- (void)addToMainWindow:(UIView *)view;
20- (void)reduceAlphaIfEmpty;
21- (void)removeView:(UIView *)view;
22
23@property(nonatomic, retain) UIImage *backgroundImage;
24@property(nonatomic, readwrite) BOOL vignetteBackground;
25
26@end