2012-11-29 01:50:58 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2022-02-12 10:44:34 +00:00
|
|
|
* Copyright (C) 2009 Jean-Pierre Charras, jean-pierre.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-09-19 13:06:29 +00:00
|
|
|
* Copyright (C) 2018 CERN
|
|
|
|
* Author: Maciej Suminski <maciej.suminski@cern.ch>
|
2012-11-29 01:50:58 +00:00
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2018-09-19 13:06:29 +00:00
|
|
|
#ifndef BOARD_PRINTOUT_H
|
|
|
|
#define BOARD_PRINTOUT_H
|
2009-10-23 07:41:29 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
#include <wx/print.h>
|
2021-07-29 09:47:43 +00:00
|
|
|
#include <layer_ids.h>
|
2018-10-05 14:41:17 +00:00
|
|
|
#include <printout.h>
|
2022-08-31 16:17:14 +00:00
|
|
|
#include <math/box2.h>
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
|
2020-10-24 20:20:55 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2022-08-31 16:17:14 +00:00
|
|
|
namespace KIGFX
|
|
|
|
{
|
2018-09-19 13:06:29 +00:00
|
|
|
class GAL;
|
|
|
|
class VIEW;
|
|
|
|
class PAINTER;
|
|
|
|
};
|
2009-10-23 07:41:29 +00:00
|
|
|
|
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
struct BOARD_PRINTOUT_SETTINGS : public PRINTOUT_SETTINGS
|
2009-10-23 07:41:29 +00:00
|
|
|
{
|
2018-10-05 14:41:17 +00:00
|
|
|
BOARD_PRINTOUT_SETTINGS( const PAGE_INFO& aPageInfo );
|
2010-01-09 20:25:39 +00:00
|
|
|
|
2020-02-05 22:19:14 +00:00
|
|
|
virtual ~BOARD_PRINTOUT_SETTINGS()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-11-16 11:16:44 +00:00
|
|
|
LSET m_LayerSet; ///< Layers to print
|
|
|
|
bool m_Mirror; ///< Print mirrored
|
2012-11-29 01:50:58 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
void Load( APP_SETTINGS_BASE* aConfig ) override;
|
|
|
|
void Save( APP_SETTINGS_BASE* aConfig ) override;
|
2009-10-23 07:41:29 +00:00
|
|
|
};
|
|
|
|
|
2020-12-18 14:04:03 +00:00
|
|
|
|
2009-10-23 07:41:29 +00:00
|
|
|
/**
|
2020-12-18 14:04:03 +00:00
|
|
|
* An object derived from wxPrintout to handle the necessary information to control a printer
|
|
|
|
* when printing a board.
|
2009-10-23 07:41:29 +00:00
|
|
|
*/
|
2018-09-19 13:06:29 +00:00
|
|
|
class BOARD_PRINTOUT : public wxPrintout
|
2009-10-23 07:41:29 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-10-05 14:41:17 +00:00
|
|
|
BOARD_PRINTOUT( const BOARD_PRINTOUT_SETTINGS& aParams, const KIGFX::VIEW* aView,
|
2020-12-18 14:04:03 +00:00
|
|
|
const wxString& aTitle );
|
2009-10-23 07:41:29 +00:00
|
|
|
|
2018-09-19 13:06:29 +00:00
|
|
|
virtual ~BOARD_PRINTOUT() {}
|
2010-01-24 16:27:36 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
void GetPageInfo( int* minPage, int* maxPage, int* selPageFrom, int* selPageTo ) override;
|
2009-10-23 07:41:29 +00:00
|
|
|
|
2018-10-02 13:47:59 +00:00
|
|
|
bool HasPage( int aPage ) override
|
|
|
|
{
|
2018-10-05 14:41:17 +00:00
|
|
|
return aPage <= m_settings.m_pageCount;
|
2018-10-02 13:47:59 +00:00
|
|
|
}
|
2018-09-19 13:06:29 +00:00
|
|
|
|
2016-09-21 09:34:18 +00:00
|
|
|
/**
|
2018-09-19 13:06:29 +00:00
|
|
|
* Print a page (or a set of pages).
|
2020-12-18 14:04:03 +00:00
|
|
|
*
|
|
|
|
* @note This function prepares the print parameters for the function which actually prints
|
|
|
|
* the draw layers.
|
|
|
|
*
|
|
|
|
* @param aLayerName a text which can be printed as layer name.
|
|
|
|
* @param aPageNum the number of the current page (only used to print this value).
|
2021-01-25 12:42:36 +00:00
|
|
|
* @param aPageCount the number of pages to print (only used to print this value).
|
2016-09-21 09:34:18 +00:00
|
|
|
*/
|
2018-09-19 13:06:29 +00:00
|
|
|
virtual void DrawPage( const wxString& aLayerName = wxEmptyString,
|
2020-12-18 14:04:03 +00:00
|
|
|
int aPageNum = 1, int aPageCount = 1 );
|
2018-09-19 13:06:29 +00:00
|
|
|
|
|
|
|
protected:
|
2021-01-25 12:42:36 +00:00
|
|
|
///< Convert mils to internal units
|
2018-10-06 16:51:46 +00:00
|
|
|
virtual int milsToIU( double aMils ) const = 0;
|
|
|
|
|
2021-01-25 12:42:36 +00:00
|
|
|
///< Enables layers visibility for a printout
|
2020-01-17 11:56:07 +00:00
|
|
|
virtual void setupViewLayers( KIGFX::VIEW& aView, const LSET& aLayerSet );
|
2018-09-28 08:10:08 +00:00
|
|
|
|
2021-01-25 12:42:36 +00:00
|
|
|
///< Configures PAINTER object for a printout
|
2020-01-17 11:56:07 +00:00
|
|
|
virtual void setupPainter( KIGFX::PAINTER& aPainter );
|
2018-09-28 11:15:17 +00:00
|
|
|
|
2021-01-25 12:42:36 +00:00
|
|
|
///< Configures GAL object for a printout
|
2018-10-05 14:41:17 +00:00
|
|
|
virtual void setupGal( KIGFX::GAL* aGal );
|
2018-09-29 10:13:06 +00:00
|
|
|
|
2021-02-22 23:47:17 +00:00
|
|
|
///< Returns bounding box of the printed objects (excluding drawing-sheet frame)
|
2022-08-30 23:28:18 +00:00
|
|
|
virtual BOX2I getBoundingBox() = 0;
|
2018-09-19 13:06:29 +00:00
|
|
|
|
2021-01-25 12:42:36 +00:00
|
|
|
///< Returns a PAINTER instance used to draw the items.
|
2018-09-19 13:06:29 +00:00
|
|
|
virtual std::unique_ptr<KIGFX::PAINTER> getPainter( KIGFX::GAL* aGal ) = 0;
|
|
|
|
|
2021-01-25 12:42:36 +00:00
|
|
|
///< Source VIEW object (note that actual printing only refers to this object)
|
2018-09-19 13:06:29 +00:00
|
|
|
const KIGFX::VIEW* m_view;
|
|
|
|
|
2021-01-25 12:42:36 +00:00
|
|
|
///< Printout parameters
|
2018-10-05 14:41:17 +00:00
|
|
|
BOARD_PRINTOUT_SETTINGS m_settings;
|
2022-02-12 10:44:34 +00:00
|
|
|
|
|
|
|
/// True if the caller is Gerbview, false for Pcbnew
|
|
|
|
bool m_gerbviewPrint;
|
2009-10-23 07:41:29 +00:00
|
|
|
};
|
|
|
|
|
2018-09-19 13:06:29 +00:00
|
|
|
#endif // BOARD_PRINTOUT_H
|