2012-04-05 18:27:56 +00:00
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
/* File: dialog_print_for_modedit.cpp */
|
2012-04-05 18:27:56 +00:00
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
// Set this to 1 if you want to test PostScript printing under MSW.
|
|
|
|
#define wxTEST_POSTSCRIPT_IN_MSW 1
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <appl_wxstruct.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
#include <module_editor_frame.h>
|
|
|
|
#include <pcbplot.h>
|
|
|
|
|
|
|
|
#include <dialog_print_for_modedit_base.h>
|
|
|
|
#include <printout_controler.h>
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
#define WIDTH_MAX_VALUE 1000
|
|
|
|
#define WIDTH_MIN_VALUE 1
|
|
|
|
|
|
|
|
static double s_ScaleList[] =
|
|
|
|
{ 0, 0.5, 0.7, 1.0, 1.4, 2.0, 3.0, 4.0, 8.0, 16.0 };
|
|
|
|
|
|
|
|
|
|
|
|
// static print data and page setup data, to remember settings during the session
|
|
|
|
static PRINT_PARAMETERS s_Parameters;
|
2011-01-17 18:37:58 +00:00
|
|
|
static wxPrintData* s_PrintData;
|
|
|
|
static wxPageSetupDialogData* s_pageSetupData = (wxPageSetupDialogData*) NULL;
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
|
2012-04-05 18:27:56 +00:00
|
|
|
/**
|
|
|
|
* Class DIALOG_PRINT_FOR_MODEDIT
|
|
|
|
* is derived from DIALOG_PRINT_FOR_MODEDIT_BASE which is created by wxFormBuilder.
|
2009-10-23 07:41:29 +00:00
|
|
|
*/
|
|
|
|
class DIALOG_PRINT_FOR_MODEDIT : public DIALOG_PRINT_FOR_MODEDIT_BASE
|
|
|
|
{
|
|
|
|
public:
|
2012-04-05 18:27:56 +00:00
|
|
|
DIALOG_PRINT_FOR_MODEDIT( PCB_BASE_FRAME* parent );
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
private:
|
2012-04-05 18:27:56 +00:00
|
|
|
PCB_BASE_FRAME* m_parent;
|
|
|
|
wxConfig* m_config;
|
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
void OnCloseWindow( wxCloseEvent& event );
|
2012-04-05 18:27:56 +00:00
|
|
|
|
|
|
|
/// Open a dialog box for printer setup (printer options, page size ...)
|
2009-10-23 07:41:29 +00:00
|
|
|
void OnPrintSetup( wxCommandEvent& event );
|
2012-04-05 18:27:56 +00:00
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
void OnPrintPreview( wxCommandEvent& event );
|
2012-04-05 18:27:56 +00:00
|
|
|
|
|
|
|
/// Called on activate Print button
|
2009-10-23 07:41:29 +00:00
|
|
|
void OnPrintButtonClick( wxCommandEvent& event );
|
|
|
|
|
|
|
|
void OnButtonCancelClick( wxCommandEvent& event ) { Close(); }
|
|
|
|
void InitValues( );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
void FOOTPRINT_EDIT_FRAME::ToPrinter( wxCommandEvent& event )
|
2009-10-23 07:41:29 +00:00
|
|
|
{
|
2011-01-17 18:37:58 +00:00
|
|
|
if( s_PrintData == NULL ) // First print
|
2009-10-23 07:41:29 +00:00
|
|
|
{
|
2011-01-17 18:37:58 +00:00
|
|
|
s_PrintData = new wxPrintData();
|
2009-10-23 07:41:29 +00:00
|
|
|
|
2011-01-17 18:37:58 +00:00
|
|
|
if( !s_PrintData->Ok() )
|
2009-10-23 07:41:29 +00:00
|
|
|
{
|
|
|
|
DisplayError( this, _( "Error Init Printer info" ) );
|
|
|
|
}
|
2011-01-17 18:37:58 +00:00
|
|
|
s_PrintData->SetQuality( wxPRINT_QUALITY_HIGH ); // Default resolution = HIGHT;
|
2009-10-23 07:41:29 +00:00
|
|
|
}
|
|
|
|
|
2012-01-17 15:34:05 +00:00
|
|
|
s_PrintData->SetOrientation( GetPageSettings().IsPortrait() ? wxPORTRAIT : wxLANDSCAPE );
|
|
|
|
|
2012-04-05 18:27:56 +00:00
|
|
|
DIALOG_PRINT_FOR_MODEDIT dlg( this );
|
2009-10-23 07:41:29 +00:00
|
|
|
|
2012-04-05 18:27:56 +00:00
|
|
|
dlg.ShowModal();
|
2009-10-23 07:41:29 +00:00
|
|
|
}
|
|
|
|
|
2012-04-05 18:27:56 +00:00
|
|
|
|
|
|
|
DIALOG_PRINT_FOR_MODEDIT::DIALOG_PRINT_FOR_MODEDIT( PCB_BASE_FRAME* parent ) :
|
2009-10-23 07:41:29 +00:00
|
|
|
DIALOG_PRINT_FOR_MODEDIT_BASE( parent )
|
|
|
|
{
|
2012-04-05 18:27:56 +00:00
|
|
|
m_parent = parent;
|
2009-10-23 07:41:29 +00:00
|
|
|
s_Parameters.m_ForceCentered = true;
|
2012-04-05 18:27:56 +00:00
|
|
|
m_config = wxGetApp().GetSettings();
|
2009-10-23 07:41:29 +00:00
|
|
|
InitValues();
|
|
|
|
|
2011-03-14 15:17:18 +00:00
|
|
|
m_buttonPrint->SetDefault();
|
2010-01-20 12:43:05 +00:00
|
|
|
GetSizer()->SetSizeHints( this );
|
2009-10-23 07:41:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_PRINT_FOR_MODEDIT::InitValues( )
|
|
|
|
{
|
2011-01-17 18:37:58 +00:00
|
|
|
if( s_pageSetupData == NULL )
|
|
|
|
{
|
|
|
|
s_pageSetupData = new wxPageSetupDialogData;
|
|
|
|
// Set initial page margins.
|
|
|
|
// Margins are already set in Pcbnew, so we cans use 0
|
|
|
|
s_pageSetupData->SetMarginTopLeft(wxPoint(0, 0));
|
|
|
|
s_pageSetupData->SetMarginBottomRight(wxPoint(0, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
s_Parameters.m_PageSetupData = s_pageSetupData;
|
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
// Read the scale adjust option
|
|
|
|
int scale_Select = 3; // default selected scale = ScaleList[3] = 1
|
2012-04-05 18:27:56 +00:00
|
|
|
if( m_config )
|
2009-10-23 07:41:29 +00:00
|
|
|
{
|
2012-04-05 18:27:56 +00:00
|
|
|
m_config->Read( OPTKEY_PRINT_MODULE_SCALE, &scale_Select );
|
|
|
|
m_config->Read( OPTKEY_PRINT_MONOCHROME_MODE, &s_Parameters.m_Print_Black_and_White, 1);
|
2009-10-23 07:41:29 +00:00
|
|
|
}
|
|
|
|
|
2010-02-24 15:33:03 +00:00
|
|
|
s_Parameters.m_PenDefaultSize = g_DrawDefaultLineThickness;
|
2009-10-23 07:41:29 +00:00
|
|
|
m_ScaleOption->SetSelection( scale_Select );
|
|
|
|
|
|
|
|
if( s_Parameters.m_Print_Black_and_White )
|
|
|
|
m_ModeColorOption->SetSelection( 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-05 18:27:56 +00:00
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
void DIALOG_PRINT_FOR_MODEDIT::OnCloseWindow( wxCloseEvent& event )
|
|
|
|
{
|
2012-04-05 18:27:56 +00:00
|
|
|
if( m_config )
|
2009-10-23 07:41:29 +00:00
|
|
|
{
|
2012-04-05 18:27:56 +00:00
|
|
|
m_config->Write( OPTKEY_PRINT_MODULE_SCALE, m_ScaleOption->GetSelection() );
|
|
|
|
m_config->Write( OPTKEY_PRINT_MONOCHROME_MODE, s_Parameters.m_Print_Black_and_White);
|
2009-10-23 07:41:29 +00:00
|
|
|
}
|
|
|
|
EndModal( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-04-05 18:27:56 +00:00
|
|
|
void DIALOG_PRINT_FOR_MODEDIT::OnPrintSetup( wxCommandEvent& event )
|
2009-10-23 07:41:29 +00:00
|
|
|
{
|
2011-01-17 18:37:58 +00:00
|
|
|
wxPrintDialogData printDialogData( *s_PrintData );
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
if( printDialogData.Ok() )
|
|
|
|
{
|
|
|
|
wxPrintDialog printerDialog( this, &printDialogData );
|
|
|
|
printerDialog.ShowModal();
|
2011-01-17 18:37:58 +00:00
|
|
|
*s_PrintData = printerDialog.GetPrintDialogData().GetPrintData();
|
2009-10-23 07:41:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
DisplayError( this, _( "Printer Problem!" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-05 18:27:56 +00:00
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
void DIALOG_PRINT_FOR_MODEDIT::OnPrintPreview( wxCommandEvent& event )
|
2012-04-05 18:27:56 +00:00
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
/* Open and display a previewer frame for printing
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
s_Parameters.m_Print_Black_and_White = m_ModeColorOption->GetSelection();
|
|
|
|
s_Parameters.m_PrintScale = s_ScaleList[m_ScaleOption->GetSelection()];
|
|
|
|
|
|
|
|
// Pass two printout objects: for preview, and possible printing.
|
|
|
|
wxString title = _( "Print Preview" );
|
|
|
|
wxPrintPreview* preview =
|
2012-11-29 01:50:58 +00:00
|
|
|
new wxPrintPreview( new BOARD_PRINTOUT_CONTROLLER( s_Parameters, m_parent, title ),
|
|
|
|
new BOARD_PRINTOUT_CONTROLLER( s_Parameters, m_parent, title ),
|
2011-01-17 18:37:58 +00:00
|
|
|
s_PrintData );
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
if( preview == NULL )
|
|
|
|
{
|
|
|
|
DisplayError( this, wxT( "OnPrintPreview() problem" ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uses the parent position and size.
|
2012-04-05 18:27:56 +00:00
|
|
|
// @todo uses last position and size ans store them when exit in m_config
|
|
|
|
wxPoint WPos = m_parent->GetPosition();
|
|
|
|
wxSize WSize = m_parent->GetSize();
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
wxPreviewFrame* frame = new wxPreviewFrame( preview, this, title, WPos, WSize );
|
|
|
|
|
|
|
|
frame->Initialize();
|
2012-01-22 17:20:22 +00:00
|
|
|
frame->Show( true );
|
2009-10-23 07:41:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_PRINT_FOR_MODEDIT::OnPrintButtonClick( wxCommandEvent& event )
|
|
|
|
{
|
2012-04-05 18:27:56 +00:00
|
|
|
PCB_PLOT_PARAMS plot_opts = m_parent->GetPlotSettings();
|
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
s_Parameters.m_Print_Black_and_White = m_ModeColorOption->GetSelection();
|
|
|
|
s_Parameters.m_PrintScale = s_ScaleList[m_ScaleOption->GetSelection()];
|
|
|
|
|
2012-08-30 18:06:13 +00:00
|
|
|
plot_opts.SetFineScaleAdjustX( s_Parameters.m_XScaleAdjust );
|
|
|
|
plot_opts.SetFineScaleAdjustY( s_Parameters.m_YScaleAdjust );
|
|
|
|
plot_opts.SetScale( s_Parameters.m_PrintScale );
|
2012-04-05 18:27:56 +00:00
|
|
|
|
|
|
|
m_parent->SetPlotSettings( plot_opts );
|
2009-10-23 07:41:29 +00:00
|
|
|
|
2011-01-17 18:37:58 +00:00
|
|
|
wxPrintDialogData printDialogData( *s_PrintData );
|
2009-10-23 07:41:29 +00:00
|
|
|
wxPrinter printer( &printDialogData );
|
|
|
|
|
2012-11-29 01:50:58 +00:00
|
|
|
BOARD_PRINTOUT_CONTROLLER printout( s_Parameters, m_parent, _( "Print Footprint" ) );
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
#if !defined(__WINDOWS__) && !wxCHECK_VERSION(2,9,0)
|
|
|
|
wxDC* dc = printout.GetDC();
|
|
|
|
( (wxPostScriptDC*) dc )->SetResolution( 600 ); // Postscript DC resolution is 600 ppi
|
|
|
|
#endif
|
|
|
|
|
2012-01-22 17:20:22 +00:00
|
|
|
if( !printer.Print( this, &printout, true ) )
|
2009-10-23 07:41:29 +00:00
|
|
|
{
|
|
|
|
if( wxPrinter::GetLastError() == wxPRINTER_ERROR )
|
|
|
|
DisplayError( this, _( "There was a problem printing" ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-17 18:37:58 +00:00
|
|
|
*s_PrintData = printer.GetPrintDialogData().GetPrintData();
|
2009-10-23 07:41:29 +00:00
|
|
|
}
|
2012-04-05 18:27:56 +00:00
|
|
|
|
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
}
|