mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-06 03:20:39 +00:00
18 lines
438 B
Objective-C
18 lines
438 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
typedef enum
|
|
{
|
|
TGCameraShutterButtonNormalMode,
|
|
TGCameraShutterButtonVideoMode,
|
|
TGCameraShutterButtonRecordingMode
|
|
} TGCameraShutterButtonMode;
|
|
|
|
@interface TGCameraShutterButton : UIControl
|
|
|
|
- (void)setButtonMode:(TGCameraShutterButtonMode)mode animated:(bool)animated;
|
|
- (void)setEnabled:(bool)enabled animated:(bool)animated;
|
|
|
|
- (void)setHighlighted:(bool)highlighted animated:(bool)animated;
|
|
|
|
@end
|