KiCad PCB EDA Suite
color4d.cpp File Reference
#include <map>
#include <nlohmann/json.hpp>
#include <gal/color4d.h>
#include <i18n_utility.h>
#include <wx/crt.h>
#include <math/util.h>

Go to the source code of this file.

Namespaces

namespace  KIGFX
 The Cairo implementation of the graphics abstraction layer.
 

Macros

#define TS(string)   wxString( _HKI( string ) ).ToStdString()
 

Functions

const StructColorscolorRefs ()
 Global list of legacy color names, still used all over the place for constructing COLOR4D's. More...
 
const bool KIGFX::operator== (const COLOR4D &lhs, const COLOR4D &rhs)
 Equality operator, are two colors equal. More...
 
const bool KIGFX::operator!= (const COLOR4D &lhs, const COLOR4D &rhs)
 Not equality operator, are two colors not equal. More...
 
const bool KIGFX::operator< (const COLOR4D &lhs, const COLOR4D &rhs)
 
std::ostream & KIGFX::operator<< (std::ostream &aStream, COLOR4D const &aColor)
 Syntactic sugar for outputting colors to strings. More...
 
void KIGFX::to_json (nlohmann::json &aJson, const COLOR4D &aColor)
 
void KIGFX::from_json (const nlohmann::json &aJson, COLOR4D &aColor)
 

Macro Definition Documentation

◆ TS

#define TS (   string)    wxString( _HKI( string ) ).ToStdString()

Definition at line 35 of file color4d.cpp.

Function Documentation

◆ colorRefs()

const StructColors * colorRefs ( )

Global list of legacy color names, still used all over the place for constructing COLOR4D's.

Definition at line 39 of file color4d.cpp.

40{
41 static StructColors s_ColorRefs[NBCOLORS] =
42 {
43 { 0, 0, 0, BLACK, TS( "Black" ), DARKDARKGRAY },
44 { 72, 72, 72, DARKDARKGRAY, TS( "Gray 1" ), DARKGRAY },
45 { 132, 132, 132, DARKGRAY, TS( "Gray 2" ), LIGHTGRAY },
46 { 194, 194, 194, LIGHTGRAY, TS( "Gray 3" ), WHITE },
47 { 255, 255, 255, WHITE, TS( "White" ), WHITE },
48 { 194, 255, 255, LIGHTYELLOW, TS( "L.Yellow" ), WHITE },
49 { 191, 229, 255, LIGHTERORANGE, TS( "L.Orange" ), WHITE },
50 { 72, 0, 0, DARKBLUE, TS( "Blue 1" ), BLUE },
51 { 0, 72, 0, DARKGREEN, TS( "Green 1" ), GREEN },
52 { 72, 72, 0, DARKCYAN, TS( "Cyan 1" ), CYAN },
53 { 0, 0, 72, DARKRED, TS( "Red 1" ), RED },
54 { 72, 0, 72, DARKMAGENTA, TS( "Magenta 1" ), MAGENTA },
55 { 0, 72, 72, DARKBROWN, TS( "Brown 1" ), BROWN },
56 { 0, 77, 128, DARKORANGE, TS( "Orange 1" ), ORANGE },
57 { 132, 0, 0, BLUE, TS( "Blue 2" ), LIGHTBLUE },
58 { 0, 132, 0, GREEN, TS( "Green 2" ), LIGHTGREEN },
59 { 132, 132, 0, CYAN, TS( "Cyan 2" ), LIGHTCYAN },
60 { 0, 0, 132, RED, TS( "Red 2" ), LIGHTRED },
61 { 132, 0, 132, MAGENTA, TS( "Magenta 2" ), LIGHTMAGENTA },
62 { 0, 132, 132, BROWN, TS( "Brown 2" ), YELLOW },
63 { 0, 102, 204, ORANGE, TS( "Orange 2" ), LIGHTORANGE },
64 { 194, 0, 0, LIGHTBLUE, TS( "Blue 3" ), PUREBLUE, },
65 { 0, 194, 0, LIGHTGREEN, TS( "Green 3" ), PUREGREEN },
66 { 194, 194, 0, LIGHTCYAN, TS( "Cyan 3" ), PURECYAN },
67 { 0, 0, 194, LIGHTRED, TS( "Red 3" ), PURERED },
68 { 194, 0, 194, LIGHTMAGENTA, TS( "Magenta 3" ), PUREMAGENTA },
69 { 0, 194, 194, YELLOW, TS( "Yellow 3" ), PUREYELLOW },
70 { 0, 133, 221, LIGHTORANGE, TS( "Orange 3" ), PUREORANGE },
71 { 255, 0, 0, PUREBLUE, TS( "Blue 4" ), WHITE },
72 { 0, 255, 0, PUREGREEN, TS( "Green 4" ), WHITE },
73 { 255, 255, 0, PURECYAN, TS( "Cyan 4" ), WHITE },
74 { 0, 0, 255, PURERED, TS( "Red 4" ), WHITE },
75 { 255, 0, 255, PUREMAGENTA, TS( "Magenta 4" ), WHITE },
76 { 0, 255, 255, PUREYELLOW, TS( "Yellow 4" ), WHITE },
77 { 0, 153, 255, PUREORANGE, TS( "Orange 4" ), WHITE },
78 };
79 return s_ColorRefs;
80}
#define TS(string)
Definition: color4d.cpp:35
@ LIGHTGREEN
Definition: color4d.h:61
@ PUREORANGE
Definition: color4d.h:76
@ BROWN
Definition: color4d.h:59
@ PURECYAN
Definition: color4d.h:68
@ LIGHTBLUE
Definition: color4d.h:60
@ WHITE
Definition: color4d.h:46
@ LIGHTERORANGE
Definition: color4d.h:72
@ LIGHTORANGE
Definition: color4d.h:75
@ BLUE
Definition: color4d.h:54
@ LIGHTGRAY
Definition: color4d.h:45
@ DARKGRAY
Definition: color4d.h:44
@ MAGENTA
Definition: color4d.h:58
@ DARKORANGE
Definition: color4d.h:73
@ DARKMAGENTA
Definition: color4d.h:52
@ LIGHTYELLOW
Definition: color4d.h:47
@ DARKCYAN
Definition: color4d.h:50
@ NBCOLORS
Number of colors.
Definition: color4d.h:77
@ PURERED
Definition: color4d.h:69
@ GREEN
Definition: color4d.h:55
@ CYAN
Definition: color4d.h:56
@ DARKRED
Definition: color4d.h:51
@ DARKBLUE
Definition: color4d.h:48
@ LIGHTCYAN
Definition: color4d.h:62
@ DARKDARKGRAY
Definition: color4d.h:43
@ ORANGE
Definition: color4d.h:74
@ PUREGREEN
Definition: color4d.h:67
@ LIGHTMAGENTA
Definition: color4d.h:64
@ PUREYELLOW
Definition: color4d.h:71
@ YELLOW
Definition: color4d.h:65
@ PUREBLUE
Definition: color4d.h:66
@ LIGHTRED
Definition: color4d.h:63
@ BLACK
Definition: color4d.h:42
@ DARKGREEN
Definition: color4d.h:49
@ PUREMAGENTA
Definition: color4d.h:70
@ RED
Definition: color4d.h:57
@ DARKBROWN
Definition: color4d.h:53

References BLACK, BLUE, BROWN, CYAN, DARKBLUE, DARKBROWN, DARKCYAN, DARKDARKGRAY, DARKGRAY, DARKGREEN, DARKMAGENTA, DARKORANGE, DARKRED, GREEN, LIGHTBLUE, LIGHTCYAN, LIGHTERORANGE, LIGHTGRAY, LIGHTGREEN, LIGHTMAGENTA, LIGHTORANGE, LIGHTRED, LIGHTYELLOW, MAGENTA, NBCOLORS, ORANGE, PUREBLUE, PURECYAN, PUREGREEN, PUREMAGENTA, PUREORANGE, PURERED, PUREYELLOW, RED, TS, WHITE, and YELLOW.

Referenced by KIGFX::COLOR4D::COLOR4D(), KIGFX::COLOR4D::FindNearestLegacyColor(), and DIALOG_COLOR_PICKER::initDefinedColors().