57 lines
1.7 KiB
C++
57 lines
1.7 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2023 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
* Copyright (C) 2023 KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <wx/print.h>
|
|
|
|
class SCH_EDIT_FRAME;
|
|
class SCH_SCREEN;
|
|
|
|
namespace KIGFX
|
|
{
|
|
class GAL;
|
|
class VIEW;
|
|
class PAINTER;
|
|
};
|
|
|
|
/**
|
|
* Custom print out for printing schematics.
|
|
*/
|
|
class SCH_PRINTOUT : public wxPrintout
|
|
{
|
|
public:
|
|
SCH_PRINTOUT( SCH_EDIT_FRAME* aParent, const wxString& aTitle, bool aUseCairo );
|
|
|
|
bool OnPrintPage( int page ) override;
|
|
bool HasPage( int page ) override;
|
|
bool OnBeginDocument( int startPage, int endPage ) override;
|
|
void GetPageInfo( int* minPage, int* maxPage, int* selPageFrom, int* selPageTo ) override;
|
|
void PrintPage( SCH_SCREEN* aScreen );
|
|
|
|
private:
|
|
SCH_EDIT_FRAME* m_parent;
|
|
///< Source VIEW object (note that actual printing only refers to this object)
|
|
const KIGFX::VIEW* m_view;
|
|
bool m_useCairo;
|
|
|
|
int milsToIU( int aMils );
|
|
};
|