mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 17:38:07 +01:00
23 lines
489 B
Objective-C
23 lines
489 B
Objective-C
#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
|