|
From: Henri A. <has...@us...> - 2004-10-29 00:09:48
|
Update of /cvsroot/frontierkernel/Frontier/Common/IOAToolkit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16041 Modified Files: ioacolorpopup.c ioacolorpopup.h Log Message: Centralized all colors into quickdraw.c. Index: ioacolorpopup.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/IOAToolkit/ioacolorpopup.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ioacolorpopup.h 9 Oct 2004 20:28:40 -0000 1.1 --- ioacolorpopup.h 29 Oct 2004 00:09:35 -0000 1.2 *************** *** 37,39 **** --- 37,44 ---- + extern RGBColor blackcolor, whitecolor, greencolor, lightbluecolor, lightgraycolor, graycolor, darkgraycolor; + + extern RGBColor lightyellowcolor, lightgreencolor, lightpurplecolor, lightredcolor; + + extern RGBColor darkredcolor, darkbluecolor, darkgreencolor, mediumgraycolor, darkpurplecolor; Index: ioacolorpopup.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/IOAToolkit/ioacolorpopup.c,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ioacolorpopup.c 23 Oct 2004 21:39:45 -0000 1.2 --- ioacolorpopup.c 29 Oct 2004 00:09:35 -0000 1.3 *************** *** 49,60 **** #define unimplementedtrap 0xA09F - static RGBColor greencolor = {0, 32767, 0}; - - static RGBColor whitecolor = {65535, 65535, 65535}; - - static RGBColor blackcolor = {0, 0, 0}; - - static RGBColor lightbluecolor = {52428, 52428, 65535}; - static boolean gestaltavailable (void) { --- 49,52 ---- |