1 /*
2    MPDCon
3 
4    Copyright (C) 2006, 2007 Guenther Noack <guenther@unix-ag.uni-kl.de>
5    Copyright (C) 2009  GNUstep Application Team
6                        Riccardo Mottola
7 
8    Adapted from Grr GNRatingCell.h
9 
10    This application is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public
12    License as published by the Free Software Foundation; either
13    version 3 of the License, or (at your option) any later version.
14 
15    This application is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    Library General Public License for more details.
19 
20    You should have received a copy of the GNU General Public
21    License along with this library; if not, write to the Free
22    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
23 */
24 
25 #import <AppKit/AppKit.h>
26 #import <Foundation/NSObject.h>
27 
28 @interface SongRatingCell : NSCell
29 {
30     double rating;
31 
32     NSRect _currentTrackingRect;
33     NSImage* star;
34     NSButton* button;
35 }
36 
37 @end
38