mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 11:30:04 +00:00
85 lines
2.8 KiB
Objective-C
85 lines
2.8 KiB
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@class TGSearchBar;
|
|
|
|
typedef enum {
|
|
TGSearchBarStyleDefault = 0,
|
|
TGSearchBarStyleDark = 1,
|
|
TGSearchBarStyleLight = 2,
|
|
TGSearchBarStyleLightPlain = 3,
|
|
TGSearchBarStyleLightAlwaysPlain = 4,
|
|
TGSearchBarStyleHeader = 5,
|
|
} TGSearchBarStyle;
|
|
|
|
@protocol TGSearchBarDelegate <UISearchBarDelegate>
|
|
|
|
- (void)searchBar:(TGSearchBar *)searchBar willChangeHeight:(CGFloat)newHeight;
|
|
|
|
@end
|
|
|
|
@interface TGSearchBarPallete : NSObject
|
|
|
|
@property (nonatomic, readonly) bool isDark;
|
|
@property (nonatomic, readonly) UIColor *backgroundColor;
|
|
@property (nonatomic, readonly) UIColor *highContrastBackgroundColor;
|
|
@property (nonatomic, readonly) UIColor *textColor;
|
|
@property (nonatomic, readonly) UIColor *placeholderColor;
|
|
@property (nonatomic, readonly) UIColor *clearBackgroundColor;
|
|
@property (nonatomic, readonly) UIColor *clearIconColor;
|
|
|
|
+ (instancetype)palleteWithDark:(bool)dark backgroundColor:(UIColor *)backgroundColor highContrastBackgroundColor:(UIColor *)highContrastBackgroundColor textColor:(UIColor *)textColor placeholderColor:(UIColor *)placeholderColor clearBackgroundColor:(UIColor *)clearBackgroundColor clearIconColor:(UIColor *)clearIconColor;
|
|
|
|
@end
|
|
|
|
@interface TGSearchBar : UIView
|
|
|
|
+ (CGFloat)searchBarBaseHeight;
|
|
+ (CGFloat)searchBarScopeHeight;
|
|
- (CGFloat)baseHeight;
|
|
|
|
@property (nonatomic, copy) void (^clearPrefix)(bool);
|
|
|
|
@property (nonatomic, assign) UIEdgeInsets safeAreaInset;
|
|
|
|
@property (nonatomic, weak) id<TGSearchBarDelegate> delegate;
|
|
@property (nonatomic) bool highContrast;
|
|
|
|
@property (nonatomic, strong) UITextField *customTextField;
|
|
@property (nonatomic, readonly) UITextField *maybeCustomTextField;
|
|
|
|
@property (nonatomic, strong) UIImageView *customBackgroundView;
|
|
@property (nonatomic, strong) UIImageView *customActiveBackgroundView;
|
|
|
|
@property (nonatomic, strong) NSArray *customScopeButtonTitles;
|
|
@property (nonatomic) NSInteger selectedScopeButtonIndex;
|
|
@property (nonatomic) bool showsScopeBar;
|
|
@property (nonatomic) bool scopeBarCollapsed;
|
|
|
|
@property (nonatomic) bool searchBarShouldShowScopeControl;
|
|
@property (nonatomic) bool alwaysExtended;
|
|
@property (nonatomic) bool hidesCancelButton;
|
|
|
|
@property (nonatomic, strong) UIButton *customCancelButton;
|
|
|
|
@property (nonatomic) TGSearchBarStyle style;
|
|
@property (nonatomic, strong) NSString *text;
|
|
@property (nonatomic, strong) NSString *placeholder;
|
|
@property (nonatomic, strong) NSAttributedString *prefixText;
|
|
|
|
@property (nonatomic) bool showActivity;
|
|
@property (nonatomic) bool delayActivity;
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame style:(TGSearchBarStyle)style;
|
|
|
|
- (void)setShowsCancelButton:(bool)showsCancelButton animated:(bool)animated;
|
|
|
|
- (void)setCustomScopeBarHidden:(bool)hidden;
|
|
|
|
- (void)updateClipping:(CGFloat)clippedHeight;
|
|
|
|
- (void)localizationUpdated;
|
|
|
|
- (void)setPallete:(TGSearchBarPallete *)pallete;
|
|
|
|
@end
|