project_files/HedgewarsMobile/Classes/ExtraCategories.h
branchios-develop
changeset 12872 00215a7ec5f5
parent 11145 1c89970c7f15
child 13166 ba5c794adae3
equal deleted inserted replaced
12871:2c06b1120749 12872:00215a7ec5f5
    28 @end
    28 @end
    29 
    29 
    30 
    30 
    31 @interface UITableView (backgroundColor)
    31 @interface UITableView (backgroundColor)
    32 
    32 
    33 -(void) setBackgroundColorForAnyTable:(UIColor *)color;
    33 - (void)setBackgroundColorForAnyTable:(UIColor *)color;
    34 
    34 
    35 @end
    35 @end
    36 
    36 
    37 
    37 
    38 @interface UIColor (HWColors)
    38 @interface UIColor (HWColors)
    46 @end
    46 @end
    47 
    47 
    48 
    48 
    49 @interface UIButton (quickStyle)
    49 @interface UIButton (quickStyle)
    50 
    50 
    51 -(id) initWithFrame:(CGRect) frame andTitle:(NSString *)title;
    51 - (id)initWithFrame:(CGRect)frame andTitle:(NSString *)title;
    52 
    52 
    53 - (void)applyBlackQuickStyle;
    53 - (void)applyBlackQuickStyle;
    54 - (void)applyDarkBlueQuickStyle;
    54 - (void)applyDarkBlueQuickStyle;
    55 
    55 
    56 @end
    56 @end
    57 
    57 
    58 
    58 
    59 @interface UILabel (quickStyle)
    59 @interface UILabel (quickStyle)
    60 
    60 
    61 -(id) initWithFrame:(CGRect)frame andTitle:(NSString *)title;
    61 - (id)initWithFrame:(CGRect)frame andTitle:(NSString *)title;
    62 -(id) initWithFrame:(CGRect)frame andTitle:(NSString *)title withBorderWidth:(CGFloat) borderWidth;
    62 - (id)initWithFrame:(CGRect)frame andTitle:(NSString *)title withBorderWidth:(CGFloat)borderWidth;
    63 -(id) initWithFrame:(CGRect)frame andTitle:(NSString *)title withBorderWidth:(CGFloat) borderWidth
    63 - (id)initWithFrame:(CGRect)frame andTitle:(NSString *)title withBorderWidth:(CGFloat)borderWidth
    64     withBorderColor:(UIColor *)borderColor withBackgroundColor:(UIColor *)backColor;
    64     withBorderColor:(UIColor *)borderColor withBackgroundColor:(UIColor *)backColor;
    65 
    65 
    66 @end
    66 @end
    67 
    67 
    68 
    68