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 The 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.excluded_from_sim", LAYER_EXCLUDED_FROM_SIM );
67 CLR( "schematic.erc_error", LAYER_ERC_ERR );
68 CLR( "schematic.erc_warning", LAYER_ERC_WARN );
69 CLR( "schematic.erc_exclusion", LAYER_ERC_EXCLUSION );
70 CLR( "schematic.fields", LAYER_FIELDS );
71 CLR( "schematic.grid", LAYER_SCHEMATIC_GRID );
72 CLR( "schematic.grid_axes", LAYER_SCHEMATIC_GRID_AXES );
73 CLR( "schematic.hidden", LAYER_HIDDEN );
74 CLR( "schematic.junction", LAYER_JUNCTION );
75 CLR( "schematic.label_global", LAYER_GLOBLABEL );
76 CLR( "schematic.label_hier", LAYER_HIERLABEL );
77 CLR( "schematic.label_local", LAYER_LOCLABEL );
78 CLR( "schematic.netclass_flag", LAYER_NETCLASS_REFS );
79 CLR( "schematic.rule_area", LAYER_RULE_AREAS );
80 CLR( "schematic.no_connect", LAYER_NOCONNECT );
81 CLR( "schematic.note", LAYER_NOTES );
82 CLR( "schematic.private_note", LAYER_PRIVATE_NOTES );
83 CLR( "schematic.note_background", LAYER_NOTES_BACKGROUND );
84 CLR( "schematic.pin", LAYER_PIN );
85 CLR( "schematic.pin_name", LAYER_PINNAM );
86 CLR( "schematic.pin_number", LAYER_PINNUM );
87 CLR( "schematic.reference", LAYER_REFERENCEPART );
88 CLR( "schematic.shadow", LAYER_SELECTION_SHADOWS );
89 CLR( "schematic.sheet", LAYER_SHEET );
90 CLR( "schematic.sheet_background", LAYER_SHEET_BACKGROUND );
91 CLR( "schematic.sheet_filename", LAYER_SHEETFILENAME );
92 CLR( "schematic.sheet_fields", LAYER_SHEETFIELDS );
93 CLR( "schematic.sheet_label", LAYER_SHEETLABEL );
94 CLR( "schematic.sheet_name", LAYER_SHEETNAME );
95 CLR( "schematic.value", LAYER_VALUEPART );
96 CLR( "schematic.wire", LAYER_WIRE );
97 CLR( "schematic.worksheet", LAYER_SCHEMATIC_DRAWINGSHEET );
98 CLR( "schematic.page_limits", LAYER_SCHEMATIC_PAGE_LIMITS );
99 CLR( "schematic.op_voltages", LAYER_OP_VOLTAGES );
100 CLR( "schematic.op_currents", LAYER_OP_CURRENTS );
101
102 CLR( "gerbview.axes", LAYER_GERBVIEW_AXES );
103 CLR( "gerbview.background", LAYER_GERBVIEW_BACKGROUND );
104 CLR( "gerbview.dcodes", LAYER_DCODES );
105 CLR( "gerbview.grid", LAYER_GERBVIEW_GRID );
106 CLR( "gerbview.negative_objects", LAYER_NEGATIVE_OBJECTS );
107 CLR( "gerbview.worksheet", LAYER_GERBVIEW_DRAWINGSHEET );
108 CLR( "gerbview.page_limits", LAYER_GERBVIEW_PAGE_LIMITS );
109
110 for( int i = 0, id = GERBVIEW_LAYER_ID_START;
112 {
113 m_params.emplace_back( new COLOR_MAP_PARAM( "gerbview.layers." + std::to_string( i ), id,
114 s_defaultTheme.at( id ), &m_colors ) );
115 }
116
117 CLR( "board.anchor", LAYER_ANCHOR );
118 CLR( "board.locked_shadow", LAYER_LOCKED_ITEM_SHADOW );
119 CLR( "board.conflicts_shadow", LAYER_CONFLICTS_SHADOW );
120 CLR( "board.aux_items", LAYER_AUX_ITEMS );
121 CLR( "board.background", LAYER_PCB_BACKGROUND );
122 CLR( "board.cursor", LAYER_CURSOR );
123 CLR( "board.drc_error", LAYER_DRC_ERROR );
124 CLR( "board.drc_warning", LAYER_DRC_WARNING );
125 CLR( "board.drc_exclusion", LAYER_DRC_EXCLUSION );
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.plated_hole", LAYER_NON_PLATEDHOLES );
130 CLR( "board.ratsnest", LAYER_RATSNEST );
131 CLR( "board.via_hole", LAYER_VIA_HOLES );
132 CLR( "board.via_hole_walls", LAYER_VIA_HOLEWALLS );
133 CLR( "board.worksheet", LAYER_DRAWINGSHEET );
134 CLR( "board.page_limits", LAYER_PAGE_LIMITS );
135 CLR( "board.track_net_names", NETNAMES_LAYER_ID_START );
136 CLR( "board.pad_net_names", LAYER_PAD_NETNAMES );
137 CLR( "board.via_net_names", LAYER_VIA_NETNAMES );
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)
Register 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_PAD_NETNAMES
Definition: layer_ids.h:165
@ NETNAMES_LAYER_ID_START
Definition: layer_ids.h:157
@ LAYER_VIA_NETNAMES
Definition: layer_ids.h:166
@ LAYER_GERBVIEW_DRAWINGSHEET
Definition: layer_ids.h:484
@ GERBVIEW_LAYER_ID_START
Definition: layer_ids.h:474
@ LAYER_GERBVIEW_BACKGROUND
Definition: layer_ids.h:483
@ LAYER_DCODES
Definition: layer_ids.h:479
@ LAYER_NEGATIVE_OBJECTS
Definition: layer_ids.h:480
@ LAYER_GERBVIEW_PAGE_LIMITS
Definition: layer_ids.h:485
@ LAYER_GERBVIEW_AXES
Definition: layer_ids.h:482
@ LAYER_GERBVIEW_GRID
Definition: layer_ids.h:481
@ LAYER_3D_SOLDERMASK_TOP
Definition: layer_ids.h:510
@ LAYER_3D_BACKGROUND_TOP
Definition: layer_ids.h:503
@ LAYER_3D_SOLDERMASK_BOTTOM
Definition: layer_ids.h:509
@ LAYER_3D_BOARD
Definition: layer_ids.h:504
@ LAYER_3D_SILKSCREEN_TOP
Definition: layer_ids.h:508
@ LAYER_3D_COPPER_TOP
Definition: layer_ids.h:505
@ LAYER_3D_SOLDERPASTE
Definition: layer_ids.h:511
@ LAYER_3D_BACKGROUND_BOTTOM
Definition: layer_ids.h:502
@ LAYER_3D_SILKSCREEN_BOTTOM
Definition: layer_ids.h:507
@ LAYER_GRID
Definition: layer_ids.h:216
@ LAYER_PAGE_LIMITS
Color for drawing the page extents (visibility stored in PCBNEW_SETTINGS::m_ShowPageLimits)
Definition: layer_ids.h:286
@ LAYER_LOCKED_ITEM_SHADOW
Shadow layer for locked items.
Definition: layer_ids.h:269
@ LAYER_VIA_HOLEWALLS
Definition: layer_ids.h:260
@ LAYER_GRID_AXES
Definition: layer_ids.h:217
@ LAYER_CONFLICTS_SHADOW
Shadow layer for items flagged conflicting.
Definition: layer_ids.h:272
@ LAYER_NON_PLATEDHOLES
Draw usual through hole vias.
Definition: layer_ids.h:201
@ LAYER_DRAWINGSHEET
Sheet frame and title block.
Definition: layer_ids.h:240
@ LAYER_DRC_EXCLUSION
Layer for DRC markers which have been individually excluded.
Definition: layer_ids.h:266
@ LAYER_PCB_BACKGROUND
PCB background color.
Definition: layer_ids.h:243
@ LAYER_DRC_WARNING
Layer for DRC markers with #SEVERITY_WARNING.
Definition: layer_ids.h:263
@ LAYER_PAD_PLATEDHOLES
to draw pad holes (plated)
Definition: layer_ids.h:233
@ LAYER_CURSOR
PCB cursor.
Definition: layer_ids.h:244
@ LAYER_AUX_ITEMS
Auxiliary items (guides, rule, etc).
Definition: layer_ids.h:245
@ LAYER_RATSNEST
Definition: layer_ids.h:215
@ LAYER_ANCHOR
Anchor of items having an anchor point (texts, footprints).
Definition: layer_ids.h:210
@ LAYER_VIA_HOLES
Draw via holes (pad holes do not use this layer).
Definition: layer_ids.h:236
@ LAYER_DRC_ERROR
Layer for DRC markers with #SEVERITY_ERROR.
Definition: layer_ids.h:239
@ LAYER_SHEETNAME
Definition: layer_ids.h:424
@ LAYER_ERC_WARN
Definition: layer_ids.h:431
@ LAYER_SCHEMATIC_ANCHOR
Definition: layer_ids.h:451
@ LAYER_SHEETLABEL
Definition: layer_ids.h:427
@ LAYER_PINNUM
Definition: layer_ids.h:410
@ LAYER_RULE_AREAS
Definition: layer_ids.h:417
@ LAYER_DEVICE
Definition: layer_ids.h:418
@ LAYER_SHEET_BACKGROUND
Definition: layer_ids.h:437
@ LAYER_EXCLUDED_FROM_SIM
Definition: layer_ids.h:434
@ LAYER_BRIGHTENED
Definition: layer_ids.h:443
@ LAYER_ERC_EXCLUSION
Definition: layer_ids.h:433
@ LAYER_HIDDEN
Definition: layer_ids.h:444
@ LAYER_HIERLABEL
Definition: layer_ids.h:409
@ LAYER_PINNAM
Definition: layer_ids.h:411
@ LAYER_PRIVATE_NOTES
Definition: layer_ids.h:420
@ LAYER_HOVERED
Definition: layer_ids.h:442
@ LAYER_GLOBLABEL
Definition: layer_ids.h:408
@ LAYER_WIRE
Definition: layer_ids.h:404
@ LAYER_NOTES
Definition: layer_ids.h:419
@ LAYER_ERC_ERR
Definition: layer_ids.h:432
@ LAYER_PIN
Definition: layer_ids.h:422
@ LAYER_VALUEPART
Definition: layer_ids.h:413
@ LAYER_BUS
Definition: layer_ids.h:405
@ LAYER_SCHEMATIC_CURSOR
Definition: layer_ids.h:441
@ LAYER_FIELDS
Definition: layer_ids.h:414
@ LAYER_DEVICE_BACKGROUND
Definition: layer_ids.h:436
@ LAYER_SCHEMATIC_DRAWINGSHEET
Definition: layer_ids.h:447
@ LAYER_LOCLABEL
Definition: layer_ids.h:407
@ LAYER_JUNCTION
Definition: layer_ids.h:406
@ LAYER_SHEETFIELDS
Definition: layer_ids.h:426
@ LAYER_SCHEMATIC_GRID_AXES
Definition: layer_ids.h:439
@ LAYER_REFERENCEPART
Definition: layer_ids.h:412
@ LAYER_NETCLASS_REFS
Definition: layer_ids.h:416
@ LAYER_NOTES_BACKGROUND
Definition: layer_ids.h:421
@ LAYER_OP_CURRENTS
Definition: layer_ids.h:453
@ LAYER_SCHEMATIC_PAGE_LIMITS
Definition: layer_ids.h:448
@ LAYER_SHEET
Definition: layer_ids.h:423
@ LAYER_SELECTION_SHADOWS
Definition: layer_ids.h:446
@ LAYER_SCHEMATIC_BACKGROUND
Definition: layer_ids.h:440
@ LAYER_SCHEMATIC_AUX_ITEMS
Definition: layer_ids.h:450
@ LAYER_OP_VOLTAGES
Definition: layer_ids.h:452
@ LAYER_SHEETFILENAME
Definition: layer_ids.h:425
@ LAYER_BUS_JUNCTION
Definition: layer_ids.h:449
@ LAYER_DNP_MARKER
Definition: layer_ids.h:430
@ LAYER_NOCONNECT
Definition: layer_ids.h:428
@ LAYER_SCHEMATIC_GRID
Definition: layer_ids.h:438
@ 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:116
@ In17_Cu
Definition: layer_ids.h:82
@ B_Adhes
Definition: layer_ids.h:103
@ Edge_Cuts
Definition: layer_ids.h:112
@ Dwgs_User
Definition: layer_ids.h:107
@ F_Paste
Definition: layer_ids.h:104
@ In9_Cu
Definition: layer_ids.h:74
@ Cmts_User
Definition: layer_ids.h:108
@ 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:102
@ B_Mask
Definition: layer_ids.h:98
@ B_Cu
Definition: layer_ids.h:65
@ User_5
Definition: layer_ids.h:128
@ Eco1_User
Definition: layer_ids.h:109
@ F_Mask
Definition: layer_ids.h:97
@ In21_Cu
Definition: layer_ids.h:86
@ In23_Cu
Definition: layer_ids.h:88
@ B_Paste
Definition: layer_ids.h:105
@ 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:119
@ In10_Cu
Definition: layer_ids.h:75
@ Margin
Definition: layer_ids.h:113
@ F_SilkS
Definition: layer_ids.h:100
@ In4_Cu
Definition: layer_ids.h:69
@ B_CrtYd
Definition: layer_ids.h:115
@ Eco2_User
Definition: layer_ids.h:110
@ 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:101
@ 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:64
@ In18_Cu
Definition: layer_ids.h:83
@ In25_Cu
Definition: layer_ids.h:90
@ B_Fab
Definition: layer_ids.h:118
#define GERBER_DRAWLAYERS_COUNT
Number of draw layers in Gerbview.
Definition: layer_ids.h:469