KiCad PCB EDA Suite
Loading...
Searching...
No Matches
color_settings.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2020 Jon Evans <[email protected]>
5 * Copyright (C) 2021-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <layer_ids.h>
24#include <settings/parameters.h>
26#include <wx/log.h>
27#include <wx/translation.h>
28
30
31
33const int colorsSchemaVersion = 5;
34const wxString COLOR_SETTINGS::COLOR_BUILTIN_DEFAULT = "_builtin_default";
35const wxString COLOR_SETTINGS::COLOR_BUILTIN_CLASSIC = "_builtin_classic";
36
37
38COLOR_SETTINGS::COLOR_SETTINGS( const wxString& aFilename, bool aAbsolutePath ) :
40 m_overrideSchItemColors( false )
41{
42 if( aAbsolutePath )
43 SetLocation( SETTINGS_LOC::NONE );
44
45 m_params.emplace_back( new PARAM<wxString>( "meta.name", &m_displayName,
46 wxS( "KiCad Default" ) ) );
47
48 m_params.emplace_back( new PARAM<bool>( "schematic.override_item_colors",
49 &m_overrideSchItemColors, false ) );
50
51#define CLR( x, y ) \
52 wxASSERT( s_defaultTheme.count( y ) ); \
53 m_params.emplace_back( new COLOR_MAP_PARAM( x, y, s_defaultTheme.at( y ), &m_colors ) );
54
55 CLR( "schematic.anchor", LAYER_SCHEMATIC_ANCHOR );
56 CLR( "schematic.aux_items", LAYER_SCHEMATIC_AUX_ITEMS );
57 CLR( "schematic.background", LAYER_SCHEMATIC_BACKGROUND );
58 CLR( "schematic.hovered", LAYER_HOVERED );
59 CLR( "schematic.brightened", LAYER_BRIGHTENED );
60 CLR( "schematic.bus", LAYER_BUS );
61 CLR( "schematic.bus_junction", LAYER_BUS_JUNCTION );
62 CLR( "schematic.component_body", LAYER_DEVICE_BACKGROUND );
63 CLR( "schematic.component_outline", LAYER_DEVICE );
64 CLR( "schematic.cursor", LAYER_SCHEMATIC_CURSOR );
65 CLR( "schematic.dnp_marker", LAYER_DNP_MARKER );
66 CLR( "schematic.erc_error", LAYER_ERC_ERR );
67 CLR( "schematic.erc_warning", LAYER_ERC_WARN );
68 CLR( "schematic.erc_exclusion", LAYER_ERC_EXCLUSION );
69 CLR( "schematic.fields", LAYER_FIELDS );
70 CLR( "schematic.grid", LAYER_SCHEMATIC_GRID );
71 CLR( "schematic.grid_axes", LAYER_SCHEMATIC_GRID_AXES );
72 CLR( "schematic.hidden", LAYER_HIDDEN );
73 CLR( "schematic.junction", LAYER_JUNCTION );
74 CLR( "schematic.label_global", LAYER_GLOBLABEL );
75 CLR( "schematic.label_hier", LAYER_HIERLABEL );
76 CLR( "schematic.label_local", LAYER_LOCLABEL );
77 CLR( "schematic.netclass_flag", LAYER_NETCLASS_REFS );
78 CLR( "schematic.no_connect", LAYER_NOCONNECT );
79 CLR( "schematic.note", LAYER_NOTES );
80 CLR( "schematic.private_note", LAYER_PRIVATE_NOTES );
81 CLR( "schematic.note_background", LAYER_NOTES_BACKGROUND );
82 CLR( "schematic.pin", LAYER_PIN );
83 CLR( "schematic.pin_name", LAYER_PINNAM );
84 CLR( "schematic.pin_number", LAYER_PINNUM );
85 CLR( "schematic.reference", LAYER_REFERENCEPART );
86 CLR( "schematic.shadow", LAYER_SELECTION_SHADOWS );
87 CLR( "schematic.sheet", LAYER_SHEET );
88 CLR( "schematic.sheet_background", LAYER_SHEET_BACKGROUND );
89 CLR( "schematic.sheet_filename", LAYER_SHEETFILENAME );
90 CLR( "schematic.sheet_fields", LAYER_SHEETFIELDS );
91 CLR( "schematic.sheet_label", LAYER_SHEETLABEL );
92 CLR( "schematic.sheet_name", LAYER_SHEETNAME );
93 CLR( "schematic.value", LAYER_VALUEPART );
94 CLR( "schematic.wire", LAYER_WIRE );
95 CLR( "schematic.worksheet", LAYER_SCHEMATIC_DRAWINGSHEET );
96 CLR( "schematic.page_limits", LAYER_SCHEMATIC_PAGE_LIMITS );
97 CLR( "schematic.op_voltages", LAYER_OP_VOLTAGES );
98 CLR( "schematic.op_currents", LAYER_OP_CURRENTS );
99
100 CLR( "gerbview.axes", LAYER_GERBVIEW_AXES );
101 CLR( "gerbview.background", LAYER_GERBVIEW_BACKGROUND );
102 CLR( "gerbview.dcodes", LAYER_DCODES );
103 CLR( "gerbview.grid", LAYER_GERBVIEW_GRID );
104 CLR( "gerbview.negative_objects", LAYER_NEGATIVE_OBJECTS );
105 CLR( "gerbview.worksheet", LAYER_GERBVIEW_DRAWINGSHEET );
106 CLR( "gerbview.page_limits", LAYER_GERBVIEW_PAGE_LIMITS );
107
108 for( int i = 0, id = GERBVIEW_LAYER_ID_START;
110 {
111 m_params.emplace_back( new COLOR_MAP_PARAM( "gerbview.layers." + std::to_string( i ), id,
112 s_defaultTheme.at( id ), &m_colors ) );
113 }
114
115 CLR( "board.anchor", LAYER_ANCHOR );
116 CLR( "board.locked_shadow", LAYER_LOCKED_ITEM_SHADOW );
117 CLR( "board.conflicts_shadow", LAYER_CONFLICTS_SHADOW );
118 CLR( "board.aux_items", LAYER_AUX_ITEMS );
119 CLR( "board.background", LAYER_PCB_BACKGROUND );
120 CLR( "board.cursor", LAYER_CURSOR );
121 CLR( "board.drc_error", LAYER_DRC_ERROR );
122 CLR( "board.drc_warning", LAYER_DRC_WARNING );
123 CLR( "board.drc_exclusion", LAYER_DRC_EXCLUSION );
124 CLR( "board.footprint_text_invisible", LAYER_HIDDEN_TEXT );
125 CLR( "board.grid", LAYER_GRID );
126 CLR( "board.grid_axes", LAYER_GRID_AXES );
127 CLR( "board.pad_plated_hole", LAYER_PAD_PLATEDHOLES );
128 CLR( "board.pad_through_hole", LAYER_PADS_TH );
129 CLR( "board.plated_hole", LAYER_NON_PLATEDHOLES );
130 CLR( "board.ratsnest", LAYER_RATSNEST );
131 CLR( "board.via_blind_buried", LAYER_VIA_BBLIND );
132 CLR( "board.via_hole", LAYER_VIA_HOLES );
133 CLR( "board.via_micro", LAYER_VIA_MICROVIA );
134 CLR( "board.via_through", LAYER_VIA_THROUGH );
135 CLR( "board.worksheet", LAYER_DRAWINGSHEET );
136 CLR( "board.page_limits", LAYER_PAGE_LIMITS );
137
138 CLR( "board.copper.f", F_Cu );
139 CLR( "board.copper.in1", In1_Cu );
140 CLR( "board.copper.in2", In2_Cu );
141 CLR( "board.copper.in3", In3_Cu );
142 CLR( "board.copper.in4", In4_Cu );
143 CLR( "board.copper.in5", In5_Cu );
144 CLR( "board.copper.in6", In6_Cu );
145 CLR( "board.copper.in7", In7_Cu );
146 CLR( "board.copper.in8", In8_Cu );
147 CLR( "board.copper.in9", In9_Cu );
148 CLR( "board.copper.in10", In10_Cu );
149 CLR( "board.copper.in11", In11_Cu );
150 CLR( "board.copper.in12", In12_Cu );
151 CLR( "board.copper.in13", In13_Cu );
152 CLR( "board.copper.in14", In14_Cu );
153 CLR( "board.copper.in15", In15_Cu );
154 CLR( "board.copper.in16", In16_Cu );
155 CLR( "board.copper.in17", In17_Cu );
156 CLR( "board.copper.in18", In18_Cu );
157 CLR( "board.copper.in19", In19_Cu );
158 CLR( "board.copper.in20", In20_Cu );
159 CLR( "board.copper.in21", In21_Cu );
160 CLR( "board.copper.in22", In22_Cu );
161 CLR( "board.copper.in23", In23_Cu );
162 CLR( "board.copper.in24", In24_Cu );
163 CLR( "board.copper.in25", In25_Cu );
164 CLR( "board.copper.in26", In26_Cu );
165 CLR( "board.copper.in27", In27_Cu );
166 CLR( "board.copper.in28", In28_Cu );
167 CLR( "board.copper.in29", In29_Cu );
168 CLR( "board.copper.in30", In30_Cu );
169 CLR( "board.copper.b", B_Cu );
170
171 CLR( "board.b_adhes", B_Adhes );
172 CLR( "board.f_adhes", F_Adhes );
173 CLR( "board.b_paste", B_Paste );
174 CLR( "board.f_paste", F_Paste );
175 CLR( "board.b_silks", B_SilkS );
176 CLR( "board.f_silks", F_SilkS );
177 CLR( "board.b_mask", B_Mask );
178 CLR( "board.f_mask", F_Mask );
179 CLR( "board.dwgs_user", Dwgs_User );
180 CLR( "board.cmts_user", Cmts_User );
181 CLR( "board.eco1_user", Eco1_User );
182 CLR( "board.eco2_user", Eco2_User );
183 CLR( "board.edge_cuts", Edge_Cuts );
184 CLR( "board.margin", Margin );
185 CLR( "board.b_crtyd", B_CrtYd );
186 CLR( "board.f_crtyd", F_CrtYd );
187 CLR( "board.b_fab", B_Fab );
188 CLR( "board.f_fab", F_Fab );
189 CLR( "board.user_1", User_1 );
190 CLR( "board.user_2", User_2 );
191 CLR( "board.user_3", User_3 );
192 CLR( "board.user_4", User_4 );
193 CLR( "board.user_5", User_5 );
194 CLR( "board.user_6", User_6 );
195 CLR( "board.user_7", User_7 );
196 CLR( "board.user_8", User_8 );
197 CLR( "board.user_9", User_9 );
198
199 // Colors for 3D viewer, which are used as defaults unless overridden by the board
200 CLR( "3d_viewer.background_bottom", LAYER_3D_BACKGROUND_BOTTOM );
201 CLR( "3d_viewer.background_top", LAYER_3D_BACKGROUND_TOP );
202 CLR( "3d_viewer.board", LAYER_3D_BOARD );
203 CLR( "3d_viewer.copper", LAYER_3D_COPPER_TOP );
204 CLR( "3d_viewer.silkscreen_bottom", LAYER_3D_SILKSCREEN_BOTTOM );
205 CLR( "3d_viewer.silkscreen_top", LAYER_3D_SILKSCREEN_TOP );
206 CLR( "3d_viewer.soldermask_bottom", LAYER_3D_SOLDERMASK_BOTTOM );
207 CLR( "3d_viewer.soldermask_top", LAYER_3D_SOLDERMASK_TOP );
208 CLR( "3d_viewer.solderpaste", LAYER_3D_SOLDERPASTE );
209
210 registerMigration( 0, 1, std::bind( &COLOR_SETTINGS::migrateSchema0to1, this ) );
211
212 registerMigration( 1, 2,
213 [&]()
214 {
215 // Fix LAYER_VIA_HOLES color - before version 2, this setting had no effect
216 nlohmann::json::json_pointer ptr( "/board/via_hole" );
217
218 ( *m_internals )[ptr] = COLOR4D( 0.5, 0.4, 0, 0.8 ).ToCSSString();
219
220 return true;
221 } );
222
223 registerMigration( 2, 3,
224 [&]()
225 {
226 // We don't support opacity in some 3D colors but some versions of 5.99 let
227 // you set it.
228
229 for( std::string path : { "3d_viewer.background_top",
230 "3d_viewer.background_bottom",
231 "3d_viewer.copper",
232 "3d_viewer.silkscreen_top",
233 "3d_viewer.silkscreen_bottom",
234 "3d_viewer.solderpaste" } )
235 {
236 if( std::optional<COLOR4D> optval = Get<COLOR4D>( path ) )
237 Set( path, optval->WithAlpha( 1.0 ) );
238 }
239
240 return true;
241 } );
242
243 registerMigration( 3, 4,
244 [&]()
245 {
246 if( std::optional<COLOR4D> optval = Get<COLOR4D>( "board.grid" ) )
247 Set( "board.page_limits", *optval );
248
249 if( std::optional<COLOR4D> optval = Get<COLOR4D>( "schematic.grid" ) )
250 Set( "schematic.page_limits", *optval );
251
252 return true;
253 } );
254
255 // this bump shouldn't have happened; add a no-op migration to avoid future issues
256 registerMigration( 4, 5, []() { return true; } );
257}
258
259
262{
263 initFromOther( aOther );
264}
265
266
268{
269 m_filename = aOther.m_filename;
270
271 initFromOther( aOther );
272
273 return *this;
274}
275
276
278{
281 m_colors = aOther.m_colors;
283 m_writeFile = aOther.m_writeFile;
284
285 // Ensure default colors are present
286 for( PARAM_BASE* param : aOther.m_params )
287 {
288 if( COLOR_MAP_PARAM* cmp = dynamic_cast<COLOR_MAP_PARAM*>( param ) )
289 m_defaultColors[cmp->GetKey()] = cmp->GetDefault();
290 }
291}
292
293
294bool COLOR_SETTINGS::MigrateFromLegacy( wxConfigBase* aCfg )
295{
296 return false;
297}
298
299
301{
309 if( !m_manager )
310 {
311 wxLogTrace( traceSettings, wxT( "Error: COLOR_SETTINGS migration cannot run unmanaged!" ) );
312 return false;
313 }
314
315 if( !Contains( "fpedit" ) )
316 {
317 wxLogTrace( traceSettings,
318 wxT( "migrateSchema0to1: %s doesn't have fpedit settings; skipping." ),
319 m_filename );
320 return true;
321 }
322
323 wxString filename = GetFilename().BeforeLast( '.' ) + wxT( "_footprints" );
324
325 COLOR_SETTINGS* fpsettings = m_manager->AddNewColorSettings( filename );
326 fpsettings->SetLocation( GetLocation() );
327
328 // Start out with a clone
329 fpsettings->m_internals->CloneFrom( *m_internals );
330
331 // Footprint editor now just looks at the "board" namespace
332 fpsettings->Set( "board", fpsettings->At( "fpedit" ) );
333
334 fpsettings->Internals()->erase( "fpedit" );
335 fpsettings->Load();
336 fpsettings->SetName( fpsettings->GetName() + wxS( " " ) + _( "(Footprints)" ) );
337 m_manager->Save( fpsettings );
338
339 // Now we can get rid of our own copy
340 m_internals->erase( "fpedit" );
341
342 return true;
343}
344
345
347{
348 if( m_colors.count( aLayer ) )
349 return m_colors.at( aLayer );
350
351 return COLOR4D::UNSPECIFIED;
352}
353
354
356{
357 if( !m_defaultColors.count( aLayer ) )
358 {
359 COLOR_MAP_PARAM* p = nullptr;
360
361 for( PARAM_BASE* param : m_params )
362 {
363 COLOR_MAP_PARAM* cmp = dynamic_cast<COLOR_MAP_PARAM*>( param );
364
365 if( cmp && cmp->GetKey() == aLayer )
366 p = cmp;
367 }
368
369 if( p )
370 m_defaultColors[aLayer] = p->GetDefault();
371 else
372 m_defaultColors[aLayer] = COLOR4D::UNSPECIFIED;
373 }
374
375 return m_defaultColors.at( aLayer );
376}
377
378
379void COLOR_SETTINGS::SetColor( int aLayer, const COLOR4D& aColor )
380{
381 m_colors[ aLayer ] = aColor;
382}
383
384
385std::vector<COLOR_SETTINGS*> COLOR_SETTINGS::CreateBuiltinColorSettings()
386{
388 defaultTheme->SetName( _( "KiCad Default" ) );
389 defaultTheme->m_writeFile = false;
390 defaultTheme->Load(); // We can just get the colors out of the param defaults for this one
391
393 classicTheme->SetName( _( "KiCad Classic" ) );
394 classicTheme->m_writeFile = false;
395
396 for( PARAM_BASE* param : classicTheme->m_params )
397 delete param;
398
399 classicTheme->m_params.clear(); // Disable load/store
400
401 for( const std::pair<int, COLOR4D> entry : s_classicTheme )
402 classicTheme->m_colors[entry.first] = entry.second;
403
404 std::vector<COLOR_SETTINGS*> ret;
405
406 ret.push_back( defaultTheme );
407 ret.push_back( classicTheme );
408
409 return ret;
410}
static const std::map< int, COLOR4D > s_defaultTheme
static const std::map< int, COLOR4D > s_classicTheme
COLOR4D GetDefault() const
int GetKey() const
Color settings are a bit different than most of the settings objects in that there can be more than o...
void SetName(const wxString &aName)
std::unordered_map< int, COLOR4D > m_defaultColors
void initFromOther(const COLOR_SETTINGS &aOther)
void SetColor(int aLayer, const COLOR4D &aColor)
static std::vector< COLOR_SETTINGS * > CreateBuiltinColorSettings()
Constructs and returns a list of color settings objects based on the built-in color themes.
bool MigrateFromLegacy(wxConfigBase *aCfg) override
Migrates from wxConfig to JSON-based configuration.
static const wxString COLOR_BUILTIN_CLASSIC
static const wxString COLOR_BUILTIN_DEFAULT
COLOR4D GetColor(int aLayer) const
COLOR4D GetDefaultColor(int aLayer)
wxString m_displayName
COLOR_SETTINGS & operator=(const COLOR_SETTINGS &aOther)
std::unordered_map< int, COLOR4D > m_colors
Map of all layer colors.
bool m_overrideSchItemColors
COLOR_SETTINGS(const wxString &aFilename=wxT("user"), bool aAbsolutePath=false)
const wxString & GetName() const
wxString m_filename
The filename (not including path) of this settings file (inicode)
SETTINGS_MANAGER * m_manager
A pointer to the settings manager managing this file (may be null)
bool Contains(const std::string &aPath) const
SETTINGS_LOC GetLocation() const
Definition: json_settings.h:80
void SetLocation(SETTINGS_LOC aLocation)
Definition: json_settings.h:79
bool m_writeFile
Whether or not the backing store file should be written.
virtual void Load()
Updates the parameters of this object based on the current JSON document contents.
std::vector< PARAM_BASE * > m_params
The list of parameters (owned by this object)
void registerMigration(int aOldSchemaVersion, int aNewSchemaVersion, std::function< bool(void)> aMigrator)
Registers a migration from one schema version to another.
nlohmann::json & At(const std::string &aPath)
Wrappers for the underlying JSON API so that most consumers don't need json.hpp All of these function...
JSON_SETTINGS_INTERNALS * Internals()
void Set(const std::string &aPath, ValueType aVal)
Stores a value into the JSON document Will throw an exception if ValueType isn't something that the l...
std::unique_ptr< JSON_SETTINGS_INTERNALS > m_internals
wxString GetFilename() const
Definition: json_settings.h:73
A color representation with 4 components: red, green, blue, alpha.
Definition: color4d.h:104
wxString ToCSSString() const
Definition: color4d.cpp:147
COLOR_SETTINGS * AddNewColorSettings(const wxString &aFilename)
Registers a new color settings object with the given filename.
#define CLR(x, y)
const int colorsSchemaVersion
! Update the schema version whenever a migration is required
#define _(s)
const wxChar *const traceSettings
Flag to enable debug output of settings operations and management.
SETTINGS_LOC
Definition: json_settings.h:47
@ COLORS
The color scheme directory (e.g. ~/.config/kicad/colors/)
@ LAYER_GERBVIEW_DRAWINGSHEET
Definition: layer_ids.h:431
@ GERBVIEW_LAYER_ID_START
Definition: layer_ids.h:421
@ LAYER_GERBVIEW_BACKGROUND
Definition: layer_ids.h:430
@ LAYER_DCODES
Definition: layer_ids.h:426
@ LAYER_NEGATIVE_OBJECTS
Definition: layer_ids.h:427
@ LAYER_GERBVIEW_PAGE_LIMITS
Definition: layer_ids.h:432
@ LAYER_GERBVIEW_AXES
Definition: layer_ids.h:429
@ LAYER_GERBVIEW_GRID
Definition: layer_ids.h:428
@ LAYER_3D_SOLDERMASK_TOP
Definition: layer_ids.h:457
@ LAYER_3D_BACKGROUND_TOP
Definition: layer_ids.h:450
@ LAYER_3D_SOLDERMASK_BOTTOM
Definition: layer_ids.h:456
@ LAYER_3D_BOARD
Definition: layer_ids.h:451
@ LAYER_3D_SILKSCREEN_TOP
Definition: layer_ids.h:455
@ LAYER_3D_COPPER_TOP
Definition: layer_ids.h:452
@ LAYER_3D_SOLDERPASTE
Definition: layer_ids.h:458
@ LAYER_3D_BACKGROUND_BOTTOM
Definition: layer_ids.h:449
@ LAYER_3D_SILKSCREEN_BOTTOM
Definition: layer_ids.h:454
@ LAYER_GRID
Definition: layer_ids.h:208
@ LAYER_PAGE_LIMITS
color for drawing the page extents (visibility stored in PCBNEW_SETTINGS::m_ShowPageLimits)
Definition: layer_ids.h:252
@ LAYER_LOCKED_ITEM_SHADOW
shadow layer for locked items
Definition: layer_ids.h:242
@ LAYER_GRID_AXES
Definition: layer_ids.h:209
@ LAYER_CONFLICTS_SHADOW
shadow layer for items flagged conficting
Definition: layer_ids.h:244
@ LAYER_NON_PLATEDHOLES
handle color for not plated holes (holes, not pads)
Definition: layer_ids.h:200
@ LAYER_DRAWINGSHEET
drawingsheet frame and titleblock
Definition: layer_ids.h:220
@ LAYER_DRC_EXCLUSION
layer for drc markers which have been individually excluded
Definition: layer_ids.h:239
@ LAYER_PCB_BACKGROUND
PCB background color.
Definition: layer_ids.h:223
@ LAYER_DRC_WARNING
layer for drc markers with SEVERITY_WARNING
Definition: layer_ids.h:238
@ LAYER_PAD_PLATEDHOLES
to draw pad holes (plated)
Definition: layer_ids.h:217
@ LAYER_HIDDEN_TEXT
text marked as invisible
Definition: layer_ids.h:203
@ LAYER_CURSOR
PCB cursor.
Definition: layer_ids.h:224
@ LAYER_AUX_ITEMS
Auxiliary items (guides, rule, etc)
Definition: layer_ids.h:225
@ LAYER_RATSNEST
Definition: layer_ids.h:207
@ LAYER_ANCHOR
anchor of items having an anchor point (texts, footprints)
Definition: layer_ids.h:204
@ LAYER_PADS_TH
multilayer pads, usually with holes
Definition: layer_ids.h:216
@ LAYER_VIA_HOLES
to draw via holes (pad holes do not use this layer)
Definition: layer_ids.h:218
@ LAYER_VIA_MICROVIA
to draw micro vias
Definition: layer_ids.h:197
@ LAYER_VIA_THROUGH
to draw usual through hole vias
Definition: layer_ids.h:199
@ LAYER_DRC_ERROR
layer for drc markers with SEVERITY_ERROR
Definition: layer_ids.h:219
@ LAYER_VIA_BBLIND
to draw blind/buried vias
Definition: layer_ids.h:198
@ LAYER_SHEETNAME
Definition: layer_ids.h:374
@ LAYER_ERC_WARN
Definition: layer_ids.h:381
@ LAYER_SCHEMATIC_ANCHOR
Definition: layer_ids.h:398
@ LAYER_SHEETLABEL
Definition: layer_ids.h:377
@ LAYER_PINNUM
Definition: layer_ids.h:361
@ LAYER_DEVICE
Definition: layer_ids.h:368
@ LAYER_SHEET_BACKGROUND
Definition: layer_ids.h:385
@ LAYER_BRIGHTENED
Definition: layer_ids.h:391
@ LAYER_ERC_EXCLUSION
Definition: layer_ids.h:383
@ LAYER_HIDDEN
Definition: layer_ids.h:392
@ LAYER_HIERLABEL
Definition: layer_ids.h:360
@ LAYER_PINNAM
Definition: layer_ids.h:362
@ LAYER_PRIVATE_NOTES
Definition: layer_ids.h:370
@ LAYER_HOVERED
Definition: layer_ids.h:390
@ LAYER_GLOBLABEL
Definition: layer_ids.h:359
@ LAYER_WIRE
Definition: layer_ids.h:355
@ LAYER_NOTES
Definition: layer_ids.h:369
@ LAYER_ERC_ERR
Definition: layer_ids.h:382
@ LAYER_PIN
Definition: layer_ids.h:372
@ LAYER_VALUEPART
Definition: layer_ids.h:364
@ LAYER_BUS
Definition: layer_ids.h:356
@ LAYER_SCHEMATIC_CURSOR
Definition: layer_ids.h:389
@ LAYER_FIELDS
Definition: layer_ids.h:365
@ LAYER_DEVICE_BACKGROUND
Definition: layer_ids.h:384
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition: layer_ids.h:394
@ LAYER_LOCLABEL
Definition: layer_ids.h:358
@ LAYER_JUNCTION
Definition: layer_ids.h:357
@ LAYER_SHEETFIELDS
Definition: layer_ids.h:376
@ LAYER_SCHEMATIC_GRID_AXES
Definition: layer_ids.h:387
@ LAYER_REFERENCEPART
Definition: layer_ids.h:363
@ LAYER_NETCLASS_REFS
Definition: layer_ids.h:367
@ LAYER_NOTES_BACKGROUND
Definition: layer_ids.h:371
@ LAYER_OP_CURRENTS
Definition: layer_ids.h:400
@ LAYER_SCHEMATIC_PAGE_LIMITS
Definition: layer_ids.h:395
@ LAYER_SHEET
Definition: layer_ids.h:373
@ LAYER_SELECTION_SHADOWS
Definition: layer_ids.h:393
@ LAYER_SCHEMATIC_BACKGROUND
Definition: layer_ids.h:388
@ LAYER_SCHEMATIC_AUX_ITEMS
Definition: layer_ids.h:397
@ LAYER_OP_VOLTAGES
Definition: layer_ids.h:399
@ LAYER_SHEETFILENAME
Definition: layer_ids.h:375
@ LAYER_BUS_JUNCTION
Definition: layer_ids.h:396
@ LAYER_DNP_MARKER
Definition: layer_ids.h:380
@ LAYER_NOCONNECT
Definition: layer_ids.h:378
@ LAYER_SCHEMATIC_GRID
Definition: layer_ids.h:386
@ In22_Cu
Definition: layer_ids.h:87
@ In11_Cu
Definition: layer_ids.h:76
@ In29_Cu
Definition: layer_ids.h:94
@ In30_Cu
Definition: layer_ids.h:95
@ User_8
Definition: layer_ids.h:131
@ F_CrtYd
Definition: layer_ids.h:118
@ In17_Cu
Definition: layer_ids.h:82
@ B_Adhes
Definition: layer_ids.h:98
@ Edge_Cuts
Definition: layer_ids.h:114
@ Dwgs_User
Definition: layer_ids.h:110
@ F_Paste
Definition: layer_ids.h:102
@ In9_Cu
Definition: layer_ids.h:74
@ Cmts_User
Definition: layer_ids.h:111
@ User_6
Definition: layer_ids.h:129
@ User_7
Definition: layer_ids.h:130
@ In19_Cu
Definition: layer_ids.h:84
@ In7_Cu
Definition: layer_ids.h:72
@ In28_Cu
Definition: layer_ids.h:93
@ In26_Cu
Definition: layer_ids.h:91
@ F_Adhes
Definition: layer_ids.h:99
@ B_Mask
Definition: layer_ids.h:107
@ B_Cu
Definition: layer_ids.h:96
@ User_5
Definition: layer_ids.h:128
@ Eco1_User
Definition: layer_ids.h:112
@ F_Mask
Definition: layer_ids.h:108
@ In21_Cu
Definition: layer_ids.h:86
@ In23_Cu
Definition: layer_ids.h:88
@ B_Paste
Definition: layer_ids.h:101
@ In15_Cu
Definition: layer_ids.h:80
@ In2_Cu
Definition: layer_ids.h:67
@ User_9
Definition: layer_ids.h:132
@ F_Fab
Definition: layer_ids.h:121
@ In10_Cu
Definition: layer_ids.h:75
@ Margin
Definition: layer_ids.h:115
@ F_SilkS
Definition: layer_ids.h:105
@ In4_Cu
Definition: layer_ids.h:69
@ B_CrtYd
Definition: layer_ids.h:117
@ Eco2_User
Definition: layer_ids.h:113
@ In16_Cu
Definition: layer_ids.h:81
@ In24_Cu
Definition: layer_ids.h:89
@ In1_Cu
Definition: layer_ids.h:66
@ User_3
Definition: layer_ids.h:126
@ User_1
Definition: layer_ids.h:124
@ B_SilkS
Definition: layer_ids.h:104
@ In13_Cu
Definition: layer_ids.h:78
@ User_4
Definition: layer_ids.h:127
@ In8_Cu
Definition: layer_ids.h:73
@ In14_Cu
Definition: layer_ids.h:79
@ User_2
Definition: layer_ids.h:125
@ In12_Cu
Definition: layer_ids.h:77
@ In27_Cu
Definition: layer_ids.h:92
@ In6_Cu
Definition: layer_ids.h:71
@ In5_Cu
Definition: layer_ids.h:70
@ In3_Cu
Definition: layer_ids.h:68
@ In20_Cu
Definition: layer_ids.h:85
@ F_Cu
Definition: layer_ids.h:65
@ In18_Cu
Definition: layer_ids.h:83
@ In25_Cu
Definition: layer_ids.h:90
@ B_Fab
Definition: layer_ids.h:120
#define GERBER_DRAWLAYERS_COUNT
Definition: layer_ids.h:416
STL namespace.