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

23 lines
489 B
C
Raw Normal View History

2014-07-10 16:11:09 +02:00
#import <UIKit/UIKit.h>
#import "ActionStage.h"
@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