project_files/HedgewarsMobile/ExtraCategories.h
changeset 6208 b831679e9467
child 6209 074ab6ebcb3e
equal deleted inserted replaced
6207:cbc80c22691c 6208:b831679e9467
       
     1 /*
       
     2  * Hedgewars-iOS, a Hedgewars port for iOS devices
       
     3  * Copyright (c) 2009-2010 Vittorio Giovara <vittorio.giovara@gmail.com>
       
     4  *
       
     5  * This program is free software; you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation; version 2 of the License
       
     8  *
       
     9  * This program is distributed in the hope that it will be useful,
       
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    12  * GNU General Public License for more details.
       
    13  *
       
    14  * You should have received a copy of the GNU General Public License
       
    15  * along with this program; if not, write to the Free Software
       
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
       
    17  *
       
    18  * File created on 25/10/2011.
       
    19  */
       
    20 
       
    21 
       
    22 #import <Foundation/Foundation.h>
       
    23 
       
    24 
       
    25 @interface UITableView (backgroundColor)
       
    26 
       
    27 -(void) setBackgroundColorForAnyTable:(UIColor *)color;
       
    28 
       
    29 @end
       
    30 
       
    31 
       
    32 @interface UIColor (HWColors)
       
    33 
       
    34 +(UIColor *)darkYellowColor;
       
    35 +(UIColor *)lightYellowColor;
       
    36 +(UIColor *)darkBlueColor;
       
    37 +(UIColor *)darkBlueColorTransparent;
       
    38 +(UIColor *)blackColorTransparent;
       
    39 
       
    40 @end
       
    41 
       
    42 
       
    43 @interface UILabel (quickStyle)
       
    44 
       
    45 -(UILabel *)initWithFrame:(CGRect)frame andTitle:(NSString *)title;
       
    46 -(UILabel *)initWithFrame:(CGRect)frame andTitle:(NSString *)title  withBorderWidth:(CGFloat) borderWidth;
       
    47 -(UILabel *)initWithFrame:(CGRect)frame andTitle:(NSString *)title  withBorderWidth:(CGFloat) borderWidth
       
    48           withBorderColor:(UIColor *)borderColor withBackgroundColor:(UIColor *)backColor;
       
    49 
       
    50 @end
       
    51 
       
    52 
       
    53 @interface NSString (MD5)
       
    54 
       
    55 -(NSString *)MD5hash;
       
    56 
       
    57 @end