2007-05-06 16:03:28 +00:00
|
|
|
|
/*********************/
|
|
|
|
|
/* 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.
|
|
|
|
|
#define wxTEST_POSTSCRIPT_IN_MSW 1
|
|
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
#include "wx/metafile.h"
|
|
|
|
|
#include "wx/print.h"
|
|
|
|
|
#include "wx/printdlg.h"
|
2007-06-05 12:10:51 +00:00
|
|
|
|
#include "wx/dcmirror.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#if wxTEST_POSTSCRIPT_IN_MSW
|
|
|
|
|
#include "wx/generic/printps.h"
|
|
|
|
|
#include "wx/generic/prntdlgg.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
2008-04-18 13:28:56 +00:00
|
|
|
|
|
|
|
|
|
//#include "gr_basic.h"
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
|
|
#ifdef EESCHEMA
|
|
|
|
|
#include "program.h"
|
|
|
|
|
#include "libcmp.h"
|
|
|
|
|
#include "general.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef PCBNEW
|
|
|
|
|
#include "pcbnew.h"
|
|
|
|
|
|
|
|
|
|
#include "protos.h"
|
|
|
|
|
|
2008-04-18 13:28:56 +00:00
|
|
|
|
// For pcbnew:
|
|
|
|
|
#define OPTKEY_LAYERBASE wxT( "PrintLayer_%d" )
|
|
|
|
|
#define OPTKEY_PRINT_X_FINESCALE_ADJ wxT( "PrintXFineScaleAdj" )
|
|
|
|
|
#define OPTKEY_PRINT_Y_FINESCALE_ADJ wxT( "PrintYFineScaleAdj" )
|
2008-08-25 12:28:03 +00:00
|
|
|
|
#define OPTKEY_PRINT_SCALE wxT( "PrintScale" )
|
2008-04-18 13:28:56 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define DEFAULT_ORIENTATION_PAPER wxLANDSCAPE // other option is wxPORTRAIT
|
2007-05-28 18:09:49 +00:00
|
|
|
|
#ifdef EESCHEMA
|
2007-06-05 12:10:51 +00:00
|
|
|
|
#define WIDTH_MAX_VALUE 100
|
|
|
|
|
#else
|
|
|
|
|
#define WIDTH_MAX_VALUE 1000
|
2007-05-28 18:09:49 +00:00
|
|
|
|
#endif
|
|
|
|
|
#define WIDTH_MIN_VALUE 1
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-18 13:28:56 +00:00
|
|
|
|
#ifdef PCBNEW
|
|
|
|
|
extern float Scale_X, Scale_Y;
|
|
|
|
|
static long s_SelectedLayers;
|
|
|
|
|
static double s_ScaleList[] =
|
|
|
|
|
{ 0, 0.5, 0.7, 0.999, 1.0, 1.4, 2.0, 3.0, 4.0 };
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
// static print data and page setup data, to remember settings during the session
|
2008-03-04 04:22:27 +00:00
|
|
|
|
static wxPrintData* g_PrintData;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
// Variables locales
|
2008-03-04 04:22:27 +00:00
|
|
|
|
static int s_PrintPenMinWidth = 6; /* Minimum pen width (in internal units) for printing */
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
static int s_PrintMaskLayer;
|
|
|
|
|
static int s_OptionPrintPage = 0;
|
|
|
|
|
static int s_Print_Black_and_White = TRUE;
|
|
|
|
|
static int s_Scale_Select = 3; // default selected scale = ScaleList[3] = 1
|
|
|
|
|
static bool s_PrintMirror;
|
|
|
|
|
static bool s_Print_Sheet_Ref = TRUE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-18 13:28:56 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
/****************************************************************/
|
|
|
|
|
/* frame de Preparation de l'impression (options, selections... */
|
|
|
|
|
/****************************************************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#include "dialog_print.cpp"
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
/***************************/
|
|
|
|
|
/* Gestion de l'impression */
|
|
|
|
|
/***************************/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
class EDA_Printout : public wxPrintout
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
|
|
|
|
public:
|
2008-03-04 04:22:27 +00:00
|
|
|
|
bool m_Print_Sheet_Ref;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
public:
|
2008-03-04 04:22:27 +00:00
|
|
|
|
WinEDA_DrawFrame* m_Parent;
|
|
|
|
|
WinEDA_PrintFrame* m_PrintFrame;
|
|
|
|
|
|
2008-04-18 13:28:56 +00:00
|
|
|
|
EDA_Printout( WinEDA_PrintFrame* print_frame,
|
|
|
|
|
WinEDA_DrawFrame* parent,
|
|
|
|
|
const wxString& title,
|
|
|
|
|
bool print_ref ) :
|
|
|
|
|
wxPrintout( title )
|
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
m_PrintFrame = print_frame;
|
|
|
|
|
m_Parent = parent;
|
|
|
|
|
s_PrintMaskLayer = 0xFFFFFFFF;
|
|
|
|
|
m_Print_Sheet_Ref = print_ref;
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-18 13:28:56 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
bool OnPrintPage( int page );
|
|
|
|
|
bool HasPage( int page );
|
|
|
|
|
bool OnBeginDocument( int startPage, int endPage );
|
|
|
|
|
void GetPageInfo( int* minPage, int* maxPage, int* selPageFrom, int* selPageTo );
|
|
|
|
|
|
|
|
|
|
void DrawPage();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*******************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void WinEDA_DrawFrame::ToPrinter( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*******************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2008-02-12 21:12:46 +00:00
|
|
|
|
/* Prepare les structures de donn<6E>es de gestion de l'impression
|
2008-04-18 13:28:56 +00:00
|
|
|
|
* et affiche la fenetre de dialogue de gestion de l'impression des feuilles
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
wxPoint pos = GetPosition();
|
|
|
|
|
bool PrinterError = FALSE;
|
|
|
|
|
|
|
|
|
|
// Stop the pending comand (if any...)
|
|
|
|
|
if( DrawPanel->ManageCurseur && DrawPanel->ForceCloseManageCurseur )
|
|
|
|
|
{
|
|
|
|
|
wxClientDC dc( DrawPanel );
|
|
|
|
|
|
|
|
|
|
DrawPanel->PrepareDC( dc );
|
|
|
|
|
DrawPanel->ForceCloseManageCurseur( DrawPanel, &dc );
|
|
|
|
|
}
|
|
|
|
|
SetToolID( 0, wxCURSOR_ARROW, wxEmptyString );
|
|
|
|
|
|
|
|
|
|
if( g_PrintData == NULL ) // First print
|
|
|
|
|
{
|
2007-05-06 16:03:28 +00:00
|
|
|
|
g_PrintData = new wxPrintData();
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
|
|
|
|
if( !g_PrintData->Ok() )
|
|
|
|
|
{
|
2007-05-06 16:03:28 +00:00
|
|
|
|
PrinterError = TRUE;
|
2008-03-04 04:22:27 +00:00
|
|
|
|
DisplayError( this, _( "Error Init Printer info" ) );
|
|
|
|
|
}
|
|
|
|
|
g_PrintData->SetQuality( wxPRINT_QUALITY_HIGH ); // Default resolution = HIGHT;
|
|
|
|
|
g_PrintData->SetOrientation( DEFAULT_ORIENTATION_PAPER );
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
pos.x += 10; pos.y += 10;
|
|
|
|
|
WinEDA_PrintFrame* frame = new WinEDA_PrintFrame( this );
|
|
|
|
|
|
|
|
|
|
frame->ShowModal(); frame->Destroy();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
void WinEDA_PrintFrame::SetOthersDatas()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*******************************************/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
{
|
|
|
|
|
#ifndef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
m_Print_Mirror->Enable( false );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-04-18 13:28:56 +00:00
|
|
|
|
#if defined (PCBNEW)
|
|
|
|
|
wxConfig* config = m_Parent->m_Parent->m_EDA_Config; // Current config used by application
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
m_FineAdjustXscaleOpt->SetToolTip( _( "Set X scale adjust for exact scale plotting" ) );
|
|
|
|
|
m_FineAdjustYscaleOpt->SetToolTip( _( "Set Y scale adjust for exact scale plotting" ) );
|
|
|
|
|
if( s_Print_Black_and_White )
|
|
|
|
|
m_ColorOption->SetSelection( 1 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
m_PagesOptionEeschema->Show( false );
|
|
|
|
|
m_PagesOption = m_PagesOptionPcb;
|
|
|
|
|
|
|
|
|
|
/* Create layer list */
|
|
|
|
|
int mask = 1, ii;
|
|
|
|
|
for( ii = 0; ii < NB_LAYERS; ii++, mask <<= 1 )
|
|
|
|
|
{
|
|
|
|
|
m_BoxSelecLayer[ii] = new wxCheckBox( this, -1,
|
2008-04-18 13:28:56 +00:00
|
|
|
|
#if defined (PCBNEW)
|
2008-08-25 12:28:03 +00:00
|
|
|
|
( (WinEDA_PcbFrame*) m_Parent )->m_Pcb->GetLayerName(
|
|
|
|
|
ii ) );
|
2008-04-18 13:28:56 +00:00
|
|
|
|
#else
|
2008-08-25 12:28:03 +00:00
|
|
|
|
ReturnLayerName( ii ) );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if( mask & s_SelectedLayers )
|
|
|
|
|
m_BoxSelecLayer[ii]->SetValue( TRUE );
|
|
|
|
|
if( ii < 16 )
|
|
|
|
|
m_CopperLayersBoxSizer->Add( m_BoxSelecLayer[ii],
|
2008-08-25 12:28:03 +00:00
|
|
|
|
wxGROW | wxLEFT | wxRIGHT | wxTOP | wxADJUST_MINSIZE );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
else
|
|
|
|
|
m_TechLayersBoxSizer->Add( m_BoxSelecLayer[ii],
|
2008-08-25 12:28:03 +00:00
|
|
|
|
wxGROW | wxLEFT | wxRIGHT | wxTOP | wxADJUST_MINSIZE );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-08-25 12:28:03 +00:00
|
|
|
|
// Option for excluding contents of "Edges Pcb" layer
|
|
|
|
|
#ifndef GERBVIEW
|
|
|
|
|
m_Exclude_Edges_Pcb->Show( true );
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
// Read the scale adjust option
|
2008-04-18 13:28:56 +00:00
|
|
|
|
if( config )
|
2008-03-04 04:22:27 +00:00
|
|
|
|
{
|
2008-04-18 13:28:56 +00:00
|
|
|
|
config->Read( OPTKEY_PRINT_X_FINESCALE_ADJ, &m_XScaleAdjust );
|
|
|
|
|
config->Read( OPTKEY_PRINT_Y_FINESCALE_ADJ, &m_YScaleAdjust );
|
|
|
|
|
config->Read( OPTKEY_PRINT_SCALE, &s_Scale_Select );
|
|
|
|
|
|
|
|
|
|
s_SelectedLayers = 0;
|
|
|
|
|
for( int layer = 0; layer<NB_LAYERS; ++layer )
|
|
|
|
|
{
|
|
|
|
|
wxString layerKey;
|
|
|
|
|
bool option;
|
|
|
|
|
|
|
|
|
|
layerKey.Printf( OPTKEY_LAYERBASE, layer );
|
|
|
|
|
|
|
|
|
|
option = false;
|
|
|
|
|
if( config->Read( layerKey, &option ) )
|
|
|
|
|
{
|
|
|
|
|
m_BoxSelecLayer[layer]->SetValue( option );
|
|
|
|
|
if( option )
|
|
|
|
|
s_SelectedLayers |= 1 << layer;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-03-04 04:22:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_ScaleOption->SetSelection( s_Scale_Select );
|
|
|
|
|
|
|
|
|
|
// Create scale adjust option
|
|
|
|
|
wxString msg;
|
|
|
|
|
msg.Printf( wxT( "%lf" ), m_XScaleAdjust );
|
|
|
|
|
m_FineAdjustXscaleOpt->SetValue( msg );
|
|
|
|
|
msg.Printf( wxT( "%lf" ), m_YScaleAdjust );
|
|
|
|
|
m_FineAdjustYscaleOpt->SetValue( msg );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#else
|
2008-03-04 04:22:27 +00:00
|
|
|
|
m_PagesOption = m_PagesOptionEeschema;
|
|
|
|
|
m_PagesOptionPcb->Show( false );
|
|
|
|
|
m_ScaleOption->Show( false );
|
|
|
|
|
m_FineAdjustXscaleTitle->Show( false );
|
|
|
|
|
m_FineAdjustXscaleOpt->Show( false );
|
|
|
|
|
m_FineAdjustYscaleTitle->Show( false );
|
|
|
|
|
m_FineAdjustYscaleOpt->Show( false );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**********************************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
int WinEDA_PrintFrame::SetLayerMaskFromListSelection()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**********************************************************/
|
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
int page_count;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
s_PrintMaskLayer = 0;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
int ii;
|
|
|
|
|
for( ii = 0, page_count = 0; ii < NB_LAYERS; ii++ )
|
|
|
|
|
{
|
|
|
|
|
if( m_BoxSelecLayer[ii]->IsChecked() )
|
|
|
|
|
{
|
|
|
|
|
page_count++;
|
|
|
|
|
s_PrintMaskLayer |= 1 << ii;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#else
|
2008-03-04 04:22:27 +00:00
|
|
|
|
page_count = 1;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
2008-03-04 04:22:27 +00:00
|
|
|
|
return page_count;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/************************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void WinEDA_PrintFrame::SetColorOrBlack( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/************************************************************/
|
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
s_Print_Black_and_White = m_ColorOption->GetSelection();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/****************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void WinEDA_PrintFrame::OnClosePrintDialog()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/****************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* called when WinEDA_PrintFrame is closed
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
wxConfig* Config = m_Parent->m_Parent->m_EDA_Config;
|
|
|
|
|
|
|
|
|
|
if( Config )
|
|
|
|
|
{
|
|
|
|
|
Config->Write( wxT( "PrintPenWidth" ), s_PrintPenMinWidth );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( m_FineAdjustXscaleOpt )
|
|
|
|
|
m_FineAdjustXscaleOpt->GetValue().ToDouble( &m_XScaleAdjust );
|
|
|
|
|
if( m_FineAdjustYscaleOpt )
|
|
|
|
|
m_FineAdjustYscaleOpt->GetValue().ToDouble( &m_YScaleAdjust );
|
|
|
|
|
SetPenWidth();
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( Config )
|
|
|
|
|
{
|
2008-04-18 13:28:56 +00:00
|
|
|
|
Config->Write( OPTKEY_PRINT_X_FINESCALE_ADJ, m_XScaleAdjust );
|
|
|
|
|
Config->Write( OPTKEY_PRINT_Y_FINESCALE_ADJ, m_YScaleAdjust );
|
|
|
|
|
Config->Write( OPTKEY_PRINT_SCALE, s_Scale_Select );
|
|
|
|
|
wxString layerKey;
|
|
|
|
|
for( int layer = 0; layer<NB_LAYERS; ++layer )
|
|
|
|
|
{
|
|
|
|
|
layerKey.Printf( OPTKEY_LAYERBASE, layer );
|
|
|
|
|
Config->Write( layerKey, m_BoxSelecLayer[layer]->IsChecked() );
|
|
|
|
|
}
|
2008-03-04 04:22:27 +00:00
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
2008-03-04 04:22:27 +00:00
|
|
|
|
EndModal( 0 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
wxString WinEDA_PrintFrame::BuildPrintTitle()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* return a valid filename to create a print file
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
wxString name, ext;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-17 16:25:29 +00:00
|
|
|
|
wxFileName::SplitPath( m_Parent->GetBaseScreen()->m_FileName,
|
2008-08-25 12:28:03 +00:00
|
|
|
|
(wxString*) NULL, &name, &ext );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
name += wxT( "-" ) + ext;
|
|
|
|
|
return name;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/******************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void WinEDA_PrintFrame::SetScale( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/******************************************************/
|
|
|
|
|
{
|
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
s_Scale_Select = m_ScaleOption->GetSelection();
|
|
|
|
|
Scale_X = Scale_Y = s_ScaleList[s_Scale_Select];
|
|
|
|
|
if( m_FineAdjustXscaleOpt )
|
|
|
|
|
m_FineAdjustXscaleOpt->GetValue().ToDouble( &m_XScaleAdjust );
|
|
|
|
|
if( m_FineAdjustYscaleOpt )
|
|
|
|
|
m_FineAdjustYscaleOpt->GetValue().ToDouble( &m_YScaleAdjust );
|
|
|
|
|
Scale_X *= m_XScaleAdjust;
|
|
|
|
|
Scale_Y *= m_YScaleAdjust;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-28 18:09:49 +00:00
|
|
|
|
/****************************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
void WinEDA_PrintFrame::SetPenWidth()
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/****************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
/* Get the new pen width value, and verify min et max value
|
2008-04-18 13:28:56 +00:00
|
|
|
|
* NOTE: s_PrintPenMinWidth is in internal units
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
s_PrintPenMinWidth = m_DialogPenWidth->GetValue();
|
|
|
|
|
if( s_PrintPenMinWidth > WIDTH_MAX_VALUE )
|
|
|
|
|
{
|
|
|
|
|
s_PrintPenMinWidth = WIDTH_MAX_VALUE;
|
|
|
|
|
}
|
|
|
|
|
if( s_PrintPenMinWidth < WIDTH_MIN_VALUE )
|
|
|
|
|
{
|
|
|
|
|
s_PrintPenMinWidth = WIDTH_MIN_VALUE;
|
|
|
|
|
}
|
|
|
|
|
m_DialogPenWidth->SetValue( s_PrintPenMinWidth );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void WinEDA_PrintFrame::OnPrintSetup( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**********************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Open a dialog box for printer setup (printer options, page size ...)
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-04-18 13:28:56 +00:00
|
|
|
|
wxPrintDialogData printDialogData( *g_PrintData );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( printDialogData.Ok() )
|
|
|
|
|
{
|
2008-04-18 13:28:56 +00:00
|
|
|
|
wxPrintDialog printerDialog( this, &printDialogData );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
|
|
|
|
printerDialog.ShowModal();
|
|
|
|
|
|
|
|
|
|
*g_PrintData = printerDialog.GetPrintDialogData().GetPrintData();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
DisplayError( this, _( "Printer Problem!" ) );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void WinEDA_PrintFrame::OnPrintPreview( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/************************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Open and display a previewer frame for printing
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
wxSize WSize;
|
|
|
|
|
wxPoint WPos;
|
|
|
|
|
int x, y;
|
|
|
|
|
bool print_ref = TRUE;
|
|
|
|
|
|
|
|
|
|
SetScale( event );
|
|
|
|
|
SetPenWidth();
|
|
|
|
|
|
|
|
|
|
if( m_PagesOption )
|
|
|
|
|
s_OptionPrintPage = m_PagesOption->GetSelection();
|
|
|
|
|
|
|
|
|
|
if( (m_Print_Sheet_Ref == NULL) || (m_Print_Sheet_Ref->GetValue() == FALSE) )
|
|
|
|
|
print_ref = FALSE;
|
|
|
|
|
|
|
|
|
|
// Pass two printout objects: for preview, and possible printing.
|
|
|
|
|
wxString title = BuildPrintTitle();
|
|
|
|
|
wxPrintPreview* preview =
|
2008-04-18 13:28:56 +00:00
|
|
|
|
new wxPrintPreview( new EDA_Printout( this, m_Parent, title, print_ref ),
|
2008-08-25 12:28:03 +00:00
|
|
|
|
new EDA_Printout( this, m_Parent, title, print_ref ), g_PrintData );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
|
|
|
|
if( preview == NULL )
|
|
|
|
|
{
|
|
|
|
|
DisplayError( this, _( "There was a problem previewing" ) );
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( s_OptionPrintPage )
|
|
|
|
|
SetLayerMaskFromListSelection();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
m_Parent->GetPosition( &x, &y );
|
|
|
|
|
WPos.x = x + 4;
|
|
|
|
|
WPos.y = y + 25;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
WSize = m_Parent->GetSize();
|
|
|
|
|
WSize.x -= 3;
|
|
|
|
|
WSize.y += 6;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
wxPreviewFrame* frame = new wxPreviewFrame( preview, this,
|
2008-08-25 12:28:03 +00:00
|
|
|
|
title, WPos, WSize );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
|
|
|
|
frame->Initialize();
|
|
|
|
|
frame->Show( TRUE );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void WinEDA_PrintFrame::EDA_PrintPage( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**********************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/* Called on activate "Print CURRENT" button
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
bool print_ref = TRUE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
SetScale( event );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
s_OptionPrintPage = 0;
|
|
|
|
|
if( m_PagesOption )
|
|
|
|
|
s_OptionPrintPage = m_PagesOption->GetSelection();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( (m_Print_Sheet_Ref == NULL) || (m_Print_Sheet_Ref->GetValue() == FALSE) )
|
|
|
|
|
print_ref = FALSE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( s_OptionPrintPage )
|
|
|
|
|
SetLayerMaskFromListSelection();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
SetPenWidth();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-18 13:28:56 +00:00
|
|
|
|
wxPrintDialogData printDialogData( *g_PrintData );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-18 13:28:56 +00:00
|
|
|
|
wxPrinter printer( &printDialogData );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-04-18 13:28:56 +00:00
|
|
|
|
wxString title = BuildPrintTitle();
|
|
|
|
|
EDA_Printout printout( this, m_Parent, title, print_ref );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#ifndef __WINDOWS__
|
2008-04-18 13:28:56 +00:00
|
|
|
|
wxDC* dc = printout.GetDC();
|
2008-03-04 04:22:27 +00:00
|
|
|
|
( (wxPostScriptDC*) dc )->SetResolution( 600 ); // Postscript DC resolution is 600 ppi
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( !printer.Print( this, &printout, TRUE ) )
|
|
|
|
|
{
|
|
|
|
|
if( wxPrinter::GetLastError() == wxPRINTER_ERROR )
|
|
|
|
|
DisplayError( this, _( "There was a problem printing" ) );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
return;
|
2008-03-04 04:22:27 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
*g_PrintData = printer.GetPrintDialogData().GetPrintData();
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
bool EDA_Printout::OnPrintPage( int page )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/***************************************/
|
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
wxString msg;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
msg.Printf( _( "Print page %d" ), page );
|
|
|
|
|
m_Parent->Affiche_Message( msg );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef EESCHEMA
|
2008-04-17 16:25:29 +00:00
|
|
|
|
BASE_SCREEN* screen = m_Parent->GetBaseScreen();
|
2008-03-04 04:22:27 +00:00
|
|
|
|
BASE_SCREEN* oldscreen = screen;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( s_OptionPrintPage == 1 )
|
|
|
|
|
{
|
|
|
|
|
EDA_ScreenList ScreenList;
|
|
|
|
|
screen = ScreenList.GetScreen( page - 1 );
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( screen == NULL )
|
|
|
|
|
return FALSE;
|
|
|
|
|
ActiveScreen = (SCH_SCREEN*) screen;
|
|
|
|
|
DrawPage();
|
|
|
|
|
ActiveScreen = (SCH_SCREEN*) oldscreen;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( (m_Parent->m_Ident == PCB_FRAME) || (m_Parent->m_Ident == GERBER_FRAME) )
|
|
|
|
|
{
|
|
|
|
|
m_PrintFrame->SetLayerMaskFromListSelection();
|
|
|
|
|
if( s_OptionPrintPage == 0 )
|
|
|
|
|
{
|
|
|
|
|
// compute layer mask from page number
|
|
|
|
|
int ii, jj, mask = 1;
|
|
|
|
|
for( ii = 0, jj = 0; ii < NB_LAYERS; ii++ )
|
|
|
|
|
{
|
|
|
|
|
if( s_PrintMaskLayer & mask )
|
|
|
|
|
jj++;
|
|
|
|
|
if( jj == page )
|
|
|
|
|
{
|
|
|
|
|
s_PrintMaskLayer = mask;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
mask <<= 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( ii == NB_LAYERS )
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
DrawPage();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
return TRUE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*********************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
void EDA_Printout::GetPageInfo( int* minPage, int* maxPage,
|
|
|
|
|
int* selPageFrom, int* selPageTo )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*********************************************************/
|
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
int ii = 1;
|
|
|
|
|
|
|
|
|
|
*minPage = 1;
|
|
|
|
|
*selPageFrom = 1;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#ifdef EESCHEMA
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( s_OptionPrintPage == 1 )
|
|
|
|
|
{
|
|
|
|
|
EDA_ScreenList ScreenList;
|
|
|
|
|
ii = ScreenList.GetCount();
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
|
|
|
|
switch( s_OptionPrintPage )
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
ii = m_PrintFrame->SetLayerMaskFromListSelection();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
ii = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*maxPage = ii;
|
|
|
|
|
*selPageTo = ii;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
bool EDA_Printout::HasPage( int pageNum )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/**************************************/
|
|
|
|
|
{
|
|
|
|
|
#ifdef EESCHEMA
|
2008-03-04 04:22:27 +00:00
|
|
|
|
int PageCount;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
EDA_ScreenList ScreenList;
|
|
|
|
|
PageCount = ScreenList.GetCount();
|
|
|
|
|
if( PageCount >= pageNum )
|
|
|
|
|
return TRUE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
return FALSE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
return TRUE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*************************************************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
bool EDA_Printout::OnBeginDocument( int startPage, int endPage )
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*************************************************************/
|
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( !wxPrintout::OnBeginDocument( startPage, endPage ) )
|
|
|
|
|
return FALSE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
return TRUE;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/********************************/
|
2007-09-13 11:55:46 +00:00
|
|
|
|
void EDA_Printout::DrawPage()
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/********************************/
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
/*
|
2008-04-18 13:28:56 +00:00
|
|
|
|
* This is the real print function: print the active screen
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
{
|
2008-03-04 04:22:27 +00:00
|
|
|
|
int tmpzoom;
|
|
|
|
|
wxPoint tmp_startvisu;
|
|
|
|
|
wxSize PageSize_in_mm;
|
|
|
|
|
wxSize SheetSize; // Page size in internal units
|
|
|
|
|
wxSize PlotAreaSize; // plot area size in pixels
|
|
|
|
|
double scaleX, scaleY, scale;
|
|
|
|
|
wxPoint old_org;
|
|
|
|
|
wxPoint DrawOffset; // Offset de trace
|
|
|
|
|
double userscale;
|
|
|
|
|
int DrawZoom = 1;
|
|
|
|
|
wxDC* dc = GetDC();
|
|
|
|
|
|
|
|
|
|
s_PrintMirror = m_PrintFrame->m_Print_Mirror->GetValue();
|
|
|
|
|
|
|
|
|
|
wxBusyCursor dummy;
|
|
|
|
|
|
|
|
|
|
GetPageSizeMM( &PageSize_in_mm.x, &PageSize_in_mm.y );
|
|
|
|
|
|
|
|
|
|
/* Save old draw scale and draw offset */
|
|
|
|
|
tmp_startvisu = ActiveScreen->m_StartVisu;
|
|
|
|
|
tmpzoom = ActiveScreen->GetZoom();
|
|
|
|
|
old_org = ActiveScreen->m_DrawOrg;
|
|
|
|
|
/* Change draw scale and offset to draw the whole page */
|
|
|
|
|
ActiveScreen->SetZoom( DrawZoom );
|
|
|
|
|
ActiveScreen->m_DrawOrg.x = ActiveScreen->m_DrawOrg.y = 0;
|
|
|
|
|
ActiveScreen->m_StartVisu.x = ActiveScreen->m_StartVisu.y = 0;
|
|
|
|
|
|
|
|
|
|
SheetSize = ActiveScreen->m_CurrentSheetDesc->m_Size; // size in 1/1000 inch
|
|
|
|
|
SheetSize.x *= m_Parent->m_InternalUnits / 1000;
|
|
|
|
|
SheetSize.y *= m_Parent->m_InternalUnits / 1000; // size in pixels
|
|
|
|
|
|
|
|
|
|
// Get the size of the DC in pixels
|
|
|
|
|
dc->GetSize( &PlotAreaSize.x, &PlotAreaSize.y );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
WinEDA_BasePcbFrame* pcbframe = (WinEDA_BasePcbFrame*) m_Parent;
|
|
|
|
|
pcbframe->m_Pcb->ComputeBoundaryBox();
|
|
|
|
|
/* Compute the PCB size in internal units*/
|
|
|
|
|
userscale = s_ScaleList[s_Scale_Select];
|
|
|
|
|
if( userscale == 0 ) // fit in page
|
|
|
|
|
{
|
|
|
|
|
int extra_margin = 8000; // Margin = 8000/2 units pcb = 0,4 inch
|
|
|
|
|
SheetSize.x = pcbframe->m_Pcb->m_BoundaryBox.GetWidth() + extra_margin;
|
|
|
|
|
SheetSize.y = pcbframe->m_Pcb->m_BoundaryBox.GetHeight() + extra_margin;
|
|
|
|
|
userscale = 0.99;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( (s_ScaleList[s_Scale_Select] > 1.0) // scale > 1 -> Recadrage
|
|
|
|
|
|| (s_ScaleList[s_Scale_Select] == 0) ) // fit in page
|
|
|
|
|
{
|
|
|
|
|
DrawOffset.x += pcbframe->m_Pcb->m_BoundaryBox.Centre().x;
|
|
|
|
|
DrawOffset.y += pcbframe->m_Pcb->m_BoundaryBox.Centre().y;
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#else
|
2008-03-04 04:22:27 +00:00
|
|
|
|
userscale = 1;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
// Calculate a suitable scaling factor
|
|
|
|
|
scaleX = (double) SheetSize.x / PlotAreaSize.x;
|
|
|
|
|
scaleY = (double) SheetSize.y / PlotAreaSize.y;
|
|
|
|
|
scale = wxMax( scaleX, scaleY ) / userscale; // Use x or y scaling factor, whichever fits on the DC
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
// ajust the real draw scale
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
double accurate_Xscale, accurate_Yscale;
|
|
|
|
|
dc->SetUserScale( DrawZoom / scale * m_PrintFrame->m_XScaleAdjust,
|
2008-08-25 12:28:03 +00:00
|
|
|
|
DrawZoom / scale * m_PrintFrame->m_YScaleAdjust );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
|
|
|
|
|
// Compute Accurate scale 1
|
|
|
|
|
{
|
|
|
|
|
int w, h;
|
|
|
|
|
GetPPIPrinter( &w, &h );
|
|
|
|
|
accurate_Xscale = ( (double) (DrawZoom * w) ) / PCB_INTERNAL_UNIT;
|
|
|
|
|
accurate_Yscale = ( (double) (DrawZoom * h) ) / PCB_INTERNAL_UNIT;
|
|
|
|
|
if( IsPreview() ) // Scale must take in account the DC size in Preview
|
|
|
|
|
{
|
|
|
|
|
// Get the size of the DC in pixels
|
|
|
|
|
dc->GetSize( &PlotAreaSize.x, &PlotAreaSize.y );
|
|
|
|
|
GetPageSizePixels( &w, &h );
|
|
|
|
|
accurate_Xscale *= PlotAreaSize.x; accurate_Xscale /= w;
|
|
|
|
|
accurate_Yscale *= PlotAreaSize.y; accurate_Yscale /= h;
|
|
|
|
|
}
|
|
|
|
|
accurate_Xscale *= m_PrintFrame->m_XScaleAdjust;
|
|
|
|
|
accurate_Yscale *= m_PrintFrame->m_YScaleAdjust;
|
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#else
|
2008-03-04 04:22:27 +00:00
|
|
|
|
dc->SetUserScale( DrawZoom / scale, DrawZoom / scale );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( (s_ScaleList[s_Scale_Select] > 1.0) // scale > 1 -> Recadrage
|
|
|
|
|
|| (s_ScaleList[s_Scale_Select] == 0) ) // fit in page
|
|
|
|
|
{
|
|
|
|
|
DrawOffset.x -= (int) ( (PlotAreaSize.x / 2) * scale );
|
|
|
|
|
DrawOffset.y -= (int) ( (PlotAreaSize.y / 3) * scale );
|
|
|
|
|
}
|
|
|
|
|
DrawOffset.x += (int) ( (SheetSize.x / 2) * (m_PrintFrame->m_XScaleAdjust - 1.0) );
|
|
|
|
|
DrawOffset.y += (int) ( (SheetSize.y / 2) * (m_PrintFrame->m_YScaleAdjust - 1.0) );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
ActiveScreen->m_DrawOrg = DrawOffset;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
GRResetPenAndBrush( dc );
|
|
|
|
|
if( s_Print_Black_and_White )
|
|
|
|
|
GRForceBlackPen( TRUE );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef EESCHEMA
|
2008-03-04 04:22:27 +00:00
|
|
|
|
/* set Pen min width */
|
|
|
|
|
double ftmp, xdcscale, ydcscale;
|
|
|
|
|
|
|
|
|
|
// s_PrintPenMinWidth is in internal units ( 1/1000 inch), and must be converted in pixels
|
|
|
|
|
ftmp = (float) s_PrintPenMinWidth * 25.4 / EESCHEMA_INTERNAL_UNIT; // ftmp est en mm
|
|
|
|
|
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
|
2008-04-18 13:28:56 +00:00
|
|
|
|
* in order to keep the requested value */
|
2008-03-04 04:22:27 +00:00
|
|
|
|
dc->GetUserScale( &xdcscale, &ydcscale );
|
|
|
|
|
ftmp /= xdcscale;
|
|
|
|
|
SetPenMinWidth( (int) round( ftmp ) );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#else
|
2008-03-04 04:22:27 +00:00
|
|
|
|
SetPenMinWidth( 1 ); // min width = 1 pixel
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
WinEDA_DrawPanel* panel = m_Parent->DrawPanel;
|
|
|
|
|
EDA_Rect tmp = panel->m_ClipBox;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
panel->m_ClipBox.SetOrigin( wxPoint( 0, 0 ) );
|
|
|
|
|
panel->m_ClipBox.SetSize( wxSize( 0x7FFFFF0, 0x7FFFFF0 ) );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
g_IsPrinting = TRUE;
|
2008-08-23 06:44:47 +00:00
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#ifdef PCBNEW
|
2008-03-04 04:22:27 +00:00
|
|
|
|
if( m_Print_Sheet_Ref )
|
|
|
|
|
m_Parent->TraceWorkSheet( dc, ActiveScreen, 0 );
|
|
|
|
|
|
|
|
|
|
if( userscale == 1.0 ) // Draw the Sheet refs at optimum scale, and board at 1.0 scale
|
|
|
|
|
{
|
|
|
|
|
dc->SetUserScale( accurate_Yscale, accurate_Yscale );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( s_PrintMirror )
|
2008-04-18 13:28:56 +00:00
|
|
|
|
{ // To plot mirror, we reverse the y axis, and modify the plot y origin
|
2008-03-04 04:22:27 +00:00
|
|
|
|
double sx, sy;
|
|
|
|
|
|
|
|
|
|
dc->GetUserScale( &sx, &sy );
|
|
|
|
|
dc->SetAxisOrientation( TRUE, TRUE );
|
|
|
|
|
if( userscale < 1.0 )
|
|
|
|
|
sy /= userscale;
|
|
|
|
|
|
|
|
|
|
/* Plot offset y is moved by the y plot area size in order to have
|
2008-04-18 13:28:56 +00:00
|
|
|
|
* the old draw area in the new draw area, because the draw origin has not moved
|
|
|
|
|
* (this is the upper left corner) but the Y axis is reversed, therefore the plotting area
|
|
|
|
|
* is the y coordinate values from - PlotAreaSize.y to 0 */
|
2008-03-04 04:22:27 +00:00
|
|
|
|
int ysize = (int) ( PlotAreaSize.y / sy );
|
|
|
|
|
DrawOffset.y += ysize;
|
|
|
|
|
|
|
|
|
|
/* in order to keep the board position in the sheet
|
2008-04-18 13:28:56 +00:00
|
|
|
|
* (when user scale <= 1) the y offset in moved by the distance between
|
|
|
|
|
* the middle of the page and the middle of the board
|
|
|
|
|
* This is equivalent to put the mirror axis to the board centre
|
|
|
|
|
* for scales > 1, the DrawOffset was already computed to have the board centre
|
|
|
|
|
* to the middle of the page.
|
2008-03-04 04:22:27 +00:00
|
|
|
|
*/
|
|
|
|
|
wxPoint pcb_centre = pcbframe->m_Pcb->m_BoundaryBox.Centre();
|
|
|
|
|
if( userscale <= 1.0 )
|
|
|
|
|
DrawOffset.y += pcb_centre.y - (ysize / 2);
|
|
|
|
|
ActiveScreen->m_DrawOrg = DrawOffset;
|
|
|
|
|
panel->m_ClipBox.SetOrigin( wxPoint( -0x7FFFFF, -0x7FFFFF ) );
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-25 12:28:03 +00:00
|
|
|
|
#ifndef GERBVIEW
|
|
|
|
|
if( !m_PrintFrame->m_Exclude_Edges_Pcb->GetValue() )
|
|
|
|
|
s_PrintMaskLayer |= EDGE_LAYER;
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
panel->PrintPage( dc, 0, s_PrintMaskLayer );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
#else
|
2008-03-04 04:22:27 +00:00
|
|
|
|
panel->PrintPage( dc, m_Print_Sheet_Ref, s_PrintMaskLayer );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
g_IsPrinting = FALSE;
|
|
|
|
|
panel->m_ClipBox = tmp;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
SetPenMinWidth( 1 );
|
|
|
|
|
GRForceBlackPen( FALSE );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
ActiveScreen->m_StartVisu = tmp_startvisu;
|
|
|
|
|
ActiveScreen->m_DrawOrg = old_org;
|
|
|
|
|
ActiveScreen->SetZoom( tmpzoom );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
}
|