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
b27bbe9c
Commit
b27bbe9c
authored
Jan 13, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Eeschema+Pcbnew: code cleanup and refinements in plot SVG format
parent
19e5bc3b
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
220 additions
and
393 deletions
+220
-393
dialog_SVG_print.cpp
eeschema/dialog_SVG_print.cpp
+12
-14
general.h
eeschema/general.h
+3
-3
plot.cpp
eeschema/plot.cpp
+5
-5
plotps.cpp
eeschema/plotps.cpp
+7
-7
schframe.cpp
eeschema/schframe.cpp
+2
-3
gerbview_config.h
gerbview/gerbview_config.h
+0
-86
pcbplot.h
gerbview/pcbplot.h
+13
-6
kicad_msvc.h
include/kicad_msvc.h
+48
-0
dialog_SVG_print.cpp
pcbnew/dialog_SVG_print.cpp
+36
-34
dialog_SVG_print_base.cpp
pcbnew/dialog_SVG_print_base.cpp
+4
-4
dialog_SVG_print_base.fbp
pcbnew/dialog_SVG_print_base.fbp
+1
-1
dialog_SVG_print_base.h
pcbnew/dialog_SVG_print_base.h
+1
-1
pcbplot.cpp
pcbnew/pcbplot.cpp
+7
-9
pcbplot.h
pcbnew/pcbplot.h
+9
-5
plot_rtn.cpp
pcbnew/plot_rtn.cpp
+4
-22
plotgerb.cpp
pcbnew/plotgerb.cpp
+1
-31
plothpgl.cpp
pcbnew/plothpgl.cpp
+10
-37
plotps.cpp
pcbnew/plotps.cpp
+4
-36
print_board_functions.cpp
pcbnew/print_board_functions.cpp
+21
-20
dialog_print.cpp
share/dialog_print.cpp
+10
-10
dialog_print.h
share/dialog_print.h
+6
-5
wxprint.cpp
share/wxprint.cpp
+16
-54
No files found.
eeschema/dialog_SVG_print.cpp
View file @
b27bbe9c
...
@@ -15,9 +15,9 @@
...
@@ -15,9 +15,9 @@
#include "dcsvg.h"
#include "dcsvg.h"
#include "program.h"
#include "program.h"
#include "general.h"
// Keys for configuration
// Keys for configuration
#define PLOTSVGPENWIDTH_KEY wxT( "PlotSVGPenWidth")
#define PLOTSVGMODECOLOR_KEY wxT( "PlotSVGModeColor" )
#define PLOTSVGMODECOLOR_KEY wxT( "PlotSVGModeColor" )
extern
BASE_SCREEN
*
ActiveScreen
;
extern
BASE_SCREEN
*
ActiveScreen
;
...
@@ -25,8 +25,6 @@ extern BASE_SCREEN* ActiveScreen;
...
@@ -25,8 +25,6 @@ extern BASE_SCREEN* ActiveScreen;
#define WIDTH_MIN_VALUE 1
#define WIDTH_MIN_VALUE 1
// Variables locales
// Variables locales
static
int
s_SVGPenMinWidth
;
/* Minimum pen width (in internal units) for printing */
static
bool
s_Print_Frame_Ref
=
true
;
static
bool
s_Print_Frame_Ref
=
true
;
static
int
s_PlotBlackAndWhite
=
0
;
static
int
s_PlotBlackAndWhite
=
0
;
...
@@ -88,13 +86,13 @@ void DIALOG_SVG_PRINT::OnInitDialog( wxInitDialogEvent& event )
...
@@ -88,13 +86,13 @@ void DIALOG_SVG_PRINT::OnInitDialog( wxInitDialogEvent& event )
m_ImageXSize_mm
=
270
;
m_ImageXSize_mm
=
270
;
if
(
m_Config
)
if
(
m_Config
)
{
{
m_Config
->
Read
(
PLOTSVGPENWIDTH_KEY
,
&
s_SVGPenMin
Width
);
m_Config
->
Read
(
OPTKEY_PLOT_LINEWIDTH_VALUE
,
&
g_PlotLine_
Width
);
m_Config
->
Read
(
PLOTSVGMODECOLOR_KEY
,
&
s_PlotBlackAndWhite
);
m_Config
->
Read
(
PLOTSVGMODECOLOR_KEY
,
&
s_PlotBlackAndWhite
);
}
}
AddUnitSymbol
(
*
m_TextPenWidth
,
g_UnitMetric
);
AddUnitSymbol
(
*
m_TextPenWidth
,
g_UnitMetric
);
m_DialogPenWidth
->
SetValue
(
m_DialogPenWidth
->
SetValue
(
ReturnStringFromValue
(
g_UnitMetric
,
s_SVGPenMin
Width
,
m_Parent
->
m_InternalUnits
)
);
ReturnStringFromValue
(
g_UnitMetric
,
g_PlotLine_
Width
,
m_Parent
->
m_InternalUnits
)
);
m_Print_Sheet_Ref
->
SetValue
(
s_Print_Frame_Ref
);
m_Print_Sheet_Ref
->
SetValue
(
s_Print_Frame_Ref
);
if
(
GetSizer
())
if
(
GetSizer
())
{
{
...
@@ -107,20 +105,20 @@ void DIALOG_SVG_PRINT::OnInitDialog( wxInitDialogEvent& event )
...
@@ -107,20 +105,20 @@ void DIALOG_SVG_PRINT::OnInitDialog( wxInitDialogEvent& event )
void
DIALOG_SVG_PRINT
::
SetPenWidth
()
void
DIALOG_SVG_PRINT
::
SetPenWidth
()
/********************************************/
/********************************************/
{
{
s_SVGPenMin
Width
=
ReturnValueFromTextCtrl
(
*
m_DialogPenWidth
,
m_Parent
->
m_InternalUnits
);
g_PlotLine_
Width
=
ReturnValueFromTextCtrl
(
*
m_DialogPenWidth
,
m_Parent
->
m_InternalUnits
);
if
(
s_SVGPenMin
Width
>
WIDTH_MAX_VALUE
)
if
(
g_PlotLine_
Width
>
WIDTH_MAX_VALUE
)
{
{
s_SVGPenMin
Width
=
WIDTH_MAX_VALUE
;
g_PlotLine_
Width
=
WIDTH_MAX_VALUE
;
}
}
if
(
s_SVGPenMin
Width
<
WIDTH_MIN_VALUE
)
if
(
g_PlotLine_
Width
<
WIDTH_MIN_VALUE
)
{
{
s_SVGPenMin
Width
=
WIDTH_MIN_VALUE
;
g_PlotLine_
Width
=
WIDTH_MIN_VALUE
;
}
}
m_DialogPenWidth
->
SetValue
(
m_DialogPenWidth
->
SetValue
(
ReturnStringFromValue
(
g_UnitMetric
,
s_SVGPenMin
Width
,
m_Parent
->
m_InternalUnits
)
);
ReturnStringFromValue
(
g_UnitMetric
,
g_PlotLine_
Width
,
m_Parent
->
m_InternalUnits
)
);
}
}
...
@@ -237,8 +235,8 @@ bool DIALOG_SVG_PRINT::DrawPage( const wxString& FullFileName, BASE_SCREEN* scre
...
@@ -237,8 +235,8 @@ bool DIALOG_SVG_PRINT::DrawPage( const wxString& FullFileName, BASE_SCREEN* scre
{
{
EDA_Rect
tmp
=
panel
->
m_ClipBox
;
EDA_Rect
tmp
=
panel
->
m_ClipBox
;
GRResetPenAndBrush
(
&
dc
);
GRResetPenAndBrush
(
&
dc
);
s_SVGPenMin
Width
=
ReturnValueFromTextCtrl
(
*
m_DialogPenWidth
,
m_Parent
->
m_InternalUnits
);
g_PlotLine_
Width
=
ReturnValueFromTextCtrl
(
*
m_DialogPenWidth
,
m_Parent
->
m_InternalUnits
);
SetPenMinWidth
(
s_SVGPenMin
Width
);
SetPenMinWidth
(
g_PlotLine_
Width
);
GRForceBlackPen
(
m_ModeColorOption
->
GetSelection
()
==
0
?
FALSE
:
true
);
GRForceBlackPen
(
m_ModeColorOption
->
GetSelection
()
==
0
?
FALSE
:
true
);
...
@@ -295,7 +293,7 @@ void DIALOG_SVG_PRINT::OnCloseWindow( wxCloseEvent& event )
...
@@ -295,7 +293,7 @@ void DIALOG_SVG_PRINT::OnCloseWindow( wxCloseEvent& event )
if
(
m_Config
)
if
(
m_Config
)
{
{
s_PlotBlackAndWhite
=
m_ModeColorOption
->
GetSelection
();
s_PlotBlackAndWhite
=
m_ModeColorOption
->
GetSelection
();
m_Config
->
Write
(
PLOTSVGPENWIDTH_KEY
,
s_SVGPenMin
Width
);
m_Config
->
Write
(
OPTKEY_PLOT_LINEWIDTH_VALUE
,
g_PlotLine_
Width
);
m_Config
->
Write
(
PLOTSVGMODECOLOR_KEY
,
s_PlotBlackAndWhite
);
m_Config
->
Write
(
PLOTSVGMODECOLOR_KEY
,
s_PlotBlackAndWhite
);
}
}
EndModal
(
0
);
EndModal
(
0
);
...
...
eeschema/general.h
View file @
b27bbe9c
...
@@ -253,8 +253,8 @@ eda_global bool g_EditPinByPinIsOn /* bool: TRUE si edition des pin
...
@@ -253,8 +253,8 @@ eda_global bool g_EditPinByPinIsOn /* bool: TRUE si edition des pin
;
;
eda_global
int
g_LibSymbolDefaultLineWidth
;
/* default line width (in EESCHEMA units) used when creating a new graphic item in libedit : 0 = default */
eda_global
int
g_LibSymbolDefaultLineWidth
;
/* default line width (in EESCHEMA units) used when creating a new graphic item in libedit : 0 = default */
eda_global
int
g_DrawMinimunLineWidth
;
/* Minimum line (in EESCHEMA units)
width
used to draw items on screen; 0 = single pixel line width */
eda_global
int
g_DrawMinimunLineWidth
;
/* Minimum line (in EESCHEMA units)
thickness
used to draw items on screen; 0 = single pixel line width */
eda_global
int
g_Plot
PSMinimunLineWidth
;
/* Minimum line (in EESCHEMA units) width used to Plot items , postscript format
*/
eda_global
int
g_Plot
Line_Width
;
/* Minimum line (in EESCHEMA units) thickness used to Plot/Print items
*/
eda_global
int
g_ItemSelectetColor
// Color to draw selected items
eda_global
int
g_ItemSelectetColor
// Color to draw selected items
#ifdef MAIN
#ifdef MAIN
...
@@ -270,6 +270,6 @@ eda_global int g_InvisibleItemColor // Color to draw items flagged invis
...
@@ -270,6 +270,6 @@ eda_global int g_InvisibleItemColor // Color to draw items flagged invis
/* Config keys */
/* Config keys */
#define MINI_DRAW_LINE_WIDTH_KEY wxT( "MinimunDrawLineWidth" )
#define MINI_DRAW_LINE_WIDTH_KEY wxT( "MinimunDrawLineWidth" )
#define
MINI_PLOTPS_LINE_WIDTH_KEY wxT( "MinimunPlotPS
LineWidth" )
#define
OPTKEY_PLOT_LINEWIDTH_VALUE wxT( "Plot
LineWidth" )
#endif // _GENERAL_H_
#endif // _GENERAL_H_
eeschema/plot.cpp
View file @
b27bbe9c
...
@@ -254,7 +254,7 @@ void PlotLibPart( SCH_COMPONENT* DrawLibItem )
...
@@ -254,7 +254,7 @@ void PlotLibPart( SCH_COMPONENT* DrawLibItem )
SetCurrentLineWidth
(
-
1
);
SetCurrentLineWidth
(
-
1
);
int
thickness
=
Text
->
m_Width
;
int
thickness
=
Text
->
m_Width
;
if
(
thickness
==
0
)
//
if
(
thickness
==
0
)
//
thickness
=
MAX
(
g_Plot
PSMinimunLine
Width
,
g_DrawMinimunLineWidth
);
thickness
=
MAX
(
g_Plot
Line_
Width
,
g_DrawMinimunLineWidth
);
PlotGraphicText
(
g_PlotFormat
,
pos
,
CharColor
,
PlotGraphicText
(
g_PlotFormat
,
pos
,
CharColor
,
Text
->
m_Text
,
Text
->
m_Text
,
t1
?
TEXT_ORIENT_HORIZ
:
TEXT_ORIENT_VERT
,
t1
?
TEXT_ORIENT_HORIZ
:
TEXT_ORIENT_VERT
,
...
@@ -468,7 +468,7 @@ static void PlotTextField( SCH_COMPONENT* DrawLibItem,
...
@@ -468,7 +468,7 @@ static void PlotTextField( SCH_COMPONENT* DrawLibItem,
int
thickness
=
field
->
m_Width
;
int
thickness
=
field
->
m_Width
;
if
(
thickness
==
0
)
if
(
thickness
==
0
)
thickness
=
MAX
(
g_Plot
PSMinimunLine
Width
,
g_DrawMinimunLineWidth
);
thickness
=
MAX
(
g_Plot
Line_
Width
,
g_DrawMinimunLineWidth
);
SetCurrentLineWidth
(
thickness
);
SetCurrentLineWidth
(
thickness
);
//@todo not sure what to do here in terms of plotting components that may have multiple REFERENCE entries.
//@todo not sure what to do here in terms of plotting components that may have multiple REFERENCE entries.
...
@@ -675,7 +675,7 @@ void PlotTextStruct( EDA_BaseStruct* Struct )
...
@@ -675,7 +675,7 @@ void PlotTextStruct( EDA_BaseStruct* Struct )
}
}
if
(
thickness
==
0
)
if
(
thickness
==
0
)
thickness
=
MAX
(
g_Plot
PSMinimunLine
Width
,
g_DrawMinimunLineWidth
);
thickness
=
MAX
(
g_Plot
Line_
Width
,
g_DrawMinimunLineWidth
);
SetCurrentLineWidth
(
thickness
);
SetCurrentLineWidth
(
thickness
);
switch
(
Orient
)
switch
(
Orient
)
...
@@ -773,7 +773,7 @@ static void PlotSheetLabelStruct( Hierarchical_PIN_Sheet_Struct* Struct )
...
@@ -773,7 +773,7 @@ static void PlotSheetLabelStruct( Hierarchical_PIN_Sheet_Struct* Struct )
}
}
int
thickness
=
Struct
->
m_Width
;
int
thickness
=
Struct
->
m_Width
;
if
(
thickness
==
0
)
if
(
thickness
==
0
)
thickness
=
MAX
(
g_Plot
PSMinimunLine
Width
,
g_DrawMinimunLineWidth
);
thickness
=
MAX
(
g_Plot
Line_
Width
,
g_DrawMinimunLineWidth
);
SetCurrentLineWidth
(
thickness
);
SetCurrentLineWidth
(
thickness
);
bool
italic
=
Struct
->
m_Italic
;
bool
italic
=
Struct
->
m_Italic
;
...
@@ -843,7 +843,7 @@ void PlotSheetStruct( DrawSheetStruct* Struct )
...
@@ -843,7 +843,7 @@ void PlotSheetStruct( DrawSheetStruct* Struct )
if
(
(
g_PlotFormat
==
PLOT_FORMAT_POST
)
&&
g_PlotPSColorOpt
)
if
(
(
g_PlotFormat
==
PLOT_FORMAT_POST
)
&&
g_PlotPSColorOpt
)
SetColorMapPS
(
ReturnLayerColor
(
Struct
->
m_Layer
)
);
SetColorMapPS
(
ReturnLayerColor
(
Struct
->
m_Layer
)
);
int
thickness
=
MAX
(
g_Plot
PSMinimunLine
Width
,
g_DrawMinimunLineWidth
);
int
thickness
=
MAX
(
g_Plot
Line_
Width
,
g_DrawMinimunLineWidth
);
SetCurrentLineWidth
(
thickness
);
SetCurrentLineWidth
(
thickness
);
Move_Plume
(
Struct
->
m_Pos
,
'U'
);
Move_Plume
(
Struct
->
m_Pos
,
'U'
);
...
...
eeschema/plotps.cpp
View file @
b27bbe9c
...
@@ -271,7 +271,7 @@ void WinEDA_PlotPSFrame::CreateControls()
...
@@ -271,7 +271,7 @@ void WinEDA_PlotPSFrame::CreateControls()
SetFocus
();
// make the ESC work
SetFocus
();
// make the ESC work
m_DefaultLineSizeCtrl
=
new
WinEDA_ValueCtrl
(
this
,
_
(
m_DefaultLineSizeCtrl
=
new
WinEDA_ValueCtrl
(
this
,
_
(
"Default Line Width"
),
"Default Line Width"
),
g_Plot
PSMinimunLine
Width
,
g_Plot
Line_
Width
,
g_UnitMetric
,
m_DefaultLineSizeCtrlSizer
,
g_UnitMetric
,
m_DefaultLineSizeCtrlSizer
,
EESCHEMA_INTERNAL_UNIT
);
EESCHEMA_INTERNAL_UNIT
);
}
}
...
@@ -363,9 +363,9 @@ void WinEDA_PlotPSFrame::InitOptVars()
...
@@ -363,9 +363,9 @@ void WinEDA_PlotPSFrame::InitOptVars()
Plot_Sheet_Ref
=
m_Plot_Sheet_Ref
->
GetValue
();
Plot_Sheet_Ref
=
m_Plot_Sheet_Ref
->
GetValue
();
g_PlotPSColorOpt
=
m_PlotPSColorOption
->
GetSelection
();
g_PlotPSColorOpt
=
m_PlotPSColorOption
->
GetSelection
();
PS_SizeSelect
=
m_SizeOption
->
GetSelection
();
PS_SizeSelect
=
m_SizeOption
->
GetSelection
();
g_Plot
PSMinimunLine
Width
=
m_DefaultLineSizeCtrl
->
GetValue
();
g_Plot
Line_
Width
=
m_DefaultLineSizeCtrl
->
GetValue
();
if
(
g_Plot
PSMinimunLine
Width
<
1
)
if
(
g_Plot
Line_
Width
<
1
)
g_Plot
PSMinimunLine
Width
=
1
;
g_Plot
Line_
Width
=
1
;
}
}
...
@@ -479,7 +479,7 @@ void WinEDA_PlotPSFrame::PlotOneSheetPS( const wxString& FileName,
...
@@ -479,7 +479,7 @@ void WinEDA_PlotPSFrame::PlotOneSheetPS( const wxString& FileName,
m_MsgBox
->
AppendText
(
Line
);
m_MsgBox
->
AppendText
(
Line
);
InitPlotParametresPS
(
plot_offset
,
sheet
,
g_PlotScaleX
,
g_PlotScaleY
);
InitPlotParametresPS
(
plot_offset
,
sheet
,
g_PlotScaleX
,
g_PlotScaleY
);
SetDefaultLineWidthPS
(
g_Plot
PSMinimunLine
Width
);
SetDefaultLineWidthPS
(
g_Plot
Line_
Width
);
/* Init : */
/* Init : */
PrintHeaderPS
(
PlotOutput
,
wxT
(
"EESchema-PS"
),
FileName
,
1
,
BBox
,
wxLANDSCAPE
);
PrintHeaderPS
(
PlotOutput
,
wxT
(
"EESchema-PS"
),
FileName
,
1
,
BBox
,
wxLANDSCAPE
);
...
@@ -531,10 +531,10 @@ void WinEDA_PlotPSFrame::PlotOneSheetPS( const wxString& FileName,
...
@@ -531,10 +531,10 @@ void WinEDA_PlotPSFrame::PlotOneSheetPS( const wxString& FileName,
case
LAYER_BUS
:
/* Trait large */
case
LAYER_BUS
:
/* Trait large */
{
{
fprintf
(
PlotOutput
,
"%d setlinewidth
\n
"
,
g_Plot
PSMinimunLine
Width
*
3
);
fprintf
(
PlotOutput
,
"%d setlinewidth
\n
"
,
g_Plot
Line_
Width
*
3
);
Move_Plume
(
StartPos
,
'U'
);
Move_Plume
(
StartPos
,
'U'
);
Move_Plume
(
EndPos
,
'D'
);
Move_Plume
(
EndPos
,
'D'
);
fprintf
(
PlotOutput
,
"%d setlinewidth
\n
"
,
g_Plot
PSMinimunLine
Width
);
fprintf
(
PlotOutput
,
"%d setlinewidth
\n
"
,
g_Plot
Line_
Width
);
}
}
break
;
break
;
...
...
eeschema/schframe.cpp
View file @
b27bbe9c
...
@@ -163,7 +163,7 @@ WinEDA_SchematicFrame::WinEDA_SchematicFrame( wxWindow* father,
...
@@ -163,7 +163,7 @@ WinEDA_SchematicFrame::WinEDA_SchematicFrame( wxWindow* father,
{
{
g_DrawMinimunLineWidth
=
config
->
Read
(
MINI_DRAW_LINE_WIDTH_KEY
,
g_DrawMinimunLineWidth
=
config
->
Read
(
MINI_DRAW_LINE_WIDTH_KEY
,
(
long
)
0
);
(
long
)
0
);
g_Plot
PSMinimunLineWidth
=
config
->
Read
(
MINI_PLOTPS_LINE_WIDTH_KEY
,
g_Plot
Line_Width
=
config
->
Read
(
OPTKEY_PLOT_LINEWIDTH_VALUE
,
(
long
)
4
);
(
long
)
4
);
}
}
...
@@ -368,8 +368,7 @@ void WinEDA_SchematicFrame::OnCloseWindow( wxCloseEvent& Event )
...
@@ -368,8 +368,7 @@ void WinEDA_SchematicFrame::OnCloseWindow( wxCloseEvent& Event )
if
(
config
)
if
(
config
)
{
{
config
->
Write
(
MINI_DRAW_LINE_WIDTH_KEY
,
(
long
)
g_DrawMinimunLineWidth
);
config
->
Write
(
MINI_DRAW_LINE_WIDTH_KEY
,
(
long
)
g_DrawMinimunLineWidth
);
config
->
Write
(
MINI_PLOTPS_LINE_WIDTH_KEY
,
config
->
Write
(
OPTKEY_PLOT_LINEWIDTH_VALUE
,
(
long
)
g_PlotLine_Width
);
(
long
)
g_PlotPSMinimunLineWidth
);
}
}
Destroy
();
Destroy
();
...
...
gerbview/gerbview_config.h
View file @
b27bbe9c
...
@@ -6,7 +6,6 @@
...
@@ -6,7 +6,6 @@
#define INSETUP TRUE
#define INSETUP TRUE
static
int
Pcbdiv_grille
;
/* memorisation temporaire */
static
wxSize
TmpGrid
;
/* memorisation temporaire */
static
wxSize
TmpGrid
;
/* memorisation temporaire */
/* Liste des parametres */
/* Liste des parametres */
...
@@ -69,54 +68,6 @@ static PARAM_CFG_BOOL PadShowNumCfg // Affiche DCodes
...
@@ -69,54 +68,6 @@ static PARAM_CFG_BOOL PadShowNumCfg // Affiche DCodes
TRUE
/* Valeur par defaut */
TRUE
/* Valeur par defaut */
);
);
static
PARAM_CFG_INT
AfficheTextePcbCfg
(
wxT
(
"PcbAffT"
),
/* identification */
&
DisplayOpt
.
DisplayDrawItems
,
/* Adresse du parametre */
FILAIRE
,
/* Valeur par defaut */
0
,
2
/* Valeurs extremes */
);
static
PARAM_CFG_INT
PcbTextWidthCfg
(
wxT
(
"TxtLar"
),
/* identification */
&
g_DesignSettings
.
m_PcbTextWidth
,
/* Adresse du parametre */
120
,
/* Valeur par defaut */
0
,
0xFFFF
/* Valeurs extremes */
);
static
PARAM_CFG_INT
TextePcbDimVCfg
(
wxT
(
"TxtPcbV"
),
/* identification */
&
g_DesignSettings
.
m_PcbTextSize
.
y
,
/* Adresse du parametre */
800
,
/* Valeur par defaut */
0
,
0x7FFF
/* Valeurs extremes */
);
static
PARAM_CFG_INT
TextePcbDimHCfg
(
wxT
(
"TxtPcbH"
),
/* identification */
&
g_DesignSettings
.
m_PcbTextSize
.
x
,
/* Adresse du parametre */
600
,
/* Valeur par defaut */
0
,
0x7FFF
/* Valeurs extremes */
);
static
PARAM_CFG_INT
ScreenPcbGrilleXCfg
(
wxT
(
"PcbGridX"
),
/* identification */
&
TmpGrid
.
x
,
/* Adresse du parametre */
500
,
/* Valeur par defaut */
1
,
10000
/* Valeurs extremes */
);
static
PARAM_CFG_INT
ScreenPcbGrilleYCfg
(
wxT
(
"PcbGridY"
),
/* identification */
&
TmpGrid
.
y
,
/* Adresse du parametre */
500
,
/* Valeur par defaut */
1
,
10000
/* Valeurs extremes */
);
static
PARAM_CFG_SETCOLOR
ColorLayer0Cfg
static
PARAM_CFG_SETCOLOR
ColorLayer0Cfg
(
(
INSETUP
,
INSETUP
,
...
@@ -446,22 +397,6 @@ static PARAM_CFG_INT EdgeSegmLargeurCfg
...
@@ -446,22 +397,6 @@ static PARAM_CFG_INT EdgeSegmLargeurCfg
0
,
10000
/* Valeurs extremes */
0
,
10000
/* Valeurs extremes */
);
);
static
PARAM_CFG_INT
FormatPlotCfg
(
wxT
(
"ForPlot"
),
/* identification */
&
format_plot
,
/* Adresse du parametre */
1
,
/* Valeur par defaut */
0
,
3
/* Valeurs extremes */
);
static
PARAM_CFG_INT
WTraitSerigraphiePlotCfg
// Epaiss Trait Serigraphie(mils)
(
wxT
(
"WpenSer"
),
/* identification */
&
W_Trait_Serigraphie
,
/* Adresse du parametre */
12
,
/* Valeur par defaut */
0
,
1000
/* Valeurs extremes */
);
static
PARAM_CFG_DOUBLE
UserGrilleXCfg
static
PARAM_CFG_DOUBLE
UserGrilleXCfg
(
(
wxT
(
"UserGrX"
),
/* identification */
wxT
(
"UserGrX"
),
/* identification */
...
@@ -486,14 +421,6 @@ static PARAM_CFG_INT UserGrilleUnitCfg // USER Grid Unit (inches/mm)
...
@@ -486,14 +421,6 @@ static PARAM_CFG_INT UserGrilleUnitCfg // USER Grid Unit (inches/mm)
0
,
1
/* Valeurs extremes */
0
,
1
/* Valeurs extremes */
);
);
static
PARAM_CFG_INT
DivGrillePcbCfg
(
wxT
(
"DivGrPc"
),
/* identification */
&
Pcbdiv_grille
,
/* Adresse du parametre */
1
,
/* Valeur par defaut */
1
,
10
/* Valeurs extremes */
);
static
PARAM_CFG_INT
TimeOutCfg
static
PARAM_CFG_INT
TimeOutCfg
(
(
wxT
(
"TimeOut"
),
/* identification */
wxT
(
"TimeOut"
),
/* identification */
...
@@ -529,12 +456,6 @@ static PARAM_CFG_BASE * ParamCfgList[] =
...
@@ -529,12 +456,6 @@ static PARAM_CFG_BASE * ParamCfgList[] =
&
SegmFillCfg
,
&
SegmFillCfg
,
&
PadFillCfg
,
&
PadFillCfg
,
&
PadShowNumCfg
,
&
PadShowNumCfg
,
&
AfficheTextePcbCfg
,
&
TextePcbDimVCfg
,
&
PcbTextWidthCfg
,
&
TextePcbDimHCfg
,
&
ScreenPcbGrilleXCfg
,
&
ScreenPcbGrilleYCfg
,
&
ColorLayer0Cfg
,
&
ColorLayer0Cfg
,
&
ColorLayer1Cfg
,
&
ColorLayer1Cfg
,
&
ColorLayer2Cfg
,
&
ColorLayer2Cfg
,
...
@@ -569,19 +490,12 @@ static PARAM_CFG_BASE * ParamCfgList[] =
...
@@ -569,19 +490,12 @@ static PARAM_CFG_BASE * ParamCfgList[] =
&
ColorLayer31Cfg
,
&
ColorLayer31Cfg
,
&
ColorpcbGrilleCfg
,
&
ColorpcbGrilleCfg
,
&
ColorDCodesCfg
,
&
ColorDCodesCfg
,
&
HPGLpenNumCfg
,
&
HPGLdiamCfg
,
&
HPGLspeedCfg
,
&
HPGLrecouvrementCfg
,
&
GERBERSpotMiniCfg
,
&
GERBERSpotMiniCfg
,
&
DrawSegmLargeurCfg
,
&
DrawSegmLargeurCfg
,
&
EdgeSegmLargeurCfg
,
&
EdgeSegmLargeurCfg
,
&
FormatPlotCfg
,
&
WTraitSerigraphiePlotCfg
,
&
UserGrilleXCfg
,
&
UserGrilleXCfg
,
&
UserGrilleYCfg
,
&
UserGrilleYCfg
,
&
UserGrilleUnitCfg
,
&
UserGrilleUnitCfg
,
&
DivGrillePcbCfg
,
&
TimeOutCfg
,
&
TimeOutCfg
,
&
DisplPolairCfg
,
&
DisplPolairCfg
,
&
CursorShapeCfg
,
&
CursorShapeCfg
,
...
...
gerbview/pcbplot.h
View file @
b27bbe9c
/******************
*************************************
/
/******************/
/*
Menu General de Trace (PLOT): Fichier inclus PLOT.H
*/
/*
file pcbplot.h
*/
/******************
*************************************
/
/******************/
#ifndef PCBPLOT_H
#ifndef PCBPLOT_H
#define PCBPLOT_H
#define PCBPLOT_H
...
@@ -9,6 +9,13 @@
...
@@ -9,6 +9,13 @@
#define eda_global extern
#define eda_global extern
#endif
#endif
/* Shared Config keys for plot and print */
#define OPTKEY_PLOT_LINEWIDTH_VALUE wxT( "PlotLineWidth" )
#define OPTKEY_LAYERBASE wxT( "PlotLayer_%d" )
#define OPTKEY_PRINT_X_FINESCALE_ADJ wxT( "PrintXFineScaleAdj" )
#define OPTKEY_PRINT_Y_FINESCALE_ADJ wxT( "PrintYFineScaleAdj" )
#define OPTKEY_PRINT_SCALE wxT( "PrintScale" )
/* Gestion des plumes en plot format HPGL */
/* Gestion des plumes en plot format HPGL */
eda_global
int
HPGL_Pen_Num
,
/* num de plume a charger */
eda_global
int
HPGL_Pen_Num
,
/* num de plume a charger */
HPGL_Pen_Speed
,
/* vitesse en cm/s */
HPGL_Pen_Speed
,
/* vitesse en cm/s */
...
@@ -17,10 +24,10 @@ eda_global int HPGL_Pen_Num, /* num de plume a charger */
...
@@ -17,10 +24,10 @@ eda_global int HPGL_Pen_Num, /* num de plume a charger */
eda_global
float
Scale_X
,
Scale_Y
;
/* coeff d'agrandissement en X et Y demandes */
eda_global
float
Scale_X
,
Scale_Y
;
/* coeff d'agrandissement en X et Y demandes */
eda_global
int
W_Trait_Serigraphie
;
/* Largeur du trait utilise en serigraphie
pour trace de pads (traces en mode sketch) */
eda_global
int
format_plot
;
/* numero de code du format de sortie */
eda_global
int
PlotMarge
;
eda_global
int
PlotMarge
;
eda_global
int
g_PlotLine_Width
;
/* Largeur du trait en mode filaire (utilise en serigraphie,
pour traces en mode sketch et filaire) */
#endif // ifndef PCBPLOT_H
#endif // ifndef PCBPLOT_H
include/kicad_msvc.h
0 → 100644
View file @
b27bbe9c
/******************************************************************/
/* kicad_msvc.h : used to compile kicad with Microsoft Visual C++ */
/******************************************************************/
// __MSVC__ must be defined
//
// there are several issues
// 1 - the EXCHG macro uses the typeof keyword, this is unsupported in MSVC
// 2 - there is no round function in the msvc math library
// see ReadMe-MSVC. txt to view list of all changes to sources
//
#ifndef __KICAD_MSVC_ INC__
#define __KICAD_MSVC_ INC__
#ifdef __MSVC__
// the boost libs have a workaround for the typeof problem
#ifdef _MSC_VER
#if ( _MSC_VER <= 1310 ) // 6.5 7.0 and 7.1 use the msvc bug
#include <boost/typeof/ msvc/typeof_ impl.hpp>
#else // 8.0 or greater
#include <boost/typeof/ typeof.hpp>
// we have to register the types used with the typeof keyword with boost
BOOST_TYPEOF_
REGISTER_
TYPE
(
wxPoint
)
;
BOOST_TYPEOF_
REGISTER_
TYPE
(
wxSize
)
;
BOOST_TYPEOF_
REGISTER_
TYPE
(
wxString
)
;
class
DrawSheetLabelStruc
t
;
BOOST_TYPEOF_
REGISTER_
TYPE
(
DrawSheetLa
belStruct
*
);
class
EDA_BaseStruct
;
BOOST_TYPEOF_
REGISTER_
TYPE
(
EDA_
BaseStruct
*
);
class
D_PAD
;
BOOST_TYPEOF_
REGISTER_
TYPE
(
D_PAD
*
);
BOOST_TYPEOF_
REGISTER_
TYPE
(
const
D_PAD
*
);
class
BOARD_ITEM
;
BOOST_TYPEOF_
REGISTER_
TYPE
(
BOARD_
ITEM
*
);
#endif // _MSC_VER <= 1310
#define typeof(expr) BOOST_TYPEOF( expr)
#endif // def _MSC_VER
inline
double
round
(
double
x
)
{
return
x
>=
0
.
5
?
ceil
(
x
)
:
floor
(
x
);
}
#endif // def __MSVC__
#endif // ndef __KICAD_MSVC_ INC__
pcbnew/dialog_SVG_print.cpp
View file @
b27bbe9c
...
@@ -15,18 +15,17 @@
...
@@ -15,18 +15,17 @@
#include "dcsvg.h"
#include "dcsvg.h"
#include "pcbnew.h"
#include "pcbnew.h"
#include "pcbplot.h"
// Keys for configuration
// Keys for configuration
#define PLOTSVGPENWIDTH_KEY wxT( "PlotSVGPenWidth" )
#define PLOTSVGMODECOLOR_KEY wxT( "PlotSVGModeColor" )
#define PLOTSVGMODECOLOR_KEY wxT( "PlotSVGModeColor" )
#define OPTKEY_LAYERBASE wxT( "PlotLayer_%d" )
#define WIDTH_MAX_VALUE 100
// reasonnable values for default pen width (in 1/10000 inch)
#define WIDTH_MAX_VALUE 500
#define WIDTH_MIN_VALUE 1
#define WIDTH_MIN_VALUE 1
// Variables locales
// Local variables:
static
int
s_SVGPenMinWidth
;
/* Minimum pen width (in internal units) for printing */
static
int
s_PrintPenMinWidth
=
1
;
static
bool
s_Print_Frame_Ref
=
true
;
static
bool
s_Print_Frame_Ref
=
true
;
static
int
s_PlotBlackAndWhite
=
0
;
static
int
s_PlotBlackAndWhite
=
0
;
static
long
s_SelectedLayers
=
CUIVRE_LAYER
|
CMP_LAYER
|
static
long
s_SelectedLayers
=
CUIVRE_LAYER
|
CMP_LAYER
|
...
@@ -53,8 +52,8 @@ private:
...
@@ -53,8 +52,8 @@ private:
void
OnButtonCancelClick
(
wxCommandEvent
&
event
);
void
OnButtonCancelClick
(
wxCommandEvent
&
event
);
void
OnSetColorModeSelected
(
wxCommandEvent
&
event
);
void
OnSetColorModeSelected
(
wxCommandEvent
&
event
);
void
SetPenWidth
();
void
SetPenWidth
();
void
PrintSVGDoc
(
bool
aPrintAll
,
bool
aPrint_
She
et_Ref
);
void
PrintSVGDoc
(
bool
aPrintAll
,
bool
aPrint_
Fram
et_Ref
);
bool
DrawPage
(
const
wxString
&
FullFileName
,
BASE_SCREEN
*
screen
,
bool
aPrint_
She
et_Ref
);
bool
DrawPage
(
const
wxString
&
FullFileName
,
BASE_SCREEN
*
screen
,
bool
aPrint_
Fram
et_Ref
);
};
};
/*******************************************************/
/*******************************************************/
...
@@ -92,14 +91,15 @@ void DIALOG_SVG_PRINT::OnInitDialog( wxInitDialogEvent& event )
...
@@ -92,14 +91,15 @@ void DIALOG_SVG_PRINT::OnInitDialog( wxInitDialogEvent& event )
m_ImageXSize_mm
=
270
;
m_ImageXSize_mm
=
270
;
if
(
m_Config
)
if
(
m_Config
)
{
{
m_Config
->
Read
(
PLOTSVGPENWIDTH_KEY
,
&
s_SVG
PenMinWidth
);
m_Config
->
Read
(
OPTKEY_PLOT_LINEWIDTH_VALUE
,
&
s_Print
PenMinWidth
);
m_Config
->
Read
(
PLOTSVGMODECOLOR_KEY
,
&
s_PlotBlackAndWhite
);
m_Config
->
Read
(
PLOTSVGMODECOLOR_KEY
,
&
s_PlotBlackAndWhite
);
}
}
AddUnitSymbol
(
*
m_TextPenWidth
,
g_UnitMetric
);
AddUnitSymbol
(
*
m_TextPenWidth
,
g_UnitMetric
);
m_DialogPenWidth
->
SetValue
(
m_DialogPenWidth
->
SetValue
(
ReturnStringFromValue
(
g_UnitMetric
,
s_SVGPenMinWidth
,
m_Parent
->
m_InternalUnits
)
);
ReturnStringFromValue
(
g_UnitMetric
,
s_PrintPenMinWidth
,
m_Parent
->
m_InternalUnits
)
);
m_Print_Sheet_Ref
->
SetValue
(
s_Print_Frame_Ref
);
m_Print_Frame_Ref_Ctrl
->
SetValue
(
s_Print_Frame_Ref
);
// Create layers list
// Create layers list
BOARD
*
board
=
m_Parent
->
GetBoard
();
BOARD
*
board
=
m_Parent
->
GetBoard
();
...
@@ -139,29 +139,29 @@ void DIALOG_SVG_PRINT::OnInitDialog( wxInitDialogEvent& event )
...
@@ -139,29 +139,29 @@ void DIALOG_SVG_PRINT::OnInitDialog( wxInitDialogEvent& event )
}
}
/***********************************
*********
/
/***********************************/
void
DIALOG_SVG_PRINT
::
SetPenWidth
()
void
DIALOG_SVG_PRINT
::
SetPenWidth
()
/***********************************
*********
/
/***********************************/
{
{
s_
SVG
PenMinWidth
=
ReturnValueFromTextCtrl
(
*
m_DialogPenWidth
,
m_Parent
->
m_InternalUnits
);
s_
Print
PenMinWidth
=
ReturnValueFromTextCtrl
(
*
m_DialogPenWidth
,
m_Parent
->
m_InternalUnits
);
if
(
s_
SVG
PenMinWidth
>
WIDTH_MAX_VALUE
)
if
(
s_
Print
PenMinWidth
>
WIDTH_MAX_VALUE
)
{
{
s_
SVG
PenMinWidth
=
WIDTH_MAX_VALUE
;
s_
Print
PenMinWidth
=
WIDTH_MAX_VALUE
;
}
}
if
(
s_
SVG
PenMinWidth
<
WIDTH_MIN_VALUE
)
if
(
s_
Print
PenMinWidth
<
WIDTH_MIN_VALUE
)
{
{
s_
SVG
PenMinWidth
=
WIDTH_MIN_VALUE
;
s_
Print
PenMinWidth
=
WIDTH_MIN_VALUE
;
}
}
m_DialogPenWidth
->
SetValue
(
m_DialogPenWidth
->
SetValue
(
ReturnStringFromValue
(
g_UnitMetric
,
s_
SVG
PenMinWidth
,
m_Parent
->
m_InternalUnits
)
);
ReturnStringFromValue
(
g_UnitMetric
,
s_
Print
PenMinWidth
,
m_Parent
->
m_InternalUnits
)
);
}
}
/***************************************************************************/
/***************************************************************************/
void
DIALOG_SVG_PRINT
::
PrintSVGDoc
(
bool
aPrintAll
,
bool
aPrint_
She
et_Ref
)
void
DIALOG_SVG_PRINT
::
PrintSVGDoc
(
bool
aPrintAll
,
bool
aPrint_
Fram
et_Ref
)
/***************************************************************************/
/***************************************************************************/
{
{
wxString
msg
;
wxString
msg
;
...
@@ -186,7 +186,9 @@ void DIALOG_SVG_PRINT::PrintSVGDoc( bool aPrintAll, bool aPrint_Sheet_Ref )
...
@@ -186,7 +186,9 @@ void DIALOG_SVG_PRINT::PrintSVGDoc( bool aPrintAll, bool aPrint_Sheet_Ref )
ChangeFileNameExt
(
FullFileName
,
wxT
(
""
)
);
ChangeFileNameExt
(
FullFileName
,
wxT
(
""
)
);
}
}
if
(
!
aPrintAll
)
if
(
aPrintAll
)
FullFileName
+=
wxT
(
"-brd"
);
else
{
{
FullFileName
<<
wxT
(
"-"
)
<<
m_BoxSelectLayer
[
layer
]
->
GetLabel
(
);
FullFileName
<<
wxT
(
"-"
)
<<
m_BoxSelectLayer
[
layer
]
->
GetLabel
(
);
m_PrintMaskLayer
=
1
<<
layer
;
m_PrintMaskLayer
=
1
<<
layer
;
...
@@ -195,9 +197,9 @@ void DIALOG_SVG_PRINT::PrintSVGDoc( bool aPrintAll, bool aPrint_Sheet_Ref )
...
@@ -195,9 +197,9 @@ void DIALOG_SVG_PRINT::PrintSVGDoc( bool aPrintAll, bool aPrint_Sheet_Ref )
}
}
FullFileName
+=
wxT
(
".svg"
);
FullFileName
+=
wxT
(
".svg"
);
bool
success
=
DrawPage
(
FullFileName
,
screen
,
aPrint_
She
et_Ref
);
bool
success
=
DrawPage
(
FullFileName
,
screen
,
aPrint_
Fram
et_Ref
);
msg
=
_
(
"Create file "
)
+
FullFileName
;
msg
=
_
(
"Create file "
)
+
FullFileName
;
if
(
!
success
)
if
(
!
success
)
msg
+=
_
(
" error"
);
msg
+=
_
(
" error"
);
...
@@ -210,10 +212,10 @@ void DIALOG_SVG_PRINT::PrintSVGDoc( bool aPrintAll, bool aPrint_Sheet_Ref )
...
@@ -210,10 +212,10 @@ void DIALOG_SVG_PRINT::PrintSVGDoc( bool aPrintAll, bool aPrint_Sheet_Ref )
}
}
/*****************************************************************/
/*****************************************************************
*****************
/
bool
DIALOG_SVG_PRINT
::
DrawPage
(
const
wxString
&
FullFileName
,
BASE_SCREEN
*
screen
,
bool
DIALOG_SVG_PRINT
::
DrawPage
(
const
wxString
&
FullFileName
,
BASE_SCREEN
*
screen
,
bool
aPrint_
She
et_Ref
)
bool
aPrint_
Fram
et_Ref
)
/*****************************************************************/
/*****************************************************************
******************
/
/*
/*
* Routine effective d'impression
* Routine effective d'impression
...
@@ -252,8 +254,8 @@ bool DIALOG_SVG_PRINT::DrawPage( const wxString& FullFileName, BASE_SCREEN* scre
...
@@ -252,8 +254,8 @@ bool DIALOG_SVG_PRINT::DrawPage( const wxString& FullFileName, BASE_SCREEN* scre
{
{
EDA_Rect
tmp
=
panel
->
m_ClipBox
;
EDA_Rect
tmp
=
panel
->
m_ClipBox
;
GRResetPenAndBrush
(
&
dc
);
GRResetPenAndBrush
(
&
dc
);
s_
SVG
PenMinWidth
=
ReturnValueFromTextCtrl
(
*
m_DialogPenWidth
,
m_Parent
->
m_InternalUnits
);
s_
Print
PenMinWidth
=
ReturnValueFromTextCtrl
(
*
m_DialogPenWidth
,
m_Parent
->
m_InternalUnits
);
SetPenMinWidth
(
s_
SVG
PenMinWidth
);
SetPenMinWidth
(
s_
Print
PenMinWidth
);
GRForceBlackPen
(
m_ModeColorOption
->
GetSelection
()
==
0
?
FALSE
:
true
);
GRForceBlackPen
(
m_ModeColorOption
->
GetSelection
()
==
0
?
FALSE
:
true
);
...
@@ -262,7 +264,7 @@ bool DIALOG_SVG_PRINT::DrawPage( const wxString& FullFileName, BASE_SCREEN* scre
...
@@ -262,7 +264,7 @@ bool DIALOG_SVG_PRINT::DrawPage( const wxString& FullFileName, BASE_SCREEN* scre
g_IsPrinting
=
true
;
g_IsPrinting
=
true
;
SetLocaleTo_C_standard
();
// Switch the locale to standard C (needed to print floating point numbers like 1.3)
SetLocaleTo_C_standard
();
// Switch the locale to standard C (needed to print floating point numbers like 1.3)
panel
->
PrintPage
(
&
dc
,
aPrint_
She
et_Ref
,
m_PrintMaskLayer
,
false
);
panel
->
PrintPage
(
&
dc
,
aPrint_
Fram
et_Ref
,
m_PrintMaskLayer
,
false
);
SetLocaleTo_Default
();
// revert to the current locale
SetLocaleTo_Default
();
// revert to the current locale
g_IsPrinting
=
FALSE
;
g_IsPrinting
=
FALSE
;
panel
->
m_ClipBox
=
tmp
;
panel
->
m_ClipBox
=
tmp
;
...
@@ -284,8 +286,8 @@ bool DIALOG_SVG_PRINT::DrawPage( const wxString& FullFileName, BASE_SCREEN* scre
...
@@ -284,8 +286,8 @@ bool DIALOG_SVG_PRINT::DrawPage( const wxString& FullFileName, BASE_SCREEN* scre
void
DIALOG_SVG_PRINT
::
OnButtonPrintBoardClick
(
wxCommandEvent
&
event
)
void
DIALOG_SVG_PRINT
::
OnButtonPrintBoardClick
(
wxCommandEvent
&
event
)
/********************************************************************/
/********************************************************************/
{
{
s_Print_Frame_Ref
=
m_Print_
Sheet_Ref
->
GetValue
(
);
s_Print_Frame_Ref
=
m_Print_
Frame_Ref_Ctrl
->
IsChecked
(
);
PrintSVGDoc
(
true
,
m_Print_Sheet_Ref
->
GetValue
()
);
PrintSVGDoc
(
true
,
s_Print_Frame_Ref
);
}
}
...
@@ -293,8 +295,8 @@ void DIALOG_SVG_PRINT::OnButtonPrintBoardClick( wxCommandEvent& event )
...
@@ -293,8 +295,8 @@ void DIALOG_SVG_PRINT::OnButtonPrintBoardClick( wxCommandEvent& event )
void
DIALOG_SVG_PRINT
::
OnButtonPrintSelectedClick
(
wxCommandEvent
&
event
)
void
DIALOG_SVG_PRINT
::
OnButtonPrintSelectedClick
(
wxCommandEvent
&
event
)
/********************************************************************/
/********************************************************************/
{
{
s_Print_Frame_Ref
=
m_Print_
Sheet_Ref
->
GetValue
(
);
s_Print_Frame_Ref
=
m_Print_
Frame_Ref_Ctrl
->
IsChecked
(
);
PrintSVGDoc
(
false
,
m_Print_Sheet_Ref
->
GetValue
()
);
PrintSVGDoc
(
false
,
s_Print_Frame_Ref
);
}
}
...
@@ -313,7 +315,7 @@ void DIALOG_SVG_PRINT::OnCloseWindow( wxCloseEvent& event )
...
@@ -313,7 +315,7 @@ void DIALOG_SVG_PRINT::OnCloseWindow( wxCloseEvent& event )
if
(
m_Config
)
if
(
m_Config
)
{
{
s_PlotBlackAndWhite
=
m_ModeColorOption
->
GetSelection
();
s_PlotBlackAndWhite
=
m_ModeColorOption
->
GetSelection
();
m_Config
->
Write
(
PLOTSVGPENWIDTH_KEY
,
s_SVG
PenMinWidth
);
m_Config
->
Write
(
OPTKEY_PLOT_LINEWIDTH_VALUE
,
s_Print
PenMinWidth
);
m_Config
->
Write
(
PLOTSVGMODECOLOR_KEY
,
s_PlotBlackAndWhite
);
m_Config
->
Write
(
PLOTSVGMODECOLOR_KEY
,
s_PlotBlackAndWhite
);
wxString
layerKey
;
wxString
layerKey
;
for
(
int
layer
=
0
;
layer
<
NB_LAYERS
;
++
layer
)
for
(
int
layer
=
0
;
layer
<
NB_LAYERS
;
++
layer
)
...
...
pcbnew/dialog_SVG_print_base.cpp
View file @
b27bbe9c
...
@@ -52,12 +52,12 @@ DIALOG_SVG_PRINT_base::DIALOG_SVG_PRINT_base( wxWindow* parent, wxWindowID id, c
...
@@ -52,12 +52,12 @@ DIALOG_SVG_PRINT_base::DIALOG_SVG_PRINT_base( wxWindow* parent, wxWindowID id, c
sbOptionsSizer
->
Add
(
m_ModeColorOption
,
0
,
wxALL
|
wxEXPAND
,
5
);
sbOptionsSizer
->
Add
(
m_ModeColorOption
,
0
,
wxALL
|
wxEXPAND
,
5
);
m_Print_
Sheet_Ref
=
new
wxCheckBox
(
this
,
wxID_ANY
,
_
(
"Print Frame Ref"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_Print_
Frame_Ref_Ctrl
=
new
wxCheckBox
(
this
,
wxID_ANY
,
_
(
"Print Frame Ref"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_Print_
Sheet_Ref
->
SetValue
(
true
);
m_Print_
Frame_Ref_Ctrl
->
SetValue
(
true
);
m_Print_
Sheet_Ref
->
SetToolTip
(
_
(
"Print (or not) the Frame references."
)
);
m_Print_
Frame_Ref_Ctrl
->
SetToolTip
(
_
(
"Print (or not) the Frame references."
)
);
sbOptionsSizer
->
Add
(
m_Print_
Sheet_Ref
,
0
,
wxALL
,
5
);
sbOptionsSizer
->
Add
(
m_Print_
Frame_Ref_Ctrl
,
0
,
wxALL
,
5
);
m_PrintBoardEdgesCtrl
=
new
wxCheckBox
(
this
,
wxID_ANY
,
_
(
"Print Board Edges"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_PrintBoardEdgesCtrl
=
new
wxCheckBox
(
this
,
wxID_ANY
,
_
(
"Print Board Edges"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_PrintBoardEdgesCtrl
->
SetValue
(
true
);
m_PrintBoardEdgesCtrl
->
SetValue
(
true
);
...
...
pcbnew/dialog_SVG_print_base.fbp
View file @
b27bbe9c
...
@@ -314,7 +314,7 @@
...
@@ -314,7 +314,7 @@
<property
name=
"label"
>
Print Frame Ref
</property>
<property
name=
"label"
>
Print Frame Ref
</property>
<property
name=
"maximum_size"
></property>
<property
name=
"maximum_size"
></property>
<property
name=
"minimum_size"
></property>
<property
name=
"minimum_size"
></property>
<property
name=
"name"
>
m_Print_
Sheet_Ref
</property>
<property
name=
"name"
>
m_Print_
Frame_Ref_Ctrl
</property>
<property
name=
"permission"
>
protected
</property>
<property
name=
"permission"
>
protected
</property>
<property
name=
"pos"
></property>
<property
name=
"pos"
></property>
<property
name=
"size"
></property>
<property
name=
"size"
></property>
...
...
pcbnew/dialog_SVG_print_base.h
View file @
b27bbe9c
...
@@ -45,7 +45,7 @@ class DIALOG_SVG_PRINT_base : public wxDialog
...
@@ -45,7 +45,7 @@ class DIALOG_SVG_PRINT_base : public wxDialog
wxStaticText
*
m_TextPenWidth
;
wxStaticText
*
m_TextPenWidth
;
wxTextCtrl
*
m_DialogPenWidth
;
wxTextCtrl
*
m_DialogPenWidth
;
wxRadioBox
*
m_ModeColorOption
;
wxRadioBox
*
m_ModeColorOption
;
wxCheckBox
*
m_Print_
Sheet_Ref
;
wxCheckBox
*
m_Print_
Frame_Ref_Ctrl
;
wxCheckBox
*
m_PrintBoardEdgesCtrl
;
wxCheckBox
*
m_PrintBoardEdgesCtrl
;
wxButton
*
m_buttonPrintSelected
;
wxButton
*
m_buttonPrintSelected
;
wxButton
*
m_buttonBoard
;
wxButton
*
m_buttonBoard
;
...
...
pcbnew/pcbplot.cpp
View file @
b27bbe9c
...
@@ -19,11 +19,9 @@
...
@@ -19,11 +19,9 @@
#define OPTKEY_EDGELAYER_GERBER wxT( "EdgeLayerGerberOpt" )
#define OPTKEY_EDGELAYER_GERBER wxT( "EdgeLayerGerberOpt" )
#define OPTKEY_XFINESCALE_ADJ wxT( "PlotXFineScaleAdj" )
#define OPTKEY_XFINESCALE_ADJ wxT( "PlotXFineScaleAdj" )
#define OPTKEY_YFINESCALE_ADJ wxT( "PlotYFineScaleAdj" )
#define OPTKEY_YFINESCALE_ADJ wxT( "PlotYFineScaleAdj" )
#define OPTKEY_LAYERBASE wxT( "PlotLayer_%d" )
#define OPTKEY_PADS_ON_SILKSCREEN wxT( "PlotPadsOnSilkscreen" )
#define OPTKEY_PADS_ON_SILKSCREEN wxT( "PlotPadsOnSilkscreen" )
#define OPTKEY_ALWAYS_PRINT_PADS wxT( "PlotAlwaysPads" )
#define OPTKEY_ALWAYS_PRINT_PADS wxT( "PlotAlwaysPads" )
#define OPTKEY_OUTPUT_FORMAT wxT( "PlotOutputFormat" )
#define OPTKEY_OUTPUT_FORMAT wxT( "PlotOutputFormat" )
#define OPTKEY_LINEWIDTH_VALUE wxT( "PlotLineWidth" )
static
long
s_SelectedLayers
=
CUIVRE_LAYER
|
CMP_LAYER
|
static
long
s_SelectedLayers
=
CUIVRE_LAYER
|
CMP_LAYER
|
...
@@ -203,7 +201,7 @@ void WinEDA_PlotFrame::OnInitDialog( wxInitDialogEvent& event )
...
@@ -203,7 +201,7 @@ void WinEDA_PlotFrame::OnInitDialog( wxInitDialogEvent& event )
if
(
config
)
if
(
config
)
{
{
config
->
Read
(
OPTKEY_OUTPUT_FORMAT
,
&
g_PlotFormat
);
config
->
Read
(
OPTKEY_OUTPUT_FORMAT
,
&
g_PlotFormat
);
config
->
Read
(
OPTKEY_LINEWIDTH_VALUE
,
&
g_PlotLine_Width
);
config
->
Read
(
OPTKEY_
PLOT_
LINEWIDTH_VALUE
,
&
g_PlotLine_Width
);
}
}
m_PlotFormatOpt
->
SetSelection
(
g_PlotFormat
);
m_PlotFormatOpt
->
SetSelection
(
g_PlotFormat
);
...
@@ -345,11 +343,11 @@ void WinEDA_PlotFrame::OnInitDialog( wxInitDialogEvent& event )
...
@@ -345,11 +343,11 @@ void WinEDA_PlotFrame::OnInitDialog( wxInitDialogEvent& event )
{
{
m_Plot_Sheet_Ref
=
new
wxCheckBox
(
this
,
ID_PRINT_REF
,
_
(
"Print sheet ref"
)
);
m_Plot_Sheet_Ref
=
new
wxCheckBox
(
this
,
ID_PRINT_REF
,
_
(
"Print sheet ref"
)
);
m_Plot_Sheet_Ref
->
SetValue
(
Plot_Sheet
_Ref
);
m_Plot_Sheet_Ref
->
SetValue
(
g_Plot_Frame
_Ref
);
LeftBoxSizer
->
Add
(
m_Plot_Sheet_Ref
,
0
,
wxGROW
|
wxALL
,
1
);
LeftBoxSizer
->
Add
(
m_Plot_Sheet_Ref
,
0
,
wxGROW
|
wxALL
,
1
);
}
}
else
else
Plot_Sheet
_Ref
=
false
;
g_Plot_Frame
_Ref
=
false
;
// Option to plot pads on silkscreen layers or all layers
// Option to plot pads on silkscreen layers or all layers
m_Plot_Pads_on_Silkscreen
=
new
wxCheckBox
(
this
,
ID_PRINT_PAD_ON_SILKSCREEN
,
m_Plot_Pads_on_Silkscreen
=
new
wxCheckBox
(
this
,
ID_PRINT_PAD_ON_SILKSCREEN
,
...
@@ -426,7 +424,7 @@ void WinEDA_PlotFrame::OnInitDialog( wxInitDialogEvent& event )
...
@@ -426,7 +424,7 @@ void WinEDA_PlotFrame::OnInitDialog( wxInitDialogEvent& event )
wxDefaultPosition
,
wxDefaultSize
,
wxDefaultPosition
,
wxDefaultSize
,
3
,
list_opt3
,
1
);
3
,
list_opt3
,
1
);
m_PlotModeOpt
->
SetSelection
(
Plot_Mode
);
m_PlotModeOpt
->
SetSelection
(
g_
Plot_Mode
);
MidLeftBoxSizer
->
Add
(
m_PlotModeOpt
,
0
,
wxGROW
|
wxALL
,
5
);
MidLeftBoxSizer
->
Add
(
m_PlotModeOpt
,
0
,
wxGROW
|
wxALL
,
5
);
m_PlotMirorOpt
=
new
wxCheckBox
(
this
,
ID_MIROR_OPT
,
m_PlotMirorOpt
=
new
wxCheckBox
(
this
,
ID_MIROR_OPT
,
...
@@ -575,7 +573,7 @@ void WinEDA_PlotFrame::SaveOptPlot( wxCommandEvent& event )
...
@@ -575,7 +573,7 @@ void WinEDA_PlotFrame::SaveOptPlot( wxCommandEvent& event )
g_Exclude_Edges_Pcb
=
m_Exclude_Edges_Pcb
->
GetValue
();
g_Exclude_Edges_Pcb
=
m_Exclude_Edges_Pcb
->
GetValue
();
if
(
m_Plot_Sheet_Ref
)
if
(
m_Plot_Sheet_Ref
)
Plot_Sheet
_Ref
=
m_Plot_Sheet_Ref
->
GetValue
();
g_Plot_Frame
_Ref
=
m_Plot_Sheet_Ref
->
GetValue
();
PlotPadsOnSilkLayer
=
m_Plot_Pads_on_Silkscreen
->
GetValue
();
PlotPadsOnSilkLayer
=
m_Plot_Pads_on_Silkscreen
->
GetValue
();
Plot_Pads_All_Layers
=
m_Force_Plot_Pads
->
GetValue
();
Plot_Pads_All_Layers
=
m_Force_Plot_Pads
->
GetValue
();
...
@@ -594,7 +592,7 @@ void WinEDA_PlotFrame::SaveOptPlot( wxCommandEvent& event )
...
@@ -594,7 +592,7 @@ void WinEDA_PlotFrame::SaveOptPlot( wxCommandEvent& event )
g_PlotOrient
=
PLOT_MIROIR
;
g_PlotOrient
=
PLOT_MIROIR
;
else
else
g_PlotOrient
=
0
;
g_PlotOrient
=
0
;
Plot_Mode
=
m_PlotModeOpt
->
GetSelection
();
g_
Plot_Mode
=
m_PlotModeOpt
->
GetSelection
();
g_DrawViaOnMaskLayer
=
m_PlotNoViaOnMaskOpt
->
GetValue
();
g_DrawViaOnMaskLayer
=
m_PlotNoViaOnMaskOpt
->
GetValue
();
g_HPGL_Pen_Diam
=
m_HPGLPenSizeOpt
->
GetValue
();
g_HPGL_Pen_Diam
=
m_HPGLPenSizeOpt
->
GetValue
();
...
@@ -619,7 +617,7 @@ void WinEDA_PlotFrame::SaveOptPlot( wxCommandEvent& event )
...
@@ -619,7 +617,7 @@ void WinEDA_PlotFrame::SaveOptPlot( wxCommandEvent& event )
int
formatNdx
=
m_PlotFormatOpt
->
GetSelection
();
int
formatNdx
=
m_PlotFormatOpt
->
GetSelection
();
config
->
Write
(
OPTKEY_OUTPUT_FORMAT
,
formatNdx
);
config
->
Write
(
OPTKEY_OUTPUT_FORMAT
,
formatNdx
);
config
->
Write
(
OPTKEY_LINEWIDTH_VALUE
,
g_PlotLine_Width
);
config
->
Write
(
OPTKEY_
PLOT_
LINEWIDTH_VALUE
,
g_PlotLine_Width
);
wxString
layerKey
;
wxString
layerKey
;
for
(
int
layer
=
0
;
layer
<
NB_LAYERS
;
++
layer
)
for
(
int
layer
=
0
;
layer
<
NB_LAYERS
;
++
layer
)
...
...
pcbnew/pcbplot.h
View file @
b27bbe9c
...
@@ -10,6 +10,12 @@
...
@@ -10,6 +10,12 @@
#define eda_global extern
#define eda_global extern
#endif
#endif
/* Shared Config keys for plot and print */
#define OPTKEY_PLOT_LINEWIDTH_VALUE wxT( "PlotLineWidth" )
#define OPTKEY_LAYERBASE wxT( "PlotLayer_%d" )
#define OPTKEY_PRINT_X_FINESCALE_ADJ wxT( "PrintXFineScaleAdj" )
#define OPTKEY_PRINT_Y_FINESCALE_ADJ wxT( "PrintYFineScaleAdj" )
#define OPTKEY_PRINT_SCALE wxT( "PrintScale" )
/* Constantes de conversion d'unites */
/* Constantes de conversion d'unites */
/* coeff de conversion dim en 0.1 mil -> dim en unite PS: (unite PS = pouce) */
/* coeff de conversion dim en 0.1 mil -> dim en unite PS: (unite PS = pouce) */
...
@@ -23,9 +29,9 @@ eda_global bool g_Exclude_Edges_Pcb // True to exclude contents of Edges Pcb la
...
@@ -23,9 +29,9 @@ eda_global bool g_Exclude_Edges_Pcb // True to exclude contents of Edges Pcb la
=
FALSE
=
FALSE
#endif
#endif
;
;
eda_global
bool
Plot_Sheet_Ref
;
eda_global
bool
g_Plot_Frame_Ref
;
// True to plot/print frame references
eda_global
bool
g_DrawViaOnMaskLayer
;
// True if vias are drawn on Mask layer (ie protected by mask)
eda_global
bool
g_DrawViaOnMaskLayer
;
// True if vias are drawn on Mask layer (ie protected by mask)
eda_global
int
Plot_Mode
// = FILAIRE, FILL ou
SKETCH
eda_global
int
g_Plot_Mode
// = FILAIRE, FILL or
SKETCH
#ifdef MAIN
#ifdef MAIN
=
FILLED
=
FILLED
#endif
#endif
...
@@ -84,10 +90,8 @@ eda_global int g_HPGL_Pen_Recouvrement; /* recouvrement en mils ( pour remplis
...
@@ -84,10 +90,8 @@ eda_global int g_HPGL_Pen_Recouvrement; /* recouvrement en mils ( pour remplis
eda_global
float
Scale_X
,
Scale_Y
;
/* coeff d'agrandissement en X et Y demandes */
eda_global
float
Scale_X
,
Scale_Y
;
/* coeff d'agrandissement en X et Y demandes */
eda_global
wxPoint
g_PlotOffset
;
/* Offset de trace modifies par l'echelle */
eda_global
wxPoint
g_PlotOffset
;
/* Offset de trace modifies par l'echelle */
eda_global
int
nb_plot_erreur
;
eda_global
int
nb_items
;
/* utilise pour decompter les objets traces */
eda_global
int
g_PlotLine_Width
;
/* Largeur du trait en mode filaire (utilise en serigraphie,
eda_global
int
g_PlotLine_Width
;
/* Largeur du trait en mode filaire (utilise en serigraphie,
pour traces en mode sketch et filaire) */
pour traces en mode sketch et filaire) */
eda_global
int
g_PlotFormat
/* id for plot format (see enum PlotFormat in plot_common.h) */
eda_global
int
g_PlotFormat
/* id for plot format (see enum PlotFormat in plot_common.h) */
#ifdef MAIN
#ifdef MAIN
...
...
pcbnew/plot_rtn.cpp
View file @
b27bbe9c
...
@@ -70,9 +70,6 @@ void WinEDA_BasePcbFrame::Plot_Serigraphie( int format_plot,
...
@@ -70,9 +70,6 @@ void WinEDA_BasePcbFrame::Plot_Serigraphie( int format_plot,
/* Trace des MODULES : PADS */
/* Trace des MODULES : PADS */
if
(
PlotPadsOnSilkLayer
||
Plot_Pads_All_Layers
)
if
(
PlotPadsOnSilkLayer
||
Plot_Pads_All_Layers
)
{
{
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
56
,
wxT
(
"Pads"
),
wxEmptyString
,
GREEN
);
for
(
MODULE
*
Module
=
m_Pcb
->
m_Modules
;
Module
;
Module
=
Module
->
Next
()
)
for
(
MODULE
*
Module
=
m_Pcb
->
m_Modules
;
Module
;
Module
=
Module
->
Next
()
)
{
{
pt_pad
=
(
D_PAD
*
)
Module
->
m_Pads
;
pt_pad
=
(
D_PAD
*
)
Module
->
m_Pads
;
...
@@ -182,17 +179,11 @@ void WinEDA_BasePcbFrame::Plot_Serigraphie( int format_plot,
...
@@ -182,17 +179,11 @@ void WinEDA_BasePcbFrame::Plot_Serigraphie( int format_plot,
}
}
break
;
break
;
}
}
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
56
,
wxEmptyString
,
msg
,
GREEN
);
}
}
}
}
}
/* Fin Sequence de trace des Pads */
}
/* Fin Sequence de trace des Pads */
/* Trace Textes MODULES */
/* Trace Textes MODULES */
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
64
,
wxT
(
"TxtMod"
),
wxEmptyString
,
LIGHTBLUE
);
for
(
MODULE
*
Module
=
m_Pcb
->
m_Modules
;
Module
;
Module
=
Module
->
Next
()
)
for
(
MODULE
*
Module
=
m_Pcb
->
m_Modules
;
Module
;
Module
=
Module
->
Next
()
)
{
{
/* Analyse des autorisations de trace pour les textes VALEUR et REF */
/* Analyse des autorisations de trace pour les textes VALEUR et REF */
...
@@ -243,17 +234,11 @@ void WinEDA_BasePcbFrame::Plot_Serigraphie( int format_plot,
...
@@ -243,17 +234,11 @@ void WinEDA_BasePcbFrame::Plot_Serigraphie( int format_plot,
if
(
trace_ref
)
if
(
trace_ref
)
{
{
PlotTextModule
(
Module
->
m_Reference
,
format_plot
);
PlotTextModule
(
Module
->
m_Reference
,
format_plot
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
64
,
wxEmptyString
,
msg
,
LIGHTBLUE
);
}
}
if
(
trace_val
)
if
(
trace_val
)
{
{
PlotTextModule
(
Module
->
m_Value
,
format_plot
);
PlotTextModule
(
Module
->
m_Value
,
format_plot
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
64
,
wxEmptyString
,
msg
,
LIGHTBLUE
);
}
}
pt_texte
=
(
TEXTE_MODULE
*
)
Module
->
m_Drawings
.
GetFirst
();
pt_texte
=
(
TEXTE_MODULE
*
)
Module
->
m_Drawings
.
GetFirst
();
...
@@ -283,9 +268,6 @@ void WinEDA_BasePcbFrame::Plot_Serigraphie( int format_plot,
...
@@ -283,9 +268,6 @@ void WinEDA_BasePcbFrame::Plot_Serigraphie( int format_plot,
continue
;
continue
;
PlotTextModule
(
pt_texte
,
format_plot
);
PlotTextModule
(
pt_texte
,
format_plot
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
64
,
wxEmptyString
,
msg
,
LIGHTBLUE
);
}
}
}
}
...
@@ -318,7 +300,7 @@ static void PlotTextModule( TEXTE_MODULE* pt_texte, int format_plot )
...
@@ -318,7 +300,7 @@ static void PlotTextModule( TEXTE_MODULE* pt_texte, int format_plot )
orient
=
pt_texte
->
GetDrawRotation
();
orient
=
pt_texte
->
GetDrawRotation
();
thickness
=
pt_texte
->
m_Width
;
thickness
=
pt_texte
->
m_Width
;
if
(
Plot_Mode
==
FILAIRE
)
if
(
g_
Plot_Mode
==
FILAIRE
)
thickness
=
g_PlotLine_Width
;
thickness
=
g_PlotLine_Width
;
if
(
pt_texte
->
m_Mirror
)
if
(
pt_texte
->
m_Mirror
)
...
@@ -475,7 +457,7 @@ void Plot_1_EdgeModule( int format_plot, EDGE_MODULE* PtEdge )
...
@@ -475,7 +457,7 @@ void Plot_1_EdgeModule( int format_plot, EDGE_MODULE* PtEdge )
type_trace
=
PtEdge
->
m_Shape
;
type_trace
=
PtEdge
->
m_Shape
;
thickness
=
PtEdge
->
m_Width
;
thickness
=
PtEdge
->
m_Width
;
if
(
Plot_Mode
==
FILAIRE
)
if
(
g_
Plot_Mode
==
FILAIRE
)
thickness
=
g_PlotLine_Width
;
thickness
=
g_PlotLine_Width
;
pos
=
PtEdge
->
m_Start
;
pos
=
PtEdge
->
m_Start
;
...
@@ -653,7 +635,7 @@ void PlotDrawSegment( DRAWSEGMENT* pt_segm, int Format, int masque_layer )
...
@@ -653,7 +635,7 @@ void PlotDrawSegment( DRAWSEGMENT* pt_segm, int Format, int masque_layer )
return
;
return
;
thickness
=
pt_segm
->
m_Width
;
thickness
=
pt_segm
->
m_Width
;
if
(
Plot_Mode
==
FILAIRE
)
if
(
g_
Plot_Mode
==
FILAIRE
)
thickness
=
g_PlotLine_Width
;
thickness
=
g_PlotLine_Width
;
start
=
pt_segm
->
m_Start
;
start
=
pt_segm
->
m_Start
;
...
@@ -788,7 +770,7 @@ void PlotArc( int format_plot, wxPoint centre, int start_angle, int end_angle,
...
@@ -788,7 +770,7 @@ void PlotArc( int format_plot, wxPoint centre, int start_angle, int end_angle,
int
ox
,
oy
,
fx
,
fy
;
int
ox
,
oy
,
fx
,
fy
;
int
delta
;
/* increment (en 0.1 degres) angulaire pour trace de cercles */
int
delta
;
/* increment (en 0.1 degres) angulaire pour trace de cercles */
if
(
Plot_Mode
==
FILAIRE
)
if
(
g_
Plot_Mode
==
FILAIRE
)
thickness
=
g_PlotLine_Width
;
thickness
=
g_PlotLine_Width
;
if
(
IsPostScript
(
format_plot
)
)
if
(
IsPostScript
(
format_plot
)
)
...
...
pcbnew/plotgerb.cpp
View file @
b27bbe9c
...
@@ -112,8 +112,6 @@ void WinEDA_BasePcbFrame::Genere_GERBER( const wxString& FullFileName, int Layer
...
@@ -112,8 +112,6 @@ void WinEDA_BasePcbFrame::Genere_GERBER( const wxString& FullFileName, int Layer
Write_Header_GERBER
(
g_Main_Title
,
g_Plot_PlotOutputFile
);
Write_Header_GERBER
(
g_Main_Title
,
g_Plot_PlotOutputFile
);
nb_plot_erreur
=
0
;
int
layer_mask
=
g_TabOneLayerMask
[
Layer
];
int
layer_mask
=
g_TabOneLayerMask
[
Layer
];
// Specify that the contents of the "Edges Pcb" layer are also to be
// Specify that the contents of the "Edges Pcb" layer are also to be
...
@@ -219,8 +217,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
...
@@ -219,8 +217,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
}
}
/* Draw footprints shapes without pads (pads will plotted later) */
/* Draw footprints shapes without pads (pads will plotted later) */
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
38
,
wxT
(
"DrawMod"
),
wxEmptyString
,
GREEN
);
Module
=
m_Pcb
->
m_Modules
;
Module
=
m_Pcb
->
m_Modules
;
for
(
;
Module
!=
NULL
;
Module
=
(
MODULE
*
)
Module
->
Next
()
)
for
(
;
Module
!=
NULL
;
Module
=
(
MODULE
*
)
Module
->
Next
()
)
{
{
...
@@ -241,8 +237,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
...
@@ -241,8 +237,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
}
}
/* Plot footprint pads */
/* Plot footprint pads */
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
48
,
wxT
(
"Pads"
),
wxEmptyString
,
GREEN
);
Module
=
m_Pcb
->
m_Modules
;
Module
=
m_Pcb
->
m_Modules
;
for
(
;
Module
!=
NULL
;
Module
=
(
MODULE
*
)
Module
->
Next
()
)
for
(
;
Module
!=
NULL
;
Module
=
(
MODULE
*
)
Module
->
Next
()
)
{
{
...
@@ -262,8 +256,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
...
@@ -262,8 +256,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
if
(
size
.
x
<=
0
||
size
.
y
<=
0
)
if
(
size
.
x
<=
0
||
size
.
y
<=
0
)
continue
;
continue
;
nb_items
++
;
switch
(
PtPad
->
m_PadShape
)
switch
(
PtPad
->
m_PadShape
)
{
{
case
PAD_CIRCLE
:
case
PAD_CIRCLE
:
...
@@ -292,17 +284,12 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
...
@@ -292,17 +284,12 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
PlotRectangularPad_GERBER
(
pos
,
size
,
PtPad
->
m_Orient
);
PlotRectangularPad_GERBER
(
pos
,
size
,
PtPad
->
m_Orient
);
break
;
break
;
}
}
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
48
,
wxEmptyString
,
msg
,
GREEN
);
}
}
}
}
/* Plot vias : */
/* Plot vias : */
if
(
tracevia
)
if
(
tracevia
)
{
{
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
56
,
wxT
(
"Vias"
),
wxEmptyString
,
RED
);
for
(
track
=
m_Pcb
->
m_Track
;
track
!=
NULL
;
track
=
(
TRACK
*
)
track
->
Next
()
)
for
(
track
=
m_Pcb
->
m_Track
;
track
!=
NULL
;
track
=
(
TRACK
*
)
track
->
Next
()
)
{
{
if
(
track
->
Type
()
!=
TYPE_VIA
)
if
(
track
->
Type
()
!=
TYPE_VIA
)
...
@@ -326,15 +313,10 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
...
@@ -326,15 +313,10 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
if
(
size
.
x
<=
0
)
if
(
size
.
x
<=
0
)
continue
;
continue
;
Plot_1_CIRCLE_pad_GERBER
(
pos
,
size
.
x
);
Plot_1_CIRCLE_pad_GERBER
(
pos
,
size
.
x
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
56
,
wxEmptyString
,
msg
,
RED
);
}
}
}
}
/* Plot tracks (not vias) : */
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
64
,
wxT
(
"Tracks"
),
wxEmptyString
,
YELLOW
);
/* Plot tracks (not vias) : */
for
(
track
=
m_Pcb
->
m_Track
;
track
!=
NULL
;
track
=
(
TRACK
*
)
track
->
Next
()
)
for
(
track
=
m_Pcb
->
m_Track
;
track
!=
NULL
;
track
=
(
TRACK
*
)
track
->
Next
()
)
{
{
wxPoint
end
;
wxPoint
end
;
...
@@ -350,17 +332,9 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
...
@@ -350,17 +332,9 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
SelectD_CODE_For_LineDraw
(
size
.
x
);
SelectD_CODE_For_LineDraw
(
size
.
x
);
PlotGERBERLine
(
pos
,
end
,
size
.
x
);
PlotGERBERLine
(
pos
,
end
,
size
.
x
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
64
,
wxEmptyString
,
msg
,
YELLOW
);
}
}
/* Plot zones: */
/* Plot zones: */
nb_items
=
0
;
if
(
m_Pcb
->
m_Zone
)
Affiche_1_Parametre
(
this
,
72
,
wxT
(
"Zones "
),
wxEmptyString
,
YELLOW
);
for
(
track
=
m_Pcb
->
m_Zone
;
track
!=
NULL
;
track
=
(
TRACK
*
)
track
->
Next
()
)
for
(
track
=
m_Pcb
->
m_Zone
;
track
!=
NULL
;
track
=
(
TRACK
*
)
track
->
Next
()
)
{
{
wxPoint
end
;
wxPoint
end
;
...
@@ -374,10 +348,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
...
@@ -374,10 +348,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_GERBER( FILE* File, int masque_layer,
SelectD_CODE_For_LineDraw
(
size
.
x
);
SelectD_CODE_For_LineDraw
(
size
.
x
);
PlotGERBERLine
(
pos
,
end
,
size
.
x
);
PlotGERBERLine
(
pos
,
end
,
size
.
x
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
72
,
wxEmptyString
,
msg
,
YELLOW
);
}
}
/* Plot filled ares */
/* Plot filled ares */
...
...
pcbnew/plothpgl.cpp
View file @
b27bbe9c
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
static
int
pen_rayon
;
/* Rayon de la plume en unites pcb */
static
int
pen_rayon
;
/* Rayon de la plume en unites pcb */
static
int
pen_diam
;
/* Diametre de la plume en unites pcb */
static
int
pen_diam
;
/* Diametre de la plume en unites pcb */
static
int
pen_recouvrement
;
/* recouvrement en remplissage en unites pcb */
static
int
pen_recouvrement
;
/* recouvrement en remplissage en unites pcb */
static
int
s_Nb_Plot_Errors
;
// Error count (errors when a line thichness is less than pen width
/* Routines Locales */
/* Routines Locales */
...
@@ -32,7 +33,7 @@ void WinEDA_BasePcbFrame::Genere_HPGL( const wxString& FullFileName, int Layer )
...
@@ -32,7 +33,7 @@ void WinEDA_BasePcbFrame::Genere_HPGL( const wxString& FullFileName, int Layer )
int
marge
=
0
*
U_PCB
;
// Extra margin (set to 0)
int
marge
=
0
*
U_PCB
;
// Extra margin (set to 0)
bool
Center
=
FALSE
;
bool
Center
=
FALSE
;
modetrace
=
Plot_Mode
;
modetrace
=
g_
Plot_Mode
;
/* Calcul des echelles de conversion */
/* Calcul des echelles de conversion */
scale_x
=
Scale_X
*
SCALE_HPGL
;
scale_x
=
Scale_X
*
SCALE_HPGL
;
...
@@ -51,7 +52,7 @@ void WinEDA_BasePcbFrame::Genere_HPGL( const wxString& FullFileName, int Layer )
...
@@ -51,7 +52,7 @@ void WinEDA_BasePcbFrame::Genere_HPGL( const wxString& FullFileName, int Layer )
pen_diam
=
(
int
)
round
(
(
g_HPGL_Pen_Diam
*
U_PCB
)
/
Scale_X
);
// Assume Scale_X # Scale_Y
pen_diam
=
(
int
)
round
(
(
g_HPGL_Pen_Diam
*
U_PCB
)
/
Scale_X
);
// Assume Scale_X # Scale_Y
pen_rayon
=
pen_diam
/
2
;
pen_rayon
=
pen_diam
/
2
;
nb_plot_erreur
=
0
;
s_Nb_Plot_Errors
=
0
;
// compute pen_recouvrement (from g_HPGL_Pen_Recouvrement in mils)
// compute pen_recouvrement (from g_HPGL_Pen_Recouvrement in mils)
// with plot scale
// with plot scale
...
@@ -75,7 +76,7 @@ void WinEDA_BasePcbFrame::Genere_HPGL( const wxString& FullFileName, int Layer )
...
@@ -75,7 +76,7 @@ void WinEDA_BasePcbFrame::Genere_HPGL( const wxString& FullFileName, int Layer )
PrintHeaderHPGL
(
dest
,
g_HPGL_Pen_Speed
,
g_HPGL_Pen_Num
);
PrintHeaderHPGL
(
dest
,
g_HPGL_Pen_Speed
,
g_HPGL_Pen_Num
);
if
(
Plot_Sheet
_Ref
&&
(
g_PlotScaleOpt
==
1
)
)
if
(
g_Plot_Frame
_Ref
&&
(
g_PlotScaleOpt
==
1
)
)
{
{
int
tmp
=
g_PlotOrient
;
g_PlotOrient
=
0
;
int
tmp
=
g_PlotOrient
;
g_PlotOrient
=
0
;
InitPlotParametresHPGL
(
g_PlotOffset
,
scale_x
,
scale_y
,
g_PlotOrient
);
InitPlotParametresHPGL
(
g_PlotOffset
,
scale_x
,
scale_y
,
g_PlotOrient
);
...
@@ -206,9 +207,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -206,9 +207,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
BOARD_ITEM
*
PtStruct
;
BOARD_ITEM
*
PtStruct
;
wxString
msg
;
wxString
msg
;
// (Following command has been superceded by new command on line 135.)
// masque_layer |= EDGE_LAYER; /* Les elements de la couche EDGE sont tj traces */
/* trace des elements type Drawings Pcb : */
/* trace des elements type Drawings Pcb : */
PtStruct
=
m_Pcb
->
m_Drawings
;
PtStruct
=
m_Pcb
->
m_Drawings
;
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Next
()
)
for
(
;
PtStruct
!=
NULL
;
PtStruct
=
PtStruct
->
Next
()
)
...
@@ -245,8 +243,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -245,8 +243,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
}
}
/* Trace des Elements des modules autres que pads */
/* Trace des Elements des modules autres que pads */
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
48
,
wxT
(
"DrawMod"
),
wxEmptyString
,
GREEN
);
Module
=
m_Pcb
->
m_Modules
;
Module
=
m_Pcb
->
m_Modules
;
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
{
{
...
@@ -268,8 +264,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -268,8 +264,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
}
}
/* Trace des Elements des modules : Pastilles */
/* Trace des Elements des modules : Pastilles */
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
48
,
wxT
(
"Pads "
),
wxEmptyString
,
GREEN
);
Module
=
m_Pcb
->
m_Modules
;
Module
=
m_Pcb
->
m_Modules
;
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
{
{
...
@@ -285,8 +279,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -285,8 +279,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
size
=
PtPad
->
m_Size
;
size
=
PtPad
->
m_Size
;
size
.
x
+=
garde
*
2
;
size
.
y
+=
garde
*
2
;
size
.
x
+=
garde
*
2
;
size
.
y
+=
garde
*
2
;
nb_items
++
;
switch
(
PtPad
->
m_PadShape
&
0x7F
)
switch
(
PtPad
->
m_PadShape
&
0x7F
)
{
{
case
PAD_CIRCLE
:
case
PAD_CIRCLE
:
...
@@ -314,9 +306,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -314,9 +306,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
PtPad
->
m_Orient
,
modetrace
);
PtPad
->
m_Orient
,
modetrace
);
break
;
break
;
}
}
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
48
,
wxT
(
"Pads"
),
msg
,
GREEN
);
}
}
}
}
...
@@ -324,10 +313,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -324,10 +313,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
if
(
tracevia
)
if
(
tracevia
)
{
{
TRACK
*
pts
;
TRACK
*
pts
;
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
56
,
wxT
(
"Vias"
),
wxEmptyString
,
RED
);
for
(
pts
=
m_Pcb
->
m_Track
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
for
(
pts
=
m_Pcb
->
m_Track
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
{
{
if
(
pts
->
Type
()
!=
TYPE_VIA
)
if
(
pts
->
Type
()
!=
TYPE_VIA
)
...
@@ -350,16 +335,12 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -350,16 +335,12 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
size
.
x
=
Via
->
m_Width
+
(
garde
*
2
);
size
.
x
=
Via
->
m_Width
+
(
garde
*
2
);
trace_1_pastille_RONDE_HPGL
(
start
,
size
.
x
,
modetrace
);
trace_1_pastille_RONDE_HPGL
(
start
,
size
.
x
,
modetrace
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
56
,
wxT
(
"Vias"
),
msg
,
RED
);
}
}
fputs
(
"PU;
\n
"
,
dest
);
fputs
(
"PU;
\n
"
,
dest
);
}
}
/* trace des segments pistes */
/* trace des segments pistes */
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
64
,
wxT
(
"Tracks "
),
wxEmptyString
,
YELLOW
);
for
(
pts
=
m_Pcb
->
m_Track
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
for
(
pts
=
m_Pcb
->
m_Track
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
{
{
if
(
pts
->
Type
()
==
TYPE_VIA
)
if
(
pts
->
Type
()
==
TYPE_VIA
)
...
@@ -378,7 +359,7 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -378,7 +359,7 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
/* Trace d'un segment de piste */
/* Trace d'un segment de piste */
trace_1_segment_HPGL
(
start
.
x
,
start
.
y
,
end
.
x
,
end
.
y
,
size
.
x
);
trace_1_segment_HPGL
(
start
.
x
,
start
.
y
,
end
.
x
,
end
.
y
,
size
.
x
);
/* Complement de Trace en mode Remplissage */
/* Complement de Trace en mode Remplissage */
if
(
(
Plot_Mode
==
FILLED
)
&&
(
pen_diam
<=
size
.
x
)
)
if
(
(
g_
Plot_Mode
==
FILLED
)
&&
(
pen_diam
<=
size
.
x
)
)
{
{
while
(
(
size
.
x
-=
(
int
)
(
(
pen_rayon
-
pen_recouvrement
)
*
2
)
)
>
0
)
while
(
(
size
.
x
-=
(
int
)
(
(
pen_rayon
-
pen_recouvrement
)
*
2
)
)
>
0
)
{
{
...
@@ -389,14 +370,9 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -389,14 +370,9 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
if
(
size
.
x
>
pen_diam
)
if
(
size
.
x
>
pen_diam
)
trace_1_pastille_RONDE_HPGL
(
end
,
size
.
x
,
modetrace
);
trace_1_pastille_RONDE_HPGL
(
end
,
size
.
x
,
modetrace
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
64
,
wxEmptyString
,
msg
,
YELLOW
);
}
}
/* trace des segments pistes et zones */
/* trace des segments pistes et zones */
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
64
,
wxT
(
"Zones "
),
wxEmptyString
,
YELLOW
);
for
(
pts
=
m_Pcb
->
m_Zone
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
for
(
pts
=
m_Pcb
->
m_Zone
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
{
{
if
(
g_TabOneLayerMask
[
pts
->
GetLayer
()]
&
masque_layer
)
if
(
g_TabOneLayerMask
[
pts
->
GetLayer
()]
&
masque_layer
)
...
@@ -411,7 +387,7 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -411,7 +387,7 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
/* Trace d'un segment de piste */
/* Trace d'un segment de piste */
trace_1_segment_HPGL
(
start
.
x
,
start
.
y
,
end
.
x
,
end
.
y
,
size
.
x
);
trace_1_segment_HPGL
(
start
.
x
,
start
.
y
,
end
.
x
,
end
.
y
,
size
.
x
);
/* Complement de Trace en mode Remplissage */
/* Complement de Trace en mode Remplissage */
if
(
(
Plot_Mode
==
FILLED
)
&&
(
pen_diam
<=
size
.
x
)
)
if
(
(
g_
Plot_Mode
==
FILLED
)
&&
(
pen_diam
<=
size
.
x
)
)
{
{
while
(
(
size
.
x
-=
(
int
)
(
(
pen_rayon
-
pen_recouvrement
)
*
2
)
)
>
0
)
while
(
(
size
.
x
-=
(
int
)
(
(
pen_rayon
-
pen_recouvrement
)
*
2
)
)
>
0
)
{
{
...
@@ -422,9 +398,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
...
@@ -422,9 +398,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_HPGL( FILE* File, int masque_layer,
if
(
size
.
x
>
pen_diam
)
if
(
size
.
x
>
pen_diam
)
trace_1_pastille_RONDE_HPGL
(
end
,
size
.
x
,
modetrace
);
trace_1_pastille_RONDE_HPGL
(
end
,
size
.
x
,
modetrace
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
64
,
wxEmptyString
,
msg
,
YELLOW
);
}
}
}
}
}
}
...
@@ -513,7 +486,7 @@ void trace_1_pastille_RONDE_HPGL( wxPoint pos, int diametre, int modetrace )
...
@@ -513,7 +486,7 @@ void trace_1_pastille_RONDE_HPGL( wxPoint pos, int diametre, int modetrace )
if
(
rayon
<
0
)
if
(
rayon
<
0
)
{
{
rayon
=
0
;
nb_plot_erreur
++
;
rayon
=
0
;
s_Nb_Plot_Errors
++
;
}
}
wxSize
rsize
(
rayon
,
rayon
);
wxSize
rsize
(
rayon
,
rayon
);
...
@@ -563,7 +536,7 @@ void PlotRectangularPad_HPGL( wxPoint padpos, wxSize padsize,
...
@@ -563,7 +536,7 @@ void PlotRectangularPad_HPGL( wxPoint padpos, wxSize padsize,
if
(
(
size
.
x
<
0
)
||
(
size
.
y
<
0
)
)
if
(
(
size
.
x
<
0
)
||
(
size
.
y
<
0
)
)
{
{
nb_plot_erreur
++
;
s_Nb_Plot_Errors
++
;
}
}
if
(
size
.
x
<
0
)
if
(
size
.
x
<
0
)
size
.
x
=
0
;
if
(
size
.
y
<
0
)
size
.
x
=
0
;
if
(
size
.
y
<
0
)
...
@@ -810,10 +783,10 @@ void trace_1_segment_HPGL( int pos_X0, int pos_Y0, int pos_X1, int pos_Y1,
...
@@ -810,10 +783,10 @@ void trace_1_segment_HPGL( int pos_X0, int pos_Y0, int pos_X1, int pos_Y1,
dh
=
(
epaisseur
-
(
int
)
pen_diam
)
/
2
;
dh
=
(
epaisseur
-
(
int
)
pen_diam
)
/
2
;
if
(
dh
<
0
)
if
(
dh
<
0
)
{
{
dh
=
0
;
nb_plot_erreur
++
;
dh
=
0
;
s_Nb_Plot_Errors
++
;
}
}
if
(
(
dh
==
0
)
||
(
Plot_Mode
==
FILAIRE
)
)
/* Le trace se reduit a 1 trait */
if
(
(
dh
==
0
)
||
(
g_
Plot_Mode
==
FILAIRE
)
)
/* Le trace se reduit a 1 trait */
{
{
Move_Plume_HPGL
(
wxPoint
(
pos_X0
,
pos_Y0
),
'U'
);
Move_Plume_HPGL
(
wxPoint
(
pos_X0
,
pos_Y0
),
'U'
);
Move_Plume_HPGL
(
wxPoint
(
pos_X1
,
pos_Y1
),
'D'
);
Move_Plume_HPGL
(
wxPoint
(
pos_X1
,
pos_Y1
),
'D'
);
...
...
pcbnew/plotps.cpp
View file @
b27bbe9c
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
/*************************************/
/*************************************/
#include "fctsys.h"
#include "fctsys.h"
#include "gr_basic.h"
#include "common.h"
#include "common.h"
#include "plot_common.h"
#include "plot_common.h"
...
@@ -11,10 +10,6 @@
...
@@ -11,10 +10,6 @@
#include "pcbplot.h"
#include "pcbplot.h"
#include "trigo.h"
#include "trigo.h"
#include "protos.h"
#include "wx/defs.h"
// Routines Locales
// Routines Locales
static
void
PrintDrillMark
(
BOARD
*
Pcb
);
static
void
PrintDrillMark
(
BOARD
*
Pcb
);
...
@@ -60,7 +55,7 @@ void WinEDA_BasePcbFrame::Genere_PS( const wxString& FullFileName, int Layer, bo
...
@@ -60,7 +55,7 @@ void WinEDA_BasePcbFrame::Genere_PS( const wxString& FullFileName, int Layer, bo
if
(
g_PlotScaleOpt
!=
1
)
if
(
g_PlotScaleOpt
!=
1
)
Center
=
TRUE
;
// Echelle != 1 donc trace centree du PCB
Center
=
TRUE
;
// Echelle != 1 donc trace centree du PCB
modetrace
=
Plot_Mode
;
modetrace
=
g_
Plot_Mode
;
scale_format
=
1.0
;
scale_format
=
1.0
;
// Set default line width
// Set default line width
...
@@ -100,7 +95,7 @@ void WinEDA_BasePcbFrame::Genere_PS( const wxString& FullFileName, int Layer, bo
...
@@ -100,7 +95,7 @@ void WinEDA_BasePcbFrame::Genere_PS( const wxString& FullFileName, int Layer, bo
SetDefaultLineWidthPS
(
g_PlotLine_Width
);
SetDefaultLineWidthPS
(
g_PlotLine_Width
);
PrintHeaderPS
(
dest
,
wxT
(
"PCBNEW-PS"
),
FullFileName
,
1
,
BBox
,
wxLANDSCAPE
);
PrintHeaderPS
(
dest
,
wxT
(
"PCBNEW-PS"
),
FullFileName
,
1
,
BBox
,
wxLANDSCAPE
);
if
(
Plot_Sheet
_Ref
)
if
(
g_Plot_Frame
_Ref
)
{
{
int
tmp
=
g_PlotOrient
;
int
tmp
=
g_PlotOrient
;
g_PlotOrient
=
0
;
g_PlotOrient
=
0
;
...
@@ -120,7 +115,7 @@ void WinEDA_BasePcbFrame::Genere_PS( const wxString& FullFileName, int Layer, bo
...
@@ -120,7 +115,7 @@ void WinEDA_BasePcbFrame::Genere_PS( const wxString& FullFileName, int Layer, bo
{
{
float
Xscale
,
Yscale
;
float
Xscale
,
Yscale
;
int
noprint_size
=
2
*
PlotMarge_in_mils
*
U_PCB
;
int
noprint_size
=
2
*
PlotMarge_in_mils
*
U_PCB
;
if
(
Plot_Sheet
_Ref
)
if
(
g_Plot_Frame
_Ref
)
noprint_size
+=
500
*
U_PCB
;
noprint_size
+=
500
*
U_PCB
;
Xscale
=
(
float
)
(
PaperSize
.
x
-
noprint_size
)
/
BoardSize
.
x
;
Xscale
=
(
float
)
(
PaperSize
.
x
-
noprint_size
)
/
BoardSize
.
x
;
Yscale
=
(
float
)
(
PaperSize
.
y
-
noprint_size
)
/
BoardSize
.
y
;
Yscale
=
(
float
)
(
PaperSize
.
y
-
noprint_size
)
/
BoardSize
.
y
;
...
@@ -286,8 +281,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
...
@@ -286,8 +281,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
}
}
// Trace des Elements des modules autres que pads
// Trace des Elements des modules autres que pads
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
48
,
wxT
(
"DrawMod"
),
wxEmptyString
,
GREEN
);
Module
=
m_Pcb
->
m_Modules
;
Module
=
m_Pcb
->
m_Modules
;
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
{
{
...
@@ -308,8 +301,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
...
@@ -308,8 +301,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
}
}
// Trace des Elements des modules : Pastilles
// Trace des Elements des modules : Pastilles
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
48
,
wxT
(
"Pads "
),
wxEmptyString
,
GREEN
);
Module
=
m_Pcb
->
m_Modules
;
Module
=
m_Pcb
->
m_Modules
;
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
{
{
...
@@ -324,8 +315,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
...
@@ -324,8 +315,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
size
.
x
=
PtPad
->
m_Size
.
x
+
garde
*
2
;
size
.
x
=
PtPad
->
m_Size
.
x
+
garde
*
2
;
size
.
y
=
PtPad
->
m_Size
.
y
+
garde
*
2
;
size
.
y
=
PtPad
->
m_Size
.
y
+
garde
*
2
;
nb_items
++
;
switch
(
PtPad
->
m_PadShape
)
switch
(
PtPad
->
m_PadShape
)
{
{
case
PAD_CIRCLE
:
case
PAD_CIRCLE
:
...
@@ -350,17 +339,12 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
...
@@ -350,17 +339,12 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
trace_1_pad_rectangulaire_POST
(
pos
,
size
,
PtPad
->
m_Orient
,
modetrace
);
trace_1_pad_rectangulaire_POST
(
pos
,
size
,
PtPad
->
m_Orient
,
modetrace
);
break
;
break
;
}
}
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
48
,
wxT
(
"Pads"
),
msg
,
GREEN
);
}
}
}
}
// trace des VIAS :
// trace des VIAS :
if
(
tracevia
)
if
(
tracevia
)
{
{
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
56
,
_
(
"Vias"
),
wxEmptyString
,
RED
);
for
(
pts
=
m_Pcb
->
m_Track
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
for
(
pts
=
m_Pcb
->
m_Track
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
{
{
if
(
pts
->
Type
()
!=
TYPE_VIA
)
if
(
pts
->
Type
()
!=
TYPE_VIA
)
...
@@ -381,16 +365,10 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
...
@@ -381,16 +365,10 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
pos
=
Via
->
m_Start
;
pos
=
Via
->
m_Start
;
size
.
x
=
size
.
y
=
Via
->
m_Width
+
garde
*
2
;
size
.
x
=
size
.
y
=
Via
->
m_Width
+
garde
*
2
;
trace_1_pastille_RONDE_POST
(
pos
,
size
.
x
,
modetrace
);
trace_1_pastille_RONDE_POST
(
pos
,
size
.
x
,
modetrace
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
56
,
wxEmptyString
,
msg
,
RED
);
}
}
}
}
// trace des pistes et zones:
// trace des pistes et zones:
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
64
,
_
(
"Tracks"
),
wxEmptyString
,
YELLOW
);
for
(
pts
=
m_Pcb
->
m_Track
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
for
(
pts
=
m_Pcb
->
m_Track
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
{
{
if
(
pts
->
Type
()
==
TYPE_VIA
)
if
(
pts
->
Type
()
==
TYPE_VIA
)
...
@@ -403,15 +381,8 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
...
@@ -403,15 +381,8 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
end
=
pts
->
m_End
;
end
=
pts
->
m_End
;
PlotFilledSegmentPS
(
pos
,
end
,
size
.
x
);
PlotFilledSegmentPS
(
pos
,
end
,
size
.
x
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
64
,
wxEmptyString
,
msg
,
YELLOW
);
}
}
nb_items
=
0
;
Affiche_1_Parametre
(
this
,
64
,
wxT
(
"Zones "
),
wxEmptyString
,
YELLOW
);
for
(
pts
=
m_Pcb
->
m_Zone
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
for
(
pts
=
m_Pcb
->
m_Zone
;
pts
!=
NULL
;
pts
=
pts
->
Next
()
)
{
{
if
(
(
g_TabOneLayerMask
[
pts
->
GetLayer
()]
&
masque_layer
)
==
0
)
if
(
(
g_TabOneLayerMask
[
pts
->
GetLayer
()]
&
masque_layer
)
==
0
)
...
@@ -420,9 +391,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
...
@@ -420,9 +391,6 @@ void WinEDA_BasePcbFrame::Plot_Layer_PS( FILE* File, int masque_layer,
pos
=
pts
->
m_Start
;
pos
=
pts
->
m_Start
;
end
=
pts
->
m_End
;
end
=
pts
->
m_End
;
PlotFilledSegmentPS
(
pos
,
end
,
size
.
x
);
PlotFilledSegmentPS
(
pos
,
end
,
size
.
x
);
nb_items
++
;
msg
.
Printf
(
wxT
(
"%d"
),
nb_items
);
Affiche_1_Parametre
(
this
,
64
,
wxEmptyString
,
msg
,
YELLOW
);
}
}
/* Plot filled ares */
/* Plot filled ares */
...
@@ -762,7 +730,7 @@ void trace_1_pad_TRAPEZE_POST( wxPoint centre, wxSize size, wxSize delta,
...
@@ -762,7 +730,7 @@ void trace_1_pad_TRAPEZE_POST( wxPoint centre, wxSize size, wxSize delta,
int
l_pen
;
// diam spot (plume)
int
l_pen
;
// diam spot (plume)
l_pen
=
1
;
l_pen
=
1
;
if
(
modetrace
==
FILAIRE
||
Plot_Mode
==
FILAIRE
)
if
(
modetrace
==
FILAIRE
||
g_
Plot_Mode
==
FILAIRE
)
{
{
wxSize
lsize
(
g_PlotLine_Width
,
g_PlotLine_Width
);
wxSize
lsize
(
g_PlotLine_Width
,
g_PlotLine_Width
);
...
...
pcbnew/print_board_functions.cpp
View file @
b27bbe9c
...
@@ -17,11 +17,12 @@ static void Print_Module( WinEDA_DrawPanel* panel, wxDC* DC, MODULE* Module,
...
@@ -17,11 +17,12 @@ static void Print_Module( WinEDA_DrawPanel* panel, wxDC* DC, MODULE* Module,
/************************************************************************************************************/
/************************************************************************************************************/
void
WinEDA_DrawPanel
::
PrintPage
(
wxDC
*
DC
,
bool
Print_Sheet_Ref
,
int
printmaskl
ayer
,
bool
aPrintMirrorMode
)
void
WinEDA_DrawPanel
::
PrintPage
(
wxDC
*
aDC
,
bool
aPrint_Sheet_Ref
,
int
aPrintMaskL
ayer
,
bool
aPrintMirrorMode
)
/************************************************************************************************************/
/************************************************************************************************************/
/* Used to print the board.
/** Function PrintPage
* Print the board, but only layers allowed by printmasklayer
* Used to print the board (on printer, or when creating SVF files).
* Print the board, but only layers allowed by aPrintMaskLayer
* ( printmasklayer is a 32 bits mask: bit n = 1 -> layer n is printed)
* ( printmasklayer is a 32 bits mask: bit n = 1 -> layer n is printed)
*/
*/
{
{
...
@@ -33,7 +34,7 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
...
@@ -33,7 +34,7 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
BOARD
*
Pcb
=
frame
->
GetBoard
();
BOARD
*
Pcb
=
frame
->
GetBoard
();
save_opt
=
DisplayOpt
;
save_opt
=
DisplayOpt
;
if
(
printmaskl
ayer
&
ALL_CU_LAYERS
)
if
(
aPrintMaskL
ayer
&
ALL_CU_LAYERS
)
DisplayOpt
.
DisplayPadFill
=
FILLED
;
DisplayOpt
.
DisplayPadFill
=
FILLED
;
else
else
DisplayOpt
.
DisplayPadFill
=
SKETCH
;
DisplayOpt
.
DisplayPadFill
=
SKETCH
;
...
@@ -59,10 +60,10 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
...
@@ -59,10 +60,10 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
case
TYPE_COTATION
:
case
TYPE_COTATION
:
case
TYPE_TEXTE
:
case
TYPE_TEXTE
:
case
TYPE_MIRE
:
case
TYPE_MIRE
:
if
(
((
1
<<
item
->
GetLayer
())
&
printmaskl
ayer
)
==
0
)
if
(
((
1
<<
item
->
GetLayer
())
&
aPrintMaskL
ayer
)
==
0
)
break
;
break
;
item
->
Draw
(
this
,
DC
,
drawmode
);
item
->
Draw
(
this
,
a
DC
,
drawmode
);
break
;
break
;
case
TYPE_MARKER
:
/* Trace des marqueurs */
case
TYPE_MARKER
:
/* Trace des marqueurs */
...
@@ -75,26 +76,26 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
...
@@ -75,26 +76,26 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
pt_piste
=
Pcb
->
m_Track
;
pt_piste
=
Pcb
->
m_Track
;
for
(
;
pt_piste
!=
NULL
;
pt_piste
=
pt_piste
->
Next
()
)
for
(
;
pt_piste
!=
NULL
;
pt_piste
=
pt_piste
->
Next
()
)
{
{
if
(
(
printmaskl
ayer
&
pt_piste
->
ReturnMaskLayer
()
)
==
0
)
if
(
(
aPrintMaskL
ayer
&
pt_piste
->
ReturnMaskLayer
()
)
==
0
)
continue
;
continue
;
if
(
pt_piste
->
Type
()
==
TYPE_VIA
)
/* VIA rencontree */
if
(
pt_piste
->
Type
()
==
TYPE_VIA
)
/* VIA rencontree */
{
{
int
rayon
=
pt_piste
->
m_Width
>>
1
;
int
rayon
=
pt_piste
->
m_Width
>>
1
;
int
color
=
g_DesignSettings
.
m_ViaColor
[
pt_piste
->
m_Shape
];
int
color
=
g_DesignSettings
.
m_ViaColor
[
pt_piste
->
m_Shape
];
GRSetDrawMode
(
DC
,
drawmode
);
GRSetDrawMode
(
a
DC
,
drawmode
);
GRFilledCircle
(
&
m_ClipBox
,
DC
,
pt_piste
->
m_Start
.
x
,
pt_piste
->
m_Start
.
y
,
GRFilledCircle
(
&
m_ClipBox
,
a
DC
,
pt_piste
->
m_Start
.
x
,
pt_piste
->
m_Start
.
y
,
rayon
,
0
,
color
,
color
);
rayon
,
0
,
color
,
color
);
}
}
else
else
pt_piste
->
Draw
(
this
,
DC
,
drawmode
);
pt_piste
->
Draw
(
this
,
a
DC
,
drawmode
);
}
}
pt_piste
=
Pcb
->
m_Zone
;
pt_piste
=
Pcb
->
m_Zone
;
for
(
;
pt_piste
!=
NULL
;
pt_piste
=
pt_piste
->
Next
()
)
for
(
;
pt_piste
!=
NULL
;
pt_piste
=
pt_piste
->
Next
()
)
{
{
if
(
(
printmaskl
ayer
&
pt_piste
->
ReturnMaskLayer
()
)
==
0
)
if
(
(
aPrintMaskL
ayer
&
pt_piste
->
ReturnMaskLayer
()
)
==
0
)
continue
;
continue
;
pt_piste
->
Draw
(
this
,
DC
,
drawmode
);
pt_piste
->
Draw
(
this
,
a
DC
,
drawmode
);
}
}
// Draw footprints, this is done at last in order to print the pad holes in while
// Draw footprints, this is done at last in order to print the pad holes in while
...
@@ -102,7 +103,7 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
...
@@ -102,7 +103,7 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
Module
=
(
MODULE
*
)
Pcb
->
m_Modules
;
Module
=
(
MODULE
*
)
Pcb
->
m_Modules
;
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
for
(
;
Module
!=
NULL
;
Module
=
Module
->
Next
()
)
{
{
Print_Module
(
this
,
DC
,
Module
,
drawmode
,
printmaskl
ayer
);
Print_Module
(
this
,
aDC
,
Module
,
drawmode
,
aPrintMaskL
ayer
);
}
}
/* Print via holes in white color*/
/* Print via holes in white color*/
...
@@ -113,12 +114,12 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
...
@@ -113,12 +114,12 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
GRForceBlackPen
(
false
);
GRForceBlackPen
(
false
);
for
(
;
pt_piste
!=
NULL
;
pt_piste
=
pt_piste
->
Next
()
)
for
(
;
pt_piste
!=
NULL
;
pt_piste
=
pt_piste
->
Next
()
)
{
{
if
(
(
printmaskl
ayer
&
pt_piste
->
ReturnMaskLayer
()
)
==
0
)
if
(
(
aPrintMaskL
ayer
&
pt_piste
->
ReturnMaskLayer
()
)
==
0
)
continue
;
continue
;
if
(
pt_piste
->
Type
()
==
TYPE_VIA
)
/* VIA rencontree */
if
(
pt_piste
->
Type
()
==
TYPE_VIA
)
/* VIA rencontree */
{
{
GRSetDrawMode
(
DC
,
drawmode
);
GRSetDrawMode
(
a
DC
,
drawmode
);
GRFilledCircle
(
&
m_ClipBox
,
DC
,
pt_piste
->
m_Start
.
x
,
pt_piste
->
m_Start
.
y
,
GRFilledCircle
(
&
m_ClipBox
,
a
DC
,
pt_piste
->
m_Start
.
x
,
pt_piste
->
m_Start
.
y
,
rayon
,
0
,
color
,
color
);
rayon
,
0
,
color
,
color
);
}
}
}
}
...
@@ -128,14 +129,14 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
...
@@ -128,14 +129,14 @@ void WinEDA_DrawPanel::PrintPage( wxDC* DC, bool Print_Sheet_Ref, int printmaskl
for
(
int
ii
=
0
;
ii
<
Pcb
->
GetAreaCount
();
ii
++
)
for
(
int
ii
=
0
;
ii
<
Pcb
->
GetAreaCount
();
ii
++
)
{
{
ZONE_CONTAINER
*
zone
=
Pcb
->
GetArea
(
ii
);
ZONE_CONTAINER
*
zone
=
Pcb
->
GetArea
(
ii
);
if
(
(
printmaskl
ayer
&
(
1
<<
zone
->
GetLayer
())
)
==
0
)
if
(
(
aPrintMaskL
ayer
&
(
1
<<
zone
->
GetLayer
())
)
==
0
)
continue
;
continue
;
zone
->
DrawFilledArea
(
this
,
DC
,
drawmode
);
zone
->
DrawFilledArea
(
this
,
a
DC
,
drawmode
);
}
}
if
(
Print_Sheet_Ref
)
if
(
a
Print_Sheet_Ref
)
m_Parent
->
TraceWorkSheet
(
DC
,
ActiveScreen
,
0
);
m_Parent
->
TraceWorkSheet
(
aDC
,
GetScreen
(),
g_PlotLine_Width
);
m_PrintIsMirrored
=
false
;
m_PrintIsMirrored
=
false
;
...
...
share/dialog_print.cpp
View file @
b27bbe9c
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Name: dialog_print.cpp
// Name: dialog_print.cpp
// Purpose:
// Purpose:
// Author: jean-pierre Charras
// Author: jean-pierre Charras
// Modified by:
// Modified by:
// Created: 28/02/2006 18:30:16
// Created: 28/02/2006 18:30:16
// RCS-ID:
// RCS-ID:
// Copyright: License GNU
// Copyright: License GNU
// Licence:
// Licence:
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Generated by DialogBlocks (unregistered), 28/02/2006 18:30:16
// Generated by DialogBlocks (unregistered), 28/02/2006 18:30:16
...
@@ -61,10 +61,10 @@ WinEDA_PrintFrame::WinEDA_PrintFrame( WinEDA_DrawFrame* parent, wxWindowID id, c
...
@@ -61,10 +61,10 @@ WinEDA_PrintFrame::WinEDA_PrintFrame( WinEDA_DrawFrame* parent, wxWindowID id, c
m_Parent
=
parent
;
m_Parent
=
parent
;
m_XScaleAdjust
=
m_YScaleAdjust
=
1.0
;
m_XScaleAdjust
=
m_YScaleAdjust
=
1.0
;
m_PagesOption
=
NULL
;
m_PagesOption
=
NULL
;
wxConfig
*
Config
=
wxGetApp
().
m_EDA_Config
;
m_
Config
=
wxGetApp
().
m_EDA_Config
;
if
(
Config
)
if
(
m_
Config
)
{
{
Config
->
Read
(
wxT
(
"PrintPenWidth"
),
&
s_PrintPenMin
Width
);
m_Config
->
Read
(
wxT
(
"PrintPenWidth"
),
&
g_PlotLine_
Width
);
}
}
...
@@ -120,9 +120,9 @@ bool WinEDA_PrintFrame::Create( wxWindow* parent, wxWindowID id, const wxString&
...
@@ -120,9 +120,9 @@ bool WinEDA_PrintFrame::Create( wxWindow* parent, wxWindowID id, const wxString&
*/
*/
void
WinEDA_PrintFrame
::
CreateControls
()
void
WinEDA_PrintFrame
::
CreateControls
()
{
{
SetFont
(
*
g_DialogFont
);
SetFont
(
*
g_DialogFont
);
////@begin WinEDA_PrintFrame content construction
////@begin WinEDA_PrintFrame content construction
// Generated by DialogBlocks, 25/08/2008 12:59:33 (unregistered)
// Generated by DialogBlocks, 25/08/2008 12:59:33 (unregistered)
...
@@ -253,7 +253,7 @@ void WinEDA_PrintFrame::CreateControls()
...
@@ -253,7 +253,7 @@ void WinEDA_PrintFrame::CreateControls()
SetFocus
(
);
// add this line to close dialog by the escape key
SetFocus
(
);
// add this line to close dialog by the escape key
m_DialogPenWidth
=
new
WinEDA_ValueCtrl
(
this
,
_
(
"Pen width mini"
),
s_PrintPenMin
Width
,
m_DialogPenWidth
=
new
WinEDA_ValueCtrl
(
this
,
_
(
"Pen width mini"
),
g_PlotLine_
Width
,
g_UnitMetric
,
m_DialogPenWidthSizer
,
m_Parent
->
m_InternalUnits
);
g_UnitMetric
,
m_DialogPenWidthSizer
,
m_Parent
->
m_InternalUnits
);
SetOthersDatas
();
SetOthersDatas
();
...
...
share/dialog_print.h
View file @
b27bbe9c
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Name: dialog_print.h
// Name: dialog_print.h
// Purpose:
// Purpose:
// Author: jean-pierre Charras
// Author: jean-pierre Charras
// Modified by:
// Modified by:
// Created: 28/02/2006 18:30:16
// Created: 28/02/2006 18:30:16
// RCS-ID:
// RCS-ID:
// Copyright: License GNU
// Copyright: License GNU
// Licence:
// Licence:
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Generated by DialogBlocks (unregistered), 28/02/2006 18:30:16
// Generated by DialogBlocks (unregistered), 28/02/2006 18:30:16
...
@@ -68,7 +68,7 @@ class wxBoxSizer;
...
@@ -68,7 +68,7 @@ class wxBoxSizer;
*/
*/
class
WinEDA_PrintFrame
:
public
wxDialog
class
WinEDA_PrintFrame
:
public
wxDialog
{
{
DECLARE_DYNAMIC_CLASS
(
WinEDA_PrintFrame
)
DECLARE_DYNAMIC_CLASS
(
WinEDA_PrintFrame
)
DECLARE_EVENT_TABLE
()
DECLARE_EVENT_TABLE
()
...
@@ -158,6 +158,7 @@ public:
...
@@ -158,6 +158,7 @@ public:
WinEDA_ValueCtrl
*
m_DialogPenWidth
;
WinEDA_ValueCtrl
*
m_DialogPenWidth
;
wxCheckBox
*
m_BoxSelecLayer
[
32
];
wxCheckBox
*
m_BoxSelecLayer
[
32
];
double
m_XScaleAdjust
,
m_YScaleAdjust
;
double
m_XScaleAdjust
,
m_YScaleAdjust
;
wxConfig
*
m_Config
;
};
};
#endif
#endif
...
...
share/wxprint.cpp
View file @
b27bbe9c
...
@@ -2,28 +2,6 @@
...
@@ -2,28 +2,6 @@
/* File: wxprint.cpp */
/* File: wxprint.cpp */
/*********************/
/*********************/
#ifdef __GNUG__
#pragma implementation
#endif
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#include "wx/spinctrl.h"
#if !wxUSE_PRINTING_ARCHITECTURE
#error You must set wxUSE_PRINTING_ARCHITECTURE to 1 in setup.h to compile this
#endif
// Set this to 1 if you want to test PostScript printing under MSW.
// Set this to 1 if you want to test PostScript printing under MSW.
#define wxTEST_POSTSCRIPT_IN_MSW 1
#define wxTEST_POSTSCRIPT_IN_MSW 1
...
@@ -44,7 +22,6 @@
...
@@ -44,7 +22,6 @@
#ifdef EESCHEMA
#ifdef EESCHEMA
#include "program.h"
#include "program.h"
#include "libcmp.h"
#include "general.h"
#include "general.h"
#endif
#endif
...
@@ -54,10 +31,7 @@
...
@@ -54,10 +31,7 @@
#include "protos.h"
#include "protos.h"
// For pcbnew:
// For pcbnew:
#define OPTKEY_LAYERBASE wxT( "PrintLayer_%d" )
#include "pcbplot.h"
#define OPTKEY_PRINT_X_FINESCALE_ADJ wxT( "PrintXFineScaleAdj" )
#define OPTKEY_PRINT_Y_FINESCALE_ADJ wxT( "PrintYFineScaleAdj" )
#define OPTKEY_PRINT_SCALE wxT( "PrintScale" )
#endif
#endif
#define DEFAULT_ORIENTATION_PAPER wxLANDSCAPE // other option is wxPORTRAIT
#define DEFAULT_ORIENTATION_PAPER wxLANDSCAPE // other option is wxPORTRAIT
...
@@ -69,7 +43,6 @@
...
@@ -69,7 +43,6 @@
#define WIDTH_MIN_VALUE 1
#define WIDTH_MIN_VALUE 1
#ifdef PCBNEW
#ifdef PCBNEW
extern
float
Scale_X
,
Scale_Y
;
static
long
s_SelectedLayers
;
static
long
s_SelectedLayers
;
static
double
s_ScaleList
[]
=
static
double
s_ScaleList
[]
=
{
0
,
0.5
,
0.7
,
0.999
,
1.0
,
1.4
,
2.0
,
3.0
,
4.0
};
{
0
,
0.5
,
0.7
,
0.999
,
1.0
,
1.4
,
2.0
,
3.0
,
4.0
};
...
@@ -80,8 +53,6 @@ static double s_ScaleList[] =
...
@@ -80,8 +53,6 @@ static double s_ScaleList[] =
static
wxPrintData
*
g_PrintData
;
static
wxPrintData
*
g_PrintData
;
// Variables locales
// Variables locales
static
int
s_PrintPenMinWidth
=
6
;
/* Minimum pen width (in internal units) for printing */
static
int
s_PrintMaskLayer
;
static
int
s_PrintMaskLayer
;
static
int
s_OptionPrintPage
=
0
;
static
int
s_OptionPrintPage
=
0
;
static
int
s_Print_Black_and_White
=
TRUE
;
static
int
s_Print_Black_and_White
=
TRUE
;
...
@@ -89,11 +60,6 @@ static int s_Scale_Select = 3; // default selected scale = ScaleList[3]
...
@@ -89,11 +60,6 @@ static int s_Scale_Select = 3; // default selected scale = ScaleList[3]
static
bool
s_PrintMirror
;
static
bool
s_PrintMirror
;
static
bool
s_Print_Sheet_Ref
=
TRUE
;
static
bool
s_Print_Sheet_Ref
=
TRUE
;
/****************************************************************/
/* frame de Preparation de l'impression (options, selections... */
/****************************************************************/
#include "dialog_print.cpp"
#include "dialog_print.cpp"
/***************************/
/***************************/
...
@@ -180,10 +146,6 @@ void WinEDA_PrintFrame::SetOthersDatas()
...
@@ -180,10 +146,6 @@ void WinEDA_PrintFrame::SetOthersDatas()
m_Print_Mirror
->
Enable
(
false
);
m_Print_Mirror
->
Enable
(
false
);
#endif
#endif
#if defined (PCBNEW)
wxConfig
*
config
=
wxGetApp
().
m_EDA_Config
;
// Current config used by application
#endif
m_FineAdjustXscaleOpt
->
SetToolTip
(
_
(
"Set X scale adjust for exact scale plotting"
)
);
m_FineAdjustXscaleOpt
->
SetToolTip
(
_
(
"Set X scale adjust for exact scale plotting"
)
);
m_FineAdjustYscaleOpt
->
SetToolTip
(
_
(
"Set Y scale adjust for exact scale plotting"
)
);
m_FineAdjustYscaleOpt
->
SetToolTip
(
_
(
"Set Y scale adjust for exact scale plotting"
)
);
if
(
s_Print_Black_and_White
)
if
(
s_Print_Black_and_White
)
...
@@ -221,11 +183,11 @@ void WinEDA_PrintFrame::SetOthersDatas()
...
@@ -221,11 +183,11 @@ void WinEDA_PrintFrame::SetOthersDatas()
#endif
#endif
// Read the scale adjust option
// Read the scale adjust option
if
(
c
onfig
)
if
(
m_C
onfig
)
{
{
c
onfig
->
Read
(
OPTKEY_PRINT_X_FINESCALE_ADJ
,
&
m_XScaleAdjust
);
m_C
onfig
->
Read
(
OPTKEY_PRINT_X_FINESCALE_ADJ
,
&
m_XScaleAdjust
);
c
onfig
->
Read
(
OPTKEY_PRINT_Y_FINESCALE_ADJ
,
&
m_YScaleAdjust
);
m_C
onfig
->
Read
(
OPTKEY_PRINT_Y_FINESCALE_ADJ
,
&
m_YScaleAdjust
);
c
onfig
->
Read
(
OPTKEY_PRINT_SCALE
,
&
s_Scale_Select
);
m_C
onfig
->
Read
(
OPTKEY_PRINT_SCALE
,
&
s_Scale_Select
);
s_SelectedLayers
=
0
;
s_SelectedLayers
=
0
;
for
(
int
layer
=
0
;
layer
<
NB_LAYERS
;
++
layer
)
for
(
int
layer
=
0
;
layer
<
NB_LAYERS
;
++
layer
)
...
@@ -236,7 +198,7 @@ void WinEDA_PrintFrame::SetOthersDatas()
...
@@ -236,7 +198,7 @@ void WinEDA_PrintFrame::SetOthersDatas()
layerKey
.
Printf
(
OPTKEY_LAYERBASE
,
layer
);
layerKey
.
Printf
(
OPTKEY_LAYERBASE
,
layer
);
option
=
false
;
option
=
false
;
if
(
c
onfig
->
Read
(
layerKey
,
&
option
)
)
if
(
m_C
onfig
->
Read
(
layerKey
,
&
option
)
)
{
{
m_BoxSelecLayer
[
layer
]
->
SetValue
(
option
);
m_BoxSelecLayer
[
layer
]
->
SetValue
(
option
);
if
(
option
)
if
(
option
)
...
@@ -310,7 +272,7 @@ void WinEDA_PrintFrame::OnClosePrintDialog()
...
@@ -310,7 +272,7 @@ void WinEDA_PrintFrame::OnClosePrintDialog()
if
(
Config
)
if
(
Config
)
{
{
Config
->
Write
(
wxT
(
"PrintPenWidth"
),
s_PrintPenMin
Width
);
Config
->
Write
(
OPTKEY_PLOT_LINEWIDTH_VALUE
,
g_PlotLine_
Width
);
}
}
if
(
m_FineAdjustXscaleOpt
)
if
(
m_FineAdjustXscaleOpt
)
...
@@ -375,19 +337,19 @@ void WinEDA_PrintFrame::SetPenWidth()
...
@@ -375,19 +337,19 @@ void WinEDA_PrintFrame::SetPenWidth()
/****************************************/
/****************************************/
/* Get the new pen width value, and verify min et max value
/* Get the new pen width value, and verify min et max value
* NOTE:
s_PrintPenMin
Width is in internal units
* NOTE:
g_PlotLine_
Width is in internal units
*/
*/
{
{
s_PrintPenMin
Width
=
m_DialogPenWidth
->
GetValue
();
g_PlotLine_
Width
=
m_DialogPenWidth
->
GetValue
();
if
(
s_PrintPenMin
Width
>
WIDTH_MAX_VALUE
)
if
(
g_PlotLine_
Width
>
WIDTH_MAX_VALUE
)
{
{
s_PrintPenMin
Width
=
WIDTH_MAX_VALUE
;
g_PlotLine_
Width
=
WIDTH_MAX_VALUE
;
}
}
if
(
s_PrintPenMin
Width
<
WIDTH_MIN_VALUE
)
if
(
g_PlotLine_
Width
<
WIDTH_MIN_VALUE
)
{
{
s_PrintPenMin
Width
=
WIDTH_MIN_VALUE
;
g_PlotLine_
Width
=
WIDTH_MIN_VALUE
;
}
}
m_DialogPenWidth
->
SetValue
(
s_PrintPenMin
Width
);
m_DialogPenWidth
->
SetValue
(
g_PlotLine_
Width
);
}
}
...
@@ -783,8 +745,8 @@ void EDA_Printout::DrawPage()
...
@@ -783,8 +745,8 @@ void EDA_Printout::DrawPage()
/* set Pen min width */
/* set Pen min width */
double
ftmp
,
xdcscale
,
ydcscale
;
double
ftmp
,
xdcscale
,
ydcscale
;
//
s_PrintPenMin
Width is in internal units ( 1/1000 inch), and must be converted in pixels
//
g_PlotLine_
Width is in internal units ( 1/1000 inch), and must be converted in pixels
ftmp
=
(
float
)
s_PrintPenMin
Width
*
25.4
/
EESCHEMA_INTERNAL_UNIT
;
// ftmp est en mm
ftmp
=
(
float
)
g_PlotLine_
Width
*
25.4
/
EESCHEMA_INTERNAL_UNIT
;
// ftmp est en mm
ftmp
*=
(
float
)
PlotAreaSize
.
x
/
PageSize_in_mm
.
x
;
/* ftmp is in pixels */
ftmp
*=
(
float
)
PlotAreaSize
.
x
/
PageSize_in_mm
.
x
;
/* ftmp is in pixels */
/* because the pen size will be scaled by the dc scale, we modify the size
/* because the pen size will be scaled by the dc scale, we modify the size
...
...
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