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.rule_area", LAYER_RULE_AREAS );
79 CLR( "schematic.no_connect", LAYER_NOCONNECT );
80 CLR( "schematic.note", LAYER_NOTES );
81 CLR( "schematic.private_note", LAYER_PRIVATE_NOTES );
82 CLR( "schematic.note_background", LAYER_NOTES_BACKGROUND );
83 CLR( "schematic.pin", LAYER_PIN );
84 CLR( "schematic.pin_name", LAYER_PINNAM );
85 CLR( "schematic.pin_number", LAYER_PINNUM );
86 CLR( "schematic.reference", LAYER_REFERENCEPART );
87 CLR( "schematic.shadow", LAYER_SELECTION_SHADOWS );
88 CLR( "schematic.sheet", LAYER_SHEET );
89 CLR( "schematic.sheet_background", LAYER_SHEET_BACKGROUND );
90 CLR( "schematic.sheet_filename", LAYER_SHEETFILENAME );
91 CLR( "schematic.sheet_fields", LAYER_SHEETFIELDS );
92 CLR( "schematic.sheet_label", LAYER_SHEETLABEL );
93 CLR( "schematic.sheet_name", LAYER_SHEETNAME );
94 CLR( "schematic.value", LAYER_VALUEPART );
95 CLR( "schematic.wire", LAYER_WIRE );
96 CLR( "schematic.worksheet", LAYER_SCHEMATIC_DRAWINGSHEET );
97 CLR( "schematic.page_limits", LAYER_SCHEMATIC_PAGE_LIMITS );
98 CLR( "schematic.op_voltages", LAYER_OP_VOLTAGES );
99 CLR( "schematic.op_currents", LAYER_OP_CURRENTS );
100
101 CLR( "gerbview.axes", LAYER_GERBVIEW_AXES );
102 CLR( "gerbview.background", LAYER_GERBVIEW_BACKGROUND );
103 CLR( "gerbview.dcodes", LAYER_DCODES );
104 CLR( "gerbview.grid", LAYER_GERBVIEW_GRID );
105 CLR( "gerbview.negative_objects", LAYER_NEGATIVE_OBJECTS );
106 CLR( "gerbview.worksheet", LAYER_GERBVIEW_DRAWINGSHEET );
107 CLR( "gerbview.page_limits", LAYER_GERBVIEW_PAGE_LIMITS );
108
109 for( int i = 0, id = GERBVIEW_LAYER_ID_START;
111 {
112 m_params.emplace_back( new COLOR_MAP_PARAM( "gerbview.layers." + std::to_string( i ), id,
113 s_defaultTheme.at( id ), &m_colors ) );
114 }
115
116 CLR( "board.anchor", LAYER_ANCHOR );
117 CLR( "board.locked_shadow", LAYER_LOCKED_ITEM_SHADOW );
118 CLR( "board.conflicts_shadow", LAYER_CONFLICTS_SHADOW );
119 CLR( "board.aux_items", LAYER_AUX_ITEMS );
120 CLR( "board.background", LAYER_PCB_BACKGROUND );
121 CLR( "board.cursor", LAYER_CURSOR );
122 CLR( "board.drc_error", LAYER_DRC_ERROR );
123 CLR( "board.drc_warning", LAYER_DRC_WARNING );
124 CLR( "board.drc_exclusion", LAYER_DRC_EXCLUSION );
125 CLR( "board.footprint_text_invisible", LAYER_HIDDEN_TEXT );
126 CLR( "board.grid", LAYER_GRID );
127 CLR( "board.grid_axes", LAYER_GRID_AXES );
128 CLR( "board.pad_plated_hole", LAYER_PAD_PLATEDHOLES );
129 CLR( "board.pad_through_hole", LAYER_PADS_TH );
130 CLR( "board.plated_hole", LAYER_NON_PLATEDHOLES );
131 CLR( "board.ratsnest", LAYER_RATSNEST );
132 CLR( "board.via_blind_buried", LAYER_VIA_BBLIND );
133 CLR( "board.via_hole", LAYER_VIA_HOLES );
134 CLR( "board.via_micro", LAYER_VIA_MICROVIA );
135 CLR( "board.via_through", LAYER_VIA_THROUGH );
136 CLR( "board.worksheet", LAYER_DRAWINGSHEET );
137 CLR( "board.page_limits", LAYER_PAGE_LIMITS );
138
139 CLR( "board.copper.f", F_Cu );
140 CLR( "board.copper.in1", In1_Cu );
141 CLR( "board.copper.in2", In2_Cu );
142 CLR( "board.copper.in3", In3_Cu );
143 CLR( "board.copper.in4", In4_Cu );
144 CLR( "board.copper.in5", In5_Cu );
145 CLR( "board.copper.in6", In6_Cu );
146 CLR( "board.copper.in7", In7_Cu );
147 CLR( "board.copper.in8", In8_Cu );
148 CLR( "board.copper.in9", In9_Cu );
149 CLR( "board.copper.in10", In10_Cu );
150 CLR( "board.copper.in11", In11_Cu );
151 CLR( "board.copper.in12", In12_Cu );
152 CLR( "board.copper.in13", In13_Cu );
153 CLR( "board.copper.in14", In14_Cu );
154 CLR( "board.copper.in15", In15_Cu );
155 CLR( "board.copper.in16", In16_Cu );
156 CLR( "board.copper.in17", In17_Cu );
157 CLR( "board.copper.in18", In18_Cu );
158 CLR( "board.copper.in19", In19_Cu );
159 CLR( "board.copper.in20", In20_Cu );
160 CLR( "board.copper.in21", In21_Cu );
161 CLR( "board.copper.in22", In22_Cu );
162 CLR( "board.copper.in23", In23_Cu );
163 CLR( "board.copper.in24", In24_Cu );
164 CLR( "board.copper.in25", In25_Cu );
165 CLR( "board.copper.in26", In26_Cu );
166 CLR( "board.copper.in27", In27_Cu );
167 CLR( "board.copper.in28", In28_Cu );
168 CLR( "board.copper.in29", In29_Cu );
169 CLR( "board.copper.in30", In30_Cu );
170 CLR( "board.copper.b", B_Cu );
171
172 CLR( "board.b_adhes", B_Adhes );
173 CLR( "board.f_adhes", F_Adhes );
174 CLR( "board.b_paste", B_Paste );
175 CLR( "board.f_paste", F_Paste );
176 CLR( "board.b_silks", B_SilkS );
177 CLR( "board.f_silks", F_SilkS );
178 CLR( "board.b_mask", B_Mask );
179 CLR( "board.f_mask", F_Mask );
180 CLR( "board.dwgs_user", Dwgs_User );
181 CLR( "board.cmts_user", Cmts_User );
182 CLR( "board.eco1_user", Eco1_User );
183 CLR( "board.eco2_user", Eco2_User );
184 CLR( "board.edge_cuts", Edge_Cuts );
185 CLR( "board.margin", Margin );
186 CLR( "board.b_crtyd", B_CrtYd );
187 CLR( "board.f_crtyd", F_CrtYd );
188 CLR( "board.b_fab", B_Fab );
189 CLR( "board.f_fab", F_Fab );
190 CLR( "board.user_1", User_1 );
191 CLR( "board.user_2", User_2 );
192 CLR( "board.user_3", User_3 );
193 CLR( "board.user_4", User_4 );
194 CLR( "board.user_5", User_5 );
195 CLR( "board.user_6", User_6 );
196 CLR( "board.user_7", User_7 );
197 CLR( "board.user_8", User_8 );
198 CLR( "board.user_9", User_9 );
199
200 // Colors for 3D viewer, which are used as defaults unless overridden by the board
201 CLR( "3d_viewer.background_bottom", LAYER_3D_BACKGROUND_BOTTOM );
202 CLR( "3d_viewer.background_top", LAYER_3D_BACKGROUND_TOP );
203 CLR( "3d_viewer.board", LAYER_3D_BOARD );
204 CLR( "3d_viewer.copper", LAYER_3D_COPPER_TOP );
205 CLR( "3d_viewer.silkscreen_bottom", LAYER_3D_SILKSCREEN_BOTTOM );
206 CLR( "3d_viewer.silkscreen_top", LAYER_3D_SILKSCREEN_TOP );
207 CLR( "3d_viewer.soldermask_bottom", LAYER_3D_SOLDERMASK_BOTTOM );
208 CLR( "3d_viewer.soldermask_top", LAYER_3D_SOLDERMASK_TOP );
209 CLR( "3d_viewer.solderpaste", LAYER_3D_SOLDERPASTE );
210
211 registerMigration( 0, 1, std::bind( &COLOR_SETTINGS::migrateSchema0to1, this ) );
212
213 registerMigration( 1, 2,
214 [&]()
215 {
216 // Fix LAYER_VIA_HOLES color - before version 2, this setting had no effect
217 nlohmann::json::json_pointer ptr( "/board/via_hole" );
218
219 ( *m_internals )[ptr] = COLOR4D( 0.5, 0.4, 0, 0.8 ).ToCSSString();
220
221 return true;
222 } );
223
224 registerMigration( 2, 3,
225 [&]()
226 {
227 // We don't support opacity in some 3D colors but some versions of 5.99 let
228 // you set it.
229
230 for( std::string path : { "3d_viewer.background_top",
231 "3d_viewer.background_bottom",
232 "3d_viewer.copper",
233 "3d_viewer.silkscreen_top",
234 "3d_viewer.silkscreen_bottom",
235 "3d_viewer.solderpaste" } )
236 {
237 if( std::optional<COLOR4D> optval = Get<COLOR4D>( path ) )
238 Set( path, optval->WithAlpha( 1.0 ) );
239 }
240
241 return true;
242 } );
243
244 registerMigration( 3, 4,
245 [&]()
246 {
247 if( std::optional<COLOR4D> optval = Get<COLOR4D>( "board.grid" ) )
248 Set( "board.page_limits", *optval );
249
250 if( std::optional<COLOR4D> optval = Get<COLOR4D>( "schematic.grid" ) )
251 Set( "schematic.page_limits", *optval );
252
253 return true;
254 } );
255
256 // this bump shouldn't have happened; add a no-op migration to avoid future issues
257 registerMigration( 4, 5, []() { return true; } );
258}
259
260
263{
264 initFromOther( aOther );
265}
266
267
269{
270 m_filename = aOther.m_filename;
271
272 initFromOther( aOther );
273
274 return *this;
275}
276
277
279{
282 m_colors = aOther.m_colors;
284 m_writeFile = aOther.m_writeFile;
285
286 // Ensure default colors are present
287 for( PARAM_BASE* param : aOther.m_params )
288 {
289 if( COLOR_MAP_PARAM* cmp = dynamic_cast<COLOR_MAP_PARAM*>( param ) )
290 m_defaultColors[cmp->GetKey()] = cmp->GetDefault();
291 }
292}
293
294
295bool COLOR_SETTINGS::MigrateFromLegacy( wxConfigBase* aCfg )
296{
297 return false;
298}
299
300
302{
310 if( !m_manager )
311 {
312 wxLogTrace( traceSettings, wxT( "Error: COLOR_SETTINGS migration cannot run unmanaged!" ) );
313 return false;
314 }
315
316 if( !Contains( "fpedit" ) )
317 {
318 wxLogTrace( traceSettings,
319 wxT( "migrateSchema0to1: %s doesn't have fpedit settings; skipping." ),
320 m_filename );
321 return true;
322 }
323
324 wxString filename = GetFilename().BeforeLast( '.' ) + wxT( "_footprints" );
325
326 COLOR_SETTINGS* fpsettings = m_manager->AddNewColorSettings( filename );
327 fpsettings->SetLocation( GetLocation() );
328
329 // Start out with a clone
330 fpsettings->m_internals->CloneFrom( *m_internals );
331
332 // Footprint editor now just looks at the "board" namespace
333 fpsettings->Set( "board", fpsettings->At( "fpedit" ) );
334
335 fpsettings->Internals()->erase( "fpedit" );
336 fpsettings->Load();
337 fpsettings->SetName( fpsettings->GetName() + wxS( " " ) + _( "(Footprints)" ) );
338 m_manager->Save( fpsettings );
339
340 // Now we can get rid of our own copy
341 m_internals->erase( "fpedit" );
342
343 return true;
344}
345
346
348{
349 if( m_colors.count( aLayer ) )
350 return m_colors.at( aLayer );
351
352 return COLOR4D::UNSPECIFIED;
353}
354
355
357{
358 if( !m_defaultColors.count( aLayer ) )
359 {
360 COLOR_MAP_PARAM* p = nullptr;
361
362 for( PARAM_BASE* param : m_params )
363 {
364 COLOR_MAP_PARAM* cmp = dynamic_cast<COLOR_MAP_PARAM*>( param );
365
366 if( cmp && cmp->GetKey() == aLayer )
367 p = cmp;
368 }
369
370 if( p )
371 m_defaultColors[aLayer] = p->GetDefault();
372 else
373 m_defaultColors[aLayer] = COLOR4D::UNSPECIFIED;
374 }
375
376 return m_defaultColors.at( aLayer );
377}
378
379
380void COLOR_SETTINGS::SetColor( int aLayer, const COLOR4D& aColor )
381{
382 m_colors[ aLayer ] = aColor;
383}
384
385
386std::vector<COLOR_SETTINGS*> COLOR_SETTINGS::CreateBuiltinColorSettings()
387{
389 defaultTheme->SetName( _( "KiCad Default" ) );
390 defaultTheme->m_writeFile = false;
391 defaultTheme->Load(); // We can just get the colors out of the param defaults for this one
392
394 classicTheme->SetName( _( "KiCad Classic" ) );
395 classicTheme->m_writeFile = false;
396
397 for( PARAM_BASE* param : classicTheme->m_params )
398 delete param;
399
400 classicTheme->m_params.clear(); // Disable load/store
401
402 for( const std::pair<int, COLOR4D> entry : s_classicTheme )
403 classicTheme->m_colors[entry.first] = entry.second;
404
405 std::vector<COLOR_SETTINGS*> ret;
406
407 ret.push_back( defaultTheme );
408 ret.push_back( classicTheme );
409
410 return ret;
411}
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
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...
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:87
void SetLocation(SETTINGS_LOC aLocation)
Definition: json_settings.h:86
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()
std::unique_ptr< JSON_SETTINGS_INTERNALS > m_internals
wxString GetFilename() const
Definition: json_settings.h:80
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)
SETTINGS_LOC
Definition: json_settings.h:54
@ COLORS
The color scheme directory (e.g. ~/.config/kicad/colors/)
#define traceSettings
Definition: json_settings.h:52
@ LAYER_GERBVIEW_DRAWINGSHEET
Definition: layer_ids.h:433
@ GERBVIEW_LAYER_ID_START
Definition: layer_ids.h:423
@ LAYER_GERBVIEW_BACKGROUND
Definition: layer_ids.h:432
@ LAYER_DCODES
Definition: layer_ids.h:428
@ LAYER_NEGATIVE_OBJECTS
Definition: layer_ids.h:429
@ LAYER_GERBVIEW_PAGE_LIMITS
Definition: layer_ids.h:434
@ LAYER_GERBVIEW_AXES
Definition: layer_ids.h:431
@ LAYER_GERBVIEW_GRID
Definition: layer_ids.h:430
@ LAYER_3D_SOLDERMASK_TOP
Definition: layer_ids.h:459
@ LAYER_3D_BACKGROUND_TOP
Definition: layer_ids.h:452
@ LAYER_3D_SOLDERMASK_BOTTOM
Definition: layer_ids.h:458
@ LAYER_3D_BOARD
Definition: layer_ids.h:453
@ LAYER_3D_SILKSCREEN_TOP
Definition: layer_ids.h:457
@ LAYER_3D_COPPER_TOP
Definition: layer_ids.h:454
@ LAYER_3D_SOLDERPASTE
Definition: layer_ids.h:460
@ LAYER_3D_BACKGROUND_BOTTOM
Definition: layer_ids.h:451
@ LAYER_3D_SILKSCREEN_BOTTOM
Definition: layer_ids.h:456
@ LAYER_GRID
Definition: layer_ids.h:209
@ LAYER_PAGE_LIMITS
color for drawing the page extents (visibility stored in PCBNEW_SETTINGS::m_ShowPageLimits)
Definition: layer_ids.h:253
@ LAYER_LOCKED_ITEM_SHADOW
shadow layer for locked items
Definition: layer_ids.h:243
@ LAYER_GRID_AXES
Definition: layer_ids.h:210
@ LAYER_CONFLICTS_SHADOW
shadow layer for items flagged conficting
Definition: layer_ids.h:245
@ LAYER_NON_PLATEDHOLES
handle color for not plated holes (holes, not pads)
Definition: layer_ids.h:201
@ LAYER_DRAWINGSHEET
drawingsheet frame and titleblock
Definition: layer_ids.h:221
@ LAYER_DRC_EXCLUSION
layer for drc markers which have been individually excluded
Definition: layer_ids.h:240
@ LAYER_PCB_BACKGROUND
PCB background color.
Definition: layer_ids.h:224
@ LAYER_DRC_WARNING
layer for drc markers with SEVERITY_WARNING
Definition: layer_ids.h:239
@ LAYER_PAD_PLATEDHOLES
to draw pad holes (plated)
Definition: layer_ids.h:218
@ LAYER_HIDDEN_TEXT
text marked as invisible
Definition: layer_ids.h:204
@ LAYER_CURSOR
PCB cursor.
Definition: layer_ids.h:225
@ LAYER_AUX_ITEMS
Auxiliary items (guides, rule, etc)
Definition: layer_ids.h:226
@ LAYER_RATSNEST
Definition: layer_ids.h:208
@ LAYER_ANCHOR
anchor of items having an anchor point (texts, footprints)
Definition: layer_ids.h:205
@ LAYER_PADS_TH
multilayer pads, usually with holes
Definition: layer_ids.h:217
@ LAYER_VIA_HOLES
to draw via holes (pad holes do not use this layer)
Definition: layer_ids.h:219
@ LAYER_VIA_MICROVIA
to draw micro vias
Definition: layer_ids.h:198
@ LAYER_VIA_THROUGH
to draw usual through hole vias
Definition: layer_ids.h:200
@ LAYER_DRC_ERROR
layer for drc markers with SEVERITY_ERROR
Definition: layer_ids.h:220
@ LAYER_VIA_BBLIND
to draw blind/buried vias
Definition: layer_ids.h:199
@ LAYER_SHEETNAME
Definition: layer_ids.h:376
@ LAYER_ERC_WARN
Definition: layer_ids.h:383
@ LAYER_SCHEMATIC_ANCHOR
Definition: layer_ids.h:400
@ LAYER_SHEETLABEL
Definition: layer_ids.h:379
@ LAYER_PINNUM
Definition: layer_ids.h:362
@ LAYER_RULE_AREAS
Definition: layer_ids.h:369
@ LAYER_DEVICE
Definition: layer_ids.h:370
@ LAYER_SHEET_BACKGROUND
Definition: layer_ids.h:387
@ LAYER_BRIGHTENED
Definition: layer_ids.h:393
@ LAYER_ERC_EXCLUSION
Definition: layer_ids.h:385
@ LAYER_HIDDEN
Definition: layer_ids.h:394
@ LAYER_HIERLABEL
Definition: layer_ids.h:361
@ LAYER_PINNAM
Definition: layer_ids.h:363
@ LAYER_PRIVATE_NOTES
Definition: layer_ids.h:372
@ LAYER_HOVERED
Definition: layer_ids.h:392
@ LAYER_GLOBLABEL
Definition: layer_ids.h:360
@ LAYER_WIRE
Definition: layer_ids.h:356
@ LAYER_NOTES
Definition: layer_ids.h:371
@ LAYER_ERC_ERR
Definition: layer_ids.h:384
@ LAYER_PIN
Definition: layer_ids.h:374
@ LAYER_VALUEPART
Definition: layer_ids.h:365
@ LAYER_BUS
Definition: layer_ids.h:357
@ LAYER_SCHEMATIC_CURSOR
Definition: layer_ids.h:391
@ LAYER_FIELDS
Definition: layer_ids.h:366
@ LAYER_DEVICE_BACKGROUND
Definition: layer_ids.h:386
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition: layer_ids.h:396
@ LAYER_LOCLABEL
Definition: layer_ids.h:359
@ LAYER_JUNCTION
Definition: layer_ids.h:358
@ LAYER_SHEETFIELDS
Definition: layer_ids.h:378
@ LAYER_SCHEMATIC_GRID_AXES
Definition: layer_ids.h:389
@ LAYER_REFERENCEPART
Definition: layer_ids.h:364
@ LAYER_NETCLASS_REFS
Definition: layer_ids.h:368
@ LAYER_NOTES_BACKGROUND
Definition: layer_ids.h:373
@ LAYER_OP_CURRENTS
Definition: layer_ids.h:402
@ LAYER_SCHEMATIC_PAGE_LIMITS
Definition: layer_ids.h:397
@ LAYER_SHEET
Definition: layer_ids.h:375
@ LAYER_SELECTION_SHADOWS
Definition: layer_ids.h:395
@ LAYER_SCHEMATIC_BACKGROUND
Definition: layer_ids.h:390
@ LAYER_SCHEMATIC_AUX_ITEMS
Definition: layer_ids.h:399
@ LAYER_OP_VOLTAGES
Definition: layer_ids.h:401
@ LAYER_SHEETFILENAME
Definition: layer_ids.h:377
@ LAYER_BUS_JUNCTION
Definition: layer_ids.h:398
@ LAYER_DNP_MARKER
Definition: layer_ids.h:382
@ LAYER_NOCONNECT
Definition: layer_ids.h:380
@ LAYER_SCHEMATIC_GRID
Definition: layer_ids.h:388
@ In22_Cu
Definition: layer_ids.h:86
@ In11_Cu
Definition: layer_ids.h:75
@ In29_Cu
Definition: layer_ids.h:93
@ In30_Cu
Definition: layer_ids.h:94
@ User_8
Definition: layer_ids.h:130
@ F_CrtYd
Definition: layer_ids.h:117
@ In17_Cu
Definition: layer_ids.h:81
@ B_Adhes
Definition: layer_ids.h:97
@ Edge_Cuts
Definition: layer_ids.h:113
@ Dwgs_User
Definition: layer_ids.h:109
@ F_Paste
Definition: layer_ids.h:101
@ In9_Cu
Definition: layer_ids.h:73
@ Cmts_User
Definition: layer_ids.h:110
@ User_6
Definition: layer_ids.h:128
@ User_7
Definition: layer_ids.h:129
@ In19_Cu
Definition: layer_ids.h:83
@ In7_Cu
Definition: layer_ids.h:71
@ In28_Cu
Definition: layer_ids.h:92
@ In26_Cu
Definition: layer_ids.h:90
@ F_Adhes
Definition: layer_ids.h:98
@ B_Mask
Definition: layer_ids.h:106
@ B_Cu
Definition: layer_ids.h:95
@ User_5
Definition: layer_ids.h:127
@ Eco1_User
Definition: layer_ids.h:111
@ F_Mask
Definition: layer_ids.h:107
@ In21_Cu
Definition: layer_ids.h:85
@ In23_Cu
Definition: layer_ids.h:87
@ B_Paste
Definition: layer_ids.h:100
@ In15_Cu
Definition: layer_ids.h:79
@ In2_Cu
Definition: layer_ids.h:66
@ User_9
Definition: layer_ids.h:131
@ F_Fab
Definition: layer_ids.h:120
@ In10_Cu
Definition: layer_ids.h:74
@ Margin
Definition: layer_ids.h:114
@ F_SilkS
Definition: layer_ids.h:104
@ In4_Cu
Definition: layer_ids.h:68
@ B_CrtYd
Definition: layer_ids.h:116
@ Eco2_User
Definition: layer_ids.h:112
@ In16_Cu
Definition: layer_ids.h:80
@ In24_Cu
Definition: layer_ids.h:88
@ In1_Cu
Definition: layer_ids.h:65
@ User_3
Definition: layer_ids.h:125
@ User_1
Definition: layer_ids.h:123
@ B_SilkS
Definition: layer_ids.h:103
@ In13_Cu
Definition: layer_ids.h:77
@ User_4
Definition: layer_ids.h:126
@ In8_Cu
Definition: layer_ids.h:72
@ In14_Cu
Definition: layer_ids.h:78
@ User_2
Definition: layer_ids.h:124
@ In12_Cu
Definition: layer_ids.h:76
@ In27_Cu
Definition: layer_ids.h:91
@ In6_Cu
Definition: layer_ids.h:70
@ In5_Cu
Definition: layer_ids.h:69
@ In3_Cu
Definition: layer_ids.h:67
@ In20_Cu
Definition: layer_ids.h:84
@ F_Cu
Definition: layer_ids.h:64
@ In18_Cu
Definition: layer_ids.h:82
@ In25_Cu
Definition: layer_ids.h:89
@ B_Fab
Definition: layer_ids.h:119
#define GERBER_DRAWLAYERS_COUNT
Definition: layer_ids.h:418
STL namespace.