1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-03 09:57:46 +01:00
Telegram/Telegraph/TGNotificationWindow.h
2014-07-10 18:11:09 +04:00

29 lines
631 B
Objective-C

#import <UIKit/UIKit.h>
#import "ActionStage.h"
@interface TGOverlayWindowViewController : UIViewController
@end
@interface TGNotificationWindow : UIWindow
@property (nonatomic, readonly) bool isDismissed;
@property (nonatomic) float windowHeight;
@property (nonatomic, strong) ASHandle *watcher;
@property (nonatomic, strong) NSString *watcherAction;
@property (nonatomic, strong) NSDictionary *watcherOptions;
- (void)adjustToInterfaceOrientation:(UIInterfaceOrientation)orientation;
- (void)setContentView:(UIView *)view;
- (UIView *)contentView;
- (void)animateIn;
- (void)animateOut;
- (void)performTapAction;
@end