1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 17:38:07 +01:00
Telegram/Telegraph/TGNotificationWindow.h
2015-10-01 19:19:52 +03:00

27 lines
556 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)setContentView:(UIView *)view;
- (UIView *)contentView;
- (void)animateIn;
- (void)animateOut;
- (void)performTapAction;
@end