2009-04-05 20:49:15 +00:00
|
|
|
/******************/
|
|
|
|
/* file pcbplot.h */
|
|
|
|
/******************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#ifndef PCBPLOT_H
|
|
|
|
#define PCBPLOT_H
|
|
|
|
|
2009-01-13 19:18:54 +00:00
|
|
|
/* Shared Config keys for plot and print */
|
2009-04-05 20:49:15 +00:00
|
|
|
#define OPTKEY_LAYERBASE wxT( "PlotLayer_%d" )
|
2009-01-13 19:18:54 +00:00
|
|
|
#define OPTKEY_PRINT_X_FINESCALE_ADJ wxT( "PrintXFineScaleAdj" )
|
|
|
|
#define OPTKEY_PRINT_Y_FINESCALE_ADJ wxT( "PrintYFineScaleAdj" )
|
|
|
|
#define OPTKEY_PRINT_SCALE wxT( "PrintScale" )
|
2010-01-01 13:30:39 +00:00
|
|
|
#define OPTKEY_PRINT_PAGE_FRAME wxT( "PrintPageFrame" )
|
|
|
|
#define OPTKEY_PRINT_MONOCHROME_MODE wxT( "PrintMonochrome" )
|
2009-01-13 19:18:54 +00:00
|
|
|
|
2009-06-28 16:50:42 +00:00
|
|
|
/* Plot Options : */
|
2009-11-09 14:00:22 +00:00
|
|
|
struct PCB_Plot_Options
|
|
|
|
{
|
2009-06-28 16:50:42 +00:00
|
|
|
bool Exclude_Edges_Pcb;
|
|
|
|
int PlotLine_Width;
|
|
|
|
bool Plot_Frame_Ref; // True to plot/print frame references
|
|
|
|
int Plot_Mode;
|
|
|
|
bool Plot_Set_MIROIR;
|
|
|
|
bool Sel_Rotate_Window;
|
2009-11-09 14:00:22 +00:00
|
|
|
int HPGL_Pen_Num;
|
2009-06-28 16:50:42 +00:00
|
|
|
int HPGL_Pen_Speed;
|
|
|
|
int HPGL_Pen_Diam;
|
|
|
|
int HPGL_Pen_Recouvrement;
|
2009-11-09 14:00:22 +00:00
|
|
|
bool HPGL_Org_Centre; // TRUE if, HPGL originally the center of the node
|
2009-06-28 16:50:42 +00:00
|
|
|
int PlotPSColorOpt; // True for color Postscript output
|
2009-11-09 14:00:22 +00:00
|
|
|
bool Plot_PS_Negative; // True to create a negative board ps plot
|
2009-06-28 16:50:42 +00:00
|
|
|
|
|
|
|
/* id for plot format (see enum PlotFormat in plot_common.h) */
|
|
|
|
int PlotFormat;
|
|
|
|
int PlotOrient;
|
|
|
|
int PlotScaleOpt;
|
|
|
|
int DrillShapeOpt;
|
2010-01-01 13:30:39 +00:00
|
|
|
double Scale;
|
|
|
|
double ScaleAdjX;
|
|
|
|
double ScaleAdjY;
|
2009-06-28 16:50:42 +00:00
|
|
|
};
|
|
|
|
extern PCB_Plot_Options g_pcb_plot_options;
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
#endif // ifndef PCBPLOT_H
|