KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_plot.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#include <board.h>
25#include <dialog_plot_base.h>
26#include <pcb_plot_params.h>
27#include <widgets/unit_binder.h>
28
29// the plot dialog window name, used by wxWidgets
30#define DLG_WINDOW_NAME wxT( "plot_dialog-window" )
31
32class wxRearrangeList;
33class wxBitmapButton;
34
35
40{
41public:
42 DIALOG_PLOT( PCB_EDIT_FRAME* parent );
43
44 virtual ~DIALOG_PLOT();
45
46private:
47 // Event called functions
48 void Plot( wxCommandEvent& event ) override;
49 void OnOutputDirectoryBrowseClicked( wxCommandEvent& event ) override;
50 void OnRightClickLayers( wxMouseEvent& event );
51 void OnRightClickAllLayers( wxMouseEvent& event );
52 void SetPlotFormat( wxCommandEvent& event ) override;
53 void OnChangeDXFPlotMode( wxCommandEvent& event ) override;
54 void OnSetScaleOpt( wxCommandEvent& event ) override;
55 void CreateDrillFile( wxCommandEvent& event ) override;
56 void OnGerberX2Checked( wxCommandEvent& event ) override;
57 void onRunDRC( wxCommandEvent& event ) override;
58 void onBoardSetup( wxHyperlinkEvent& aEvent ) override;
59
60 void onPlotAllListMoveUp( wxCommandEvent& aEvent );
61 void onPlotAllListMoveDown( wxCommandEvent& aEvent );
62
63 void onPlotFPValues( wxCommandEvent& aEvent ) override;
64 void onPlotFPRefs( wxCommandEvent& aEvent ) override;
65 void onPlotFPText( wxCommandEvent& aEvent ) override;
66
67 // other functions
68 void init_Dialog(); // main initialization
69 void reInitDialog(); // initialization after calling drill dialog
70 void applyPlotSettings();
72
74 {
75 m_plotModeOpt->SetSelection( aPlotMode == SKETCH ? 1 : 0 );
76 }
77
78 void arrangeAllLayersList( const LSEQ& aSeq );
79
80private:
82 LSEQ m_layerList; // List to hold CheckListBox layer numbers
83 double m_XScaleAdjust; // X scale factor adjust to compensate
84 // plotter X scaling error
85 double m_YScaleAdjust; // X scale factor adjust to compensate
86 // plotter Y scaling error
87 int m_PSWidthAdjust; // Global width correction for exact line width
88 // in postscript output.
89 // this is a correction factor for tracks width
90 // when plotted
91 int m_widthAdjustMinValue; // Global track width limits
92 int m_widthAdjustMaxValue; // tracks width will be "clipped" whenever the
93 // m_PSWidthAdjust to these limits.
96
98
100
101 wxRearrangeList* m_plotAllLayersList;
102
105
109
112};
Class DIALOG_PLOT_BASE.
wxChoice * m_plotModeOpt
A dialog to set the plot options and create plot files in various formats.
Definition: dialog_plot.h:40
static LSET s_lastAllLayersSet
Definition: dialog_plot.h:108
void reInitDialog()
void OnRightClickLayers(wxMouseEvent &event)
static LSEQ s_lastAllLayersOrder
The plot on all layers ordering the last time the dialog was opened.
Definition: dialog_plot.h:111
PCB_PLOT_PARAMS m_plotOpts
Definition: dialog_plot.h:99
STD_BITMAP_BUTTON * m_bpMoveUp
Definition: dialog_plot.h:103
void onPlotAllListMoveUp(wxCommandEvent &aEvent)
void OnChangeDXFPlotMode(wxCommandEvent &event) override
int m_widthAdjustMinValue
Definition: dialog_plot.h:91
UNIT_BINDER m_trackWidthCorrection
Definition: dialog_plot.h:95
void onBoardSetup(wxHyperlinkEvent &aEvent) override
void OnRightClickAllLayers(wxMouseEvent &event)
PCB_EDIT_FRAME * m_parent
Definition: dialog_plot.h:81
void Plot(wxCommandEvent &event) override
void applyPlotSettings()
int m_PSWidthAdjust
Definition: dialog_plot.h:87
wxString m_DRCWarningTemplate
Definition: dialog_plot.h:97
void setPlotModeChoiceSelection(OUTLINE_MODE aPlotMode)
Definition: dialog_plot.h:73
void OnOutputDirectoryBrowseClicked(wxCommandEvent &event) override
wxRearrangeList * m_plotAllLayersList
Definition: dialog_plot.h:101
void onPlotAllListMoveDown(wxCommandEvent &aEvent)
void onRunDRC(wxCommandEvent &event) override
void arrangeAllLayersList(const LSEQ &aSeq)
double m_YScaleAdjust
Definition: dialog_plot.h:85
void OnSetScaleOpt(wxCommandEvent &event) override
virtual ~DIALOG_PLOT()
STD_BITMAP_BUTTON * m_bpMoveDown
Definition: dialog_plot.h:104
void onPlotFPText(wxCommandEvent &aEvent) override
void CreateDrillFile(wxCommandEvent &event) override
void onPlotFPValues(wxCommandEvent &aEvent) override
void onPlotFPRefs(wxCommandEvent &aEvent) override
UNIT_BINDER m_defaultPenSize
Definition: dialog_plot.h:94
double m_XScaleAdjust
Definition: dialog_plot.h:83
PLOT_FORMAT getPlotFormat()
static LSET s_lastLayerSet
The plot layer set that last time the dialog was opened.
Definition: dialog_plot.h:107
int m_widthAdjustMaxValue
Definition: dialog_plot.h:92
void OnGerberX2Checked(wxCommandEvent &event) override
void init_Dialog()
void SetPlotFormat(wxCommandEvent &event) override
LSEQ m_layerList
Definition: dialog_plot.h:82
LSEQ is a sequence (and therefore also a set) of PCB_LAYER_IDs.
Definition: layer_ids.h:520
LSET is a set of PCB_LAYER_IDs.
Definition: layer_ids.h:574
The main frame for Pcbnew.
Parameters and options when plotting/printing a board.
A bitmap button widget that behaves like a standard dialog button except with an icon.
OUTLINE_MODE
Definition: outline_mode.h:25
@ SKETCH
Definition: outline_mode.h:26
PLOT_FORMAT
The set of supported output plot formats.
Definition: plotter.h:64