mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-05-26 01:07:50 +02:00
4647310322
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
66 lines
1.6 KiB
Objective-C
66 lines
1.6 KiB
Objective-C
#import <UIKit/UIKit.h>
|
|
#import <LegacyComponents/TGVideoEditAdjustments.h>
|
|
|
|
@class POPAnimation;
|
|
@class POPSpringAnimation;
|
|
|
|
@interface TGPhotoEditorInterfaceAssets : NSObject
|
|
|
|
+ (UIColor *)toolbarBackgroundColor;
|
|
+ (UIColor *)toolbarTransparentBackgroundColor;
|
|
|
|
+ (UIColor *)cropTransparentOverlayColor;
|
|
|
|
+ (UIColor *)accentColor;
|
|
|
|
+ (UIColor *)panelBackgroundColor;
|
|
+ (UIColor *)selectedImagesPanelBackgroundColor;
|
|
|
|
+ (UIColor *)editorButtonSelectionBackgroundColor;
|
|
|
|
+ (UIImage *)cropIcon;
|
|
+ (UIImage *)toolsIcon;
|
|
+ (UIImage *)rotateIcon;
|
|
+ (UIImage *)paintIcon;
|
|
+ (UIImage *)stickerIcon;
|
|
+ (UIImage *)textIcon;
|
|
+ (UIImage *)gifBackgroundImage;
|
|
+ (UIImage *)gifIcon;
|
|
+ (UIImage *)gifActiveIcon;
|
|
+ (UIImage *)muteIcon;
|
|
+ (UIImage *)muteActiveIcon;
|
|
+ (UIImage *)qualityIconForHighQuality:(bool)highQuality filled:(bool)filled;
|
|
+ (UIImage *)telescopeIcon;
|
|
+ (UIImage *)telescopeActiveIcon;
|
|
+ (UIImage *)qualityIconForPreset:(TGMediaVideoConversionPreset)preset;
|
|
+ (UIImage *)timerIconForValue:(NSInteger)value;
|
|
+ (UIImage *)eraserIcon;
|
|
+ (UIImage *)tintIcon;
|
|
+ (UIImage *)blurIcon;
|
|
+ (UIImage *)curvesIcon;
|
|
|
|
+ (UIImage *)groupIcon;
|
|
+ (UIImage *)ungroupIcon;
|
|
+ (UIImage *)groupIconBackground;
|
|
+ (UIImage *)groupIconBackgroundActive;
|
|
|
|
+ (UIImage *)mirrorIcon;
|
|
+ (UIImage *)aspectRatioIcon;
|
|
+ (UIImage *)aspectRatioActiveIcon;
|
|
|
|
+ (UIColor *)toolbarSelectedIconColor;
|
|
+ (UIColor *)toolbarAppliedIconColor;
|
|
|
|
+ (UIColor *)editorItemTitleColor;
|
|
+ (UIColor *)editorActiveItemTitleColor;
|
|
+ (UIFont *)editorItemTitleFont;
|
|
|
|
+ (UIColor *)filterSelectionColor;
|
|
|
|
+ (UIColor *)sliderBackColor;
|
|
+ (UIColor *)sliderTrackColor;
|
|
|
|
+ (UIImage *)cameraIcon;
|
|
|
|
@end
|