Merge commit '7621e2f8dec938cf48181c8b10afc9b01f444e68' into beta

This commit is contained in:
Ilya Laktyushin
2025-12-06 02:17:48 +04:00
commit 8344b97e03
28070 changed files with 7995182 additions and 0 deletions
@@ -0,0 +1,41 @@
#import <UIKit/UIKit.h>
#import <LegacyComponents/TGModernButton.h>
@interface TGMediaPickerPhotoCounterButton : UIButton
@property (nonatomic, assign) bool internalHidden;
- (void)setSelectedCount:(NSInteger)count animated:(bool)animated;
- (void)setActiveNumber:(NSInteger)number animated:(bool)animated;
- (void)cancelledProcessingAnimated:(bool)animated completion:(void (^)(void))completion;
- (void)setInternalHidden:(bool)internalHidden animated:(bool)animated completion:(void (^)(void))completion;
- (void)setHidden:(bool)hidden animated:(bool)animated;
- (void)setHidden:(bool)hidden delay:(NSTimeInterval)delay animated:(bool)animated;
- (void)setSelected:(bool)selected animated:(bool)animated;
@end
@interface TGMediaPickerGroupButton : UIButton
- (void)setHidden:(bool)hidden animated:(bool)animated;
- (void)setInternalHidden:(bool)internalHidden animated:(bool)animated;
@end
@interface TGMediaPickerCameraButton : UIButton
- (void)setHidden:(bool)hidden animated:(bool)animated;
- (void)setInternalHidden:(bool)internalHidden animated:(bool)animated;
@end
@interface TGMediaPickerCoverButton : UIButton
- (void)setImage:(UIImage *)image;
- (instancetype)initWithFrame:(CGRect)frame gallery:(bool)gallery;
@end