kicad/pcbnew/plotcontroller.h

124 lines
3.6 KiB
C
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2012 Lorenzo Marcantonio, <l.marcantonio@logossrl.com>
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
2021-07-19 23:56:05 +00:00
* Copyright (C) 1992-2021 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 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
*/
2012-08-29 16:59:50 +00:00
/**
* @file pcbnew/pcbplot.h
*/
#ifndef PLOTCONTROLLER_H_
#define PLOTCONTROLLER_H_
#include <pcb_plot_params.h>
#include <layer_ids.h>
2012-08-29 16:59:50 +00:00
class PLOTTER;
class BOARD;
2012-08-29 16:59:50 +00:00
/**
2012-08-29 16:59:50 +00:00
* Batch plotter state object. Keeps the plot options and handles multiple
2021-07-19 23:56:05 +00:00
* plot requests. Useful in Python scripts.
2012-08-29 16:59:50 +00:00
*/
class PLOT_CONTROLLER
{
public:
/** Batch plotter constructor, nothing interesting here */
2012-08-29 16:59:50 +00:00
PLOT_CONTROLLER( BOARD *aBoard );
2021-07-19 23:56:05 +00:00
/**
* Ensure that the last plot is closed.
*/
2012-08-29 16:59:50 +00:00
~PLOT_CONTROLLER();
/**
* Accessor to the plot parameters and options
*/
PCB_PLOT_PARAMS& GetPlotOptions() { return m_plotOptions; }
2021-07-21 23:14:56 +00:00
void SetLayer( int aLayer ) { m_plotLayer = aLayer; }
int GetLayer() { return m_plotLayer; }
/**
2021-07-19 23:56:05 +00:00
* @return true if a plotter is initialized and can be used.
*/
2021-07-19 23:56:05 +00:00
bool IsPlotOpen() const { return m_plotter != nullptr; }
2021-07-19 23:56:05 +00:00
/**
* Close the current plot, nothing happens if it isn't open.
*/
2012-08-29 16:59:50 +00:00
void ClosePlot();
2021-07-19 23:56:05 +00:00
/** Open a new plotfile; works as a factory for plotter objects/
*
* @param aSuffix is a string added to the base filename (derived from
2021-07-19 23:56:05 +00:00
* the board filename) to identify the plot file.
* @param aFormat is the plot file format identifier.
*/
2019-12-28 00:55:11 +00:00
bool OpenPlotfile( const wxString& aSuffix, PLOT_FORMAT aFormat, const wxString& aSheetDesc );
2021-07-19 23:56:05 +00:00
/**
* Plot a single layer on the current plotfile m_plotLayer is the layer to plot.
*/
bool PlotLayer();
/**
* @return the current plot full filename, set by OpenPlotfile
*/
const wxString GetPlotFileName() { return m_plotFile.GetFullPath(); }
/**
* @return the current plot full filename, set by OpenPlotfile
*/
const wxString GetPlotDirName() { return m_plotFile.GetPathWithSep(); }
/**
2021-07-19 23:56:05 +00:00
* Choose color or bland and white plot mode.
*
* @param aColorMode set to true to activate the plot color mode or false for black and white.
*/
2021-07-19 23:56:05 +00:00
void SetColorMode( bool aColorMode );
/**
2021-07-19 23:56:05 +00:00
* @return true if the current plot color mode is color or false if the current plot color
* mode is black and white.
*/
bool GetColorMode();
2012-08-29 16:59:50 +00:00
private:
2021-07-21 23:14:56 +00:00
int m_plotLayer;
PCB_PLOT_PARAMS m_plotOptions;
2021-07-21 23:14:56 +00:00
/// This is the plotter object; it starts NULL and become instantiated when a plotfile is
// requested
PLOTTER* m_plotter;
2021-07-21 23:14:56 +00:00
BOARD* m_board;
wxFileName m_plotFile;
2012-08-29 16:59:50 +00:00
};
#endif