1 /* GSHSBColorPicker.h
2 
3    Copyright (C) 2000 Free Software Foundation, Inc.
4 
5    Author:  Fred Kiefer <FredKiefer@gmx.de>
6    Date: December 2000
7    Author: Alexander Malmberg <alexander@malmberg.org>
8    Date: May 2002
9 
10    This file is part of GNUstep.
11 
12    This library is free software; you can redistribute it and/or
13    modify it under the terms of the GNU Lesser General Public
14    License as published by the Free Software Foundation; either
15    version 2 of the License, or (at your option) any later version.
16 
17    This library is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
20    Lesser General Public License for more details.
21 
22    You should have received a copy of the GNU Lesser General Public
23    License along with this library; see the file COPYING.LIB.
24    If not, see <http://www.gnu.org/licenses/> or write to the
25    Free Software Foundation, 51 Franklin Street, Fifth Floor,
26    Boston, MA 02110-1301, USA.
27 */
28 
29 #include <Foundation/Foundation.h>
30 #include <AppKit/AppKit.h>
31 
32 #include "GSStandardColorPicker.h"
33 
34 @interface GSHSBColorPicker : GSStandardCSColorPicker
35 {
36   NSString *r_names[3];
37   NSSlider *r_sliders[3];
38   NSTextField *r_fields[3];
39   float r_values[3];
40 }
41 
42 -(void) _setColorFromValues;
43 -(void) setColor:(NSColor *)color;
44 
45 @end
46 
47