1 /* ColorGraphicsChange.h
2  *
3  * Copyright (C) 1993-2002 by vhf interservice GmbH
4  * Authors:  Georg Fleischmann
5  *
6  * created:  1993
7  * modified: 2002-07-15
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the vhf Public License as
11  * published by vhf interservice GmbH. Among other things, the
12  * License requires that the copyright notices and this notice
13  * be preserved on all copies.
14  *
15  * This program 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.
18  * See the vhf Public License for more details.
19  *
20  * You should have received a copy of the vhf Public License along
21  * with this program; see the file LICENSE. If not, write to vhf.
22  *
23  * vhf interservice GmbH, Im Marxle 3, 72119 Altingen, Germany
24  * eMail: info@vhf.de
25  * http://www.vhf.de
26  */
27 
28 @interface ColorGraphicsChange : SimpleGraphicsChange
29 {
30     NSColor 	*color;
31     int		colorNum;
32 }
33 
34 - initGraphicView:aGraphicView color:(NSColor *)aColor colorNum:(int)colNum;
35 - (NSString *)changeName;
36 - (int)colorNum;
37 - (Class)changeDetailClass;
38 - (NSColor *)color;
39 
40 @end
41