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>
|
2023-02-10 11:18:09 +01:00
|
|
|
* Copyright (C) 1992-2023 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>
|
2023-03-09 11:44:02 -08:00
|
|
|
#include <wx/combobox.h>
|
2021-08-03 01:11:11 +01:00
|
|
|
|
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"
|
2016-08-16 12:56:20 +02:00
|
|
|
|
2021-07-16 16:13:26 -04:00
|
|
|
|
2020-05-03 23:02:07 +01:00
|
|
|
void GERBVIEW_FRAME::ReCreateHToolbar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2020-06-17 12:03:25 +01:00
|
|
|
// Note:
|
|
|
|
// To rebuild the aui toolbar, the more easy way is to clear ( calling m_mainToolBar.Clear() )
|
|
|
|
// all wxAuiToolBarItems.
|
|
|
|
// However the wxAuiToolBarItems are not the owners of controls managed by
|
|
|
|
// them ( m_TextInfo and m_SelLayerBox ), and therefore do not delete them
|
|
|
|
// So we do not recreate them after clearing the tools.
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2018-01-07 21:05:03 -07:00
|
|
|
if( m_mainToolBar )
|
2020-09-27 00:55:59 +01:00
|
|
|
{
|
2020-06-23 11:42:23 +01:00
|
|
|
m_mainToolBar->ClearToolbar();
|
2020-09-27 00:55:59 +01:00
|
|
|
}
|
2018-01-07 21:05:03 -07:00
|
|
|
else
|
2020-09-27 00:55:59 +01:00
|
|
|
{
|
2019-05-14 20:21:10 +01:00
|
|
|
m_mainToolBar = new ACTION_TOOLBAR( this, ID_H_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
2021-07-16 16:13:26 -04:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_HORZ_LAYOUT |
|
|
|
|
wxAUI_TB_HORIZONTAL );
|
2020-09-27 00:55:59 +01:00
|
|
|
m_mainToolBar->SetAuiManager( &m_auimgr );
|
|
|
|
}
|
2009-11-09 14:00:22 +00:00
|
|
|
|
2007-09-10 04:51:01 +00:00
|
|
|
// Set up toolbar
|
2020-10-09 00:51:05 +01:00
|
|
|
m_mainToolBar->Add( GERBVIEW_ACTIONS::clearAllLayers );
|
|
|
|
m_mainToolBar->Add( GERBVIEW_ACTIONS::reloadAllLayers );
|
2021-08-16 14:42:46 -04:00
|
|
|
m_mainToolBar->Add( GERBVIEW_ACTIONS::openAutodetected );
|
2020-05-03 23:02:07 +01:00
|
|
|
m_mainToolBar->Add( GERBVIEW_ACTIONS::openGerber );
|
|
|
|
m_mainToolBar->Add( GERBVIEW_ACTIONS::openDrillFile );
|
2011-03-19 21:39:18 +01:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2020-06-30 15:35:43 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::print );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-05-14 20:21:10 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::zoomRedraw );
|
|
|
|
m_mainToolBar->Add( ACTIONS::zoomInCenter );
|
|
|
|
m_mainToolBar->Add( ACTIONS::zoomOutCenter );
|
|
|
|
m_mainToolBar->Add( ACTIONS::zoomFitScreen );
|
2020-09-05 01:48:22 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::zoomTool, ACTION_TOOLBAR::TOGGLE, ACTION_TOOLBAR::CANCEL );
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2017-06-06 09:35:20 -04:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
if( !m_SelLayerBox )
|
2022-03-24 14:10:47 +00:00
|
|
|
{
|
2020-06-17 12:03:25 +01:00
|
|
|
m_SelLayerBox = new GBR_LAYER_BOX_SELECTOR( m_mainToolBar,
|
|
|
|
ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER,
|
2021-07-16 16:13:26 -04:00
|
|
|
wxDefaultPosition, wxDefaultSize, 0, nullptr );
|
2022-03-24 14:10:47 +00:00
|
|
|
}
|
2011-05-13 09:15:28 -04:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_SelLayerBox->Resync();
|
2011-12-16 08:32:23 -05:00
|
|
|
m_mainToolBar->AddControl( m_SelLayerBox );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
if( !m_TextInfo )
|
2021-07-22 00:14:56 +01:00
|
|
|
{
|
|
|
|
m_TextInfo = new wxTextCtrl( m_mainToolBar, ID_TOOLBARH_GERBER_DATA_TEXT_BOX, wxEmptyString,
|
|
|
|
wxDefaultPosition, wxDefaultSize, wxTE_READONLY );
|
|
|
|
}
|
2020-06-17 12:03:25 +01:00
|
|
|
|
2011-12-16 08:32:23 -05:00
|
|
|
m_mainToolBar->AddControl( m_TextInfo );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2021-03-27 21:49:38 +00:00
|
|
|
m_mainToolBar->UpdateControlWidth( ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER );
|
|
|
|
m_mainToolBar->UpdateControlWidth( ID_TOOLBARH_GERBER_DATA_TEXT_BOX );
|
|
|
|
|
2011-02-21 08:54:29 -05:00
|
|
|
// after adding the buttons to the toolbar, must call Realize() to reflect the changes
|
2020-11-05 20:56:02 -05:00
|
|
|
m_mainToolBar->KiRealize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2018-01-07 21:05:03 -07:00
|
|
|
|
2016-08-16 12:56:20 +02:00
|
|
|
void GERBVIEW_FRAME::ReCreateAuxiliaryToolbar()
|
|
|
|
{
|
2018-10-13 13:49:49 +01:00
|
|
|
wxWindowUpdateLocker dummy( this );
|
2016-08-16 12:56:20 +02:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
if( m_auxiliaryToolBar )
|
2020-09-27 00:55:59 +01:00
|
|
|
{
|
2020-06-23 11:42:23 +01:00
|
|
|
m_auxiliaryToolBar->ClearToolbar();
|
2020-09-27 00:55:59 +01:00
|
|
|
}
|
2020-06-17 12:03:25 +01:00
|
|
|
else
|
2020-09-27 00:55:59 +01:00
|
|
|
{
|
2021-07-22 00:14:56 +01:00
|
|
|
m_auxiliaryToolBar = new ACTION_TOOLBAR( this, ID_AUX_TOOLBAR, wxDefaultPosition,
|
|
|
|
wxDefaultSize,
|
2019-05-14 20:21:10 +01:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_HORZ_LAYOUT );
|
2020-09-27 00:55:59 +01:00
|
|
|
m_auxiliaryToolBar->SetAuiManager( &m_auimgr );
|
|
|
|
}
|
2016-08-16 12:56:20 +02:00
|
|
|
|
|
|
|
// Creates box to display and choose components:
|
2020-06-27 20:06:17 +02:00
|
|
|
// (note, when the m_auxiliaryToolBar is recreated, tools are deleted, but controls
|
|
|
|
// are not deleted: they are just no longer managed by the toolbar
|
2018-01-28 20:30:43 -05:00
|
|
|
if( !m_SelComponentBox )
|
2021-07-22 00:14:56 +01:00
|
|
|
m_SelComponentBox = new wxChoice( m_auxiliaryToolBar, ID_GBR_AUX_TOOLBAR_PCB_CMP_CHOICE );
|
2020-06-27 20:06:17 +02:00
|
|
|
|
|
|
|
if( !m_cmpText )
|
2020-10-20 12:05:04 -07:00
|
|
|
m_cmpText = new wxStaticText( m_auxiliaryToolBar, wxID_ANY, _( "Cmp:" ) + wxS( " " ) );
|
2020-06-27 20:06:17 +02:00
|
|
|
|
|
|
|
m_SelComponentBox->SetToolTip( _("Highlight items belonging to this component") );
|
2020-10-20 12:05:04 -07:00
|
|
|
m_cmpText->SetLabel( _( "Cmp:" ) + wxS( " " ) ); // can change when changing the language
|
2020-06-27 20:06:17 +02:00
|
|
|
m_auxiliaryToolBar->AddControl( m_cmpText );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_SelComponentBox );
|
|
|
|
m_auxiliaryToolBar->AddSpacer( 5 );
|
2016-08-16 12:56:20 +02:00
|
|
|
|
|
|
|
// Creates choice box to display net names and highlight selected:
|
2018-01-28 20:30:43 -05:00
|
|
|
if( !m_SelNetnameBox )
|
2021-07-22 00:14:56 +01:00
|
|
|
m_SelNetnameBox = new wxChoice( m_auxiliaryToolBar, ID_GBR_AUX_TOOLBAR_PCB_NET_CHOICE );
|
2020-06-27 20:06:17 +02:00
|
|
|
|
|
|
|
if( !m_netText )
|
|
|
|
m_netText = new wxStaticText( m_auxiliaryToolBar, wxID_ANY, _( "Net:" ) );
|
|
|
|
|
|
|
|
m_SelNetnameBox->SetToolTip( _("Highlight items belonging to this net") );
|
|
|
|
m_netText->SetLabel( _( "Net:" ) ); // can change when changing the language
|
|
|
|
m_auxiliaryToolBar->AddControl( m_netText );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_SelNetnameBox );
|
|
|
|
m_auxiliaryToolBar->AddSpacer( 5 );
|
2018-01-28 20:30:43 -05:00
|
|
|
|
|
|
|
// Creates choice box to display aperture attributes and highlight selected:
|
|
|
|
if( !m_SelAperAttributesBox )
|
2021-07-22 00:14:56 +01:00
|
|
|
{
|
2019-01-28 06:15:32 -08:00
|
|
|
m_SelAperAttributesBox = new wxChoice( m_auxiliaryToolBar,
|
|
|
|
ID_GBR_AUX_TOOLBAR_PCB_APERATTRIBUTES_CHOICE );
|
2021-07-22 00:14:56 +01:00
|
|
|
}
|
2020-06-27 20:06:17 +02:00
|
|
|
|
|
|
|
if( !m_apertText )
|
|
|
|
m_apertText = new wxStaticText( m_auxiliaryToolBar, wxID_ANY, _( "Attr:" ) );
|
|
|
|
|
2021-07-16 16:13:26 -04:00
|
|
|
m_SelAperAttributesBox->SetToolTip( _( "Highlight items with this aperture attribute" ) );
|
|
|
|
m_apertText->SetLabel( _( "Attr:" ) ); // can change when changing the language
|
2020-06-27 20:06:17 +02:00
|
|
|
m_auxiliaryToolBar->AddControl( m_apertText );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_SelAperAttributesBox );
|
|
|
|
m_auxiliaryToolBar->AddSpacer( 5 );
|
2018-01-28 20:30:43 -05:00
|
|
|
|
|
|
|
if( !m_DCodeSelector )
|
2021-07-22 00:14:56 +01:00
|
|
|
{
|
2018-01-28 20:30:43 -05:00
|
|
|
m_DCodeSelector = new DCODE_SELECTION_BOX( m_auxiliaryToolBar,
|
|
|
|
ID_TOOLBARH_GERBER_SELECT_ACTIVE_DCODE,
|
|
|
|
wxDefaultPosition, wxSize( 150, -1 ) );
|
2021-07-22 00:14:56 +01:00
|
|
|
}
|
2020-06-27 20:06:17 +02:00
|
|
|
|
|
|
|
if( !m_dcodeText )
|
|
|
|
m_dcodeText = new wxStaticText( m_auxiliaryToolBar, wxID_ANY, _( "DCode:" ) );
|
|
|
|
|
|
|
|
m_dcodeText->SetLabel( _( "DCode:" ) );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_dcodeText );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_DCodeSelector );
|
2018-01-28 20:30:43 -05:00
|
|
|
|
2018-07-11 13:56:05 +01:00
|
|
|
if( !m_gridSelectBox )
|
|
|
|
{
|
2023-03-09 11:44:02 -08:00
|
|
|
m_gridSelectBox = new wxComboBox( m_auxiliaryToolBar, ID_ON_GRID_SELECT, wxEmptyString, wxDefaultPosition,
|
|
|
|
wxDefaultSize, 0, nullptr, wxCB_READONLY );
|
2018-07-11 13:56:05 +01:00
|
|
|
}
|
|
|
|
|
2020-06-27 20:06:17 +02:00
|
|
|
m_auxiliaryToolBar->AddScaledSeparator( this );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_gridSelectBox );
|
|
|
|
|
2018-07-11 13:56:05 +01:00
|
|
|
if( !m_zoomSelectBox )
|
|
|
|
{
|
2023-03-09 11:44:02 -08:00
|
|
|
m_zoomSelectBox = new wxComboBox( m_auxiliaryToolBar, ID_ON_ZOOM_SELECT, wxEmptyString, wxDefaultPosition,
|
|
|
|
wxDefaultSize, 0, nullptr, wxCB_READONLY );
|
2018-07-11 13:56:05 +01:00
|
|
|
}
|
|
|
|
|
2020-06-27 20:06:17 +02:00
|
|
|
m_auxiliaryToolBar->AddScaledSeparator( this );
|
|
|
|
m_auxiliaryToolBar->AddControl( m_zoomSelectBox );
|
|
|
|
|
2018-01-28 20:30:43 -05:00
|
|
|
updateComponentListSelectBox();
|
|
|
|
updateNetnameListSelectBox();
|
|
|
|
updateAperAttributesSelectBox();
|
|
|
|
updateDCodeSelectBox();
|
2020-06-14 16:08:47 +01:00
|
|
|
UpdateGridSelectBox();
|
|
|
|
UpdateZoomSelectBox();
|
2018-01-28 20:30:43 -05:00
|
|
|
|
2021-03-27 21:49:38 +00:00
|
|
|
// Go through and ensure the comboboxes are the correct size, since the strings in the
|
|
|
|
// box could have changed widths.
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_GBR_AUX_TOOLBAR_PCB_CMP_CHOICE );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_GBR_AUX_TOOLBAR_PCB_NET_CHOICE );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_GBR_AUX_TOOLBAR_PCB_APERATTRIBUTES_CHOICE );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_ON_GRID_SELECT );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_ON_ZOOM_SELECT );
|
2018-07-11 13:56:05 +01:00
|
|
|
|
2016-08-16 12:56:20 +02:00
|
|
|
// after adding the buttons to the toolbar, must call Realize()
|
2020-11-05 20:56:02 -05:00
|
|
|
m_auxiliaryToolBar->KiRealize();
|
2016-08-16 12:56:20 +02:00
|
|
|
}
|
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2019-05-14 20:21:10 +01:00
|
|
|
void GERBVIEW_FRAME::ReCreateVToolbar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2020-06-17 12:03:25 +01:00
|
|
|
// This toolbar isn't used currently
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-14 20:21:10 +01:00
|
|
|
void GERBVIEW_FRAME::ReCreateOptToolbar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-12-14 15:03:15 -05:00
|
|
|
if( m_optionsToolBar )
|
2020-09-27 00:55:59 +01:00
|
|
|
{
|
2020-06-23 11:42:23 +01:00
|
|
|
m_optionsToolBar->ClearToolbar();
|
2020-09-27 00:55:59 +01:00
|
|
|
}
|
2017-09-17 18:43:20 -04:00
|
|
|
else
|
2020-09-27 00:55:59 +01:00
|
|
|
{
|
2021-07-16 16:13:26 -04:00
|
|
|
m_optionsToolBar = new ACTION_TOOLBAR( this, ID_OPT_TOOLBAR, wxDefaultPosition,
|
|
|
|
wxDefaultSize,
|
2019-05-14 20:21:10 +01:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_VERTICAL );
|
2020-09-27 00:55:59 +01:00
|
|
|
m_optionsToolBar->SetAuiManager( &m_auimgr );
|
|
|
|
}
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2016-06-10 07:08:16 -04:00
|
|
|
// TODO: these can be moved to the 'proper' vertical toolbar if and when there are
|
|
|
|
// actual tools to put there. That, or I'll get around to implementing configurable
|
|
|
|
// toolbars.
|
2019-06-03 02:46:08 +01:00
|
|
|
m_optionsToolBar->Add( ACTIONS::selectionTool, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( ACTIONS::measureTool, ACTION_TOOLBAR::TOGGLE );
|
2016-06-10 07:08:16 -04:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2019-05-17 12:52:38 +01:00
|
|
|
m_optionsToolBar->Add( ACTIONS::toggleGrid, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( ACTIONS::togglePolarCoords, ACTION_TOOLBAR::TOGGLE );
|
2020-10-04 00:34:23 +01:00
|
|
|
m_optionsToolBar->Add( ACTIONS::inchesUnits, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( ACTIONS::milsUnits, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( ACTIONS::millimetersUnits, ACTION_TOOLBAR::TOGGLE );
|
2019-05-15 23:49:48 +01:00
|
|
|
m_optionsToolBar->Add( ACTIONS::toggleCursorStyle, ACTION_TOOLBAR::TOGGLE );
|
2007-09-10 04:51:01 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2019-05-15 23:49:48 +01:00
|
|
|
m_optionsToolBar->Add( GERBVIEW_ACTIONS::flashedDisplayOutlines, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( GERBVIEW_ACTIONS::linesDisplayOutlines, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( GERBVIEW_ACTIONS::polygonsDisplayOutlines, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( GERBVIEW_ACTIONS::negativeObjectDisplay, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( GERBVIEW_ACTIONS::dcodeDisplay, ACTION_TOOLBAR::TOGGLE );
|
2022-11-17 15:42:12 +00:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2019-06-02 19:58:09 +01:00
|
|
|
m_optionsToolBar->Add( GERBVIEW_ACTIONS::toggleDiffMode, ACTION_TOOLBAR::TOGGLE );
|
2022-11-17 15:42:12 +00:00
|
|
|
m_optionsToolBar->Add( GERBVIEW_ACTIONS::toggleXORMode, ACTION_TOOLBAR::TOGGLE );
|
2019-06-02 19:58:09 +01:00
|
|
|
m_optionsToolBar->Add( ACTIONS::highContrastMode, ACTION_TOOLBAR::TOGGLE );
|
2020-07-25 21:20:07 -07:00
|
|
|
m_optionsToolBar->Add( GERBVIEW_ACTIONS::flipGerberView, ACTION_TOOLBAR::TOGGLE );
|
2010-12-15 21:15:24 +01:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2020-10-09 00:51:05 +01:00
|
|
|
m_optionsToolBar->Add( GERBVIEW_ACTIONS::toggleLayerManager, ACTION_TOOLBAR::TOGGLE );
|
2010-02-03 17:38:32 +00:00
|
|
|
|
2020-11-05 20:56:02 -05:00
|
|
|
m_optionsToolBar->KiRealize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2010-09-28 16:42:05 +02:00
|
|
|
|
|
|
|
|
2021-03-27 21:49:38 +00:00
|
|
|
void GERBVIEW_FRAME::UpdateToolbarControlSizes()
|
|
|
|
{
|
|
|
|
if( m_mainToolBar )
|
|
|
|
{
|
|
|
|
// Update the item widths
|
|
|
|
m_mainToolBar->UpdateControlWidth( ID_TOOLBARH_GERBVIEW_SELECT_ACTIVE_LAYER );
|
|
|
|
m_mainToolBar->UpdateControlWidth( ID_TOOLBARH_GERBER_DATA_TEXT_BOX );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( m_auxiliaryToolBar )
|
|
|
|
{
|
|
|
|
// Update the item widths
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_GBR_AUX_TOOLBAR_PCB_CMP_CHOICE );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_GBR_AUX_TOOLBAR_PCB_NET_CHOICE );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_GBR_AUX_TOOLBAR_PCB_APERATTRIBUTES_CHOICE );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_ON_GRID_SELECT );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_ON_ZOOM_SELECT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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() )
|
|
|
|
{
|
2021-07-16 16:13:26 -04:00
|
|
|
case EDA_UNITS::MILLIMETRES:
|
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;
|
|
|
|
|
|
|
|
case EDA_UNITS::INCHES:
|
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
|
|
|
|
|
|
|
for( int ii = 0; ii < TOOLS_MAX_COUNT; ii++ )
|
|
|
|
{
|
2017-09-17 18:43:20 -04:00
|
|
|
D_CODE* dcode = gerber->GetDCODE( ii + FIRST_DCODE );
|
2016-08-17 10:19:10 +02:00
|
|
|
|
2021-07-16 16:13:26 -04:00
|
|
|
if( dcode == nullptr )
|
2016-08-17 10:19:10 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
for( int ii = 0; ii < TOOLS_MAX_COUNT; ii++ )
|
|
|
|
{
|
2017-09-17 18:43:20 -04:00
|
|
|
D_CODE* aperture = gerber->GetDCODE( ii + FIRST_DCODE );
|
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::OnUpdateDrawMode( wxUpdateUIEvent& aEvent )
|
2010-09-28 16:42:05 +02:00
|
|
|
{
|
2011-02-21 08:54:29 -05:00
|
|
|
switch( aEvent.GetId() )
|
|
|
|
{
|
2021-07-22 00:14:56 +01:00
|
|
|
case ID_TB_OPTIONS_SHOW_GBR_MODE_0: aEvent.Check( GetDisplayMode() == 0 ); break;
|
|
|
|
case ID_TB_OPTIONS_SHOW_GBR_MODE_1: aEvent.Check( GetDisplayMode() == 1 ); break;
|
|
|
|
case ID_TB_OPTIONS_SHOW_GBR_MODE_2: aEvent.Check( GetDisplayMode() == 2 ); break;
|
|
|
|
default: break;
|
2010-09-28 16:42:05 +02:00
|
|
|
}
|
2011-02-21 08:54:29 -05:00
|
|
|
}
|
2010-09-28 16:42:05 +02: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
|
|
|
}
|
|
|
|
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2011-03-12 10:50:21 +01:00
|
|
|
void GERBVIEW_FRAME::OnUpdateLayerSelectBox( wxUpdateUIEvent& aEvent )
|
2011-02-21 08:54:29 -05:00
|
|
|
{
|
2022-03-24 14:10:47 +00:00
|
|
|
if( m_SelLayerBox->GetCount() )
|
|
|
|
{
|
|
|
|
if( m_SelLayerBox->GetSelection() != GetActiveLayer() )
|
|
|
|
m_SelLayerBox->SetSelection( GetActiveLayer() );
|
|
|
|
}
|
2011-02-21 08:54:29 -05:00
|
|
|
}
|
2019-05-14 20:21:10 +01:00
|
|
|
|