Today's Menu  Portugal
journal and plan nutrition
DLStarView.h
Go to the documentation of this file.
1 /*
2 
3  DLStarRating
4  Copyright (C) 2011 David Linsin <dlinsin@gmail.com>
5 
6  All rights reserved. This program and the accompanying materials
7  are made available under the terms of the Eclipse Public License v1.0
8  which accompanies this distribution, and is available at
9  http://www.eclipse.org/legal/epl-v10.html
10 
11  */
12 
13 #import <UIKit/UIKit.h>
14 
15 #define kEdgeInsetBottom 20
16 
17 @interface DLStarView : UIButton {
18 
19 }
20 
21 - (id)initWithDefault:(UIImage*)star highlighted:(UIImage*)highlightedStar position:(int)index allowFractions:(BOOL)fractions;
22 - (void)centerIn:(CGRect)_frame with:(int)numberOfStars;
23 - (void)setStarImage:(UIImage*)starImage highlightedStarImage:(UIImage*)highlightedImage;
24 - (UIImage *)croppedImage:(UIImage*)image;
25 @end