2007-06-05 12:10:51 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
// Name: plothpgl.cpp
|
2008-03-20 01:50:21 +00:00
|
|
|
// Purpose:
|
2007-06-05 12:10:51 +00:00
|
|
|
// Author: jean-pierre Charras
|
2008-03-20 01:50:21 +00:00
|
|
|
// Modified by:
|
2007-06-05 12:10:51 +00:00
|
|
|
// Created: 04/02/2006 16:54:19
|
2008-03-20 01:50:21 +00:00
|
|
|
// RCS-ID:
|
2007-06-05 12:10:51 +00:00
|
|
|
// Copyright: License GNU
|
2008-03-20 01:50:21 +00:00
|
|
|
// Licence:
|
2007-06-05 12:10:51 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Generated by DialogBlocks (unregistered), 04/02/2006 16:54:19
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
#if defined (__GNUG__) && !defined (NO_GCC_PRAGMA)
|
2007-06-05 12:10:51 +00:00
|
|
|
#pragma implementation "plothpgl.h"
|
|
|
|
#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
|
|
|
|
|
|
|
|
////@begin includes
|
|
|
|
////@end includes
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
#include "fctsys.h"
|
|
|
|
#include "gr_basic.h"
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "program.h"
|
|
|
|
#include "libcmp.h"
|
|
|
|
#include "general.h"
|
|
|
|
#include "worksheet.h"
|
|
|
|
#include "plot_common.h"
|
|
|
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
|
|
/* coeff de conversion dim en 1 mil -> dim en unite HPGL: */
|
|
|
|
#define SCALE_HPGL 1.02041
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
#include "plothpgl.h"
|
|
|
|
|
|
|
|
////@begin XPM images
|
|
|
|
////@end XPM images
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
extern void Move_Plume( wxPoint pos, int plume );
|
|
|
|
extern void Plume( int plume );
|
|
|
|
|
|
|
|
/* Variables locales : */
|
2008-04-17 16:25:29 +00:00
|
|
|
FILE* PlotOutput; /* exportee dans printps.cc */
|
2007-05-06 16:03:28 +00:00
|
|
|
static double Scale_X = 1;
|
|
|
|
static double Scale_Y = 1;
|
2008-04-17 16:25:29 +00:00
|
|
|
int HPGL_SizeSelect;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
enum PageFormatReq {
|
2008-03-20 01:50:21 +00:00
|
|
|
PAGE_DEFAULT = 0,
|
|
|
|
PAGE_SIZE_A4,
|
|
|
|
PAGE_SIZE_A3,
|
|
|
|
PAGE_SIZE_A2,
|
|
|
|
PAGE_SIZE_A1,
|
|
|
|
PAGE_SIZE_A0,
|
|
|
|
PAGE_SIZE_A,
|
|
|
|
PAGE_SIZE_B,
|
|
|
|
PAGE_SIZE_C,
|
|
|
|
PAGE_SIZE_D,
|
|
|
|
PAGE_SIZE_E
|
2007-05-06 16:03:28 +00:00
|
|
|
};
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
static Ki_PageDescr* Plot_sheet_list[] =
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2008-03-20 01:50:21 +00:00
|
|
|
NULL,
|
|
|
|
&g_Sheet_A4,
|
|
|
|
&g_Sheet_A3,
|
|
|
|
&g_Sheet_A2,
|
|
|
|
&g_Sheet_A1,
|
|
|
|
&g_Sheet_A0,
|
|
|
|
&g_Sheet_A,
|
|
|
|
&g_Sheet_B,
|
|
|
|
&g_Sheet_C,
|
|
|
|
&g_Sheet_D,
|
|
|
|
&g_Sheet_E,
|
|
|
|
&g_Sheet_GERBER,
|
|
|
|
&g_Sheet_user
|
2007-05-06 16:03:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Routines Locales */
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
void WinEDA_SchematicFrame::ToPlot_HPGL( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
/**************************************************************/
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
WinEDA_PlotHPGLFrame* HPGL_frame = new WinEDA_PlotHPGLFrame( this );
|
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
HPGL_frame->ShowModal();
|
|
|
|
HPGL_frame->Destroy();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* WinEDA_PlotHPGLFrame type definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS( WinEDA_PlotHPGLFrame, wxDialog )
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* WinEDA_PlotHPGLFrame event table definition
|
|
|
|
*/
|
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE( WinEDA_PlotHPGLFrame, wxDialog )
|
|
|
|
|
|
|
|
////@begin WinEDA_PlotHPGLFrame event table entries
|
2008-04-30 11:52:34 +00:00
|
|
|
EVT_RADIOBOX( ID_RADIOBOX, WinEDA_PlotHPGLFrame::OnRadioboxSelected )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
EVT_SPINCTRL( ID_PEN_WIDTH_UPDATED, WinEDA_PlotHPGLFrame::OnPenWidthUpdatedUpdated )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
EVT_SPINCTRL( ID_PEN_SPEED_UPDATED, WinEDA_PlotHPGLFrame::OnPenSpeedUpdatedUpdated )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
EVT_SPINCTRL( ID_PEN_NUMBER_UPDATED, WinEDA_PlotHPGLFrame::OnPenNumberUpdatedUpdated )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
EVT_BUTTON( ID_PLOT_HPGL_CURRENT_EXECUTE, WinEDA_PlotHPGLFrame::OnPlotHpglCurrentExecuteClick )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
EVT_BUTTON( ID_PLOT_HPGL_ALL_EXECUTE, WinEDA_PlotHPGLFrame::OnPlotHpglAllExecuteClick )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
EVT_BUTTON( wxID_CANCEL, WinEDA_PlotHPGLFrame::OnCancelClick )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
EVT_BUTTON( ID_PLOT_ACCEPT_OFFSET, WinEDA_PlotHPGLFrame::OnPlotAcceptOffsetClick )
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
////@end WinEDA_PlotHPGLFrame event table entries
|
|
|
|
|
|
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* WinEDA_PlotHPGLFrame constructors
|
|
|
|
*/
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
WinEDA_PlotHPGLFrame::WinEDA_PlotHPGLFrame()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
|
|
|
WinEDA_PlotHPGLFrame::WinEDA_PlotHPGLFrame( WinEDA_DrawFrame* parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& caption,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
long style )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2008-03-20 01:50:21 +00:00
|
|
|
m_Parent = parent;
|
2008-04-17 16:25:29 +00:00
|
|
|
Create( parent, id, caption, pos, size, style );
|
2008-03-20 01:50:21 +00:00
|
|
|
SetPageOffsetValue();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* WinEDA_PlotHPGLFrame creator
|
|
|
|
*/
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
bool WinEDA_PlotHPGLFrame::Create( wxWindow* parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& caption,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
long style )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
|
|
|
////@begin WinEDA_PlotHPGLFrame member initialisation
|
2008-04-30 11:52:34 +00:00
|
|
|
m_SizeOption = NULL;
|
|
|
|
m_ButtPenWidth = NULL;
|
|
|
|
m_ButtPenSpeed = NULL;
|
|
|
|
m_ButtPenNum = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
m_PlotOrgPosition_X = NULL;
|
|
|
|
m_PlotOrgPosition_Y = NULL;
|
2008-04-30 11:52:34 +00:00
|
|
|
m_btClose = NULL;
|
2007-06-05 12:10:51 +00:00
|
|
|
m_MsgBox = NULL;
|
|
|
|
////@end WinEDA_PlotHPGLFrame member initialisation
|
|
|
|
|
|
|
|
////@begin WinEDA_PlotHPGLFrame creation
|
2008-04-30 11:52:34 +00:00
|
|
|
SetExtraStyle(wxWS_EX_BLOCK_EVENTS);
|
2007-06-05 12:10:51 +00:00
|
|
|
wxDialog::Create( parent, id, caption, pos, size, style );
|
|
|
|
|
|
|
|
CreateControls();
|
2008-04-30 11:52:34 +00:00
|
|
|
if (GetSizer())
|
|
|
|
{
|
|
|
|
GetSizer()->SetSizeHints(this);
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
Centre();
|
|
|
|
////@end WinEDA_PlotHPGLFrame creation
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* Control creation for WinEDA_PlotHPGLFrame
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WinEDA_PlotHPGLFrame::CreateControls()
|
2008-03-20 01:50:21 +00:00
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
SetFont( *g_DialogFont );
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
////@begin WinEDA_PlotHPGLFrame content construction
|
2008-04-30 11:52:34 +00:00
|
|
|
// Generated by DialogBlocks, 29/04/2008 21:13:14 (unregistered)
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
WinEDA_PlotHPGLFrame* itemDialog1 = this;
|
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL);
|
|
|
|
itemDialog1->SetSizer(itemBoxSizer2);
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxBoxSizer* itemBoxSizer3 = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
itemBoxSizer2->Add(itemBoxSizer3, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxVERTICAL);
|
|
|
|
itemBoxSizer3->Add(itemBoxSizer4, 0, wxGROW|wxALL, 5);
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxArrayString m_SizeOptionStrings;
|
|
|
|
m_SizeOptionStrings.Add(_("Sheet Size"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size A4"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size A3"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size A2"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size A1"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size A0"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size A"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size B"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size C"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size D"));
|
|
|
|
m_SizeOptionStrings.Add(_("Page Size E"));
|
|
|
|
m_SizeOption = new wxRadioBox( itemDialog1, ID_RADIOBOX, _("Plot page size:"), wxDefaultPosition, wxDefaultSize, m_SizeOptionStrings, 1, wxRA_SPECIFY_COLS );
|
|
|
|
m_SizeOption->SetSelection(0);
|
|
|
|
itemBoxSizer4->Add(m_SizeOption, 0, wxALIGN_LEFT|wxALL, 5);
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxBoxSizer* itemBoxSizer6 = new wxBoxSizer(wxVERTICAL);
|
|
|
|
itemBoxSizer3->Add(itemBoxSizer6, 0, wxALIGN_TOP|wxALL, 5);
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxStaticBox* itemStaticBoxSizer7Static = new wxStaticBox(itemDialog1, wxID_ANY, _("Pen control:"));
|
|
|
|
wxStaticBoxSizer* itemStaticBoxSizer7 = new wxStaticBoxSizer(itemStaticBoxSizer7Static, wxVERTICAL);
|
|
|
|
itemBoxSizer6->Add(itemStaticBoxSizer7, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxStaticText* itemStaticText8 = new wxStaticText( itemDialog1, wxID_STATIC, _("Pen Width ( mils )"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemStaticBoxSizer7->Add(itemStaticText8, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
m_ButtPenWidth = new wxSpinCtrl( itemDialog1, ID_PEN_WIDTH_UPDATED, _T("1"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS|wxSP_WRAP, 1, 100, 1 );
|
|
|
|
itemStaticBoxSizer7->Add(m_ButtPenWidth, 0, wxALIGN_LEFT|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxStaticText* itemStaticText10 = new wxStaticText( itemDialog1, wxID_STATIC, _("Pen Speed ( cm/s )"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemStaticBoxSizer7->Add(itemStaticText10, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
m_ButtPenSpeed = new wxSpinCtrl( itemDialog1, ID_PEN_SPEED_UPDATED, _T("1"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 1, 100, 1 );
|
|
|
|
itemStaticBoxSizer7->Add(m_ButtPenSpeed, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxStaticText* itemStaticText12 = new wxStaticText( itemDialog1, wxID_STATIC, _("Pen Number"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemStaticBoxSizer7->Add(itemStaticText12, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
m_ButtPenNum = new wxSpinCtrl( itemDialog1, ID_PEN_NUMBER_UPDATED, _T("1"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 1, 8, 1 );
|
|
|
|
itemStaticBoxSizer7->Add(m_ButtPenNum, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxStaticBox* itemStaticBoxSizer14Static = new wxStaticBox(itemDialog1, wxID_ANY, _("Page offset:"));
|
|
|
|
wxStaticBoxSizer* itemStaticBoxSizer14 = new wxStaticBoxSizer(itemStaticBoxSizer14Static, wxVERTICAL);
|
|
|
|
itemBoxSizer6->Add(itemStaticBoxSizer14, 0, wxALIGN_LEFT|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxStaticText* itemStaticText15 = new wxStaticText( itemDialog1, wxID_STATIC, _("Plot Offset X"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemStaticBoxSizer14->Add(itemStaticText15, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
m_PlotOrgPosition_X = new wxTextCtrl( itemDialog1, ID_TEXTCTRL1, _T(""), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemStaticBoxSizer14->Add(m_PlotOrgPosition_X, 0, wxALIGN_LEFT|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxStaticText* itemStaticText17 = new wxStaticText( itemDialog1, wxID_STATIC, _("Plot Offset Y"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemStaticBoxSizer14->Add(itemStaticText17, 0, wxALIGN_LEFT|wxLEFT|wxRIGHT|wxTOP|wxADJUST_MINSIZE, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
m_PlotOrgPosition_Y = new wxTextCtrl( itemDialog1, ID_TEXTCTRL2, _T(""), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemStaticBoxSizer14->Add(m_PlotOrgPosition_Y, 0, wxALIGN_LEFT|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
itemBoxSizer3->Add(5, 5, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxBoxSizer* itemBoxSizer20 = new wxBoxSizer(wxVERTICAL);
|
|
|
|
itemBoxSizer3->Add(itemBoxSizer20, 0, wxALIGN_TOP|wxLEFT|wxTOP|wxBOTTOM, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxButton* itemButton21 = new wxButton( itemDialog1, ID_PLOT_HPGL_CURRENT_EXECUTE, _("&Plot CURRENT"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemButton21->SetForegroundColour(wxColour(0, 128, 0));
|
|
|
|
itemBoxSizer20->Add(itemButton21, 0, wxGROW|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxButton* itemButton22 = new wxButton( itemDialog1, ID_PLOT_HPGL_ALL_EXECUTE, _("Plot A&LL"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemButton22->SetForegroundColour(wxColour(0, 0, 255));
|
|
|
|
itemBoxSizer20->Add(itemButton22, 0, wxGROW|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
m_btClose = new wxButton( itemDialog1, wxID_CANCEL, _("&Close"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
m_btClose->SetDefault();
|
|
|
|
m_btClose->SetForegroundColour(wxColour(128, 0, 0));
|
|
|
|
itemBoxSizer20->Add(m_btClose, 0, wxGROW|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
itemBoxSizer20->Add(5, 5, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
wxButton* itemButton25 = new wxButton( itemDialog1, ID_PLOT_ACCEPT_OFFSET, _("&Accept Offset"), wxDefaultPosition, wxDefaultSize, 0 );
|
|
|
|
itemButton25->SetForegroundColour(wxColour(101, 123, 68));
|
|
|
|
itemBoxSizer20->Add(itemButton25, 0, wxGROW|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-30 11:52:34 +00:00
|
|
|
m_MsgBox = new wxTextCtrl( itemDialog1, ID_TEXTCTRL, _T(""), wxDefaultPosition, wxSize(-1, 110), wxTE_MULTILINE );
|
|
|
|
itemBoxSizer2->Add(m_MsgBox, 0, wxGROW|wxALL, 5);
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
// Set validators
|
2008-04-30 11:52:34 +00:00
|
|
|
m_SizeOption->SetValidator( wxGenericValidator(& HPGL_SizeSelect) );
|
|
|
|
m_ButtPenWidth->SetValidator( wxGenericValidator(& g_HPGL_Pen_Descr.m_Pen_Diam) );
|
|
|
|
m_ButtPenSpeed->SetValidator( wxGenericValidator(& g_HPGL_Pen_Descr.m_Pen_Speed) );
|
|
|
|
m_ButtPenNum->SetValidator( wxGenericValidator(& g_HPGL_Pen_Descr.m_Pen_Num) );
|
2007-06-05 12:10:51 +00:00
|
|
|
////@end WinEDA_PlotHPGLFrame content construction
|
2008-04-30 11:52:34 +00:00
|
|
|
m_btClose->SetFocus();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_PLOT_HPGL_CURRENT_EXECUTE
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WinEDA_PlotHPGLFrame::OnPlotHpglCurrentExecuteClick( wxCommandEvent& event )
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
HPGL_Plot( event );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_PLOT_HPGL_ALL_EXECUTE
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WinEDA_PlotHPGLFrame::OnPlotHpglAllExecuteClick( wxCommandEvent& event )
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
HPGL_Plot( event );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WinEDA_PlotHPGLFrame::OnCancelClick( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
////@begin wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL in WinEDA_PlotHPGLFrame.
|
|
|
|
// Before editing this code, remove the block markers.
|
|
|
|
event.Skip();
|
2008-03-20 01:50:21 +00:00
|
|
|
////@end wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL in WinEDA_PlotHPGLFrame.
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for ID_PLOT_ACCEPT_OFFSET
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WinEDA_PlotHPGLFrame::OnPlotAcceptOffsetClick( wxCommandEvent& event )
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
AcceptPlotOffset( event );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* Should we show tooltips?
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool WinEDA_PlotHPGLFrame::ShowToolTips()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* Get bitmap resources
|
|
|
|
*/
|
|
|
|
|
|
|
|
wxBitmap WinEDA_PlotHPGLFrame::GetBitmapResource( const wxString& name )
|
|
|
|
{
|
|
|
|
// Bitmap retrieval
|
|
|
|
////@begin WinEDA_PlotHPGLFrame bitmap retrieval
|
2008-04-30 11:52:34 +00:00
|
|
|
wxUnusedVar(name);
|
2007-06-05 12:10:51 +00:00
|
|
|
return wxNullBitmap;
|
|
|
|
////@end WinEDA_PlotHPGLFrame bitmap retrieval
|
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* Get icon resources
|
|
|
|
*/
|
|
|
|
|
|
|
|
wxIcon WinEDA_PlotHPGLFrame::GetIconResource( const wxString& name )
|
|
|
|
{
|
|
|
|
// Icon retrieval
|
|
|
|
////@begin WinEDA_PlotHPGLFrame icon retrieval
|
2008-04-30 11:52:34 +00:00
|
|
|
wxUnusedVar(name);
|
2007-06-05 12:10:51 +00:00
|
|
|
return wxNullIcon;
|
|
|
|
////@end WinEDA_PlotHPGLFrame icon retrieval
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
void WinEDA_PlotHPGLFrame::SetPageOffsetValue()
|
2007-06-05 12:10:51 +00:00
|
|
|
/***************************************************/
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
wxString msg;
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
if( HPGL_SizeSelect != PAGE_DEFAULT )
|
|
|
|
{
|
|
|
|
msg = ReturnStringFromValue( g_UnitMetric,
|
|
|
|
Plot_sheet_list[HPGL_SizeSelect]->m_Offset.x, EESCHEMA_INTERNAL_UNIT );
|
|
|
|
m_PlotOrgPosition_X->SetValue( msg );
|
|
|
|
msg = ReturnStringFromValue( g_UnitMetric,
|
|
|
|
Plot_sheet_list[HPGL_SizeSelect]->m_Offset.y, EESCHEMA_INTERNAL_UNIT );
|
|
|
|
m_PlotOrgPosition_Y->SetValue( msg );
|
|
|
|
|
|
|
|
m_PlotOrgPosition_X->Enable( TRUE );
|
|
|
|
m_PlotOrgPosition_Y->Enable( TRUE );
|
2008-03-20 01:50:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
m_PlotOrgPosition_X->Enable( FALSE );
|
|
|
|
m_PlotOrgPosition_Y->Enable( FALSE );
|
2008-03-20 01:50:21 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*****************************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
void WinEDA_PlotHPGLFrame::AcceptPlotOffset( wxCommandEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
/*****************************************************************/
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
int ii = m_SizeOption->GetSelection();
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
if( ii <= 0 )
|
|
|
|
HPGL_SizeSelect = 0;
|
|
|
|
else
|
|
|
|
HPGL_SizeSelect = ii;
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
if( HPGL_SizeSelect != PAGE_DEFAULT )
|
2008-03-20 01:50:21 +00:00
|
|
|
{
|
|
|
|
wxString msg = m_PlotOrgPosition_X->GetValue();
|
|
|
|
Plot_sheet_list[HPGL_SizeSelect]->m_Offset.x =
|
2008-04-17 16:25:29 +00:00
|
|
|
ReturnValueFromString( g_UnitMetric, msg, EESCHEMA_INTERNAL_UNIT );
|
2008-03-20 01:50:21 +00:00
|
|
|
msg = m_PlotOrgPosition_Y->GetValue();
|
|
|
|
Plot_sheet_list[HPGL_SizeSelect]->m_Offset.y =
|
2008-04-17 16:25:29 +00:00
|
|
|
ReturnValueFromString( g_UnitMetric, msg, EESCHEMA_INTERNAL_UNIT );
|
2008-03-20 01:50:21 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
void WinEDA_PlotHPGLFrame::SetPenWidth( wxSpinEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
/************************************************************/
|
|
|
|
{
|
2008-03-20 01:50:21 +00:00
|
|
|
g_HPGL_Pen_Descr.m_Pen_Diam = m_ButtPenWidth->GetValue();
|
2008-04-17 16:25:29 +00:00
|
|
|
if( g_HPGL_Pen_Descr.m_Pen_Diam > 100 )
|
|
|
|
g_HPGL_Pen_Descr.m_Pen_Diam = 100;
|
|
|
|
if( g_HPGL_Pen_Descr.m_Pen_Diam < 1 )
|
|
|
|
g_HPGL_Pen_Descr.m_Pen_Diam = 1;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
void WinEDA_PlotHPGLFrame::SetPenSpeed( wxSpinEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
/*********************************************************/
|
|
|
|
{
|
2008-03-20 01:50:21 +00:00
|
|
|
g_HPGL_Pen_Descr.m_Pen_Speed = m_ButtPenSpeed->GetValue();
|
2008-04-17 16:25:29 +00:00
|
|
|
if( g_HPGL_Pen_Descr.m_Pen_Speed > 40 )
|
|
|
|
g_HPGL_Pen_Descr.m_Pen_Speed = 40;
|
|
|
|
if( g_HPGL_Pen_Descr.m_Pen_Speed < 1 )
|
|
|
|
g_HPGL_Pen_Descr.m_Pen_Speed = 1;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*******************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
void WinEDA_PlotHPGLFrame::SetPenNum( wxSpinEvent& event )
|
2007-06-05 12:10:51 +00:00
|
|
|
/*******************************************************/
|
|
|
|
{
|
2008-03-20 01:50:21 +00:00
|
|
|
g_HPGL_Pen_Descr.m_Pen_Num = m_ButtPenNum->GetValue();
|
2008-04-17 16:25:29 +00:00
|
|
|
if( g_HPGL_Pen_Descr.m_Pen_Num > 8 )
|
|
|
|
g_HPGL_Pen_Descr.m_Pen_Num = 8;
|
|
|
|
if( g_HPGL_Pen_Descr.m_Pen_Num < 1 )
|
|
|
|
g_HPGL_Pen_Descr.m_Pen_Num = 1;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
/***********************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
void WinEDA_PlotHPGLFrame::HPGL_Plot( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
/***********************************************************/
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
int Select_PlotAll = FALSE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
if( event.GetId() == ID_PLOT_HPGL_ALL_EXECUTE )
|
|
|
|
Select_PlotAll = TRUE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
if( HPGL_SizeSelect )
|
2008-03-20 01:50:21 +00:00
|
|
|
{
|
|
|
|
wxString msg = m_PlotOrgPosition_X->GetValue();
|
|
|
|
Plot_sheet_list[HPGL_SizeSelect]->m_Offset.x =
|
2008-04-17 16:25:29 +00:00
|
|
|
ReturnValueFromString( g_UnitMetric, msg, EESCHEMA_INTERNAL_UNIT );
|
2008-03-20 01:50:21 +00:00
|
|
|
msg = m_PlotOrgPosition_Y->GetValue();
|
|
|
|
Plot_sheet_list[HPGL_SizeSelect]->m_Offset.y =
|
2008-04-17 16:25:29 +00:00
|
|
|
ReturnValueFromString( g_UnitMetric, msg, EESCHEMA_INTERNAL_UNIT );
|
2008-03-20 01:50:21 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
Plot_Schematic_HPGL( Select_PlotAll, HPGL_SizeSelect );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/*******************************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
void WinEDA_PlotHPGLFrame::ReturnSheetDims( BASE_SCREEN* screen,
|
|
|
|
wxSize& SheetSize, wxPoint& SheetOffset )
|
2007-05-06 16:03:28 +00:00
|
|
|
/*******************************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/* Fonction calculant les dims et offsets de trace de la feuille selectionnee
|
2008-04-17 16:25:29 +00:00
|
|
|
* retourne:
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
Ki_PageDescr* PlotSheet;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
if( screen == NULL )
|
|
|
|
screen = m_Parent->GetBaseScreen();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
PlotSheet = screen->m_CurrentSheetDesc;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
SheetSize = PlotSheet->m_Size;
|
2008-03-20 01:50:21 +00:00
|
|
|
SheetOffset = PlotSheet->m_Offset;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
/***********************************************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
void WinEDA_PlotHPGLFrame::Plot_Schematic_HPGL( int Select_PlotAll, int HPGL_SheetSize )
|
2007-05-06 16:03:28 +00:00
|
|
|
/***********************************************************************************/
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
wxString PlotFileName, ShortFileName;
|
|
|
|
BASE_SCREEN* screen;
|
|
|
|
Ki_PageDescr* PlotSheet;
|
|
|
|
wxSize SheetSize;
|
|
|
|
wxPoint SheetOffset, PlotOffset;
|
|
|
|
int margin;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
g_PlotFormat = PLOT_FORMAT_HPGL;
|
|
|
|
|
|
|
|
/* Build the screen list */
|
|
|
|
EDA_ScreenList ScreenList;
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
if( Select_PlotAll == TRUE )
|
|
|
|
screen = ScreenList.GetFirst();
|
|
|
|
else
|
|
|
|
screen = m_Parent->GetBaseScreen();
|
|
|
|
for( ; screen != NULL; screen = ScreenList.GetNext() )
|
2008-03-20 01:50:21 +00:00
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
ReturnSheetDims( screen, SheetSize, SheetOffset );
|
2008-03-20 01:50:21 +00:00
|
|
|
/* Calcul des echelles de conversion */
|
2008-04-17 16:25:29 +00:00
|
|
|
g_PlotScaleX = Scale_X * SCALE_HPGL;
|
|
|
|
g_PlotScaleY = Scale_Y * SCALE_HPGL;
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
margin = 400; // Margin in mils
|
|
|
|
PlotSheet = screen->m_CurrentSheetDesc;
|
|
|
|
g_PlotScaleX = g_PlotScaleX * (SheetSize.x - 2 * margin) / PlotSheet->m_Size.x;
|
2008-03-20 01:50:21 +00:00
|
|
|
g_PlotScaleY = g_PlotScaleY * (SheetSize.y - 2 * margin) / PlotSheet->m_Size.y;
|
|
|
|
|
|
|
|
/* calcul des offsets */
|
2008-04-17 16:25:29 +00:00
|
|
|
PlotOffset.x = -(int) (SheetOffset.x * SCALE_HPGL);
|
|
|
|
PlotOffset.y = (int) ( (SheetOffset.y + SheetSize.y) * SCALE_HPGL );
|
|
|
|
PlotOffset.x -= (int) (margin * SCALE_HPGL);
|
|
|
|
PlotOffset.y += (int) (margin * SCALE_HPGL);
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
wxSplitPath( screen->m_FileName.GetData(), (wxString*) NULL,
|
|
|
|
&ShortFileName, (wxString*) NULL );
|
2008-03-20 01:50:21 +00:00
|
|
|
wxString dirbuf = wxGetCwd() + STRING_DIR_SEP;
|
2008-04-17 16:25:29 +00:00
|
|
|
if( !ShortFileName.IsEmpty() )
|
|
|
|
PlotFileName = MakeFileName( dirbuf, ShortFileName, wxT( ".plt" ) );
|
|
|
|
else
|
|
|
|
PlotFileName = MakeFileName( dirbuf, g_DefaultSchematicFileName, wxT( ".plt" ) );
|
|
|
|
|
|
|
|
setlocale( LC_NUMERIC, "C" );
|
|
|
|
InitPlotParametresHPGL( PlotOffset, g_PlotScaleX, g_PlotScaleY );
|
|
|
|
Plot_1_Page_HPGL( PlotFileName, screen );
|
|
|
|
setlocale( LC_NUMERIC, "" );
|
|
|
|
screen = (BASE_SCREEN*) screen->Pnext;
|
|
|
|
if( Select_PlotAll == FALSE )
|
|
|
|
break;
|
2008-03-20 01:50:21 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
m_MsgBox->AppendText( _( "** Plot End **\n" ) );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************/
|
2008-04-17 16:25:29 +00:00
|
|
|
void WinEDA_PlotHPGLFrame::Plot_1_Page_HPGL( const wxString& FullFileName,
|
|
|
|
BASE_SCREEN* screen )
|
2007-05-06 16:03:28 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
/* Trace en format HPGL. d'une feuille de dessin
|
2008-04-17 16:25:29 +00:00
|
|
|
* 1 unite HPGL = 0.98 mils ( 1 mil = 1.02041 unite HPGL ) .
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
EDA_BaseStruct* DrawList;
|
|
|
|
SCH_COMPONENT* DrawLibItem;
|
|
|
|
int x1 = 0, y1 = 0, x2 = 0, y2 = 0, layer;
|
|
|
|
wxString msg;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
PlotOutput = wxFopen( FullFileName, wxT( "wt" ) );
|
|
|
|
if( PlotOutput == 0 )
|
|
|
|
{
|
|
|
|
msg = _( "Unable to create " ) + FullFileName;
|
|
|
|
DisplayError( this, msg ); return;
|
|
|
|
}
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
msg = _( "Plot " ) + FullFileName + wxT( "\n" );
|
|
|
|
m_MsgBox->AppendText( msg );
|
2008-03-20 01:50:21 +00:00
|
|
|
|
|
|
|
/* Init : */
|
2008-04-17 16:25:29 +00:00
|
|
|
PrintHeaderHPGL( PlotOutput, g_HPGL_Pen_Descr.m_Pen_Speed, g_HPGL_Pen_Descr.m_Pen_Num );
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
PlotWorkSheet( PLOT_FORMAT_HPGL, screen );
|
2008-03-20 01:50:21 +00:00
|
|
|
|
|
|
|
DrawList = screen->EEDrawList;
|
2008-04-17 16:25:29 +00:00
|
|
|
while( DrawList ) /* tracage */
|
|
|
|
{
|
|
|
|
Plume( 'U' );
|
2008-03-20 01:50:21 +00:00
|
|
|
layer = LAYER_NOTES;
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
switch( DrawList->Type() )
|
2008-04-17 16:25:29 +00:00
|
|
|
{
|
|
|
|
case DRAW_BUSENTRY_STRUCT_TYPE:
|
2008-03-20 01:50:21 +00:00
|
|
|
#undef STRUCT
|
2008-04-17 16:25:29 +00:00
|
|
|
#define STRUCT ( (DrawBusEntryStruct*) DrawList )
|
|
|
|
x1 = STRUCT->m_Pos.x; y1 = STRUCT->m_Pos.y;
|
|
|
|
x2 = STRUCT->m_End().x; y2 = STRUCT->m_End().y;
|
|
|
|
layer = STRUCT->GetLayer();
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
case DRAW_SEGMENT_STRUCT_TYPE:
|
2008-03-20 01:50:21 +00:00
|
|
|
#undef STRUCT
|
2008-04-17 16:25:29 +00:00
|
|
|
#define STRUCT ( (EDA_DrawLineStruct*) DrawList )
|
|
|
|
if( DrawList->Type() == DRAW_SEGMENT_STRUCT_TYPE )
|
|
|
|
{
|
|
|
|
x1 = STRUCT->m_Start.x; y1 = STRUCT->m_Start.y;
|
|
|
|
x2 = STRUCT->m_End.x; y2 = STRUCT->m_End.y;
|
|
|
|
layer = STRUCT->GetLayer();
|
|
|
|
}
|
|
|
|
|
|
|
|
switch( layer )
|
|
|
|
{
|
|
|
|
case LAYER_NOTES: /* Trace en pointilles */
|
|
|
|
Move_Plume( wxPoint( x1, y1 ), 'U' );
|
|
|
|
fprintf( PlotOutput, "LT 2;\n" );
|
|
|
|
Move_Plume( wxPoint( x2, y2 ), 'D' );
|
|
|
|
fprintf( PlotOutput, "LT;\n" );
|
2008-03-20 01:50:21 +00:00
|
|
|
break;
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
case LAYER_BUS: /* Trait large */
|
|
|
|
{
|
|
|
|
int deltaX = 0, deltaY = 0; double angle;
|
|
|
|
if( (x2 - x1) == 0 )
|
|
|
|
deltaX = 8;
|
|
|
|
else if( (y2 - y1) == 0 )
|
|
|
|
deltaY = 8;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
angle = atan2( (double) (x2 - x1), (double) (y1 - y2) );
|
|
|
|
deltaX = (int) ( 8 * sin( angle ) );
|
|
|
|
deltaY = (int) ( 8 * cos( angle ) );
|
|
|
|
}
|
|
|
|
Move_Plume( wxPoint( x1 + deltaX, y1 - deltaY ), 'U' );
|
|
|
|
Move_Plume( wxPoint( x1 - deltaX, y1 + deltaY ), 'D' );
|
|
|
|
Move_Plume( wxPoint( x2 - deltaX, y2 + deltaY ), 'D' );
|
|
|
|
Move_Plume( wxPoint( x2 + deltaX, y2 - deltaY ), 'D' );
|
|
|
|
Move_Plume( wxPoint( x1 + deltaX, y1 - deltaY ), 'D' );
|
|
|
|
}
|
2008-03-20 01:50:21 +00:00
|
|
|
break;
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
default:
|
|
|
|
Move_Plume( wxPoint( x1, y1 ), 'U' );
|
|
|
|
Move_Plume( wxPoint( x2, y2 ), 'D' );
|
2008-03-20 01:50:21 +00:00
|
|
|
break;
|
2008-04-17 16:25:29 +00:00
|
|
|
}
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
break;
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
case DRAW_JUNCTION_STRUCT_TYPE:
|
2008-03-20 01:50:21 +00:00
|
|
|
#undef STRUCT
|
2008-04-17 16:25:29 +00:00
|
|
|
#define STRUCT ( (DrawJunctionStruct*) DrawList )
|
|
|
|
x1 = STRUCT->m_Pos.x; y1 = STRUCT->m_Pos.y;
|
|
|
|
PlotCercle( wxPoint( x1, y1 ), DRAWJUNCTION_SIZE * 2 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TYPE_SCH_TEXT:
|
|
|
|
case TYPE_SCH_LABEL:
|
|
|
|
case TYPE_SCH_GLOBALLABEL:
|
|
|
|
case TYPE_SCH_HIERLABEL:
|
|
|
|
PlotTextStruct( DrawList );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TYPE_SCH_COMPONENT:
|
|
|
|
DrawLibItem = (SCH_COMPONENT*) DrawList;
|
|
|
|
PlotLibPart( DrawLibItem );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DRAW_PICK_ITEM_STRUCT_TYPE:
|
|
|
|
break;
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
case DRAW_POLYLINE_STRUCT_TYPE:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DRAW_HIERARCHICAL_PIN_SHEET_STRUCT_TYPE:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DRAW_MARKER_STRUCT_TYPE:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DRAW_SHEET_STRUCT_TYPE:
|
2008-03-20 01:50:21 +00:00
|
|
|
#undef STRUCT
|
2008-04-17 16:25:29 +00:00
|
|
|
#define STRUCT ( (DrawSheetStruct*) DrawList )
|
|
|
|
PlotSheetStruct( STRUCT );
|
|
|
|
break;
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
case DRAW_NOCONNECT_STRUCT_TYPE:
|
|
|
|
#undef STRUCT
|
|
|
|
#define STRUCT ( (DrawNoConnectStruct*) DrawList )
|
|
|
|
PlotNoConnectStruct( STRUCT );
|
|
|
|
break;
|
2008-03-20 01:50:21 +00:00
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
default:
|
|
|
|
break;
|
2008-03-20 01:50:21 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
Plume( 'U' );
|
|
|
|
DrawList = DrawList->Pnext;
|
|
|
|
}
|
|
|
|
|
2008-03-20 01:50:21 +00:00
|
|
|
/* fin */
|
2008-04-17 16:25:29 +00:00
|
|
|
CloseFileHPGL( PlotOutput );
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* wxEVT_COMMAND_RADIOBOX_SELECTED event handler for ID_RADIOBOX
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WinEDA_PlotHPGLFrame::OnRadioboxSelected( wxCommandEvent& event )
|
|
|
|
{
|
2008-03-20 01:50:21 +00:00
|
|
|
HPGL_SizeSelect = m_SizeOption->GetSelection();
|
|
|
|
SetPageOffsetValue();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* wxEVT_COMMAND_SPINCTRL_UPDATED event handler for ID_PEN_WIDTH_UPDATED
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WinEDA_PlotHPGLFrame::OnPenWidthUpdatedUpdated( wxSpinEvent& event )
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
SetPenWidth( event );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* wxEVT_COMMAND_SPINCTRL_UPDATED event handler for ID_PEN_SPEED_UPDATED
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WinEDA_PlotHPGLFrame::OnPenSpeedUpdatedUpdated( wxSpinEvent& event )
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
SetPenSpeed( event );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
/*!
|
|
|
|
* wxEVT_COMMAND_SPINCTRL_UPDATED event handler for ID_PEN_NUMBER_UPDATED
|
|
|
|
*/
|
|
|
|
|
|
|
|
void WinEDA_PlotHPGLFrame::OnPenNumberUpdatedUpdated( wxSpinEvent& event )
|
|
|
|
{
|
2008-04-17 16:25:29 +00:00
|
|
|
SetPenNum( event );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|