~ubuntu-branches/ubuntu/maverick/asc/maverick

« back to all changes in this revision

Viewing changes to source/libs/paragui/src/core/pgcolors.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese, Eddy Petrișor, Gonéri Le Bouder, Cyril Brulebois, Barry deFreese
  • Date: 2008-01-08 19:54:18 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080108195418-n19fc4eobhhqxcy5
Tags: 2.0.1.0-1
[ Eddy Petrișor ]
* fixed Homepage semifield

[ Gonéri Le Bouder ]
* add a watchfile
* move homepage from the description to the new Homepage field

[ Cyril Brulebois ]
* Added Vcs-Svn and Vcs-Browser fields in the control file.

[ Barry deFreese ]
* Fix make-clean lintian warning
* New upstream release
* Bump debhelper build-dep to match compat
* Add desktop file
* Update watch file for new upstream naming
* Remove nostrip check from rules
* Bump Standards Version to 3.7.3
* Add myself to uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    ParaGUI - crossplatform widgetset
 
3
    Copyright (C) 2000,2001,2002,2003,2004  Alexander Pipelka
 
4
 
 
5
    This library is free software; you can redistribute it and/or
 
6
    modify it under the terms of the GNU Library General Public
 
7
    License as published by the Free Software Foundation; either
 
8
    version 2 of the License, or (at your option) any later version.
 
9
 
 
10
    This library is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
    Library General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU Library General Public
 
16
    License along with this library; if not, write to the Free
 
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
 
 
19
    Alexander Pipelka
 
20
    pipelka@teleweb.at
 
21
 
 
22
    Last Update:      $Author: mbickel $
 
23
    Update Date:      $Date: 2007-04-13 16:16:00 $
 
24
    Source File:      $Source: /home/cvspsrv/cvsroot/games/asc/source/libs/paragui/src/core/pgcolors.cpp,v $
 
25
    CVS/RCS Revision: $Revision: 1.2 $
 
26
    Status:           $State: Exp $
 
27
 
 
28
    AUTOGENERATED PLEASE Do NOT EDIT!
 
29
*/
 
30
 
 
31
/** @file pgcolors.h
 
32
        Header file of the PG_Colors class.
 
33
        This header file also creates a bunch of useful color constants. To enable the
 
34
        creation of the color constants define "USE_COLOR_CONSTANTS" before including
 
35
        this header file.
 
36
        There are 891 predefined color constants, though many of them are duplicates
 
37
        differing in spelling and capitalization. @ref predefcolorlist "List of all the
 
38
        predefined colors."*/
 
39
 
 
40
#define USE_COLOR_CONSTANTS
 
41
#include "pgcolors.h"
 
42
 
 
43
PG_Colors::colormap PG_Colors::colors;
 
44
bool PG_Colors::initialized = false;
 
45
 
 
46
void PG_Colors::InitColors() {
 
47
        colors["snow"] = PG_Colormap::snow;
 
48
        colors["ghost_white"] = PG_Colormap::ghost_white;
 
49
        colors["GhostWhite"] = PG_Colormap::GhostWhite;
 
50
        colors["white_smoke"] = PG_Colormap::white_smoke;
 
51
        colors["WhiteSmoke"] = PG_Colormap::WhiteSmoke;
 
52
        colors["gainsboro"] = PG_Colormap::gainsboro;
 
53
        colors["floral_white"] = PG_Colormap::floral_white;
 
54
        colors["FloralWhite"] = PG_Colormap::FloralWhite;
 
55
        colors["old_lace"] = PG_Colormap::old_lace;
 
56
        colors["OldLace"] = PG_Colormap::OldLace;
 
57
        colors["linen"] = PG_Colormap::linen;
 
58
        colors["antique_white"] = PG_Colormap::antique_white;
 
59
        colors["AntiqueWhite"] = PG_Colormap::AntiqueWhite;
 
60
        colors["papaya_whip"] = PG_Colormap::papaya_whip;
 
61
        colors["PapayaWhip"] = PG_Colormap::PapayaWhip;
 
62
        colors["blanched_almond"] = PG_Colormap::blanched_almond;
 
63
        colors["BlanchedAlmond"] = PG_Colormap::BlanchedAlmond;
 
64
        colors["bisque"] = PG_Colormap::bisque;
 
65
        colors["peach_puff"] = PG_Colormap::peach_puff;
 
66
        colors["PeachPuff"] = PG_Colormap::PeachPuff;
 
67
        colors["navajo_white"] = PG_Colormap::navajo_white;
 
68
        colors["NavajoWhite"] = PG_Colormap::NavajoWhite;
 
69
        colors["moccasin"] = PG_Colormap::moccasin;
 
70
        colors["cornsilk"] = PG_Colormap::cornsilk;
 
71
        colors["ivory"] = PG_Colormap::ivory;
 
72
        colors["lemon_chiffon"] = PG_Colormap::lemon_chiffon;
 
73
        colors["LemonChiffon"] = PG_Colormap::LemonChiffon;
 
74
        colors["seashell"] = PG_Colormap::seashell;
 
75
        colors["honeydew"] = PG_Colormap::honeydew;
 
76
        colors["mint_cream"] = PG_Colormap::mint_cream;
 
77
        colors["MintCream"] = PG_Colormap::MintCream;
 
78
        colors["azure"] = PG_Colormap::azure;
 
79
        colors["alice_blue"] = PG_Colormap::alice_blue;
 
80
        colors["AliceBlue"] = PG_Colormap::AliceBlue;
 
81
        colors["lavender"] = PG_Colormap::lavender;
 
82
        colors["lavender_blush"] = PG_Colormap::lavender_blush;
 
83
        colors["LavenderBlush"] = PG_Colormap::LavenderBlush;
 
84
        colors["misty_rose"] = PG_Colormap::misty_rose;
 
85
        colors["MistyRose"] = PG_Colormap::MistyRose;
 
86
        colors["white"] = PG_Colormap::white;
 
87
        colors["dim_gray"] = PG_Colormap::dim_gray;
 
88
        colors["DimGray"] = PG_Colormap::DimGray;
 
89
        colors["dim_grey"] = PG_Colormap::dim_grey;
 
90
        colors["DimGrey"] = PG_Colormap::DimGrey;
 
91
        colors["slate_gray"] = PG_Colormap::slate_gray;
 
92
        colors["SlateGray"] = PG_Colormap::SlateGray;
 
93
        colors["slate_grey"] = PG_Colormap::slate_grey;
 
94
        colors["SlateGrey"] = PG_Colormap::SlateGrey;
 
95
        colors["light_slate_gray"] = PG_Colormap::light_slate_gray;
 
96
        colors["LightSlateGray"] = PG_Colormap::LightSlateGray;
 
97
        colors["light_slate_grey"] = PG_Colormap::light_slate_grey;
 
98
        colors["LightSlateGrey"] = PG_Colormap::LightSlateGrey;
 
99
        colors["gray"] = PG_Colormap::gray;
 
100
        colors["grey"] = PG_Colormap::grey;
 
101
        colors["light_grey"] = PG_Colormap::light_grey;
 
102
        colors["LightGrey"] = PG_Colormap::LightGrey;
 
103
        colors["light_gray"] = PG_Colormap::light_gray;
 
104
        colors["LightGray"] = PG_Colormap::LightGray;
 
105
        colors["cornflower_blue"] = PG_Colormap::cornflower_blue;
 
106
        colors["CornflowerBlue"] = PG_Colormap::CornflowerBlue;
 
107
        colors["slate_blue"] = PG_Colormap::slate_blue;
 
108
        colors["SlateBlue"] = PG_Colormap::SlateBlue;
 
109
        colors["medium_slate_blue"] = PG_Colormap::medium_slate_blue;
 
110
        colors["MediumSlateBlue"] = PG_Colormap::MediumSlateBlue;
 
111
        colors["light_slate_blue"] = PG_Colormap::light_slate_blue;
 
112
        colors["LightSlateBlue"] = PG_Colormap::LightSlateBlue;
 
113
        colors["sky_blue"] = PG_Colormap::sky_blue;
 
114
        colors["SkyBlue"] = PG_Colormap::SkyBlue;
 
115
        colors["light_sky_blue"] = PG_Colormap::light_sky_blue;
 
116
        colors["LightSkyBlue"] = PG_Colormap::LightSkyBlue;
 
117
        colors["light_steel_blue"] = PG_Colormap::light_steel_blue;
 
118
        colors["LightSteelBlue"] = PG_Colormap::LightSteelBlue;
 
119
        colors["light_blue"] = PG_Colormap::light_blue;
 
120
        colors["LightBlue"] = PG_Colormap::LightBlue;
 
121
        colors["powder_blue"] = PG_Colormap::powder_blue;
 
122
        colors["PowderBlue"] = PG_Colormap::PowderBlue;
 
123
        colors["pale_turquoise"] = PG_Colormap::pale_turquoise;
 
124
        colors["PaleTurquoise"] = PG_Colormap::PaleTurquoise;
 
125
        colors["light_cyan"] = PG_Colormap::light_cyan;
 
126
        colors["LightCyan"] = PG_Colormap::LightCyan;
 
127
        colors["medium_aquamarine"] = PG_Colormap::medium_aquamarine;
 
128
        colors["MediumAquamarine"] = PG_Colormap::MediumAquamarine;
 
129
        colors["aquamarine"] = PG_Colormap::aquamarine;
 
130
        colors["dark_sea_green"] = PG_Colormap::dark_sea_green;
 
131
        colors["DarkSeaGreen"] = PG_Colormap::DarkSeaGreen;
 
132
        colors["pale_green"] = PG_Colormap::pale_green;
 
133
        colors["PaleGreen"] = PG_Colormap::PaleGreen;
 
134
        colors["lawn_green"] = PG_Colormap::lawn_green;
 
135
        colors["LawnGreen"] = PG_Colormap::LawnGreen;
 
136
        colors["chartreuse"] = PG_Colormap::chartreuse;
 
137
        colors["green_yellow"] = PG_Colormap::green_yellow;
 
138
        colors["GreenYellow"] = PG_Colormap::GreenYellow;
 
139
        colors["yellow_green"] = PG_Colormap::yellow_green;
 
140
        colors["YellowGreen"] = PG_Colormap::YellowGreen;
 
141
        colors["olive_drab"] = PG_Colormap::olive_drab;
 
142
        colors["OliveDrab"] = PG_Colormap::OliveDrab;
 
143
        colors["dark_khaki"] = PG_Colormap::dark_khaki;
 
144
        colors["DarkKhaki"] = PG_Colormap::DarkKhaki;
 
145
        colors["khaki"] = PG_Colormap::khaki;
 
146
        colors["pale_goldenrod"] = PG_Colormap::pale_goldenrod;
 
147
        colors["PaleGoldenrod"] = PG_Colormap::PaleGoldenrod;
 
148
        colors["light_goldenrod_yellow"] = PG_Colormap::light_goldenrod_yellow;
 
149
        colors["LightGoldenrodYellow"] = PG_Colormap::LightGoldenrodYellow;
 
150
        colors["light_yellow"] = PG_Colormap::light_yellow;
 
151
        colors["LightYellow"] = PG_Colormap::LightYellow;
 
152
        colors["yellow"] = PG_Colormap::yellow;
 
153
        colors["gold"] = PG_Colormap::gold;
 
154
        colors["light_goldenrod"] = PG_Colormap::light_goldenrod;
 
155
        colors["LightGoldenrod"] = PG_Colormap::LightGoldenrod;
 
156
        colors["goldenrod"] = PG_Colormap::goldenrod;
 
157
        colors["dark_goldenrod"] = PG_Colormap::dark_goldenrod;
 
158
        colors["DarkGoldenrod"] = PG_Colormap::DarkGoldenrod;
 
159
        colors["rosy_brown"] = PG_Colormap::rosy_brown;
 
160
        colors["RosyBrown"] = PG_Colormap::RosyBrown;
 
161
        colors["indian_red"] = PG_Colormap::indian_red;
 
162
        colors["IndianRed"] = PG_Colormap::IndianRed;
 
163
        colors["saddle_brown"] = PG_Colormap::saddle_brown;
 
164
        colors["SaddleBrown"] = PG_Colormap::SaddleBrown;
 
165
        colors["sienna"] = PG_Colormap::sienna;
 
166
        colors["peru"] = PG_Colormap::peru;
 
167
        colors["burlywood"] = PG_Colormap::burlywood;
 
168
        colors["beige"] = PG_Colormap::beige;
 
169
        colors["wheat"] = PG_Colormap::wheat;
 
170
        colors["sandy_brown"] = PG_Colormap::sandy_brown;
 
171
        colors["SandyBrown"] = PG_Colormap::SandyBrown;
 
172
        colors["tan"] = PG_Colormap::tan;
 
173
        colors["chocolate"] = PG_Colormap::chocolate;
 
174
        colors["firebrick"] = PG_Colormap::firebrick;
 
175
        colors["brown"] = PG_Colormap::brown;
 
176
        colors["dark_salmon"] = PG_Colormap::dark_salmon;
 
177
        colors["DarkSalmon"] = PG_Colormap::DarkSalmon;
 
178
        colors["salmon"] = PG_Colormap::salmon;
 
179
        colors["light_salmon"] = PG_Colormap::light_salmon;
 
180
        colors["LightSalmon"] = PG_Colormap::LightSalmon;
 
181
        colors["orange"] = PG_Colormap::orange;
 
182
        colors["dark_orange"] = PG_Colormap::dark_orange;
 
183
        colors["DarkOrange"] = PG_Colormap::DarkOrange;
 
184
        colors["coral"] = PG_Colormap::coral;
 
185
        colors["light_coral"] = PG_Colormap::light_coral;
 
186
        colors["LightCoral"] = PG_Colormap::LightCoral;
 
187
        colors["tomato"] = PG_Colormap::tomato;
 
188
        colors["orange_red"] = PG_Colormap::orange_red;
 
189
        colors["OrangeRed"] = PG_Colormap::OrangeRed;
 
190
        colors["red"] = PG_Colormap::red;
 
191
        colors["hot_pink"] = PG_Colormap::hot_pink;
 
192
        colors["HotPink"] = PG_Colormap::HotPink;
 
193
        colors["deep_pink"] = PG_Colormap::deep_pink;
 
194
        colors["DeepPink"] = PG_Colormap::DeepPink;
 
195
        colors["pink"] = PG_Colormap::pink;
 
196
        colors["light_pink"] = PG_Colormap::light_pink;
 
197
        colors["LightPink"] = PG_Colormap::LightPink;
 
198
        colors["pale_violet_red"] = PG_Colormap::pale_violet_red;
 
199
        colors["PaleVioletRed"] = PG_Colormap::PaleVioletRed;
 
200
        colors["maroon"] = PG_Colormap::maroon;
 
201
        colors["medium_violet_red"] = PG_Colormap::medium_violet_red;
 
202
        colors["MediumVioletRed"] = PG_Colormap::MediumVioletRed;
 
203
        colors["violet_red"] = PG_Colormap::violet_red;
 
204
        colors["VioletRed"] = PG_Colormap::VioletRed;
 
205
        colors["magenta"] = PG_Colormap::magenta;
 
206
        colors["violet"] = PG_Colormap::violet;
 
207
        colors["plum"] = PG_Colormap::plum;
 
208
        colors["orchid"] = PG_Colormap::orchid;
 
209
        colors["medium_orchid"] = PG_Colormap::medium_orchid;
 
210
        colors["MediumOrchid"] = PG_Colormap::MediumOrchid;
 
211
        colors["dark_orchid"] = PG_Colormap::dark_orchid;
 
212
        colors["DarkOrchid"] = PG_Colormap::DarkOrchid;
 
213
        colors["dark_violet"] = PG_Colormap::dark_violet;
 
214
        colors["DarkViolet"] = PG_Colormap::DarkViolet;
 
215
        colors["blue_violet"] = PG_Colormap::blue_violet;
 
216
        colors["BlueViolet"] = PG_Colormap::BlueViolet;
 
217
        colors["purple"] = PG_Colormap::purple;
 
218
        colors["medium_purple"] = PG_Colormap::medium_purple;
 
219
        colors["MediumPurple"] = PG_Colormap::MediumPurple;
 
220
        colors["thistle"] = PG_Colormap::thistle;
 
221
        colors["snow1"] = PG_Colormap::snow1;
 
222
        colors["snow2"] = PG_Colormap::snow2;
 
223
        colors["snow3"] = PG_Colormap::snow3;
 
224
        colors["snow4"] = PG_Colormap::snow4;
 
225
        colors["seashell1"] = PG_Colormap::seashell1;
 
226
        colors["seashell2"] = PG_Colormap::seashell2;
 
227
        colors["seashell3"] = PG_Colormap::seashell3;
 
228
        colors["seashell4"] = PG_Colormap::seashell4;
 
229
        colors["AntiqueWhite1"] = PG_Colormap::AntiqueWhite1;
 
230
        colors["AntiqueWhite2"] = PG_Colormap::AntiqueWhite2;
 
231
        colors["AntiqueWhite3"] = PG_Colormap::AntiqueWhite3;
 
232
        colors["AntiqueWhite4"] = PG_Colormap::AntiqueWhite4;
 
233
        colors["bisque1"] = PG_Colormap::bisque1;
 
234
        colors["bisque2"] = PG_Colormap::bisque2;
 
235
        colors["bisque3"] = PG_Colormap::bisque3;
 
236
        colors["bisque4"] = PG_Colormap::bisque4;
 
237
        colors["PeachPuff1"] = PG_Colormap::PeachPuff1;
 
238
        colors["PeachPuff2"] = PG_Colormap::PeachPuff2;
 
239
        colors["PeachPuff3"] = PG_Colormap::PeachPuff3;
 
240
        colors["PeachPuff4"] = PG_Colormap::PeachPuff4;
 
241
        colors["NavajoWhite1"] = PG_Colormap::NavajoWhite1;
 
242
        colors["NavajoWhite2"] = PG_Colormap::NavajoWhite2;
 
243
        colors["NavajoWhite3"] = PG_Colormap::NavajoWhite3;
 
244
        colors["NavajoWhite4"] = PG_Colormap::NavajoWhite4;
 
245
        colors["LemonChiffon1"] = PG_Colormap::LemonChiffon1;
 
246
        colors["LemonChiffon2"] = PG_Colormap::LemonChiffon2;
 
247
        colors["LemonChiffon3"] = PG_Colormap::LemonChiffon3;
 
248
        colors["LemonChiffon4"] = PG_Colormap::LemonChiffon4;
 
249
        colors["cornsilk1"] = PG_Colormap::cornsilk1;
 
250
        colors["cornsilk2"] = PG_Colormap::cornsilk2;
 
251
        colors["cornsilk3"] = PG_Colormap::cornsilk3;
 
252
        colors["cornsilk4"] = PG_Colormap::cornsilk4;
 
253
        colors["ivory1"] = PG_Colormap::ivory1;
 
254
        colors["ivory2"] = PG_Colormap::ivory2;
 
255
        colors["ivory3"] = PG_Colormap::ivory3;
 
256
        colors["ivory4"] = PG_Colormap::ivory4;
 
257
        colors["honeydew1"] = PG_Colormap::honeydew1;
 
258
        colors["honeydew2"] = PG_Colormap::honeydew2;
 
259
        colors["honeydew3"] = PG_Colormap::honeydew3;
 
260
        colors["honeydew4"] = PG_Colormap::honeydew4;
 
261
        colors["LavenderBlush1"] = PG_Colormap::LavenderBlush1;
 
262
        colors["LavenderBlush2"] = PG_Colormap::LavenderBlush2;
 
263
        colors["LavenderBlush3"] = PG_Colormap::LavenderBlush3;
 
264
        colors["LavenderBlush4"] = PG_Colormap::LavenderBlush4;
 
265
        colors["MistyRose1"] = PG_Colormap::MistyRose1;
 
266
        colors["MistyRose2"] = PG_Colormap::MistyRose2;
 
267
        colors["MistyRose3"] = PG_Colormap::MistyRose3;
 
268
        colors["MistyRose4"] = PG_Colormap::MistyRose4;
 
269
        colors["azure1"] = PG_Colormap::azure1;
 
270
        colors["azure2"] = PG_Colormap::azure2;
 
271
        colors["azure3"] = PG_Colormap::azure3;
 
272
        colors["azure4"] = PG_Colormap::azure4;
 
273
        colors["SlateBlue1"] = PG_Colormap::SlateBlue1;
 
274
        colors["SlateBlue2"] = PG_Colormap::SlateBlue2;
 
275
        colors["SlateBlue3"] = PG_Colormap::SlateBlue3;
 
276
        colors["SkyBlue1"] = PG_Colormap::SkyBlue1;
 
277
        colors["SkyBlue2"] = PG_Colormap::SkyBlue2;
 
278
        colors["SkyBlue3"] = PG_Colormap::SkyBlue3;
 
279
        colors["LightSkyBlue1"] = PG_Colormap::LightSkyBlue1;
 
280
        colors["LightSkyBlue2"] = PG_Colormap::LightSkyBlue2;
 
281
        colors["LightSkyBlue3"] = PG_Colormap::LightSkyBlue3;
 
282
        colors["SlateGray1"] = PG_Colormap::SlateGray1;
 
283
        colors["SlateGray2"] = PG_Colormap::SlateGray2;
 
284
        colors["SlateGray3"] = PG_Colormap::SlateGray3;
 
285
        colors["SlateGray4"] = PG_Colormap::SlateGray4;
 
286
        colors["LightSteelBlue1"] = PG_Colormap::LightSteelBlue1;
 
287
        colors["LightSteelBlue2"] = PG_Colormap::LightSteelBlue2;
 
288
        colors["LightSteelBlue3"] = PG_Colormap::LightSteelBlue3;
 
289
        colors["LightSteelBlue4"] = PG_Colormap::LightSteelBlue4;
 
290
        colors["LightBlue1"] = PG_Colormap::LightBlue1;
 
291
        colors["LightBlue2"] = PG_Colormap::LightBlue2;
 
292
        colors["LightBlue3"] = PG_Colormap::LightBlue3;
 
293
        colors["LightBlue4"] = PG_Colormap::LightBlue4;
 
294
        colors["LightCyan1"] = PG_Colormap::LightCyan1;
 
295
        colors["LightCyan2"] = PG_Colormap::LightCyan2;
 
296
        colors["LightCyan3"] = PG_Colormap::LightCyan3;
 
297
        colors["LightCyan4"] = PG_Colormap::LightCyan4;
 
298
        colors["PaleTurquoise1"] = PG_Colormap::PaleTurquoise1;
 
299
        colors["PaleTurquoise2"] = PG_Colormap::PaleTurquoise2;
 
300
        colors["PaleTurquoise3"] = PG_Colormap::PaleTurquoise3;
 
301
        colors["PaleTurquoise4"] = PG_Colormap::PaleTurquoise4;
 
302
        colors["CadetBlue1"] = PG_Colormap::CadetBlue1;
 
303
        colors["CadetBlue2"] = PG_Colormap::CadetBlue2;
 
304
        colors["CadetBlue3"] = PG_Colormap::CadetBlue3;
 
305
        colors["DarkSlateGray1"] = PG_Colormap::DarkSlateGray1;
 
306
        colors["DarkSlateGray2"] = PG_Colormap::DarkSlateGray2;
 
307
        colors["DarkSlateGray3"] = PG_Colormap::DarkSlateGray3;
 
308
        colors["aquamarine1"] = PG_Colormap::aquamarine1;
 
309
        colors["aquamarine2"] = PG_Colormap::aquamarine2;
 
310
        colors["aquamarine3"] = PG_Colormap::aquamarine3;
 
311
        colors["DarkSeaGreen1"] = PG_Colormap::DarkSeaGreen1;
 
312
        colors["DarkSeaGreen2"] = PG_Colormap::DarkSeaGreen2;
 
313
        colors["DarkSeaGreen3"] = PG_Colormap::DarkSeaGreen3;
 
314
        colors["DarkSeaGreen4"] = PG_Colormap::DarkSeaGreen4;
 
315
        colors["PaleGreen1"] = PG_Colormap::PaleGreen1;
 
316
        colors["PaleGreen2"] = PG_Colormap::PaleGreen2;
 
317
        colors["PaleGreen3"] = PG_Colormap::PaleGreen3;
 
318
        colors["chartreuse1"] = PG_Colormap::chartreuse1;
 
319
        colors["chartreuse2"] = PG_Colormap::chartreuse2;
 
320
        colors["chartreuse3"] = PG_Colormap::chartreuse3;
 
321
        colors["OliveDrab1"] = PG_Colormap::OliveDrab1;
 
322
        colors["OliveDrab2"] = PG_Colormap::OliveDrab2;
 
323
        colors["OliveDrab3"] = PG_Colormap::OliveDrab3;
 
324
        colors["OliveDrab4"] = PG_Colormap::OliveDrab4;
 
325
        colors["DarkOliveGreen1"] = PG_Colormap::DarkOliveGreen1;
 
326
        colors["DarkOliveGreen2"] = PG_Colormap::DarkOliveGreen2;
 
327
        colors["DarkOliveGreen3"] = PG_Colormap::DarkOliveGreen3;
 
328
        colors["DarkOliveGreen4"] = PG_Colormap::DarkOliveGreen4;
 
329
        colors["khaki1"] = PG_Colormap::khaki1;
 
330
        colors["khaki2"] = PG_Colormap::khaki2;
 
331
        colors["khaki3"] = PG_Colormap::khaki3;
 
332
        colors["khaki4"] = PG_Colormap::khaki4;
 
333
        colors["LightGoldenrod1"] = PG_Colormap::LightGoldenrod1;
 
334
        colors["LightGoldenrod2"] = PG_Colormap::LightGoldenrod2;
 
335
        colors["LightGoldenrod3"] = PG_Colormap::LightGoldenrod3;
 
336
        colors["LightGoldenrod4"] = PG_Colormap::LightGoldenrod4;
 
337
        colors["LightYellow1"] = PG_Colormap::LightYellow1;
 
338
        colors["LightYellow2"] = PG_Colormap::LightYellow2;
 
339
        colors["LightYellow3"] = PG_Colormap::LightYellow3;
 
340
        colors["LightYellow4"] = PG_Colormap::LightYellow4;
 
341
        colors["yellow1"] = PG_Colormap::yellow1;
 
342
        colors["yellow2"] = PG_Colormap::yellow2;
 
343
        colors["yellow3"] = PG_Colormap::yellow3;
 
344
        colors["yellow4"] = PG_Colormap::yellow4;
 
345
        colors["gold1"] = PG_Colormap::gold1;
 
346
        colors["gold2"] = PG_Colormap::gold2;
 
347
        colors["gold3"] = PG_Colormap::gold3;
 
348
        colors["gold4"] = PG_Colormap::gold4;
 
349
        colors["goldenrod1"] = PG_Colormap::goldenrod1;
 
350
        colors["goldenrod2"] = PG_Colormap::goldenrod2;
 
351
        colors["goldenrod3"] = PG_Colormap::goldenrod3;
 
352
        colors["goldenrod4"] = PG_Colormap::goldenrod4;
 
353
        colors["DarkGoldenrod1"] = PG_Colormap::DarkGoldenrod1;
 
354
        colors["DarkGoldenrod2"] = PG_Colormap::DarkGoldenrod2;
 
355
        colors["DarkGoldenrod3"] = PG_Colormap::DarkGoldenrod3;
 
356
        colors["DarkGoldenrod4"] = PG_Colormap::DarkGoldenrod4;
 
357
        colors["RosyBrown1"] = PG_Colormap::RosyBrown1;
 
358
        colors["RosyBrown2"] = PG_Colormap::RosyBrown2;
 
359
        colors["RosyBrown3"] = PG_Colormap::RosyBrown3;
 
360
        colors["RosyBrown4"] = PG_Colormap::RosyBrown4;
 
361
        colors["IndianRed1"] = PG_Colormap::IndianRed1;
 
362
        colors["IndianRed2"] = PG_Colormap::IndianRed2;
 
363
        colors["IndianRed3"] = PG_Colormap::IndianRed3;
 
364
        colors["IndianRed4"] = PG_Colormap::IndianRed4;
 
365
        colors["sienna1"] = PG_Colormap::sienna1;
 
366
        colors["sienna2"] = PG_Colormap::sienna2;
 
367
        colors["sienna3"] = PG_Colormap::sienna3;
 
368
        colors["sienna4"] = PG_Colormap::sienna4;
 
369
        colors["burlywood1"] = PG_Colormap::burlywood1;
 
370
        colors["burlywood2"] = PG_Colormap::burlywood2;
 
371
        colors["burlywood3"] = PG_Colormap::burlywood3;
 
372
        colors["burlywood4"] = PG_Colormap::burlywood4;
 
373
        colors["wheat1"] = PG_Colormap::wheat1;
 
374
        colors["wheat2"] = PG_Colormap::wheat2;
 
375
        colors["wheat3"] = PG_Colormap::wheat3;
 
376
        colors["wheat4"] = PG_Colormap::wheat4;
 
377
        colors["tan1"] = PG_Colormap::tan1;
 
378
        colors["tan2"] = PG_Colormap::tan2;
 
379
        colors["tan3"] = PG_Colormap::tan3;
 
380
        colors["tan4"] = PG_Colormap::tan4;
 
381
        colors["chocolate1"] = PG_Colormap::chocolate1;
 
382
        colors["chocolate2"] = PG_Colormap::chocolate2;
 
383
        colors["chocolate3"] = PG_Colormap::chocolate3;
 
384
        colors["chocolate4"] = PG_Colormap::chocolate4;
 
385
        colors["firebrick1"] = PG_Colormap::firebrick1;
 
386
        colors["firebrick2"] = PG_Colormap::firebrick2;
 
387
        colors["firebrick3"] = PG_Colormap::firebrick3;
 
388
        colors["firebrick4"] = PG_Colormap::firebrick4;
 
389
        colors["brown1"] = PG_Colormap::brown1;
 
390
        colors["brown2"] = PG_Colormap::brown2;
 
391
        colors["brown3"] = PG_Colormap::brown3;
 
392
        colors["brown4"] = PG_Colormap::brown4;
 
393
        colors["salmon1"] = PG_Colormap::salmon1;
 
394
        colors["salmon2"] = PG_Colormap::salmon2;
 
395
        colors["salmon3"] = PG_Colormap::salmon3;
 
396
        colors["salmon4"] = PG_Colormap::salmon4;
 
397
        colors["LightSalmon1"] = PG_Colormap::LightSalmon1;
 
398
        colors["LightSalmon2"] = PG_Colormap::LightSalmon2;
 
399
        colors["LightSalmon3"] = PG_Colormap::LightSalmon3;
 
400
        colors["LightSalmon4"] = PG_Colormap::LightSalmon4;
 
401
        colors["orange1"] = PG_Colormap::orange1;
 
402
        colors["orange2"] = PG_Colormap::orange2;
 
403
        colors["orange3"] = PG_Colormap::orange3;
 
404
        colors["orange4"] = PG_Colormap::orange4;
 
405
        colors["DarkOrange1"] = PG_Colormap::DarkOrange1;
 
406
        colors["DarkOrange2"] = PG_Colormap::DarkOrange2;
 
407
        colors["DarkOrange3"] = PG_Colormap::DarkOrange3;
 
408
        colors["DarkOrange4"] = PG_Colormap::DarkOrange4;
 
409
        colors["coral1"] = PG_Colormap::coral1;
 
410
        colors["coral2"] = PG_Colormap::coral2;
 
411
        colors["coral3"] = PG_Colormap::coral3;
 
412
        colors["coral4"] = PG_Colormap::coral4;
 
413
        colors["tomato1"] = PG_Colormap::tomato1;
 
414
        colors["tomato2"] = PG_Colormap::tomato2;
 
415
        colors["tomato3"] = PG_Colormap::tomato3;
 
416
        colors["tomato4"] = PG_Colormap::tomato4;
 
417
        colors["OrangeRed1"] = PG_Colormap::OrangeRed1;
 
418
        colors["OrangeRed2"] = PG_Colormap::OrangeRed2;
 
419
        colors["OrangeRed3"] = PG_Colormap::OrangeRed3;
 
420
        colors["OrangeRed4"] = PG_Colormap::OrangeRed4;
 
421
        colors["red1"] = PG_Colormap::red1;
 
422
        colors["red2"] = PG_Colormap::red2;
 
423
        colors["red3"] = PG_Colormap::red3;
 
424
        colors["red4"] = PG_Colormap::red4;
 
425
        colors["DeepPink1"] = PG_Colormap::DeepPink1;
 
426
        colors["DeepPink2"] = PG_Colormap::DeepPink2;
 
427
        colors["DeepPink3"] = PG_Colormap::DeepPink3;
 
428
        colors["DeepPink4"] = PG_Colormap::DeepPink4;
 
429
        colors["HotPink1"] = PG_Colormap::HotPink1;
 
430
        colors["HotPink2"] = PG_Colormap::HotPink2;
 
431
        colors["HotPink3"] = PG_Colormap::HotPink3;
 
432
        colors["HotPink4"] = PG_Colormap::HotPink4;
 
433
        colors["pink1"] = PG_Colormap::pink1;
 
434
        colors["pink2"] = PG_Colormap::pink2;
 
435
        colors["pink3"] = PG_Colormap::pink3;
 
436
        colors["pink4"] = PG_Colormap::pink4;
 
437
        colors["LightPink1"] = PG_Colormap::LightPink1;
 
438
        colors["LightPink2"] = PG_Colormap::LightPink2;
 
439
        colors["LightPink3"] = PG_Colormap::LightPink3;
 
440
        colors["LightPink4"] = PG_Colormap::LightPink4;
 
441
        colors["PaleVioletRed1"] = PG_Colormap::PaleVioletRed1;
 
442
        colors["PaleVioletRed2"] = PG_Colormap::PaleVioletRed2;
 
443
        colors["PaleVioletRed3"] = PG_Colormap::PaleVioletRed3;
 
444
        colors["PaleVioletRed4"] = PG_Colormap::PaleVioletRed4;
 
445
        colors["maroon1"] = PG_Colormap::maroon1;
 
446
        colors["maroon2"] = PG_Colormap::maroon2;
 
447
        colors["maroon3"] = PG_Colormap::maroon3;
 
448
        colors["maroon4"] = PG_Colormap::maroon4;
 
449
        colors["VioletRed1"] = PG_Colormap::VioletRed1;
 
450
        colors["VioletRed2"] = PG_Colormap::VioletRed2;
 
451
        colors["VioletRed3"] = PG_Colormap::VioletRed3;
 
452
        colors["VioletRed4"] = PG_Colormap::VioletRed4;
 
453
        colors["magenta1"] = PG_Colormap::magenta1;
 
454
        colors["magenta2"] = PG_Colormap::magenta2;
 
455
        colors["magenta3"] = PG_Colormap::magenta3;
 
456
        colors["magenta4"] = PG_Colormap::magenta4;
 
457
        colors["orchid1"] = PG_Colormap::orchid1;
 
458
        colors["orchid2"] = PG_Colormap::orchid2;
 
459
        colors["orchid3"] = PG_Colormap::orchid3;
 
460
        colors["orchid4"] = PG_Colormap::orchid4;
 
461
        colors["plum1"] = PG_Colormap::plum1;
 
462
        colors["plum2"] = PG_Colormap::plum2;
 
463
        colors["plum3"] = PG_Colormap::plum3;
 
464
        colors["plum4"] = PG_Colormap::plum4;
 
465
        colors["MediumOrchid1"] = PG_Colormap::MediumOrchid1;
 
466
        colors["MediumOrchid2"] = PG_Colormap::MediumOrchid2;
 
467
        colors["MediumOrchid3"] = PG_Colormap::MediumOrchid3;
 
468
        colors["MediumOrchid4"] = PG_Colormap::MediumOrchid4;
 
469
        colors["DarkOrchid1"] = PG_Colormap::DarkOrchid1;
 
470
        colors["DarkOrchid2"] = PG_Colormap::DarkOrchid2;
 
471
        colors["DarkOrchid3"] = PG_Colormap::DarkOrchid3;
 
472
        colors["DarkOrchid4"] = PG_Colormap::DarkOrchid4;
 
473
        colors["purple1"] = PG_Colormap::purple1;
 
474
        colors["purple2"] = PG_Colormap::purple2;
 
475
        colors["purple3"] = PG_Colormap::purple3;
 
476
        colors["MediumPurple1"] = PG_Colormap::MediumPurple1;
 
477
        colors["MediumPurple2"] = PG_Colormap::MediumPurple2;
 
478
        colors["MediumPurple3"] = PG_Colormap::MediumPurple3;
 
479
        colors["thistle1"] = PG_Colormap::thistle1;
 
480
        colors["thistle2"] = PG_Colormap::thistle2;
 
481
        colors["thistle3"] = PG_Colormap::thistle3;
 
482
        colors["thistle4"] = PG_Colormap::thistle4;
 
483
        colors["gray40"] = PG_Colormap::gray40;
 
484
        colors["grey40"] = PG_Colormap::grey40;
 
485
        colors["gray41"] = PG_Colormap::gray41;
 
486
        colors["grey41"] = PG_Colormap::grey41;
 
487
        colors["gray42"] = PG_Colormap::gray42;
 
488
        colors["grey42"] = PG_Colormap::grey42;
 
489
        colors["gray43"] = PG_Colormap::gray43;
 
490
        colors["grey43"] = PG_Colormap::grey43;
 
491
        colors["gray44"] = PG_Colormap::gray44;
 
492
        colors["grey44"] = PG_Colormap::grey44;
 
493
        colors["gray45"] = PG_Colormap::gray45;
 
494
        colors["grey45"] = PG_Colormap::grey45;
 
495
        colors["gray46"] = PG_Colormap::gray46;
 
496
        colors["grey46"] = PG_Colormap::grey46;
 
497
        colors["gray47"] = PG_Colormap::gray47;
 
498
        colors["grey47"] = PG_Colormap::grey47;
 
499
        colors["gray48"] = PG_Colormap::gray48;
 
500
        colors["grey48"] = PG_Colormap::grey48;
 
501
        colors["gray49"] = PG_Colormap::gray49;
 
502
        colors["grey49"] = PG_Colormap::grey49;
 
503
        colors["gray50"] = PG_Colormap::gray50;
 
504
        colors["grey50"] = PG_Colormap::grey50;
 
505
        colors["gray51"] = PG_Colormap::gray51;
 
506
        colors["grey51"] = PG_Colormap::grey51;
 
507
        colors["gray52"] = PG_Colormap::gray52;
 
508
        colors["grey52"] = PG_Colormap::grey52;
 
509
        colors["gray53"] = PG_Colormap::gray53;
 
510
        colors["grey53"] = PG_Colormap::grey53;
 
511
        colors["gray54"] = PG_Colormap::gray54;
 
512
        colors["grey54"] = PG_Colormap::grey54;
 
513
        colors["gray55"] = PG_Colormap::gray55;
 
514
        colors["grey55"] = PG_Colormap::grey55;
 
515
        colors["gray56"] = PG_Colormap::gray56;
 
516
        colors["grey56"] = PG_Colormap::grey56;
 
517
        colors["gray57"] = PG_Colormap::gray57;
 
518
        colors["grey57"] = PG_Colormap::grey57;
 
519
        colors["gray58"] = PG_Colormap::gray58;
 
520
        colors["grey58"] = PG_Colormap::grey58;
 
521
        colors["gray59"] = PG_Colormap::gray59;
 
522
        colors["grey59"] = PG_Colormap::grey59;
 
523
        colors["gray60"] = PG_Colormap::gray60;
 
524
        colors["grey60"] = PG_Colormap::grey60;
 
525
        colors["gray61"] = PG_Colormap::gray61;
 
526
        colors["grey61"] = PG_Colormap::grey61;
 
527
        colors["gray62"] = PG_Colormap::gray62;
 
528
        colors["grey62"] = PG_Colormap::grey62;
 
529
        colors["gray63"] = PG_Colormap::gray63;
 
530
        colors["grey63"] = PG_Colormap::grey63;
 
531
        colors["gray64"] = PG_Colormap::gray64;
 
532
        colors["grey64"] = PG_Colormap::grey64;
 
533
        colors["gray65"] = PG_Colormap::gray65;
 
534
        colors["grey65"] = PG_Colormap::grey65;
 
535
        colors["gray66"] = PG_Colormap::gray66;
 
536
        colors["grey66"] = PG_Colormap::grey66;
 
537
        colors["gray67"] = PG_Colormap::gray67;
 
538
        colors["grey67"] = PG_Colormap::grey67;
 
539
        colors["gray68"] = PG_Colormap::gray68;
 
540
        colors["grey68"] = PG_Colormap::grey68;
 
541
        colors["gray69"] = PG_Colormap::gray69;
 
542
        colors["grey69"] = PG_Colormap::grey69;
 
543
        colors["gray70"] = PG_Colormap::gray70;
 
544
        colors["grey70"] = PG_Colormap::grey70;
 
545
        colors["gray71"] = PG_Colormap::gray71;
 
546
        colors["grey71"] = PG_Colormap::grey71;
 
547
        colors["gray72"] = PG_Colormap::gray72;
 
548
        colors["grey72"] = PG_Colormap::grey72;
 
549
        colors["gray73"] = PG_Colormap::gray73;
 
550
        colors["grey73"] = PG_Colormap::grey73;
 
551
        colors["gray74"] = PG_Colormap::gray74;
 
552
        colors["grey74"] = PG_Colormap::grey74;
 
553
        colors["gray75"] = PG_Colormap::gray75;
 
554
        colors["grey75"] = PG_Colormap::grey75;
 
555
        colors["gray76"] = PG_Colormap::gray76;
 
556
        colors["grey76"] = PG_Colormap::grey76;
 
557
        colors["gray77"] = PG_Colormap::gray77;
 
558
        colors["grey77"] = PG_Colormap::grey77;
 
559
        colors["gray78"] = PG_Colormap::gray78;
 
560
        colors["grey78"] = PG_Colormap::grey78;
 
561
        colors["gray79"] = PG_Colormap::gray79;
 
562
        colors["grey79"] = PG_Colormap::grey79;
 
563
        colors["gray80"] = PG_Colormap::gray80;
 
564
        colors["grey80"] = PG_Colormap::grey80;
 
565
        colors["gray81"] = PG_Colormap::gray81;
 
566
        colors["grey81"] = PG_Colormap::grey81;
 
567
        colors["gray82"] = PG_Colormap::gray82;
 
568
        colors["grey82"] = PG_Colormap::grey82;
 
569
        colors["gray83"] = PG_Colormap::gray83;
 
570
        colors["grey83"] = PG_Colormap::grey83;
 
571
        colors["gray84"] = PG_Colormap::gray84;
 
572
        colors["grey84"] = PG_Colormap::grey84;
 
573
        colors["gray85"] = PG_Colormap::gray85;
 
574
        colors["grey85"] = PG_Colormap::grey85;
 
575
        colors["gray86"] = PG_Colormap::gray86;
 
576
        colors["grey86"] = PG_Colormap::grey86;
 
577
        colors["gray87"] = PG_Colormap::gray87;
 
578
        colors["grey87"] = PG_Colormap::grey87;
 
579
        colors["gray88"] = PG_Colormap::gray88;
 
580
        colors["grey88"] = PG_Colormap::grey88;
 
581
        colors["gray89"] = PG_Colormap::gray89;
 
582
        colors["grey89"] = PG_Colormap::grey89;
 
583
        colors["gray90"] = PG_Colormap::gray90;
 
584
        colors["grey90"] = PG_Colormap::grey90;
 
585
        colors["gray91"] = PG_Colormap::gray91;
 
586
        colors["grey91"] = PG_Colormap::grey91;
 
587
        colors["gray92"] = PG_Colormap::gray92;
 
588
        colors["grey92"] = PG_Colormap::grey92;
 
589
        colors["gray93"] = PG_Colormap::gray93;
 
590
        colors["grey93"] = PG_Colormap::grey93;
 
591
        colors["gray94"] = PG_Colormap::gray94;
 
592
        colors["grey94"] = PG_Colormap::grey94;
 
593
        colors["gray95"] = PG_Colormap::gray95;
 
594
        colors["grey95"] = PG_Colormap::grey95;
 
595
        colors["gray96"] = PG_Colormap::gray96;
 
596
        colors["grey96"] = PG_Colormap::grey96;
 
597
        colors["gray97"] = PG_Colormap::gray97;
 
598
        colors["grey97"] = PG_Colormap::grey97;
 
599
        colors["gray98"] = PG_Colormap::gray98;
 
600
        colors["grey98"] = PG_Colormap::grey98;
 
601
        colors["gray99"] = PG_Colormap::gray99;
 
602
        colors["grey99"] = PG_Colormap::grey99;
 
603
        colors["gray100"] = PG_Colormap::gray100;
 
604
        colors["grey100"] = PG_Colormap::grey100;
 
605
        colors["dark_grey"] = PG_Colormap::dark_grey;
 
606
        colors["DarkGrey"] = PG_Colormap::DarkGrey;
 
607
        colors["dark_gray"] = PG_Colormap::dark_gray;
 
608
        colors["DarkGray"] = PG_Colormap::DarkGray;
 
609
        colors["dark_blue"] = PG_Colormap::dark_blue;
 
610
        colors["DarkBlue"] = PG_Colormap::DarkBlue;
 
611
        colors["dark_cyan"] = PG_Colormap::dark_cyan;
 
612
        colors["DarkCyan"] = PG_Colormap::DarkCyan;
 
613
        colors["dark_magenta"] = PG_Colormap::dark_magenta;
 
614
        colors["DarkMagenta"] = PG_Colormap::DarkMagenta;
 
615
        colors["dark_red"] = PG_Colormap::dark_red;
 
616
        colors["DarkRed"] = PG_Colormap::DarkRed;
 
617
        colors["light_green"] = PG_Colormap::light_green;
 
618
        colors["LightGreen"] = PG_Colormap::LightGreen;
 
619
}