1 /* GSCMYKColorPicker.h
2 
3    Copyright (C) 2001 Free Software Foundation, Inc.
4 
5    Author:  Fred Kiefer <FredKiefer@gmx.de>
6    Date: Febuary 2001
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 GSCMYKColorPicker : GSStandardCSColorPicker
35 {
36   NSString *r_names[4];
37   NSSlider *r_sliders[4];
38   NSTextField *r_fields[4];
39   float r_values[4];
40 }
41 
42 -(void) _setColorFromValues;
43 -(void) setColor:(NSColor *)color;
44 
45 @end
46 
47