2014-10-27 14:14:39 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2016-06-19 18:29:13 +00:00
|
|
|
* Copyright (C) 2010-2016 Jean-Pierre Charras, jean-pierre.charras at wanadoo.fr
|
2021-01-27 22:15:38 +00:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-10-03 07:50:05 +00:00
|
|
|
* Copyright (C) 2018 CERN
|
2021-01-27 22:15:38 +00:00
|
|
|
*
|
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
2014-10-27 14:14:39 +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
|
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2021-09-14 22:45:14 +00:00
|
|
|
#include <kiface_base.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
2020-11-18 01:21:04 +00:00
|
|
|
#include <core/arraydim.h>
|
2012-04-13 18:51:24 +00:00
|
|
|
#include <base_units.h>
|
2020-05-16 17:15:43 +00:00
|
|
|
#include <pcbnew_settings.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbplot.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
2018-09-28 14:29:03 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tools/pcb_actions.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include <tools/pcb_control.h>
|
2020-12-17 13:12:18 +00:00
|
|
|
#include <dialogs/dialog_print_generic.h>
|
2018-10-05 14:41:17 +00:00
|
|
|
#include <pcbnew_printout.h>
|
2021-05-01 07:50:29 +00:00
|
|
|
#include <wx/checklst.h>
|
|
|
|
#include <wx/textdlg.h>
|
2010-02-24 15:33:03 +00:00
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
class DIALOG_PRINT_PCBNEW : public DIALOG_PRINT_GENERIC
|
2009-01-17 17:32:20 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-10-05 14:41:17 +00:00
|
|
|
DIALOG_PRINT_PCBNEW( PCB_BASE_EDIT_FRAME* aParent, PCBNEW_PRINTOUT_SETTINGS* aSettings );
|
|
|
|
~DIALOG_PRINT_PCBNEW() {}
|
2009-01-17 17:32:20 +00:00
|
|
|
|
|
|
|
private:
|
2022-03-18 13:10:18 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
ID_SELECT_FIRST = 4100,
|
|
|
|
ID_SELECT_FAB_LAYERS = ID_SELECT_FIRST,
|
|
|
|
ID_SELECT_COPPER_LAYERS,
|
|
|
|
ID_DESELECT_COPPER_LAYERS,
|
|
|
|
ID_SELECT_ALL_LAYERS,
|
|
|
|
ID_DESELECT_ALL_LAYERS,
|
|
|
|
ID_SELECT_LAST
|
|
|
|
};
|
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
PCBNEW_PRINTOUT_SETTINGS* settings() const
|
|
|
|
{
|
|
|
|
wxASSERT( dynamic_cast<PCBNEW_PRINTOUT_SETTINGS*>( m_settings ) );
|
|
|
|
return static_cast<PCBNEW_PRINTOUT_SETTINGS*>( m_settings );
|
|
|
|
}
|
2018-06-13 12:20:29 +00:00
|
|
|
|
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
void createExtraOptions();
|
|
|
|
void createLeftPanel();
|
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
void onUseThemeClicked( wxCommandEvent& event );
|
|
|
|
void onPagePerLayerClicked( wxCommandEvent& event );
|
|
|
|
void onColorModeClicked( wxCommandEvent& event );
|
2022-03-18 13:10:18 +00:00
|
|
|
void onPopUpLayers( wxCommandEvent& event );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Update layerset basing on the selected layers.
|
2018-10-05 14:41:17 +00:00
|
|
|
int setLayerSetFromList();
|
2008-04-18 13:28:56 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
void saveSettings() override;
|
2012-03-26 21:45:05 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
wxPrintout* createPrintout( const wxString& aTitle ) override
|
2008-03-04 04:22:27 +00:00
|
|
|
{
|
2018-10-05 14:41:17 +00:00
|
|
|
return new PCBNEW_PRINTOUT( m_parent->GetBoard(), *settings(),
|
2019-06-13 17:28:55 +00:00
|
|
|
m_parent->GetCanvas()->GetView(), aTitle );
|
2018-10-05 14:41:17 +00:00
|
|
|
}
|
2018-06-13 12:20:29 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
PCB_BASE_EDIT_FRAME* m_parent;
|
2022-03-18 13:10:18 +00:00
|
|
|
LSEQ m_layerList; // List to hold CheckListBox layer numbers
|
|
|
|
wxMenu* m_popMenu;
|
|
|
|
|
|
|
|
wxCheckListBox* m_layerCheckListBox;
|
|
|
|
wxCheckBox* m_checkboxMirror;
|
|
|
|
wxChoice* m_drillMarksChoice;
|
|
|
|
wxCheckBox* m_checkboxPagePerLayer;
|
|
|
|
wxCheckBox* m_checkboxEdgesOnAllPages;
|
|
|
|
wxCheckBox* m_checkAsItems;
|
|
|
|
wxCheckBox* m_checkBackground;
|
|
|
|
wxCheckBox* m_checkUseTheme;
|
|
|
|
wxChoice* m_colorTheme;
|
2018-10-03 07:50:05 +00:00
|
|
|
};
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2012-01-17 15:34:05 +00:00
|
|
|
|
2020-08-11 19:41:01 +00:00
|
|
|
DIALOG_PRINT_PCBNEW::DIALOG_PRINT_PCBNEW( PCB_BASE_EDIT_FRAME* aParent,
|
|
|
|
PCBNEW_PRINTOUT_SETTINGS* aSettings ) :
|
|
|
|
DIALOG_PRINT_GENERIC( aParent, aSettings ),
|
|
|
|
m_parent( aParent )
|
2007-06-05 12:10:51 +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
|
|
|
m_config = Kiface().KifaceSettings();
|
2018-06-13 12:20:29 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
createExtraOptions();
|
|
|
|
createLeftPanel();
|
2020-05-16 17:15:43 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
m_infoText->SetFont( KIUI::GetInfoFont( this ) );
|
|
|
|
m_infoText->SetLabel( _( "Right-click for layer selection commands." ) );
|
|
|
|
m_infoText->Show( true );
|
|
|
|
|
|
|
|
m_popMenu->Bind( wxEVT_COMMAND_MENU_SELECTED,
|
|
|
|
wxCommandEventHandler( DIALOG_PRINT_PCBNEW::onPopUpLayers ), this,
|
|
|
|
ID_SELECT_FIRST, ID_SELECT_LAST );
|
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
m_outputMode->Bind( wxEVT_COMMAND_CHOICE_SELECTED, &DIALOG_PRINT_PCBNEW::onColorModeClicked,
|
2020-12-17 13:12:18 +00:00
|
|
|
this );
|
2009-01-17 17:32:20 +00:00
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
bool DIALOG_PRINT_PCBNEW::TransferDataToWindow()
|
2018-06-13 12:20:29 +00:00
|
|
|
{
|
2018-10-05 14:41:17 +00:00
|
|
|
if( !DIALOG_PRINT_GENERIC::TransferDataToWindow() )
|
|
|
|
return false;
|
2018-06-13 12:20:29 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
BOARD* board = m_parent->GetBoard();
|
2018-06-13 12:20:29 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
// Create layer list
|
2022-03-18 13:10:18 +00:00
|
|
|
// Could devote a PlotOrder() function in place of UIOrder().
|
|
|
|
m_layerList = board->GetEnabledLayers().UIOrder();
|
|
|
|
|
|
|
|
// Populate the check list box by all enabled layers names
|
|
|
|
for( LSEQ seq = m_layerList; seq; ++seq )
|
2014-06-24 16:17:18 +00:00
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
PCB_LAYER_ID layer = *seq;
|
2010-01-01 13:30:39 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
int checkIndex = m_layerCheckListBox->Append( board->GetLayerName( layer ) );
|
2014-06-24 16:17:18 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
if( settings()->m_LayerSet.test( layer ) )
|
|
|
|
m_layerCheckListBox->Check( checkIndex );
|
2008-03-04 04:22:27 +00:00
|
|
|
}
|
|
|
|
|
2020-11-16 11:16:44 +00:00
|
|
|
m_checkboxMirror->SetValue( settings()->m_Mirror );
|
2018-10-05 14:41:17 +00:00
|
|
|
m_titleBlock->SetValue( settings()->m_titleBlock );
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2020-05-16 17:15:43 +00:00
|
|
|
PCBNEW_SETTINGS* cfg = m_parent->GetPcbNewSettings();
|
|
|
|
|
|
|
|
m_checkBackground->SetValue( cfg->m_Printing.background );
|
|
|
|
m_checkUseTheme->SetValue( cfg->m_Printing.use_theme );
|
|
|
|
|
|
|
|
m_colorTheme->Clear();
|
|
|
|
|
|
|
|
int width = 0;
|
|
|
|
int height = 0;
|
|
|
|
int minwidth = width;
|
|
|
|
|
|
|
|
wxString target = cfg->m_Printing.use_theme ? cfg->m_Printing.color_theme : cfg->m_ColorTheme;
|
|
|
|
|
2021-06-06 22:36:31 +00:00
|
|
|
for( COLOR_SETTINGS* settings : m_parent->GetSettingsManager()->GetColorSettingsList() )
|
2020-05-16 17:15:43 +00:00
|
|
|
{
|
|
|
|
int pos = m_colorTheme->Append( settings->GetName(), static_cast<void*>( settings ) );
|
|
|
|
|
|
|
|
if( settings->GetFilename() == target )
|
|
|
|
m_colorTheme->SetSelection( pos );
|
|
|
|
|
|
|
|
m_colorTheme->GetTextExtent( settings->GetName(), &width, &height );
|
|
|
|
minwidth = std::max( minwidth, width );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_colorTheme->SetMinSize( wxSize( minwidth + 50, -1 ) );
|
|
|
|
|
|
|
|
wxCommandEvent dummy;
|
2021-04-16 12:12:55 +00:00
|
|
|
onColorModeClicked( dummy );
|
2020-05-16 17:15:43 +00:00
|
|
|
|
2010-01-09 20:25:39 +00:00
|
|
|
// Options to plot pads and vias holes
|
2021-04-16 12:12:55 +00:00
|
|
|
m_drillMarksChoice->SetSelection( settings()->m_DrillMarks );
|
2009-10-23 07:41:29 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
// Print all layers one one page or separately
|
2021-04-16 12:12:55 +00:00
|
|
|
m_checkboxPagePerLayer->SetValue( settings()->m_Pagination
|
|
|
|
== PCBNEW_PRINTOUT_SETTINGS::LAYER_PER_PAGE );
|
|
|
|
onPagePerLayerClicked( dummy );
|
2009-01-17 17:32:20 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
// Update the dialog layout when layers are added
|
2018-10-03 07:50:05 +00:00
|
|
|
GetSizer()->Fit( this );
|
2018-06-13 12:20:29 +00:00
|
|
|
|
|
|
|
return true;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
void DIALOG_PRINT_PCBNEW::createExtraOptions()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2018-10-05 14:41:17 +00:00
|
|
|
wxGridBagSizer* optionsSizer = getOptionsSizer();
|
2021-04-16 12:12:55 +00:00
|
|
|
wxStaticBox* box = getOptionsBox();
|
|
|
|
int rows = optionsSizer->GetEffectiveRowsCount();
|
|
|
|
int cols = optionsSizer->GetEffectiveColsCount();
|
2018-10-05 14:41:17 +00:00
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
m_checkAsItems = new wxCheckBox( box, wxID_ANY,
|
|
|
|
_( "Print according to objects tab of appearance manager" ) );
|
|
|
|
optionsSizer->Add( m_checkAsItems, wxGBPosition( rows++, 0 ), wxGBSpan( 1, 3 ),
|
|
|
|
wxLEFT|wxRIGHT|wxBOTTOM, 5 );
|
2020-08-11 19:41:01 +00:00
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
m_checkBackground = new wxCheckBox( box, wxID_ANY, _( "Print background color" ) );
|
|
|
|
optionsSizer->Add( m_checkBackground, wxGBPosition( rows++, 0 ), wxGBSpan( 1, 3 ),
|
|
|
|
wxLEFT|wxRIGHT|wxBOTTOM, 5 );
|
2020-05-16 17:15:43 +00:00
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
m_checkUseTheme = new wxCheckBox( box, wxID_ANY,
|
|
|
|
_( "Use a different color theme for printing:" ) );
|
|
|
|
optionsSizer->Add( m_checkUseTheme, wxGBPosition( rows++, 0 ), wxGBSpan( 1, 3 ),
|
|
|
|
wxLEFT|wxRIGHT, 5 );
|
2020-05-16 17:15:43 +00:00
|
|
|
|
2020-12-17 13:12:18 +00:00
|
|
|
m_checkUseTheme->Bind( wxEVT_COMMAND_CHECKBOX_CLICKED,
|
2021-04-16 12:12:55 +00:00
|
|
|
&DIALOG_PRINT_PCBNEW::onUseThemeClicked, this );
|
2020-05-16 17:15:43 +00:00
|
|
|
|
|
|
|
wxArrayString m_colorThemeChoices;
|
2021-04-16 12:12:55 +00:00
|
|
|
m_colorTheme = new wxChoice( box, wxID_ANY, wxDefaultPosition, wxDefaultSize,
|
|
|
|
m_colorThemeChoices, 0 );
|
2020-05-16 17:15:43 +00:00
|
|
|
m_colorTheme->SetSelection( 0 );
|
2020-08-28 13:01:29 +00:00
|
|
|
|
|
|
|
optionsSizer->Add( m_colorTheme, wxGBPosition( rows++, 0 ), wxGBSpan( 1, 2 ),
|
2021-04-16 12:12:55 +00:00
|
|
|
wxLEFT, 28 );
|
|
|
|
|
|
|
|
rows++;
|
2020-05-16 17:15:43 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
// Drill marks option
|
|
|
|
auto drillMarksLabel = new wxStaticText( box, wxID_ANY, _( "Drill marks:" ) );
|
2020-08-11 18:52:18 +00:00
|
|
|
std::vector<wxString> drillMarkChoices = { _( "No drill mark" ),
|
|
|
|
_( "Small mark" ),
|
|
|
|
_( "Real drill" ) };
|
|
|
|
m_drillMarksChoice = new wxChoice( box, wxID_ANY, wxDefaultPosition, wxDefaultSize,
|
|
|
|
drillMarkChoices.size(), drillMarkChoices.data(), 0 );
|
2018-10-05 14:41:17 +00:00
|
|
|
m_drillMarksChoice->SetSelection( 0 );
|
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
optionsSizer->Add( drillMarksLabel, wxGBPosition( rows, 0 ), wxGBSpan( 1, 1 ),
|
|
|
|
wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT|wxBOTTOM, 5 );
|
|
|
|
optionsSizer->Add( m_drillMarksChoice, wxGBPosition( rows++, 1 ), wxGBSpan( 1, cols - 1 ),
|
|
|
|
wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT|wxBOTTOM, 5 );
|
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
// Print mirrored
|
|
|
|
m_checkboxMirror = new wxCheckBox( box, wxID_ANY, _( "Print mirrored" ) );
|
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
optionsSizer->Add( m_checkboxMirror, wxGBPosition( rows++, 0 ), wxGBSpan( 1, cols ),
|
|
|
|
wxLEFT|wxRIGHT|wxBOTTOM, 5 );
|
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
// Pagination
|
2021-04-16 12:12:55 +00:00
|
|
|
m_checkboxPagePerLayer = new wxCheckBox( box, wxID_ANY, _( "Print one page per layer" ) );
|
2020-08-11 18:52:18 +00:00
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
m_checkboxPagePerLayer->Bind( wxEVT_COMMAND_CHECKBOX_CLICKED,
|
|
|
|
&DIALOG_PRINT_PCBNEW::onPagePerLayerClicked, this );
|
|
|
|
|
|
|
|
m_checkboxEdgesOnAllPages = new wxCheckBox( box, wxID_ANY,
|
|
|
|
_( "Print board edges on all pages" ) );
|
|
|
|
|
|
|
|
optionsSizer->Add( m_checkboxPagePerLayer, wxGBPosition( rows++, 0 ), wxGBSpan( 1, cols ),
|
|
|
|
wxLEFT|wxRIGHT, 5 );
|
|
|
|
optionsSizer->Add( m_checkboxEdgesOnAllPages, wxGBPosition( rows++, 0 ), wxGBSpan( 1, cols ),
|
|
|
|
wxLEFT, 28 );
|
2018-10-05 14:41:17 +00:00
|
|
|
}
|
2009-03-10 08:26:52 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
void DIALOG_PRINT_PCBNEW::createLeftPanel()
|
|
|
|
{
|
2022-03-18 13:10:18 +00:00
|
|
|
wxStaticBox* box = new wxStaticBox( this, wxID_ANY, _( "Include Layers" ) );
|
2020-08-11 18:52:18 +00:00
|
|
|
wxStaticBoxSizer* sbLayersSizer = new wxStaticBoxSizer( box, wxVERTICAL );
|
2010-01-01 13:30:39 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
m_layerCheckListBox = new wxCheckListBox( sbLayersSizer->GetStaticBox(), wxID_ANY );
|
|
|
|
m_layerCheckListBox->SetMinSize( wxSize( 180, -1 ) );
|
|
|
|
|
|
|
|
sbLayersSizer->Add( m_layerCheckListBox, 1, wxEXPAND|wxBOTTOM|wxRIGHT, 5 );
|
2018-10-05 14:41:17 +00:00
|
|
|
|
2020-08-11 18:52:18 +00:00
|
|
|
getMainSizer()->Insert( 0, sbLayersSizer, 1, wxEXPAND | wxALL, 5 );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
m_popMenu = new wxMenu();
|
|
|
|
m_popMenu->Append( new wxMenuItem( m_popMenu, ID_SELECT_FAB_LAYERS,
|
|
|
|
_( "Select Fab Layers" ), wxEmptyString ) );
|
2018-06-13 12:20:29 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
m_popMenu->Append( new wxMenuItem( m_popMenu, ID_SELECT_COPPER_LAYERS,
|
|
|
|
_( "Select all Copper Layers" ), wxEmptyString ) );
|
2012-03-26 21:45:05 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
m_popMenu->Append( new wxMenuItem( m_popMenu, ID_DESELECT_COPPER_LAYERS,
|
|
|
|
_( "Deselect all Copper Layers" ), wxEmptyString ) );
|
2018-10-03 07:50:05 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
m_popMenu->Append( new wxMenuItem( m_popMenu, ID_SELECT_ALL_LAYERS,
|
|
|
|
_( "Select all Layers" ), wxEmptyString ) );
|
|
|
|
|
|
|
|
m_popMenu->Append( new wxMenuItem( m_popMenu, ID_DESELECT_ALL_LAYERS,
|
|
|
|
_( "Deselect all Layers" ), wxEmptyString ) );
|
|
|
|
|
|
|
|
this->Bind( wxEVT_RIGHT_DOWN,
|
|
|
|
[&]( wxMouseEvent& aEvent )
|
2022-03-18 19:47:09 +00:00
|
|
|
{
|
|
|
|
this->PopupMenu( m_popMenu, aEvent.GetPosition() );
|
|
|
|
} );
|
|
|
|
|
|
|
|
m_layerCheckListBox->Bind( wxEVT_RIGHT_DOWN,
|
|
|
|
[&]( wxMouseEvent& aEvent )
|
2022-03-18 13:10:18 +00:00
|
|
|
{
|
|
|
|
this->PopupMenu( m_popMenu, aEvent.GetPosition() );
|
|
|
|
} );
|
2010-04-22 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
void DIALOG_PRINT_PCBNEW::onUseThemeClicked( wxCommandEvent& event )
|
2020-05-16 17:15:43 +00:00
|
|
|
{
|
|
|
|
m_colorTheme->Enable( m_checkUseTheme->GetValue() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
void DIALOG_PRINT_PCBNEW::onPagePerLayerClicked( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
if( m_checkboxPagePerLayer->GetValue() )
|
|
|
|
{
|
|
|
|
m_checkboxEdgesOnAllPages->Enable( true );
|
|
|
|
m_checkboxEdgesOnAllPages->SetValue( settings()->m_PrintEdgeCutsOnAllPages );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_checkboxEdgesOnAllPages->Enable( false );
|
|
|
|
m_checkboxEdgesOnAllPages->SetValue( false );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_PRINT_PCBNEW::onColorModeClicked( wxCommandEvent& event )
|
2020-05-16 17:15:43 +00:00
|
|
|
{
|
|
|
|
PCBNEW_SETTINGS* cfg = m_parent->GetPcbNewSettings();
|
|
|
|
|
|
|
|
m_settings->m_blackWhite = m_outputMode->GetSelection();
|
|
|
|
|
|
|
|
m_checkBackground->Enable( !m_settings->m_blackWhite );
|
|
|
|
m_checkUseTheme->Enable( !m_settings->m_blackWhite );
|
|
|
|
m_colorTheme->Enable( !m_settings->m_blackWhite && cfg->m_Printing.use_theme );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
// Select or deselect groups of layers in the layers list:
|
|
|
|
void DIALOG_PRINT_PCBNEW::onPopUpLayers( wxCommandEvent& event )
|
2018-10-03 07:50:05 +00:00
|
|
|
{
|
2022-03-18 13:10:18 +00:00
|
|
|
// Build a list of layers for usual fabrication: copper layers + tech layers without courtyard
|
|
|
|
LSET fab_layer_set = ( LSET::AllCuMask() | LSET::AllTechMask() ) & ~LSET( 2, B_CrtYd, F_CrtYd );
|
2018-10-03 07:50:05 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
switch( event.GetId() )
|
|
|
|
{
|
|
|
|
case ID_SELECT_FAB_LAYERS: // Select layers usually needed to build a board
|
|
|
|
for( unsigned i = 0; i < m_layerList.size(); i++ )
|
|
|
|
{
|
|
|
|
LSET layermask( m_layerList[ i ] );
|
2018-10-03 07:50:05 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
if( ( layermask & fab_layer_set ).any() )
|
|
|
|
m_layerCheckListBox->Check( i, true );
|
|
|
|
else
|
|
|
|
m_layerCheckListBox->Check( i, false );
|
|
|
|
}
|
|
|
|
break;
|
2018-10-05 14:41:17 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
case ID_SELECT_COPPER_LAYERS:
|
|
|
|
for( unsigned i = 0; i < m_layerList.size(); i++ )
|
|
|
|
{
|
|
|
|
if( IsCopperLayer( m_layerList[i] ) )
|
|
|
|
m_layerCheckListBox->Check( i, true );
|
|
|
|
}
|
|
|
|
break;
|
2008-03-04 04:22:27 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
case ID_DESELECT_COPPER_LAYERS:
|
|
|
|
for( unsigned i = 0; i < m_layerList.size(); i++ )
|
|
|
|
{
|
|
|
|
if( IsCopperLayer( m_layerList[i] ) )
|
|
|
|
m_layerCheckListBox->Check( i, false );
|
|
|
|
}
|
|
|
|
break;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
case ID_SELECT_ALL_LAYERS:
|
|
|
|
for( unsigned i = 0; i < m_layerList.size(); i++ )
|
|
|
|
m_layerCheckListBox->Check( i, true );
|
|
|
|
break;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
case ID_DESELECT_ALL_LAYERS:
|
|
|
|
for( unsigned i = 0; i < m_layerList.size(); i++ )
|
|
|
|
m_layerCheckListBox->Check( i, false );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
int DIALOG_PRINT_PCBNEW::setLayerSetFromList()
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2020-11-16 11:16:44 +00:00
|
|
|
settings()->m_LayerSet = LSET();
|
2018-10-05 14:41:17 +00:00
|
|
|
int& pageCount = settings()->m_pageCount;
|
|
|
|
pageCount = 0;
|
2009-03-10 08:26:52 +00:00
|
|
|
|
2022-03-18 13:10:18 +00:00
|
|
|
for( unsigned i = 0; i < m_layerList.size(); i++ )
|
2009-03-10 08:26:52 +00:00
|
|
|
{
|
2022-03-18 13:10:18 +00:00
|
|
|
if( m_layerCheckListBox->IsChecked( i ) )
|
2018-10-05 14:41:17 +00:00
|
|
|
{
|
|
|
|
++pageCount;
|
2022-03-18 13:10:18 +00:00
|
|
|
settings()->m_LayerSet.set( m_layerList[i] );
|
2018-10-05 14:41:17 +00:00
|
|
|
}
|
2009-03-10 08:26:52 +00:00
|
|
|
}
|
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
// In Pcbnew force the EDGE layer to be printed or not with the other layers
|
2021-04-16 12:12:55 +00:00
|
|
|
settings()->m_PrintEdgeCutsOnAllPages = m_checkboxEdgesOnAllPages->IsChecked();
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
// All layers on one page (only if there is at least one layer selected)
|
2021-04-16 12:12:55 +00:00
|
|
|
if( !m_checkboxPagePerLayer->GetValue() && pageCount > 0 )
|
2018-10-05 14:41:17 +00:00
|
|
|
pageCount = 1;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
return pageCount;
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
2018-10-03 07:50:05 +00:00
|
|
|
|
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
void DIALOG_PRINT_PCBNEW::saveSettings()
|
2018-10-03 07:50:05 +00:00
|
|
|
{
|
2018-10-05 14:41:17 +00:00
|
|
|
setLayerSetFromList();
|
2018-10-03 07:50:05 +00:00
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
settings()->m_AsItemCheckboxes = m_checkAsItems->GetValue();
|
2020-08-11 19:41:01 +00:00
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
settings()->m_DrillMarks =
|
2018-10-05 14:41:17 +00:00
|
|
|
(PCBNEW_PRINTOUT_SETTINGS::DRILL_MARK_SHAPE_T) m_drillMarksChoice->GetSelection();
|
2018-10-03 07:50:05 +00:00
|
|
|
|
2021-04-16 12:12:55 +00:00
|
|
|
if( m_checkboxPagePerLayer->GetValue() )
|
|
|
|
{
|
|
|
|
settings()->m_Pagination = PCBNEW_PRINTOUT_SETTINGS::LAYER_PER_PAGE;
|
|
|
|
settings()->m_PrintEdgeCutsOnAllPages = m_checkboxEdgesOnAllPages->GetValue();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
settings()->m_Pagination = PCBNEW_PRINTOUT_SETTINGS::ALL_LAYERS;
|
|
|
|
}
|
2018-10-03 07:50:05 +00:00
|
|
|
|
2020-11-16 11:16:44 +00:00
|
|
|
settings()->m_Mirror = m_checkboxMirror->GetValue();
|
2018-10-03 07:50:05 +00:00
|
|
|
|
2020-05-16 17:15:43 +00:00
|
|
|
PCBNEW_SETTINGS* cfg = m_parent->GetPcbNewSettings();
|
|
|
|
|
|
|
|
cfg->m_Printing.background = m_checkBackground->GetValue();
|
|
|
|
settings()->m_background = cfg->m_Printing.background;
|
|
|
|
cfg->m_Printing.use_theme = m_checkUseTheme->GetValue();
|
|
|
|
|
2020-08-11 19:41:01 +00:00
|
|
|
int sel = m_colorTheme->GetSelection();
|
|
|
|
COLOR_SETTINGS* theme = static_cast<COLOR_SETTINGS*>( m_colorTheme->GetClientData( sel ) );
|
2020-05-16 17:15:43 +00:00
|
|
|
|
|
|
|
if( theme && m_checkUseTheme->IsChecked() )
|
|
|
|
{
|
|
|
|
cfg->m_Printing.color_theme = theme->GetFilename();
|
|
|
|
settings()->m_colorSettings = theme;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-12-09 23:12:44 +00:00
|
|
|
settings()->m_colorSettings = m_parent->GetColorSettings();
|
2020-05-16 17:15:43 +00:00
|
|
|
}
|
|
|
|
|
2018-10-05 14:41:17 +00:00
|
|
|
DIALOG_PRINT_GENERIC::saveSettings();
|
2018-10-03 07:50:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
int PCB_CONTROL::Print( const TOOL_EVENT& aEvent )
|
2018-10-03 07:50:05 +00:00
|
|
|
{
|
2019-05-26 15:36:40 +00:00
|
|
|
// Selection affects the origin item visibility
|
|
|
|
m_toolMgr->RunAction( PCB_ACTIONS::selectionClear, true );
|
2018-10-03 07:50:05 +00:00
|
|
|
|
2019-05-26 15:36:40 +00:00
|
|
|
PCBNEW_PRINTOUT_SETTINGS settings( m_frame->GetPageSettings() );
|
|
|
|
DIALOG_PRINT_PCBNEW dlg( (PCB_BASE_EDIT_FRAME*) m_frame, &settings );
|
2018-10-03 07:50:05 +00:00
|
|
|
|
2020-11-07 17:50:22 +00:00
|
|
|
if( m_isFootprintEditor )
|
2019-05-26 15:36:40 +00:00
|
|
|
dlg.ForcePrintBorder( false );
|
2018-10-05 14:41:17 +00:00
|
|
|
|
2018-10-03 07:50:05 +00:00
|
|
|
dlg.ShowModal();
|
2019-05-26 15:36:40 +00:00
|
|
|
|
|
|
|
return 0;
|
2018-10-03 07:50:05 +00:00
|
|
|
}
|
2019-05-26 15:36:40 +00:00
|
|
|
|
|
|
|
|