Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
e460b4a5
Commit
e460b4a5
authored
Jun 30, 2014
by
Dick Hollenbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix export_gencad.cpp
parent
516c386a
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
142 additions
and
154 deletions
+142
-154
layers_id_colors_and_visibility.h
include/layers_id_colors_and_visibility.h
+2
-1
class_board.cpp
pcbnew/class_board.cpp
+1
-4
class_board.h
pcbnew/class_board.h
+1
-1
dialog_copper_zones.cpp
pcbnew/dialogs/dialog_copper_zones.cpp
+3
-1
export_gencad.cpp
pcbnew/exporters/export_gencad.cpp
+125
-138
pcb_plot_params.cpp
pcbnew/pcb_plot_params.cpp
+7
-8
zones_non_copper_type_functions.cpp
pcbnew/zones_non_copper_type_functions.cpp
+3
-1
No files found.
include/layers_id_colors_and_visibility.h
View file @
e460b4a5
/*
/*
* This program source code file is part of KiCad, a free EDA CAD application.
* This program source code file is part of KiCad, a free EDA CAD application.
*
*
* Copyright (C) 2014 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2010 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2010 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2007 KiCad Developers, see change_log.txt for contributors.
* Copyright (C) 2007 KiCad Developers, see change_log.txt for contributors.
*
*
...
@@ -106,7 +107,7 @@ enum LAYER_ID
...
@@ -106,7 +107,7 @@ enum LAYER_ID
Edge_Cuts
,
Edge_Cuts
,
Margin
,
Margin
,
F_CrtYd
,
// CrtYd &
Body
are footprint only
F_CrtYd
,
// CrtYd &
Fab
are footprint only
B_CrtYd
,
B_CrtYd
,
F_Fab
,
F_Fab
,
B_Fab
,
B_Fab
,
...
...
pcbnew/class_board.cpp
View file @
e460b4a5
...
@@ -323,11 +323,8 @@ bool BOARD::SetLayer( LAYER_ID aIndex, const LAYER& aLayer )
...
@@ -323,11 +323,8 @@ bool BOARD::SetLayer( LAYER_ID aIndex, const LAYER& aLayer )
}
}
wxString
BOARD
::
GetLayerName
(
LAYER_ID
aLayer
)
const
const
wxString
BOARD
::
GetLayerName
(
LAYER_ID
aLayer
)
const
{
{
if
(
!
IsPcbLayer
(
aLayer
)
)
return
wxEmptyString
;
// All layer names are stored in the BOARD.
// All layer names are stored in the BOARD.
if
(
IsLayerEnabled
(
aLayer
)
)
if
(
IsLayerEnabled
(
aLayer
)
)
{
{
...
...
pcbnew/class_board.h
View file @
e460b4a5
...
@@ -644,7 +644,7 @@ public:
...
@@ -644,7 +644,7 @@ public:
* @return wxString - the layer name, which for copper layers may
* @return wxString - the layer name, which for copper layers may
* be custom, else standard.
* be custom, else standard.
*/
*/
wxString
GetLayerName
(
LAYER_ID
aLayer
)
const
;
const
wxString
GetLayerName
(
LAYER_ID
aLayer
)
const
;
/**
/**
* Function SetLayerName
* Function SetLayerName
...
...
pcbnew/dialogs/dialog_copper_zones.cpp
View file @
e460b4a5
...
@@ -262,7 +262,9 @@ void DIALOG_COPPER_ZONE::initDialog()
...
@@ -262,7 +262,9 @@ void DIALOG_COPPER_ZONE::initDialog()
m_LayerId
.
push_back
(
layer
);
m_LayerId
.
push_back
(
layer
);
msg
=
board
->
GetLayerName
(
layer
).
Trim
();
msg
=
board
->
GetLayerName
(
layer
);
msg
.
Trim
();
EDA_COLOR_T
layerColor
=
board
->
GetLayerColor
(
layer
);
EDA_COLOR_T
layerColor
=
board
->
GetLayerColor
(
layer
);
...
...
pcbnew/exporters/export_gencad.cpp
View file @
e460b4a5
This diff is collapsed.
Click to expand it.
pcbnew/pcb_plot_params.cpp
View file @
e460b4a5
...
@@ -129,13 +129,10 @@ void PCB_PLOT_PARAMS::Format( OUTPUTFORMATTER* aFormatter,
...
@@ -129,13 +129,10 @@ void PCB_PLOT_PARAMS::Format( OUTPUTFORMATTER* aFormatter,
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s 0x%s)
\n
"
,
getTokenName
(
T_layerselection
),
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s 0x%s)
\n
"
,
getTokenName
(
T_layerselection
),
m_layerSelection
.
FmtHex
().
c_str
()
);
m_layerSelection
.
FmtHex
().
c_str
()
);
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %s)
\n
"
,
getTokenName
(
T_usegerberextensions
),
m_useGerberExtensions
?
trueStr
:
falseStr
);
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %s)
\n
"
,
getTokenName
(
T_usegerberextensions
),
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %s)
\n
"
,
getTokenName
(
T_usegerberextensions
),
m_useGerberExtensions
?
trueStr
:
falseStr
);
m_useGerberExtensions
?
trueStr
:
falseStr
);
if
(
m_useGerberAttributes
)
// save this option only if active,
if
(
m_useGerberAttributes
)
// save this option only if active,
// to avoid incompatibility with older Pcbnew version
// to avoid incompatibility with older Pcbnew version
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %s)
\n
"
,
getTokenName
(
T_usegerberattributes
),
trueStr
);
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %s)
\n
"
,
getTokenName
(
T_usegerberattributes
),
trueStr
);
...
@@ -153,10 +150,12 @@ void PCB_PLOT_PARAMS::Format( OUTPUTFORMATTER* aFormatter,
...
@@ -153,10 +150,12 @@ void PCB_PLOT_PARAMS::Format( OUTPUTFORMATTER* aFormatter,
m_useAuxOrigin
?
trueStr
:
falseStr
);
m_useAuxOrigin
?
trueStr
:
falseStr
);
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %d)
\n
"
,
getTokenName
(
T_hpglpennumber
),
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %d)
\n
"
,
getTokenName
(
T_hpglpennumber
),
m_HPGLPenNum
);
m_HPGLPenNum
);
// Obsolete parameter, pen speed is no more managed, because hpgl format
// is now an export format, and for this, pen speed has no meaning
// Obsolete parameter, pen speed is no more managed, because hpgl format
// aFormatter->Print( aNestLevel+1, "(%s %d)\n", getTokenName( T_hpglpenspeed ),
// is now an export format, and for this, pen speed has no meaning
// m_HPGLPenSpeed );
// aFormatter->Print( aNestLevel+1, "(%s %d)\n", getTokenName( T_hpglpenspeed ),
// m_HPGLPenSpeed );
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %d)
\n
"
,
getTokenName
(
T_hpglpenspeed
),
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %d)
\n
"
,
getTokenName
(
T_hpglpenspeed
),
m_HPGLPenSpeed
);
m_HPGLPenSpeed
);
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %d)
\n
"
,
getTokenName
(
T_hpglpendiameter
),
aFormatter
->
Print
(
aNestLevel
+
1
,
"(%s %d)
\n
"
,
getTokenName
(
T_hpglpendiameter
),
...
...
pcbnew/zones_non_copper_type_functions.cpp
View file @
e460b4a5
...
@@ -105,7 +105,9 @@ void DIALOG_NON_COPPER_ZONES_EDITOR::Init()
...
@@ -105,7 +105,9 @@ void DIALOG_NON_COPPER_ZONES_EDITOR::Init()
{
{
LAYER_ID
layer
=
*
seq
;
LAYER_ID
layer
=
*
seq
;
wxString
msg
=
m_Parent
->
GetBoard
()
->
GetLayerName
(
layer
).
Trim
();
wxString
msg
=
m_Parent
->
GetBoard
()
->
GetLayerName
(
layer
);
msg
.
Trim
();
m_LayerSelectionCtrl
->
InsertItems
(
1
,
&
msg
,
ii
);
m_LayerSelectionCtrl
->
InsertItems
(
1
,
&
msg
,
ii
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment