33 lines
786 B
C++
33 lines
786 B
C++
/************************************************/
|
|
/* Menu General de Trace (PLOT) fichier PLOT.CC */
|
|
/************************************************/
|
|
|
|
#include "fctsys.h"
|
|
#include "common.h"
|
|
#include "id.h"
|
|
|
|
#include "gerbview.h"
|
|
#include "pcbplot.h"
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
/* The group of plot options - sadly global XXX */
|
|
PCB_Plot_Options g_pcb_plot_options;
|
|
|
|
|
|
/* variables locale : */
|
|
|
|
/* Routines Locales */
|
|
|
|
/**************************************************************/
|
|
/* void WinEDA_BasePcbFrame::ToPlotter(wxCommandEvent& event) */
|
|
/***************************************************************/
|
|
|
|
void WinEDA_BasePcbFrame::ToPlotter(wxCommandEvent& event)
|
|
{
|
|
// WinEDA_PlotFrame * frame = new WinEDA_PlotFrame(this);
|
|
// frame->ShowModal(); frame->Destroy();
|
|
}
|
|
|