2011-10-17 16:01:27 -04:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2013-04-06 14:01:53 +02:00
|
|
|
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2018-03-13 17:59:46 -04:00
|
|
|
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@gmail.com>
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-17 16:01:27 -04:00
|
|
|
*
|
2018-01-07 21:05:03 -07: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 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
2011-10-17 16:01:27 -04:00
|
|
|
*
|
2018-01-07 21:05:03 -07:00
|
|
|
* 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.
|
2011-10-17 16:01:27 -04:00
|
|
|
*
|
2018-01-07 21:05:03 -07:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-10-17 16:01:27 -04:00
|
|
|
*/
|
|
|
|
|
2021-08-03 01:11:11 +01:00
|
|
|
#include <wx/wupdlock.h>
|
|
|
|
#include <wx/stattext.h>
|
|
|
|
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <gerbview.h>
|
2014-06-27 19:07:42 +02:00
|
|
|
#include <gerbview_frame.h>
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <bitmaps.h>
|
|
|
|
#include <gerbview_id.h>
|
2018-01-29 13:26:58 +01:00
|
|
|
#include <gerber_file_image.h>
|
|
|
|
#include <gerber_file_image_list.h>
|
2021-07-29 10:56:22 +01:00
|
|
|
#include <string_utils.h>
|
2019-05-14 20:21:10 +01:00
|
|
|
#include <tool/actions.h>
|
2019-06-09 22:57:23 +01:00
|
|
|
#include <tool/action_toolbar.h>
|
2019-05-15 23:49:48 +01:00
|
|
|
#include <tools/gerbview_actions.h>
|
2020-11-16 07:13:08 -05:00
|
|
|
#include "widgets/gbr_layer_box_selector.h"
|
|
|
|
#include "widgets/dcode_selection_box.h"
|
2025-02-26 03:22:49 +00:00
|
|
|
#include <toolbars_gerber.h>
|
2016-08-16 12:56:20 +02:00
|
|
|
|
2021-07-16 16:13:26 -04:00
|
|
|
|
2025-02-26 03:22:49 +00:00
|
|
|
std::optional<TOOLBAR_CONFIGURATION> GERBVIEW_TOOLBAR_SETTINGS::DefaultToolbarConfig( TOOLBAR_LOC aToolbar )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2025-02-20 02:53:15 +00:00
|
|
|
TOOLBAR_CONFIGURATION config;
|
|
|
|
|
|
|
|
// clang-format off
|
2025-02-26 03:22:49 +00:00
|
|
|
switch( aToolbar )
|
|
|
|
{
|
|
|
|
// No right toolbar
|
|
|
|
case TOOLBAR_LOC::RIGHT:
|
|
|
|
return std::nullopt;
|
|
|
|
|
|
|
|
case TOOLBAR_LOC::LEFT:
|
|
|
|
config.AppendAction( ACTIONS::selectionTool )
|
|
|
|
.AppendAction( ACTIONS::measureTool );
|
|
|
|
|
|
|
|
config.AppendSeparator()
|
|
|
|
.AppendAction( ACTIONS::toggleGrid )
|
|
|
|
.AppendAction( ACTIONS::togglePolarCoords )
|
|
|
|
.AppendAction( ACTIONS::inchesUnits )
|
|
|
|
.AppendAction( ACTIONS::milsUnits )
|
|
|
|
.AppendAction( ACTIONS::millimetersUnits )
|
|
|
|
.AppendAction( ACTIONS::toggleCursorStyle );
|
|
|
|
|
|
|
|
config.AppendSeparator()
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::flashedDisplayOutlines )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::linesDisplayOutlines )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::polygonsDisplayOutlines )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::negativeObjectDisplay )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::dcodeDisplay );
|
|
|
|
|
|
|
|
config.AppendSeparator()
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::toggleForceOpacityMode )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::toggleXORMode )
|
|
|
|
.AppendAction( ACTIONS::highContrastMode )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::flipGerberView );
|
|
|
|
|
|
|
|
config.AppendSeparator()
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::toggleLayerManager );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TOOLBAR_LOC::TOP_MAIN:
|
|
|
|
config.AppendAction( GERBVIEW_ACTIONS::clearAllLayers )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::reloadAllLayers )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::openAutodetected )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::openGerber )
|
|
|
|
.AppendAction( GERBVIEW_ACTIONS::openDrillFile );
|
|
|
|
|
|
|
|
config.AppendSeparator()
|
|
|
|
.AppendAction( ACTIONS::print );
|
|
|
|
|
|
|
|
config.AppendSeparator()
|
|
|
|
.AppendAction( ACTIONS::zoomRedraw )
|
|
|
|
.AppendAction( ACTIONS::zoomInCenter )
|
|
|
|
.AppendAction( ACTIONS::zoomOutCenter )
|
|
|
|
.AppendAction( ACTIONS::zoomFitScreen )
|
|
|
|
.AppendAction( ACTIONS::zoomTool );
|
|
|
|
|
|
|
|
config.AppendSeparator()
|
|
|
|
.AppendControl( ACTION_TOOLBAR_CONTROLS::layerSelector )
|
|
|
|
.AppendControl( GERBVIEW_ACTION_TOOLBAR_CONTROLS::textInfo );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TOOLBAR_LOC::TOP_AUX:
|
|
|
|
config.AppendControl( GERBVIEW_ACTION_TOOLBAR_CONTROLS::componentHighlight )
|
|
|
|
.AppendSpacer( 5 )
|
|
|
|
.AppendControl( GERBVIEW_ACTION_TOOLBAR_CONTROLS::netHighlight )
|
|
|
|
.AppendSpacer( 5 )
|
|
|
|
.AppendControl( GERBVIEW_ACTION_TOOLBAR_CONTROLS::appertureHighlight )
|
|
|
|
.AppendSpacer( 5 )
|
|
|
|
.AppendControl( GERBVIEW_ACTION_TOOLBAR_CONTROLS::dcodeSelector )
|
|
|
|
.AppendSeparator()
|
|
|
|
.AppendControl( ACTION_TOOLBAR_CONTROLS::gridSelect )
|
|
|
|
.AppendSeparator()
|
|
|
|
.AppendControl( ACTION_TOOLBAR_CONTROLS::zoomSelect );
|
|
|
|
break;
|
|
|
|
}
|
2025-02-20 02:53:15 +00:00
|
|
|
|
|
|
|
// clang-format on
|
|
|
|
return config;
|
|
|
|
}
|
2017-06-06 09:35:20 -04:00
|
|
|
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
void GERBVIEW_FRAME::configureToolbars()
|
|
|
|
{
|
|
|
|
// Base class loads the default settings
|
|
|
|
EDA_DRAW_FRAME::configureToolbars();
|
2011-05-13 09:15:28 -04:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
// Register factories for the various toolbar controls
|
2025-02-20 12:42:39 +00:00
|
|
|
auto layerBoxFactory =
|
|
|
|
[this]( ACTION_TOOLBAR* aToolbar )
|
2025-02-20 02:53:15 +00:00
|
|
|
{
|
|
|
|
if( !m_SelLayerBox )
|
|
|
|
{
|
|
|
|
m_SelLayerBox = new GBR_LAYER_BOX_SELECTOR( aToolbar,
|
|
|
|
ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
|
|
|
|
wxDefaultPosition, wxDefaultSize, 0, nullptr );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_SelLayerBox->Resync();
|
|
|
|
aToolbar->Add( m_SelLayerBox );
|
|
|
|
|
|
|
|
// UI update handler for the control
|
|
|
|
aToolbar->Bind( wxEVT_UPDATE_UI,
|
|
|
|
[this]( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
if( m_SelLayerBox->GetCount() )
|
|
|
|
{
|
|
|
|
if( m_SelLayerBox->GetSelection() != GetActiveLayer() )
|
|
|
|
m_SelLayerBox->SetSelection( GetActiveLayer() );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
m_SelLayerBox->GetId() );
|
|
|
|
};
|
|
|
|
|
2025-02-26 03:22:49 +00:00
|
|
|
RegisterCustomToolbarControlFactory( ACTION_TOOLBAR_CONTROLS::layerSelector, layerBoxFactory );
|
2025-02-20 02:53:15 +00:00
|
|
|
|
|
|
|
|
2025-02-20 12:42:39 +00:00
|
|
|
auto textInfoFactory =
|
|
|
|
[this]( ACTION_TOOLBAR* aToolbar )
|
2025-02-20 02:53:15 +00:00
|
|
|
{
|
|
|
|
if( !m_TextInfo )
|
|
|
|
{
|
|
|
|
m_TextInfo = new wxTextCtrl( aToolbar, ID_TOOLBARH_GERBER_DATA_TEXT_BOX, wxEmptyString,
|
|
|
|
wxDefaultPosition, wxDefaultSize, wxTE_READONLY );
|
|
|
|
}
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
aToolbar->Add( m_TextInfo );
|
|
|
|
};
|
2020-06-17 12:03:25 +01:00
|
|
|
|
2025-02-26 03:22:49 +00:00
|
|
|
RegisterCustomToolbarControlFactory( GERBVIEW_ACTION_TOOLBAR_CONTROLS::textInfo, textInfoFactory );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2021-03-27 21:49:38 +00:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
// Creates box to display and choose components:
|
|
|
|
// (note, when the m_tbTopAux is recreated, tools are deleted, but controls
|
|
|
|
// are not deleted: they are just no longer managed by the toolbar
|
2025-02-20 12:42:39 +00:00
|
|
|
auto componentBoxFactory =
|
|
|
|
[this]( ACTION_TOOLBAR* aToolbar )
|
2025-02-20 02:53:15 +00:00
|
|
|
{
|
|
|
|
if( !m_SelComponentBox )
|
|
|
|
m_SelComponentBox = new wxChoice( aToolbar, ID_GBR_AUX_TOOLBAR_PCB_CMP_CHOICE );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
if( !m_cmpText )
|
|
|
|
m_cmpText = new wxStaticText( aToolbar, wxID_ANY, _( "Cmp:" ) + wxS( " " ) );
|
2018-01-07 21:05:03 -07:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
m_SelComponentBox->SetToolTip( _("Highlight items belonging to this component") );
|
|
|
|
m_cmpText->SetLabel( _( "Cmp:" ) + wxS( " " ) ); // can change when changing the language
|
2016-08-16 12:56:20 +02:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
updateComponentListSelectBox();
|
2016-08-16 12:56:20 +02:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
aToolbar->Add( m_cmpText );
|
|
|
|
aToolbar->Add( m_SelComponentBox );
|
|
|
|
};
|
2020-06-27 20:06:17 +02:00
|
|
|
|
2025-02-26 03:22:49 +00:00
|
|
|
RegisterCustomToolbarControlFactory( GERBVIEW_ACTION_TOOLBAR_CONTROLS::componentHighlight, componentBoxFactory );
|
2020-06-27 20:06:17 +02:00
|
|
|
|
2016-08-16 12:56:20 +02:00
|
|
|
|
|
|
|
// Creates choice box to display net names and highlight selected:
|
2025-02-20 12:42:39 +00:00
|
|
|
auto netBoxFactory =
|
|
|
|
[this]( ACTION_TOOLBAR* aToolbar )
|
2025-02-20 02:53:15 +00:00
|
|
|
{
|
|
|
|
if( !m_SelNetnameBox )
|
|
|
|
m_SelNetnameBox = new wxChoice( aToolbar, ID_GBR_AUX_TOOLBAR_PCB_NET_CHOICE );
|
2020-06-27 20:06:17 +02:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
if( !m_netText )
|
|
|
|
m_netText = new wxStaticText( aToolbar, wxID_ANY, _( "Net:" ) );
|
2020-06-27 20:06:17 +02:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
m_SelNetnameBox->SetToolTip( _("Highlight items belonging to this net") );
|
|
|
|
m_netText->SetLabel( _( "Net:" ) ); // can change when changing the language
|
2018-01-28 20:30:43 -05:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
updateNetnameListSelectBox();
|
2020-06-27 20:06:17 +02:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
aToolbar->Add( m_netText );
|
|
|
|
aToolbar->Add( m_SelNetnameBox );
|
|
|
|
};
|
2020-06-27 20:06:17 +02:00
|
|
|
|
2025-02-26 03:22:49 +00:00
|
|
|
RegisterCustomToolbarControlFactory( GERBVIEW_ACTION_TOOLBAR_CONTROLS::netHighlight, netBoxFactory );
|
2018-01-28 20:30:43 -05:00
|
|
|
|
2020-06-27 20:06:17 +02:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
// Creates choice box to display aperture attributes and highlight selected:
|
2025-02-20 12:42:39 +00:00
|
|
|
auto appertureBoxFactory =
|
|
|
|
[this]( ACTION_TOOLBAR* aToolbar )
|
2025-02-20 02:53:15 +00:00
|
|
|
{
|
|
|
|
if( !m_SelAperAttributesBox )
|
|
|
|
{
|
|
|
|
m_SelAperAttributesBox = new wxChoice( aToolbar,
|
|
|
|
ID_GBR_AUX_TOOLBAR_PCB_APERATTRIBUTES_CHOICE );
|
|
|
|
}
|
2018-07-11 13:56:05 +01:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
if( !m_apertText )
|
|
|
|
m_apertText = new wxStaticText( aToolbar, wxID_ANY, _( "Attr:" ) );
|
2020-06-27 20:06:17 +02:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
m_SelAperAttributesBox->SetToolTip( _( "Highlight items with this aperture attribute" ) );
|
|
|
|
m_apertText->SetLabel( _( "Attr:" ) ); // can change when changing the language
|
2018-07-11 13:56:05 +01:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
updateAperAttributesSelectBox();
|
2016-08-16 12:56:20 +02:00
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
aToolbar->Add( m_apertText );
|
|
|
|
aToolbar->Add( m_SelAperAttributesBox );
|
|
|
|
};
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2025-02-26 03:22:49 +00:00
|
|
|
RegisterCustomToolbarControlFactory( GERBVIEW_ACTION_TOOLBAR_CONTROLS::appertureHighlight, appertureBoxFactory );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2025-02-20 02:53:15 +00:00
|
|
|
// D-code selection
|
2025-02-20 12:42:39 +00:00
|
|
|
auto dcodeSelectorFactory =
|
|
|
|
[this]( ACTION_TOOLBAR* aToolbar )
|
2025-02-20 02:53:15 +00:00
|
|
|
{
|
2025-02-20 12:42:39 +00:00
|
|
|
if( !m_DCodeSelector )
|
|
|
|
{
|
|
|
|
m_DCodeSelector = new DCODE_SELECTION_BOX( aToolbar,
|
|
|
|
ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE,
|
|
|
|
wxDefaultPosition, wxSize( 150, -1 ) );
|
|
|
|
}
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2025-02-20 12:42:39 +00:00
|
|
|
if( !m_dcodeText )
|
|
|
|
m_dcodeText = new wxStaticText( aToolbar, wxID_ANY, _( "DCode:" ) );
|
2010-09-28 16:42:05 +02:00
|
|
|
|
2025-02-20 12:42:39 +00:00
|
|
|
m_dcodeText->SetLabel( _( "DCode:" ) );
|
2010-09-28 16:42:05 +02:00
|
|
|
|
2025-02-20 12:42:39 +00:00
|
|
|
updateDCodeSelectBox();
|
2021-03-27 21:49:38 +00:00
|
|
|
|
2025-02-20 12:42:39 +00:00
|
|
|
aToolbar->Add( m_dcodeText );
|
|
|
|
aToolbar->Add( m_DCodeSelector );
|
|
|
|
};
|
2025-02-20 02:53:15 +00:00
|
|
|
|
2025-02-26 03:22:49 +00:00
|
|
|
RegisterCustomToolbarControlFactory( GERBVIEW_ACTION_TOOLBAR_CONTROLS::dcodeSelector, dcodeSelectorFactory );
|
2021-03-27 21:49:38 +00:00
|
|
|
}
|
|
|
|
|
2025-02-26 03:22:49 +00:00
|
|
|
ACTION_TOOLBAR_CONTROL GERBVIEW_ACTION_TOOLBAR_CONTROLS::textInfo( "control.TextInfo", _( "Text info entry" ),
|
|
|
|
_( "Text info entry" ) );
|
|
|
|
ACTION_TOOLBAR_CONTROL GERBVIEW_ACTION_TOOLBAR_CONTROLS::componentHighlight( "control.ComponentHighlight",
|
|
|
|
_( "Component highlight" ),
|
|
|
|
_( "Highlight items belonging to this component" ) );
|
|
|
|
ACTION_TOOLBAR_CONTROL GERBVIEW_ACTION_TOOLBAR_CONTROLS::netHighlight( "control.NetHighlight", _( "Net highlight" ),
|
|
|
|
_( "Highlight items belonging to this net" ) );
|
|
|
|
ACTION_TOOLBAR_CONTROL GERBVIEW_ACTION_TOOLBAR_CONTROLS::appertureHighlight( "control.AppertureHighlight", _( "Aperture highlight" ),
|
|
|
|
_( "Highlight items with this aperture attribute" ));
|
|
|
|
ACTION_TOOLBAR_CONTROL GERBVIEW_ACTION_TOOLBAR_CONTROLS::dcodeSelector( "control.GerberDcodeSelector", _( "DCode Selector" ),
|
|
|
|
_( "Select all items with the selected DCode" ) );
|
|
|
|
|
2021-03-27 21:49:38 +00:00
|
|
|
|
2016-08-16 12:56:20 +02:00
|
|
|
#define NO_SELECTION_STRING _("<No selection>")
|
|
|
|
|
2021-07-16 16:13:26 -04:00
|
|
|
|
2016-08-17 10:19:10 +02:00
|
|
|
void GERBVIEW_FRAME::updateDCodeSelectBox()
|
|
|
|
{
|
|
|
|
m_DCodeSelector->Clear();
|
|
|
|
|
|
|
|
// Add an empty string to deselect net highlight
|
|
|
|
m_DCodeSelector->Append( NO_SELECTION_STRING );
|
|
|
|
|
2017-09-17 18:43:20 -04:00
|
|
|
int layer = GetActiveLayer();
|
2016-08-17 10:19:10 +02:00
|
|
|
GERBER_FILE_IMAGE* gerber = GetGbrImage( layer );
|
|
|
|
|
|
|
|
if( !gerber || gerber->GetDcodesCount() == 0 )
|
|
|
|
{
|
|
|
|
if( m_DCodeSelector->GetSelection() != 0 )
|
|
|
|
m_DCodeSelector->SetSelection( 0 );
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the aperture list of the current layer, and add it to the combo box:
|
|
|
|
wxArrayString dcode_list;
|
|
|
|
wxString msg;
|
2020-10-04 00:56:42 +01:00
|
|
|
|
|
|
|
double scale = 1.0;
|
|
|
|
wxString units;
|
|
|
|
|
|
|
|
switch( GetUserUnits() )
|
|
|
|
{
|
2025-03-01 20:24:37 +00:00
|
|
|
case EDA_UNITS::MM:
|
2022-09-16 20:45:14 -04:00
|
|
|
scale = gerbIUScale.IU_PER_MM;
|
2022-02-05 19:31:22 +00:00
|
|
|
units = wxT( "mm" );
|
2021-07-16 16:13:26 -04:00
|
|
|
break;
|
|
|
|
|
2025-03-02 11:34:30 +01:00
|
|
|
case EDA_UNITS::INCH:
|
2022-09-16 19:25:07 -04:00
|
|
|
scale = gerbIUScale.IU_PER_MILS * 1000;
|
2022-02-05 19:31:22 +00:00
|
|
|
units = wxT( "in" );
|
2021-07-16 16:13:26 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EDA_UNITS::MILS:
|
2022-09-16 19:25:07 -04:00
|
|
|
scale = gerbIUScale.IU_PER_MILS;
|
2022-02-05 19:31:22 +00:00
|
|
|
units = wxT( "mil" );
|
2021-07-16 16:13:26 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2022-02-05 19:31:22 +00:00
|
|
|
wxASSERT_MSG( false, wxT( "Invalid units" ) );
|
2020-10-04 00:56:42 +01:00
|
|
|
}
|
2016-08-17 10:19:10 +02:00
|
|
|
|
2025-03-20 11:26:37 +01:00
|
|
|
for( const auto [_, dcode] : gerber->m_ApertureList )
|
2016-08-17 10:19:10 +02:00
|
|
|
{
|
2025-03-20 11:26:37 +01:00
|
|
|
wxCHECK2( dcode,continue );
|
2016-08-17 10:19:10 +02:00
|
|
|
|
|
|
|
if( !dcode->m_InUse && !dcode->m_Defined )
|
|
|
|
continue;
|
|
|
|
|
2022-02-05 19:31:22 +00:00
|
|
|
msg.Printf( wxT( "tool %d [%.3fx%.3f %s] %s" ),
|
2016-08-17 10:19:10 +02:00
|
|
|
dcode->m_Num_Dcode,
|
2020-04-10 15:57:02 +02:00
|
|
|
dcode->m_Size.x / scale, dcode->m_Size.y / scale,
|
2016-08-17 10:19:10 +02:00
|
|
|
units,
|
2023-02-10 11:18:09 +01:00
|
|
|
D_CODE::ShowApertureType( dcode->m_ApertType ) );
|
2021-07-22 00:14:56 +01:00
|
|
|
|
2016-08-17 10:19:10 +02:00
|
|
|
if( !dcode->m_AperFunction.IsEmpty() )
|
2022-02-05 19:31:22 +00:00
|
|
|
msg << wxT( ", " ) << dcode->m_AperFunction;
|
2016-08-17 10:19:10 +02:00
|
|
|
|
|
|
|
dcode_list.Add( msg );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_DCodeSelector->AppendDCodeList( dcode_list );
|
|
|
|
|
|
|
|
if( dcode_list.size() > 1 )
|
|
|
|
{
|
|
|
|
wxSize size = m_DCodeSelector->GetBestSize();
|
|
|
|
size.x = std::max( size.x, 100 );
|
|
|
|
m_DCodeSelector->SetMinSize( size );
|
|
|
|
m_auimgr.Update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-13 17:59:46 -04:00
|
|
|
|
2016-08-17 10:19:10 +02:00
|
|
|
void GERBVIEW_FRAME::updateComponentListSelectBox()
|
2016-08-16 12:56:20 +02:00
|
|
|
{
|
|
|
|
m_SelComponentBox->Clear();
|
|
|
|
|
|
|
|
// Build the full list of component names from the partial lists stored in each file image
|
|
|
|
std::map<wxString, int> full_list;
|
|
|
|
|
|
|
|
for( unsigned layer = 0; layer < GetImagesList()->ImagesMaxCount(); ++layer )
|
|
|
|
{
|
|
|
|
GERBER_FILE_IMAGE* gerber = GetImagesList()->GetGbrImage( layer );
|
|
|
|
|
2021-07-16 16:13:26 -04:00
|
|
|
if( gerber == nullptr ) // Graphic layer not yet used
|
2016-08-16 12:56:20 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
full_list.insert( gerber->m_ComponentsList.begin(), gerber->m_ComponentsList.end() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add an empty string to deselect net highlight
|
|
|
|
m_SelComponentBox->Append( NO_SELECTION_STRING );
|
|
|
|
|
|
|
|
// Now copy the list to the choice box
|
2021-07-22 00:14:56 +01:00
|
|
|
for( const std::pair<const wxString, int>& entry : full_list )
|
|
|
|
m_SelComponentBox->Append( entry.first );
|
2016-08-16 12:56:20 +02:00
|
|
|
|
|
|
|
m_SelComponentBox->SetSelection( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GERBVIEW_FRAME::updateNetnameListSelectBox()
|
|
|
|
{
|
|
|
|
m_SelNetnameBox->Clear();
|
|
|
|
|
|
|
|
// Build the full list of netnames from the partial lists stored in each file image
|
|
|
|
std::map<wxString, int> full_list;
|
|
|
|
|
|
|
|
for( unsigned layer = 0; layer < GetImagesList()->ImagesMaxCount(); ++layer )
|
|
|
|
{
|
|
|
|
GERBER_FILE_IMAGE* gerber = GetImagesList()->GetGbrImage( layer );
|
|
|
|
|
2021-07-16 16:13:26 -04:00
|
|
|
if( gerber == nullptr ) // Graphic layer not yet used
|
2016-08-16 12:56:20 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
full_list.insert( gerber->m_NetnamesList.begin(), gerber->m_NetnamesList.end() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add an empty string to deselect net highlight
|
|
|
|
m_SelNetnameBox->Append( NO_SELECTION_STRING );
|
|
|
|
|
|
|
|
// Now copy the list to the choice box
|
2021-07-22 00:14:56 +01:00
|
|
|
for( const std::pair<const wxString, int>& entry : full_list )
|
|
|
|
m_SelNetnameBox->Append( UnescapeString( entry.first ) );
|
2016-08-16 12:56:20 +02:00
|
|
|
|
|
|
|
m_SelNetnameBox->SetSelection( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GERBVIEW_FRAME::updateAperAttributesSelectBox()
|
|
|
|
{
|
|
|
|
m_SelAperAttributesBox->Clear();
|
|
|
|
|
|
|
|
// Build the full list of netnames from the partial lists stored in each file image
|
|
|
|
std::map<wxString, int> full_list;
|
|
|
|
|
|
|
|
for( unsigned layer = 0; layer < GetImagesList()->ImagesMaxCount(); ++layer )
|
|
|
|
{
|
|
|
|
GERBER_FILE_IMAGE* gerber = GetImagesList()->GetGbrImage( layer );
|
|
|
|
|
2021-07-16 16:13:26 -04:00
|
|
|
if( gerber == nullptr ) // Graphic layer not yet used
|
2016-08-16 12:56:20 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if( gerber->GetDcodesCount() == 0 )
|
|
|
|
continue;
|
|
|
|
|
2025-03-20 11:26:37 +01:00
|
|
|
for( const auto &[_, aperture] : gerber->m_ApertureList )
|
2016-08-16 12:56:20 +02:00
|
|
|
{
|
2021-07-16 16:13:26 -04:00
|
|
|
if( aperture == nullptr )
|
2016-08-16 12:56:20 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !aperture->m_InUse && !aperture->m_Defined )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if( !aperture->m_AperFunction.IsEmpty() )
|
|
|
|
full_list.insert( std::make_pair( aperture->m_AperFunction, 0 ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add an empty string to deselect net highlight
|
|
|
|
m_SelAperAttributesBox->Append( NO_SELECTION_STRING );
|
|
|
|
|
|
|
|
// Now copy the list to the choice box
|
2021-07-22 00:14:56 +01:00
|
|
|
for( const std::pair<const wxString, int>& entry : full_list )
|
|
|
|
m_SelAperAttributesBox->Append( entry.first );
|
2016-08-16 12:56:20 +02:00
|
|
|
|
|
|
|
m_SelAperAttributesBox->SetSelection( 0 );
|
|
|
|
}
|
|
|
|
|
2018-03-13 17:59:46 -04:00
|
|
|
|
2011-03-12 10:50:21 +01:00
|
|
|
void GERBVIEW_FRAME::OnUpdateSelectDCode( wxUpdateUIEvent& aEvent )
|
2011-02-21 08:54:29 -05:00
|
|
|
{
|
2016-08-17 10:19:10 +02:00
|
|
|
if( !m_DCodeSelector )
|
|
|
|
return;
|
|
|
|
|
2021-07-22 00:14:56 +01:00
|
|
|
int layer = GetActiveLayer();
|
2016-06-18 11:37:36 +02:00
|
|
|
GERBER_FILE_IMAGE* gerber = GetGbrImage( layer );
|
2021-07-22 00:14:56 +01:00
|
|
|
int selected = gerber ? gerber->m_Selected_Tool : 0;
|
2010-09-28 16:42:05 +02:00
|
|
|
|
2021-07-16 16:13:26 -04:00
|
|
|
aEvent.Enable( gerber != nullptr );
|
2016-08-17 10:19:10 +02:00
|
|
|
|
|
|
|
if( m_DCodeSelector->GetSelectedDCodeId() != selected )
|
|
|
|
{
|
|
|
|
m_DCodeSelector->SetDCodeSelection( selected );
|
|
|
|
// Be sure the selection can be made. If no, set to
|
|
|
|
// a correct value
|
2016-09-26 19:29:00 +02:00
|
|
|
if( gerber )
|
|
|
|
gerber->m_Selected_Tool = m_DCodeSelector->GetSelectedDCodeId();
|
2016-08-17 10:19:10 +02:00
|
|
|
}
|
2010-09-28 16:42:05 +02:00
|
|
|
}
|