2009-01-17 17:32:20 +00:00
|
|
|
/****************************************/
|
|
|
|
/* File: dialog_print_using_printer.cpp */
|
|
|
|
/****************************************/
|
|
|
|
|
|
|
|
#include "fctsys.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "appl_wxstruct.h"
|
2009-01-29 14:26:20 +00:00
|
|
|
#include "gr_basic.h"
|
2009-01-17 17:32:20 +00:00
|
|
|
#include "common.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "class_drawpanel.h"
|
|
|
|
#include "confirm.h"
|
2010-11-10 15:30:12 +00:00
|
|
|
#include "class_sch_screen.h"
|
|
|
|
#include "wxEeschemaStruct.h"
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
#include "general.h"
|
2010-02-02 15:01:09 +00:00
|
|
|
#include "eeschema_config.h"
|
2010-11-11 21:10:27 +00:00
|
|
|
#include "sch_sheet.h"
|
|
|
|
#include "sch_sheet_path.h"
|
2009-05-05 17:32:07 +00:00
|
|
|
|
2010-11-11 21:10:27 +00:00
|
|
|
#include "dialog_print_using_printer.h"
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
/**
|
|
|
|
* Custom print out for printing schematics.
|
|
|
|
*/
|
|
|
|
class SCH_PRINTOUT : public wxPrintout
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
private:
|
|
|
|
DIALOG_PRINT_USING_PRINTER* m_Parent;
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
public:
|
2010-02-02 15:01:09 +00:00
|
|
|
SCH_PRINTOUT( DIALOG_PRINT_USING_PRINTER* aParent, const wxString& aTitle ) :
|
2009-01-17 17:32:20 +00:00
|
|
|
wxPrintout( aTitle )
|
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
wxASSERT( aParent != NULL );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
m_Parent = aParent;
|
|
|
|
}
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
bool OnPrintPage( int page );
|
|
|
|
bool HasPage( int page );
|
|
|
|
bool OnBeginDocument( int startPage, int endPage );
|
2010-02-02 15:01:09 +00:00
|
|
|
void GetPageInfo( int* minPage, int* maxPage, int* selPageFrom, int* selPageTo );
|
2011-01-30 22:22:38 +00:00
|
|
|
void DrawPage( SCH_SCREEN* aScreen );
|
2009-01-17 17:32:20 +00:00
|
|
|
};
|
|
|
|
|
2010-01-18 17:05:31 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
/**
|
|
|
|
* Custom schematic print preview frame.
|
2009-01-17 17:32:20 +00:00
|
|
|
*/
|
2010-02-02 15:01:09 +00:00
|
|
|
class SCH_PREVIEW_FRAME : public wxPreviewFrame
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
public:
|
|
|
|
SCH_PREVIEW_FRAME( wxPrintPreview* aPreview, DIALOG_PRINT_USING_PRINTER* aParent,
|
|
|
|
const wxString& aTitle, const wxPoint& aPos = wxDefaultPosition,
|
|
|
|
const wxSize& aSize = wxDefaultSize ) :
|
|
|
|
wxPreviewFrame( aPreview, aParent, aTitle, aPos, aSize )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
}
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
DIALOG_PRINT_USING_PRINTER* GetParent()
|
|
|
|
{
|
|
|
|
return ( DIALOG_PRINT_USING_PRINTER* )wxWindow::GetParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnCloseWindow( wxCloseEvent& event )
|
|
|
|
{
|
|
|
|
if( !IsIconized() )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
GetParent()->GetParent()->SetPreviewPosition( GetPosition() );
|
|
|
|
GetParent()->GetParent()->SetPreviewSize( GetSize() );
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
2010-02-02 15:01:09 +00:00
|
|
|
|
|
|
|
wxPreviewFrame::OnCloseWindow( event );
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
private:
|
|
|
|
DECLARE_CLASS( SCH_PREVIEW_FRAME )
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
DECLARE_NO_COPY_CLASS( SCH_PREVIEW_FRAME )
|
|
|
|
};
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
IMPLEMENT_CLASS( SCH_PREVIEW_FRAME, wxPreviewFrame )
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
BEGIN_EVENT_TABLE( SCH_PREVIEW_FRAME, wxPreviewFrame )
|
|
|
|
EVT_CLOSE( SCH_PREVIEW_FRAME::OnCloseWindow )
|
|
|
|
END_EVENT_TABLE()
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
DIALOG_PRINT_USING_PRINTER::DIALOG_PRINT_USING_PRINTER( SCH_EDIT_FRAME* aParent ) :
|
2010-02-02 15:01:09 +00:00
|
|
|
DIALOG_PRINT_USING_PRINTER_BASE( aParent )
|
2010-01-18 17:05:31 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
wxASSERT( aParent != NULL );
|
2010-01-18 17:05:31 +00:00
|
|
|
|
2010-11-29 15:05:01 +00:00
|
|
|
m_checkReference->SetValue( aParent->GetPrintSheetReference() );
|
2010-02-02 15:01:09 +00:00
|
|
|
m_checkMonochrome->SetValue( aParent->GetPrintMonochrome() );
|
2011-05-21 09:16:57 +00:00
|
|
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
/* Problems with modal on wx-2.9 - Anyway preview is standard for OSX */
|
|
|
|
m_buttonPreview->Hide();
|
|
|
|
#endif
|
2010-02-02 15:01:09 +00:00
|
|
|
}
|
2010-01-18 17:05:31 +00:00
|
|
|
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_EDIT_FRAME* DIALOG_PRINT_USING_PRINTER::GetParent() const
|
2010-02-02 15:01:09 +00:00
|
|
|
{
|
2010-12-08 20:12:46 +00:00
|
|
|
return ( SCH_EDIT_FRAME* ) wxWindow::GetParent();
|
2010-01-18 17:05:31 +00:00
|
|
|
}
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
|
|
|
|
void DIALOG_PRINT_USING_PRINTER::OnInitDialog( wxInitDialogEvent& event )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_EDIT_FRAME* parent = GetParent();
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
if ( GetSizer() )
|
|
|
|
GetSizer()->SetSizeHints( this );
|
|
|
|
|
|
|
|
if( parent->GetPrintDialogPosition() == wxDefaultPosition &&
|
|
|
|
parent->GetPrintDialogSize() == wxDefaultSize )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
Center();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetPosition( parent->GetPrintDialogPosition() );
|
|
|
|
SetSize( parent->GetPrintDialogSize() );
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
SetFocus();
|
2010-11-11 21:10:27 +00:00
|
|
|
|
|
|
|
m_buttonPrint->SetDefault();
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
void DIALOG_PRINT_USING_PRINTER::OnCloseWindow( wxCloseEvent& event )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_EDIT_FRAME* parent = GetParent();
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
if( !IsIconized() )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
parent->SetPrintDialogPosition( GetPosition() );
|
|
|
|
parent->SetPrintDialogSize( GetSize() );
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
parent->SetPrintMonochrome( m_checkMonochrome->IsChecked() );
|
2010-11-29 15:05:01 +00:00
|
|
|
parent->SetPrintSheetReference( m_checkReference->IsChecked() );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
EndDialog( wxID_CANCEL );
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Open a dialog box for printer setup (printer options, page size ...)
|
|
|
|
*/
|
2010-02-02 15:01:09 +00:00
|
|
|
void DIALOG_PRINT_USING_PRINTER::OnPageSetup( wxCommandEvent& event )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_EDIT_FRAME* parent = GetParent();
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
wxPageSetupDialog pageSetupDialog( this, &parent->GetPageSetupData() );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
pageSetupDialog.ShowModal();
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
parent->GetPageSetupData() = pageSetupDialog.GetPageSetupDialogData();
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Open and display a previewer frame for printing
|
|
|
|
*/
|
2009-12-02 21:44:03 +00:00
|
|
|
void DIALOG_PRINT_USING_PRINTER::OnPrintPreview( wxCommandEvent& event )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_EDIT_FRAME* parent = GetParent();
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
parent->SetPrintMonochrome( m_checkMonochrome->IsChecked() );
|
2010-11-29 15:05:01 +00:00
|
|
|
parent->SetPrintSheetReference( m_checkReference->IsChecked() );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
// Pass two printout objects: for preview, and possible printing.
|
2010-02-02 15:01:09 +00:00
|
|
|
wxString title = _( "Preview" );
|
|
|
|
wxPrintPreview* preview = new wxPrintPreview( new SCH_PRINTOUT( this, title ),
|
|
|
|
new SCH_PRINTOUT( this, title ),
|
|
|
|
&parent->GetPageSetupData().GetPrintData() );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
if( preview == NULL )
|
|
|
|
{
|
2009-12-02 21:44:03 +00:00
|
|
|
DisplayError( this, wxT( "Print preview error!" ) );
|
2009-01-17 17:32:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
preview->SetZoom( 100 );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
SCH_PREVIEW_FRAME* frame = new SCH_PREVIEW_FRAME( preview, this, title,
|
|
|
|
parent->GetPreviewPosition(),
|
|
|
|
parent->GetPreviewSize() );
|
2009-01-17 17:32:20 +00:00
|
|
|
frame->Initialize();
|
|
|
|
frame->Show( true );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_PRINT_USING_PRINTER::OnPrintButtonClick( wxCommandEvent& event )
|
|
|
|
{
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_EDIT_FRAME* parent = GetParent();
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
parent->SetPrintMonochrome( m_checkMonochrome->IsChecked() );
|
2010-11-29 15:05:01 +00:00
|
|
|
parent->SetPrintSheetReference( m_checkReference->IsChecked() );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
wxPrintDialogData printDialogData( parent->GetPageSetupData().GetPrintData() );
|
|
|
|
printDialogData.SetMaxPage( g_RootSheet->CountSheets() );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
if( g_RootSheet->CountSheets() > 1 )
|
|
|
|
printDialogData.EnablePageNumbers( true );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
wxPrinter printer( &printDialogData );
|
|
|
|
SCH_PRINTOUT printout( this, _( "Print Schematic" ) );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
if( !printer.Print( this, &printout, true ) )
|
|
|
|
{
|
|
|
|
if( wxPrinter::GetLastError() == wxPRINTER_ERROR )
|
2010-02-02 15:01:09 +00:00
|
|
|
wxMessageBox( _( "An error occurred attempting to print the schematic." ),
|
|
|
|
_( "Printing" ), wxOK );
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
parent->GetPageSetupData() = printer.GetPrintDialogData().GetPrintData();
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
bool SCH_PRINTOUT::OnPrintPage( int page )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_EDIT_FRAME* parent = m_Parent->GetParent();
|
2009-01-17 17:32:20 +00:00
|
|
|
msg.Printf( _( "Print page %d" ), page );
|
2010-02-02 15:01:09 +00:00
|
|
|
parent->ClearMsgPanel();
|
|
|
|
parent->AppendMsgPanel( msg, wxEmptyString, CYAN );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
SCH_SCREEN* screen = parent->GetScreen();
|
|
|
|
SCH_SHEET_PATH* oldsheetpath = parent->GetSheet();
|
|
|
|
SCH_SHEET_PATH list;
|
|
|
|
SCH_SHEET_LIST SheetList( NULL );
|
|
|
|
SCH_SHEET_PATH* sheetpath = SheetList.GetSheet( page - 1 );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
if( list.BuildSheetPathInfoFromSheetPathValue( sheetpath->Path() ) )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
parent->m_CurrentSheet = &list;
|
|
|
|
parent->m_CurrentSheet->UpdateAllScreenReferences();
|
|
|
|
parent->SetSheetNumberAndCount();
|
|
|
|
screen = parent->m_CurrentSheet->LastScreen();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
screen = NULL;
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( screen == NULL )
|
|
|
|
return false;
|
2010-02-02 15:01:09 +00:00
|
|
|
|
2011-01-30 22:22:38 +00:00
|
|
|
DrawPage( screen );
|
2010-02-02 15:01:09 +00:00
|
|
|
parent->m_CurrentSheet = oldsheetpath;
|
|
|
|
parent->m_CurrentSheet->UpdateAllScreenReferences();
|
|
|
|
parent->SetSheetNumberAndCount();
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-30 22:22:38 +00:00
|
|
|
void SCH_PRINTOUT::GetPageInfo( int* minPage, int* maxPage, int* selPageFrom, int* selPageTo )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
*minPage = *selPageFrom = 1;
|
|
|
|
*maxPage = *selPageTo = g_RootSheet->CountSheets();
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
bool SCH_PRINTOUT::HasPage( int pageNum )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
|
|
|
int pageCount;
|
|
|
|
|
|
|
|
pageCount = g_RootSheet->CountSheets();
|
|
|
|
if( pageCount >= pageNum )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
bool SCH_PRINTOUT::OnBeginDocument( int startPage, int endPage )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
|
|
|
if( !wxPrintout::OnBeginDocument( startPage, endPage ) )
|
|
|
|
return false;
|
|
|
|
|
2010-02-16 17:49:17 +00:00
|
|
|
#ifdef __WXDEBUG__
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_EDIT_FRAME* parent = m_Parent->GetParent();
|
2010-02-02 15:01:09 +00:00
|
|
|
wxLogDebug( wxT( "Printer name: " ) +
|
|
|
|
parent->GetPageSetupData().GetPrintData().GetPrinterName() );
|
|
|
|
wxLogDebug( wxT( "Paper ID: %d" ),
|
|
|
|
parent->GetPageSetupData().GetPrintData().GetPaperId() );
|
|
|
|
wxLogDebug( wxT( "Color: %d" ),
|
|
|
|
(int) parent->GetPageSetupData().GetPrintData().GetColour() );
|
|
|
|
wxLogDebug( wxT( "Monochrome: %d" ), parent->GetPrintMonochrome() );
|
|
|
|
wxLogDebug( wxT( "Orientation: %d:" ),
|
|
|
|
parent->GetPageSetupData().GetPrintData().GetOrientation() );
|
|
|
|
wxLogDebug( wxT( "Quality: %d"),
|
|
|
|
parent->GetPageSetupData().GetPrintData().GetQuality() );
|
2010-09-15 17:50:47 +00:00
|
|
|
#endif
|
2010-02-02 15:01:09 +00:00
|
|
|
|
2009-01-17 17:32:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the real print function: print the active screen
|
|
|
|
*/
|
2011-01-30 22:22:38 +00:00
|
|
|
void SCH_PRINTOUT::DrawPage( SCH_SCREEN* aScreen )
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
2010-02-02 15:01:09 +00:00
|
|
|
int oldZoom;
|
|
|
|
wxPoint tmp_startvisu;
|
|
|
|
wxSize SheetSize; // Page size in internal units
|
|
|
|
wxPoint old_org;
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT oldClipBox;
|
2010-02-02 15:01:09 +00:00
|
|
|
wxRect fitRect;
|
|
|
|
wxDC* dc = GetDC();
|
2010-12-08 20:12:46 +00:00
|
|
|
SCH_EDIT_FRAME* parent = m_Parent->GetParent();
|
2011-01-21 19:30:59 +00:00
|
|
|
EDA_DRAW_PANEL* panel = parent->DrawPanel;
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
wxBusyCursor dummy;
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
/* Save current scale factor, offsets, and clip box. */
|
2011-01-30 22:22:38 +00:00
|
|
|
tmp_startvisu = aScreen->m_StartVisu;
|
|
|
|
oldZoom = aScreen->GetZoom();
|
|
|
|
old_org = aScreen->m_DrawOrg;
|
2010-02-02 15:01:09 +00:00
|
|
|
oldClipBox = panel->m_ClipBox;
|
|
|
|
|
|
|
|
/* Change scale factor, offsets, and clip box to print the whole page. */
|
|
|
|
panel->m_ClipBox.SetOrigin( wxPoint( 0, 0 ) );
|
|
|
|
panel->m_ClipBox.SetSize( wxSize( 0x7FFFFF0, 0x7FFFFF0 ) );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-11-29 15:05:01 +00:00
|
|
|
bool printReference = parent->GetPrintSheetReference();
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
if( printReference )
|
|
|
|
{
|
|
|
|
/* Draw the page to a memory and let the dc calculate the drawing
|
|
|
|
* limits.
|
|
|
|
*/
|
|
|
|
wxBitmap psuedoBitmap( 1, 1 );
|
|
|
|
wxMemoryDC memDC;
|
|
|
|
memDC.SelectObject( psuedoBitmap );
|
2011-01-30 22:22:38 +00:00
|
|
|
aScreen->Draw( panel, &memDC, GR_DEFAULT_DRAWMODE );
|
|
|
|
parent->TraceWorkSheet( &memDC, aScreen, g_DrawDefaultLineThickness );
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
wxLogDebug( wxT( "MinX = %d, MaxX = %d, MinY = %d, MaxY = %d" ),
|
|
|
|
memDC.MinX(), memDC.MaxX(), memDC.MinY(), memDC.MaxY() );
|
|
|
|
|
|
|
|
SheetSize.x = memDC.MaxX() - memDC.MinX();
|
|
|
|
SheetSize.y = memDC.MaxY() - memDC.MinY();
|
|
|
|
|
|
|
|
FitThisSizeToPageMargins( SheetSize, parent->GetPageSetupData() );
|
|
|
|
fitRect = GetLogicalPageMarginsRect( parent->GetPageSetupData() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-01-30 22:22:38 +00:00
|
|
|
SheetSize = aScreen->m_CurrentSheetDesc->m_Size;
|
2010-02-02 15:01:09 +00:00
|
|
|
FitThisSizeToPaper( SheetSize );
|
|
|
|
fitRect = GetLogicalPaperRect();
|
|
|
|
}
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
wxLogDebug( wxT( "Fit rectangle: %d, %d, %d, %d" ),
|
|
|
|
fitRect.x, fitRect.y, fitRect.width, fitRect.height );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
GRResetPenAndBrush( dc );
|
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
if( parent->GetPrintMonochrome() )
|
|
|
|
GRForceBlackPen( true );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2011-01-30 22:22:38 +00:00
|
|
|
aScreen->m_IsPrinting = true;
|
|
|
|
|
2009-01-17 17:32:20 +00:00
|
|
|
int bg_color = g_DrawBgColor;
|
|
|
|
|
2011-01-30 22:22:38 +00:00
|
|
|
aScreen->Draw( panel, dc, GR_DEFAULT_DRAWMODE );
|
2011-01-11 20:34:29 +00:00
|
|
|
|
|
|
|
if( printReference )
|
2011-01-30 22:22:38 +00:00
|
|
|
parent->TraceWorkSheet( dc, aScreen, g_DrawDefaultLineThickness );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2010-02-02 15:01:09 +00:00
|
|
|
g_DrawBgColor = bg_color;
|
2011-01-30 22:22:38 +00:00
|
|
|
aScreen->m_IsPrinting = false;
|
2010-02-02 15:01:09 +00:00
|
|
|
panel->m_ClipBox = oldClipBox;
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
GRForceBlackPen( false );
|
|
|
|
|
2011-01-30 22:22:38 +00:00
|
|
|
aScreen->m_StartVisu = tmp_startvisu;
|
|
|
|
aScreen->m_DrawOrg = old_org;
|
|
|
|
aScreen->SetZoom( oldZoom );
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|