1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-03 09:57:46 +01:00
Telegram/Telegraph/TGModernGalleryView.h

42 lines
1.4 KiB
C
Raw Normal View History

2014-07-10 16:11:09 +02:00
/*
* This is the source code of Telegram for iOS v. 1.1
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Peter Iakovlev, 2013.
*/
#import <UIKit/UIKit.h>
2015-10-01 18:19:52 +02:00
#import "TGModernGalleryInterfaceView.h"
@class TGModernGalleryScrollView;
2014-07-10 16:11:09 +02:00
@interface TGModernGalleryView : UIView
2015-10-01 18:19:52 +02:00
@property (nonatomic, copy) bool (^transitionOut)(CGFloat velocity);
@property (nonatomic, strong, readonly) UIView<TGModernGalleryInterfaceView> *interfaceView;
@property (nonatomic, strong, readonly) TGModernGalleryScrollView *scrollView;
- (instancetype)initWithFrame:(CGRect)frame itemPadding:(CGFloat)itemPadding interfaceView:(UIView<TGModernGalleryInterfaceView> *)interfaceView;
- (bool)shouldAutorotate;
- (void)showHideInterface;
- (void)hideInterfaceAnimated;
- (void)updateInterfaceVisibility;
- (void)addItemHeaderView:(UIView *)itemHeaderView;
- (void)removeItemHeaderView:(UIView *)itemHeaderView;
- (void)addItemFooterView:(UIView *)itemFooterView;
- (void)removeItemFooterView:(UIView *)itemFooterView;
- (void)simpleTransitionOutWithVelocity:(CGFloat)velocity completion:(void (^)())completion;
- (void)transitionInWithDuration:(NSTimeInterval)duration;
- (void)transitionOutWithDuration:(NSTimeInterval)duration;
- (void)fadeOutWithDuration:(NSTimeInterval)duration completion:(void (^)(void))completion;
2014-07-10 16:11:09 +02:00
@end