1
0
mirror of https://github.com/danog/Telegram.git synced 2025-01-05 20:48:36 +01:00
Telegram/legacy/TelegraphKit/TGLabel.h

38 lines
1.0 KiB
C
Raw Normal View History

2015-10-01 18:19:52 +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>
typedef enum {
TGLabelVericalAlignmentCenter = 0,
TGLabelVericalAlignmentTop = 1
} TGLabelVericalAlignment;
@interface TGLabel : UILabel
@property (nonatomic, strong) NSString *reuseIdentifier;
@property (nonatomic, strong) UIColor *normalShadowColor;
@property (nonatomic, strong) UIColor *highlightedShadowColor;
@property (nonatomic, strong) UIFont *portraitFont;
@property (nonatomic, strong) UIFont *landscapeFont;
@property (nonatomic, strong) UIColor *persistentBackgroundColor;
@property (nonatomic) TGLabelVericalAlignment verticalAlignment;
@property (nonatomic) float verticalOffset;
@property (nonatomic) float verticalOffsetMultiplier;
@property (nonatomic) CGPoint customDrawingOffset;
@property (nonatomic) CGSize customDrawingSize;
- (void)setLandscape:(bool)landscape;
@end