1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
|
/*
** ClanLib SDK
** Copyright (c) 1997-2005 The ClanLib Team
**
** This software is provided 'as-is', without any express or implied
** warranty. In no event will the authors be held liable for any damages
** arising from the use of this software.
**
** Permission is granted to anyone to use this software for any purpose,
** including commercial applications, and to alter it and redistribute it
** freely, subject to the following restrictions:
**
** 1. The origin of this software must not be misrepresented; you must not
** claim that you wrote the original software. If you use this software
** in a product, an acknowledgment in the product documentation would be
** appreciated but is not required.
** 2. Altered source versions must be plainly marked as such, and must not be
** misrepresented as being the original software.
** 3. This notice may not be removed or altered from any source distribution.
**
** Note: Some of the libraries ClanLib may link to may have additional
** requirements or restrictions.
**
** File Author(s):
**
** Magnus Norddahl
** (if your name is missing here, please add it)
*/
//! clanDisplay="Display 2D"
//! header=display.h
#ifndef header_color
#define header_color
#ifdef CL_API_DLL
#ifdef CL_DISPLAY_EXPORT
#define CL_API_DISPLAY __declspec(dllexport)
#else
#define CL_API_DISPLAY __declspec(dllimport)
#endif
#else
#define CL_API_DISPLAY
#endif
#if _MSC_VER > 1000
#pragma once
#endif
#include <string>
#include <vector>
class CL_PixelFormat;
class CL_Colorf;
//: Color description class.
//- !group=Display/Display 2D!
//- !header=display.h!
class CL_API_DISPLAY CL_Color
{
//! Construction:
public:
//: Constructs a color.
//- <p>Color components are specified in the range 0 to 255.</p>
//- <p>An alpha value of 0 means complete transparency, while 255 means completely opaque (solid).</p>
//param red: Red color component.
//param green: Green color component.
//param blue: Blue color component.
//param alpha: Alpha (transparency) color component.
CL_Color() : color(0) { return; }
explicit CL_Color(const CL_Colorf&);
CL_Color(unsigned int red, unsigned int green, unsigned int blue, unsigned int alpha = 255)
: color((alpha<<24) | (red<<16) | (green<<8) | blue) { return; }
//! Attributes:
public:
//: Returns the alpha color component, in the range 0-255.
unsigned int get_alpha() const { return (color >> 24) & 0xff; }
//: Returns the red color component, in the range 0-255.
unsigned int get_red() const { return (color >> 16) & 0xff; }
//: Returns the green color component, in the range 0-255.
unsigned int get_green() const { return (color >> 8) & 0xff; }
//: Returns the blue color component, in the range 0-255.
unsigned int get_blue() const { return color & 0xff; }
//: Color in ARGB8888 format.
unsigned int color;
// Operations:
public:
//: Color == Color operator (deep compare)
bool operator==(const CL_Color &c) const
{ return (color == c.color); }
//: Color != Color operator (deep compare)
bool operator!=(const CL_Color &c) const
{ return (color != c.color); }
//! Statics:
public:
//: <img src="../images/aliceblue-chip.png" width=16 height=16 /> rgb(240, 248, 255).
static CL_Color aliceblue;
//: <img src="../images/antiquewhite-chip.png" width=16 height=16 /> rgb(250, 235, 215).
static CL_Color antiquewhite;
//: <img src="../images/aqua-chip.png" width=16 height=16 /> rgb( 0, 255, 255).
static CL_Color aqua;
//: <img src="../images/aquamarine-chip.png" width=16 height=16 /> rgb(127, 255, 212).
static CL_Color aquamarine;
//: <img src="../images/azure-chip.png" width=16 height=16 /> rgb(240, 255, 255).
static CL_Color azure;
//: <img src="../images/beige-chip.png" width=16 height=16 /> rgb(245, 245, 220).
static CL_Color beige;
//: <img src="../images/bisque-chip.png" width=16 height=16 /> rgb(255, 228, 196).
static CL_Color bisque;
//: <img src="../images/black-chip.png" width=16 height=16 /> rgb( 0, 0, 0).
static CL_Color black;
//: <img src="../images/blanchedalmond-chip.png" width=16 height=16 /> rgb(255, 235, 205).
static CL_Color blanchedalmond;
//: <img src="../images/blue-chip.png" width=16 height=16 /> rgb( 0, 0, 255).
static CL_Color blue;
//: <img src="../images/blueviolet-chip.png" width=16 height=16 /> rgb(138, 43, 226).
static CL_Color blueviolet;
//: <img src="../images/brown-chip.png" width=16 height=16 /> rgb(165, 42, 42).
static CL_Color brown;
//: <img src="../images/burlywood-chip.png" width=16 height=16 /> rgb(222, 184, 135).
static CL_Color burlywood;
//: <img src="../images/cadetblue-chip.png" width=16 height=16 /> rgb( 95, 158, 160).
static CL_Color cadetblue;
//: <img src="../images/chartreuse-chip.png" width=16 height=16 /> rgb(127, 255, 0).
static CL_Color chartreuse;
//: <img src="../images/chocolate-chip.png" width=16 height=16 /> rgb(210, 105, 30).
static CL_Color chocolate;
//: <img src="../images/coral-chip.png" width=16 height=16 /> rgb(255, 127, 80).
static CL_Color coral;
//: <img src="../images/cornflowerblue-chip.png" width=16 height=16 /> rgb(100, 149, 237).
static CL_Color cornflowerblue;
//: <img src="../images/cornsilk-chip.png" width=16 height=16 /> rgb(255, 248, 220).
static CL_Color cornsilk;
//: <img src="../images/crimson-chip.png" width=16 height=16 /> rgb(220, 20, 60).
static CL_Color crimson;
//: <img src="../images/cyan-chip.png" width=16 height=16 /> rgb( 0, 255, 255).
static CL_Color cyan;
//: <img src="../images/darkblue-chip.png" width=16 height=16 /> rgb( 0, 0, 139).
static CL_Color darkblue;
//: <img src="../images/darkcyan-chip.png" width=16 height=16 /> rgb( 0, 139, 139).
static CL_Color darkcyan;
//: <img src="../images/darkgoldenrod-chip.png" width=16 height=16 /> rgb(184, 134, 11).
static CL_Color darkgoldenrod;
//: <img src="../images/darkgray-chip.png" width=16 height=16 /> rgb(169, 169, 169).
static CL_Color darkgray;
//: <img src="../images/darkgreen-chip.png" width=16 height=16 /> rgb( 0, 100, 0).
static CL_Color darkgreen;
//: <img src="../images/darkgrey-chip.png" width=16 height=16 /> rgb(169, 169, 169).
static CL_Color darkgrey;
//: <img src="../images/darkkhaki-chip.png" width=16 height=16 /> rgb(189, 183, 107).
static CL_Color darkkhaki;
//: <img src="../images/darkmagenta-chip.png" width=16 height=16 /> rgb(139, 0, 139).
static CL_Color darkmagenta;
//: <img src="../images/darkolivegreen-chip.png" width=16 height=16 /> rgb( 85, 107, 47).
static CL_Color darkolivegreen;
//: <img src="../images/darkorange-chip.png" width=16 height=16 /> rgb(255, 140, 0).
static CL_Color darkorange;
//: <img src="../images/darkorchid-chip.png" width=16 height=16 /> rgb(153, 50, 204).
static CL_Color darkorchid;
//: <img src="../images/darkred-chip.png" width=16 height=16 /> rgb(139, 0, 0).
static CL_Color darkred;
//: <img src="../images/darksalmon-chip.png" width=16 height=16 /> rgb(233, 150, 122).
static CL_Color darksalmon;
//: <img src="../images/darkseagreen-chip.png" width=16 height=16 /> rgb(143, 188, 143).
static CL_Color darkseagreen;
//: <img src="../images/darkslateblue-chip.png" width=16 height=16 /> rgb( 72, 61, 139).
static CL_Color darkslateblue;
//: <img src="../images/darkslategray-chip.png" width=16 height=16 /> rgb( 47, 79, 79).
static CL_Color darkslategray;
//: <img src="../images/darkslategrey-chip.png" width=16 height=16 /> rgb( 47, 79, 79).
static CL_Color darkslategrey;
//: <img src="../images/darkturquoise-chip.png" width=16 height=16 /> rgb( 0, 206, 209).
static CL_Color darkturquoise;
//: <img src="../images/darkviolet-chip.png" width=16 height=16 /> rgb(148, 0, 211).
static CL_Color darkviolet;
//: <img src="../images/deeppink-chip.png" width=16 height=16 /> rgb(255, 20, 147).
static CL_Color deeppink;
//: <img src="../images/deepskyblue-chip.png" width=16 height=16 /> rgb( 0, 191, 255).
static CL_Color deepskyblue;
//: <img src="../images/dimgray-chip.png" width=16 height=16 /> rgb(105, 105, 105).
static CL_Color dimgray;
//: <img src="../images/dimgrey-chip.png" width=16 height=16 /> rgb(105, 105, 105).
static CL_Color dimgrey;
//: <img src="../images/dodgerblue-chip.png" width=16 height=16 /> rgb( 30, 144, 255).
static CL_Color dodgerblue;
//: <img src="../images/firebrick-chip.png" width=16 height=16 /> rgb(178, 34, 34).
static CL_Color firebrick;
//: <img src="../images/floralwhite-chip.png" width=16 height=16 /> rgb(255, 250, 240).
static CL_Color floralwhite;
//: <img src="../images/forestgreen-chip.png" width=16 height=16 /> rgb( 34, 139, 34).
static CL_Color forestgreen;
//: <img src="../images/fuchsia-chip.png" width=16 height=16 /> rgb(255, 0, 255).
static CL_Color fuchsia;
//: <img src="../images/gainsboro-chip.png" width=16 height=16 /> rgb(220, 220, 220).
static CL_Color gainsboro;
//: <img src="../images/ghostwhite-chip.png" width=16 height=16 /> rgb(248, 248, 255).
static CL_Color ghostwhite;
//: <img src="../images/gold-chip.png" width=16 height=16 /> rgb(255, 215, 0).
static CL_Color gold;
//: <img src="../images/goldenrod-chip.png" width=16 height=16 /> rgb(218, 165, 32).
static CL_Color goldenrod;
//: <img src="../images/gray-chip.png" width=16 height=16 /> rgb(128, 128, 128).
static CL_Color gray;
//: <img src="../images/grey-chip.png" width=16 height=16 /> rgb(128, 128, 128).
static CL_Color grey;
//: <img src="../images/green-chip.png" width=16 height=16 /> rgb( 0, 128, 0).
static CL_Color green;
//: <img src="../images/greenyellow-chip.png" width=16 height=16 /> rgb(173, 255, 47).
static CL_Color greenyellow;
//: <img src="../images/honeydew-chip.png" width=16 height=16 /> rgb(240, 255, 240).
static CL_Color honeydew;
//: <img src="../images/hotpink-chip.png" width=16 height=16 /> rgb(255, 105, 180).
static CL_Color hotpink;
//: <img src="../images/indianred-chip.png" width=16 height=16 /> rgb(205, 92, 92).
static CL_Color indianred;
//: <img src="../images/indigo-chip.png" width=16 height=16 /> rgb( 75, 0, 130).
static CL_Color indigo;
//: <img src="../images/ivory-chip.png" width=16 height=16 /> rgb(255, 255, 240).
static CL_Color ivory;
//: <img src="../images/khaki-chip.png" width=16 height=16 /> rgb(240, 230, 140).
static CL_Color khaki;
//: <img src="../images/lavender-chip.png" width=16 height=16 /> rgb(230, 230, 250).
static CL_Color lavender;
//: <img src="../images/lavenderblush-chip.png" width=16 height=16 /> rgb(255, 240, 245).
static CL_Color lavenderblush;
//: <img src="../images/lawngreen-chip.png" width=16 height=16 /> rgb(124, 252, 0).
static CL_Color lawngreen;
//: <img src="../images/lemonchiffon-chip.png" width=16 height=16 /> rgb(255, 250, 205).
static CL_Color lemonchiffon;
//: <img src="../images/lightblue-chip.png" width=16 height=16 /> rgb(173, 216, 230).
static CL_Color lightblue;
//: <img src="../images/lightcoral-chip.png" width=16 height=16 /> rgb(240, 128, 128).
static CL_Color lightcoral;
//: <img src="../images/lightcyan-chip.png" width=16 height=16 /> rgb(224, 255, 255).
static CL_Color lightcyan;
//: <img src="../images/lightgoldenrodyellow-chip.png" width=16 height=16 /> rgb(250, 250, 210).
static CL_Color lightgoldenrodyellow;
//: <img src="../images/lightgray-chip.png" width=16 height=16 /> rgb(211, 211, 211).
static CL_Color lightgray;
//: <img src="../images/lightgreen-chip.png" width=16 height=16 /> rgb(144, 238, 144).
static CL_Color lightgreen;
//: <img src="../images/lightgrey-chip.png" width=16 height=16 /> rgb(211, 211, 211).
static CL_Color lightgrey;
//: <img src="../images/lightpink-chip.png" width=16 height=16 /> rgb(255, 182, 193).
static CL_Color lightpink;
//: <img src="../images/lightsalmon-chip.png" width=16 height=16 /> rgb(255, 160, 122).
static CL_Color lightsalmon;
//: <img src="../images/lightseagreen-chip.png" width=16 height=16 /> rgb( 32, 178, 170).
static CL_Color lightseagreen;
//: <img src="../images/lightskyblue-chip.png" width=16 height=16 /> rgb(135, 206, 250).
static CL_Color lightskyblue;
//: <img src="../images/lightslategray-chip.png" width=16 height=16 /> rgb(119, 136, 153).
static CL_Color lightslategray;
//: <img src="../images/lightslategrey-chip.png" width=16 height=16 /> rgb(119, 136, 153).
static CL_Color lightslategrey;
//: <img src="../images/lightsteelblue-chip.png" width=16 height=16 /> rgb(176, 196, 222).
static CL_Color lightsteelblue;
//: <img src="../images/lightyellow-chip.png" width=16 height=16 /> rgb(255, 255, 224).
static CL_Color lightyellow;
//: <img src="../images/lime-chip.png" width=16 height=16 /> rgb( 0, 255, 0).
static CL_Color lime;
//: <img src="../images/limegreen-chip.png" width=16 height=16 /> rgb( 50, 205, 50).
static CL_Color limegreen;
//: <img src="../images/linen-chip.png" width=16 height=16 /> rgb(250, 240, 230).
static CL_Color linen;
//: <img src="../images/magenta-chip.png" width=16 height=16 /> rgb(255, 0, 255).
static CL_Color magenta;
//: <img src="../images/maroon-chip.png" width=16 height=16 /> rgb(128, 0, 0).
static CL_Color maroon;
//: <img src="../images/mediumaquamarine-chip.png" width=16 height=16 /> rgb(102, 205, 170).
static CL_Color mediumaquamarine;
//: <img src="../images/mediumblue-chip.png" width=16 height=16 /> rgb( 0, 0, 205).
static CL_Color mediumblue;
//: <img src="../images/mediumorchid-chip.png" width=16 height=16 /> rgb(186, 85, 211).
static CL_Color mediumorchid;
//: <img src="../images/mediumpurple-chip.png" width=16 height=16 /> rgb(147, 112, 219).
static CL_Color mediumpurple;
//: <img src="../images/mediumseagreen-chip.png" width=16 height=16 /> rgb( 60, 179, 113).
static CL_Color mediumseagreen;
//: <img src="../images/mediumslateblue-chip.png" width=16 height=16 /> rgb(123, 104, 238).
static CL_Color mediumslateblue;
//: <img src="../images/mediumspringgreen-chip.png" width=16 height=16 /> rgb( 0, 250, 154).
static CL_Color mediumspringgreen;
//: <img src="../images/mediumturquoise-chip.png" width=16 height=16 /> rgb( 72, 209, 204).
static CL_Color mediumturquoise;
//: <img src="../images/mediumvioletred-chip.png" width=16 height=16 /> rgb(199, 21, 133).
static CL_Color mediumvioletred;
//: <img src="../images/midnightblue-chip.png" width=16 height=16 /> rgb( 25, 25, 112).
static CL_Color midnightblue;
//: <img src="../images/mintcream-chip.png" width=16 height=16 /> rgb(245, 255, 250).
static CL_Color mintcream;
//: <img src="../images/mistyrose-chip.png" width=16 height=16 /> rgb(255, 228, 225).
static CL_Color mistyrose;
//: <img src="../images/moccasin-chip.png" width=16 height=16 /> rgb(255, 228, 181).
static CL_Color moccasin;
//: <img src="../images/navajowhite-chip.png" width=16 height=16 /> rgb(255, 222, 173).
static CL_Color navajowhite;
//: <img src="../images/navy-chip.png" width=16 height=16 /> rgb( 0, 0, 128).
static CL_Color navy;
//: <img src="../images/oldlace-chip.png" width=16 height=16 /> rgb(253, 245, 230).
static CL_Color oldlace;
//: <img src="../images/olive-chip.png" width=16 height=16 /> rgb(128, 128, 0).
static CL_Color olive;
//: <img src="../images/olivedrab-chip.png" width=16 height=16 /> rgb(107, 142, 35).
static CL_Color olivedrab;
//: <img src="../images/orange-chip.png" width=16 height=16 /> rgb(255, 165, 0).
static CL_Color orange;
//: <img src="../images/orangered-chip.png" width=16 height=16 /> rgb(255, 69, 0).
static CL_Color orangered;
//: <img src="../images/orchid-chip.png" width=16 height=16 /> rgb(218, 112, 214).
static CL_Color orchid;
//: <img src="../images/palegoldenrod-chip.png" width=16 height=16 /> rgb(238, 232, 170).
static CL_Color palegoldenrod;
//: <img src="../images/palegreen-chip.png" width=16 height=16 /> rgb(152, 251, 152).
static CL_Color palegreen;
//: <img src="../images/paleturquoise-chip.png" width=16 height=16 /> rgb(175, 238, 238).
static CL_Color paleturquoise;
//: <img src="../images/palevioletred-chip.png" width=16 height=16 /> rgb(219, 112, 147).
static CL_Color palevioletred;
//: <img src="../images/papayawhip-chip.png" width=16 height=16 /> rgb(255, 239, 213).
static CL_Color papayawhip;
//: <img src="../images/peachpuff-chip.png" width=16 height=16 /> rgb(255, 218, 185).
static CL_Color peachpuff;
//: <img src="../images/peru-chip.png" width=16 height=16 /> rgb(205, 133, 63).
static CL_Color peru;
//: <img src="../images/pink-chip.png" width=16 height=16 /> rgb(255, 192, 203).
static CL_Color pink;
//: <img src="../images/plum-chip.png" width=16 height=16 /> rgb(221, 160, 221).
static CL_Color plum;
//: <img src="../images/powderblue-chip.png" width=16 height=16 /> rgb(176, 224, 230).
static CL_Color powderblue;
//: <img src="../images/purple-chip.png" width=16 height=16 /> rgb(128, 0, 128).
static CL_Color purple;
//: <img src="../images/red-chip.png" width=16 height=16 /> rgb(255, 0, 0).
static CL_Color red;
//: <img src="../images/rosybrown-chip.png" width=16 height=16 /> rgb(188, 143, 143).
static CL_Color rosybrown;
//: <img src="../images/royalblue-chip.png" width=16 height=16 /> rgb( 65, 105, 225).
static CL_Color royalblue;
//: <img src="../images/saddlebrown-chip.png" width=16 height=16 /> rgb(139, 69, 19).
static CL_Color saddlebrown;
//: <img src="../images/salmon-chip.png" width=16 height=16 /> rgb(250, 128, 114).
static CL_Color salmon;
//: <img src="../images/sandybrown-chip.png" width=16 height=16 /> rgb(244, 164, 96).
static CL_Color sandybrown;
//: <img src="../images/seagreen-chip.png" width=16 height=16 /> rgb( 46, 139, 87).
static CL_Color seagreen;
//: <img src="../images/seashell-chip.png" width=16 height=16 /> rgb(255, 245, 238).
static CL_Color seashell;
//: <img src="../images/sienna-chip.png" width=16 height=16 /> rgb(160, 82, 45).
static CL_Color sienna;
//: <img src="../images/silver-chip.png" width=16 height=16 /> rgb(192, 192, 192).
static CL_Color silver;
//: <img src="../images/skyblue-chip.png" width=16 height=16 /> rgb(135, 206, 235).
static CL_Color skyblue;
//: <img src="../images/slateblue-chip.png" width=16 height=16 /> rgb(106, 90, 205).
static CL_Color slateblue;
//: <img src="../images/slategray-chip.png" width=16 height=16 /> rgb(112, 128, 144).
static CL_Color slategray;
//: <img src="../images/slategrey-chip.png" width=16 height=16 /> rgb(112, 128, 144).
static CL_Color slategrey;
//: <img src="../images/snow-chip.png" width=16 height=16 /> rgb(255, 250, 250).
static CL_Color snow;
//: <img src="../images/springgreen-chip.png" width=16 height=16 /> rgb( 0, 255, 127).
static CL_Color springgreen;
//: <img src="../images/steelblue-chip.png" width=16 height=16 /> rgb( 70, 130, 180).
static CL_Color steelblue;
//: <img src="../images/tan-chip.png" width=16 height=16 /> rgb(210, 180, 140).
static CL_Color tan;
//: <img src="../images/teal-chip.png" width=16 height=16 /> rgb( 0, 128, 128).
static CL_Color teal;
//: <img src="../images/thistle-chip.png" width=16 height=16 /> rgb(216, 191, 216).
static CL_Color thistle;
//: <img src="../images/tomato-chip.png" width=16 height=16 /> rgb(255, 99, 71).
static CL_Color tomato;
//: <img src="../images/turquoise-chip.png" width=16 height=16 /> rgb( 64, 224, 208).
static CL_Color turquoise;
//: <img src="../images/violet-chip.png" width=16 height=16 /> rgb(238, 130, 238).
static CL_Color violet;
//: <img src="../images/wheat-chip.png" width=16 height=16 /> rgb(245, 222, 179).
static CL_Color wheat;
//: <img src="../images/white-chip.png" width=16 height=16 /> rgb(255, 255, 255).
static CL_Color white;
//: <img src="../images/whitesmoke-chip.png" width=16 height=16 /> rgb(245, 245, 245).
static CL_Color whitesmoke;
//: <img src="../images/yellow-chip.png" width=16 height=16 /> rgb(255, 255, 0).
static CL_Color yellow;
//: <img src="../images/yellowgreen-chip.png" width=16 height=16 /> rgb(154, 205, 50).
static CL_Color yellowgreen;
//: Find and returns the static color matching a string.
//param name: Name of color to match, eg. "blue".
//return: Reference to matching static color, or rgba(0,0,0,0) if there was no match.
static CL_Color &find_color(const std::string &name);
//: Returns the names of static colors defined.
static std::vector<std::string> &get_names();
//! Operations:
public:
//: Set alpha color component, in the range 0-255.
void set_alpha(unsigned int value) { color = (color & 0x00ffffff) | (value << 24); }
//: Set red color component, in the range 0-255.
void set_red(unsigned int value) { color = (color & 0xff00ffff) | (value << 16); }
//: Set green color component, in the range 0-255.
void set_green(unsigned int value) { color = (color & 0xffff00ff) | (value << 8); }
//: Set blue color component, in the range 0-255.
void set_blue(unsigned int value) { color = (color & 0xffffff00) | value; }
//: Set color based on rgba color components in the range 0-255.
void set_color(unsigned int red, unsigned int green, unsigned int blue, unsigned int alpha = 255)
{ color = (alpha<<24) | (red<<16) | (green<<8) | blue; }
//: Converts the color to a given pixel format.
unsigned int to_pixelformat(const CL_PixelFormat &pf) const;
//: Converts a raw pixel in a given pixel format to a color.
static CL_Color from_pixelformat(unsigned int raw_color, const CL_PixelFormat &pf);
};
//: float pointing based Color description class.
//- !group=Display/Display 2D!
//- !header=display.h!
class CL_Colorf
{
//! Attributes:
public:
float red;
float green;
float blue;
float alpha;
//! Operations:
public:
//: Constructs a black and fully transparent color.
CL_Colorf()
: red(0.0f),
green(0.0f),
blue(0.0f),
alpha(0.0f)
{}
//: Construct a CL_Colorf out of a given byte based CL_Color
CL_Colorf(const CL_Color& color)
: red(color.get_red()/255.0f),
green(color.get_green()/255.0f),
blue(color.get_blue()/255.0f),
alpha(color.get_alpha()/255.0f)
{}
//: Constructs a color.
//- <p>Color components are specified in the range 0.0f to 1.0f.</p>
//- <p>An alpha value of 0.0f means complete transparency, while 1.0f means completely opaque (solid).</p>
//param red: Red color component.
//param green: Green color component.
//param blue: Blue color component.
//param alpha: Alpha (transparency) color component.
CL_Colorf(float r, float g, float b, float a = 1.0f)
: red(r), green(g), blue(b), alpha(a)
{}
//: Normalize the color by ensuring that all color values lie inbetween (0.0, 1.0)
void normalize()
{
red = (red < 0.0f) ? 0.0f : ((red > 1.0f) ? 1.0f : red);
green = (green < 0.0f) ? 0.0f : ((green > 1.0f) ? 1.0f : green);
blue = (blue < 0.0f) ? 0.0f : ((blue > 1.0f) ? 1.0f : blue);
alpha = (alpha < 0.0f) ? 0.0f : ((alpha > 1.0f) ? 1.0f : alpha);
}
// Operations:
public:
//: Color == Color operator (deep compare)
bool operator==(const CL_Colorf &c) const
{ return (red == c.red) && (green == c.green) && (blue == c.blue) && (alpha == c.alpha); }
//: Color != Color operator (deep compare)
bool operator!=(const CL_Colorf &c) const
{ return (red != c.red) || (green != c.green) || (blue != c.blue) || (alpha != c.alpha); }
};
#endif
|