2011-12-16 08:32:23 -05:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2012-06-08 11:56:42 +02:00
|
|
|
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2018-11-28 09:58:41 -05:00
|
|
|
* Copyright (C) 2012 Wayne Stambaugh <stambaughw@gmail.com>
|
2021-07-19 19:56:05 -04:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-12-16 08:32:23 -05: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
|
|
|
|
*/
|
|
|
|
|
2020-10-02 14:29:17 +02:00
|
|
|
#include <memory>
|
|
|
|
|
2021-07-26 18:56:11 +01:00
|
|
|
#include <advanced_config.h>
|
2020-01-12 20:44:19 -05:00
|
|
|
#include <bitmaps.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
2021-06-06 15:03:10 -04:00
|
|
|
#include <board_design_settings.h>
|
2021-09-14 23:45:14 +01:00
|
|
|
#include <kiface_base.h>
|
2021-03-20 11:35:37 -04:00
|
|
|
#include <macros.h>
|
2018-01-29 21:58:58 +01:00
|
|
|
#include <pcb_edit_frame.h>
|
2020-01-12 20:44:19 -05:00
|
|
|
#include <pcb_layer_box_selector.h>
|
|
|
|
#include <pcbnew_id.h>
|
|
|
|
#include <pcbnew_settings.h>
|
|
|
|
#include <pgm_base.h>
|
2020-06-23 11:44:39 +01:00
|
|
|
#include <router/pns_routing_settings.h>
|
|
|
|
#include <router/router_tool.h>
|
2020-01-12 20:44:19 -05:00
|
|
|
#include <settings/color_settings.h>
|
2019-06-09 22:57:23 +01:00
|
|
|
#include <tool/action_toolbar.h>
|
2019-05-14 20:21:10 +01:00
|
|
|
#include <tool/actions.h>
|
2020-10-05 20:26:33 +01:00
|
|
|
#include <tool/common_tools.h>
|
2020-06-23 11:44:39 +01:00
|
|
|
#include <tool/tool_manager.h>
|
2020-01-12 20:44:19 -05:00
|
|
|
#include <tools/pcb_actions.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include <tools/pcb_selection_tool.h>
|
2021-08-19 21:15:14 -04:00
|
|
|
#include <widgets/appearance_controls.h>
|
|
|
|
#include <widgets/wx_aui_utils.h>
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <wx/wupdlock.h>
|
2021-05-01 09:50:29 +02:00
|
|
|
#include <wx/dcmemory.h>
|
2021-06-03 18:17:59 +01:00
|
|
|
#include <wx/choice.h>
|
2011-09-16 14:54:04 -04:00
|
|
|
|
2021-03-08 06:54:22 -08:00
|
|
|
#include "../scripting/python_scripting.h"
|
2015-07-09 18:44:23 +02:00
|
|
|
|
2011-09-16 14:54:04 -04:00
|
|
|
|
2007-06-13 15:35:40 +00:00
|
|
|
/* Data to build the layer pair indicator button */
|
2018-01-07 21:05:03 -07:00
|
|
|
static std::unique_ptr<wxBitmap> LayerPairBitmap;
|
2007-09-11 04:17:46 +00:00
|
|
|
|
2013-01-18 15:12:57 +01:00
|
|
|
#define BM_LAYERICON_SIZE 24
|
|
|
|
static const char s_BitmapLayerIcon[BM_LAYERICON_SIZE][BM_LAYERICON_SIZE] =
|
|
|
|
{
|
2021-01-04 11:54:30 +00:00
|
|
|
// 0 = draw pixel with white
|
|
|
|
// 1 = draw pixel with black
|
|
|
|
// 2 = draw pixel with top layer from router pair
|
|
|
|
// 3 = draw pixel with bottom layer from router pair
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
|
|
|
{ 2, 2, 2, 2, 2, 0, 1, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
|
2007-06-13 15:35:40 +00:00
|
|
|
};
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2021-01-04 11:54:30 +00:00
|
|
|
static COLOR4D ICON_WHITE { 0.86, 0.86, 0.86, 1.0 };
|
|
|
|
static COLOR4D ICON_BLACK { 0.28, 0.28, 0.28, 1.0 };
|
|
|
|
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2019-07-29 00:39:24 +02:00
|
|
|
void PCB_EDIT_FRAME::PrepareLayerIndicator( bool aForceRebuild )
|
2007-06-13 15:35:40 +00:00
|
|
|
{
|
2019-07-28 17:37:19 -06:00
|
|
|
int ii, jj;
|
2021-01-04 11:54:30 +00:00
|
|
|
COLOR4D top_color, bottom_color, background_color;
|
2019-07-29 00:39:24 +02:00
|
|
|
bool change = aForceRebuild;
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2020-01-12 20:44:19 -05:00
|
|
|
int requested_scale = Pgm().GetCommonSettings()->m_Appearance.icon_scale;
|
2018-01-07 21:05:03 -07:00
|
|
|
|
2019-08-05 17:10:58 +02:00
|
|
|
if( m_prevIconVal.previous_requested_scale != requested_scale )
|
2018-01-07 21:05:03 -07:00
|
|
|
{
|
2019-08-05 17:10:58 +02:00
|
|
|
m_prevIconVal.previous_requested_scale = requested_scale;
|
2019-07-28 17:37:19 -06:00
|
|
|
change = true;
|
2018-01-07 21:05:03 -07:00
|
|
|
}
|
|
|
|
|
2020-05-16 13:15:43 -04:00
|
|
|
top_color = GetColorSettings()->GetColor( GetScreen()->m_Route_Layer_TOP );
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2019-08-05 17:10:58 +02:00
|
|
|
if( m_prevIconVal.previous_Route_Layer_TOP_color != top_color )
|
2007-08-04 01:08:43 +00:00
|
|
|
{
|
2019-08-05 17:10:58 +02:00
|
|
|
m_prevIconVal.previous_Route_Layer_TOP_color = top_color;
|
2019-07-28 17:37:19 -06:00
|
|
|
change = true;
|
2007-08-04 01:08:43 +00:00
|
|
|
}
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2020-05-16 13:15:43 -04:00
|
|
|
bottom_color = GetColorSettings()->GetColor( GetScreen()->m_Route_Layer_BOTTOM );
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2019-08-05 17:10:58 +02:00
|
|
|
if( m_prevIconVal.previous_Route_Layer_BOTTOM_color != bottom_color )
|
2007-08-04 01:08:43 +00:00
|
|
|
{
|
2019-08-05 17:10:58 +02:00
|
|
|
m_prevIconVal.previous_Route_Layer_BOTTOM_color = bottom_color;
|
2019-07-28 17:37:19 -06:00
|
|
|
change = true;
|
2007-08-04 01:08:43 +00:00
|
|
|
}
|
2010-01-31 20:01:46 +00:00
|
|
|
|
2020-05-16 13:15:43 -04:00
|
|
|
background_color = GetColorSettings()->GetColor( LAYER_PCB_BACKGROUND );
|
2018-01-14 19:41:01 +00:00
|
|
|
|
2019-08-05 17:10:58 +02:00
|
|
|
if( m_prevIconVal.previous_background_color != background_color )
|
2018-01-14 19:41:01 +00:00
|
|
|
{
|
2019-08-05 17:10:58 +02:00
|
|
|
m_prevIconVal.previous_background_color = background_color;
|
2019-07-28 17:37:19 -06:00
|
|
|
change = true;
|
2018-01-14 19:41:01 +00:00
|
|
|
}
|
|
|
|
|
2019-07-28 17:37:19 -06:00
|
|
|
if( change || !LayerPairBitmap )
|
2007-08-04 01:08:43 +00:00
|
|
|
{
|
2019-07-28 16:19:25 -06:00
|
|
|
LayerPairBitmap = std::make_unique<wxBitmap>( 24, 24 );
|
|
|
|
|
2021-01-04 11:54:30 +00:00
|
|
|
// Draw the icon, with colors according to the router's layer pair
|
2019-07-28 16:19:25 -06:00
|
|
|
wxMemoryDC iconDC;
|
|
|
|
iconDC.SelectObject( *LayerPairBitmap );
|
|
|
|
wxBrush brush;
|
|
|
|
wxPen pen;
|
|
|
|
int buttonColor = -1;
|
|
|
|
|
|
|
|
brush.SetStyle( wxBRUSHSTYLE_SOLID );
|
|
|
|
brush.SetColour( background_color.WithAlpha(1.0).ToColour() );
|
|
|
|
iconDC.SetBrush( brush );
|
|
|
|
iconDC.DrawRectangle( 0, 0, BM_LAYERICON_SIZE, BM_LAYERICON_SIZE );
|
|
|
|
|
|
|
|
for( ii = 0; ii < BM_LAYERICON_SIZE; ii++ )
|
2007-08-04 01:08:43 +00:00
|
|
|
{
|
2019-07-28 16:19:25 -06:00
|
|
|
for( jj = 0; jj < BM_LAYERICON_SIZE; jj++ )
|
2007-08-04 01:08:43 +00:00
|
|
|
{
|
2019-07-28 16:19:25 -06:00
|
|
|
if( s_BitmapLayerIcon[ii][jj] != buttonColor )
|
2007-08-04 01:08:43 +00:00
|
|
|
{
|
2019-07-28 16:19:25 -06:00
|
|
|
switch( s_BitmapLayerIcon[ii][jj] )
|
|
|
|
{
|
|
|
|
default:
|
2021-01-04 11:54:30 +00:00
|
|
|
case 0: pen.SetColour( ICON_WHITE.ToColour() ); break;
|
|
|
|
case 1: pen.SetColour( ICON_BLACK.ToColour() ); break;
|
|
|
|
case 2: pen.SetColour( top_color.ToColour() ); break;
|
|
|
|
case 3: pen.SetColour( bottom_color.ToColour() ); break;
|
2019-07-28 16:19:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
buttonColor = s_BitmapLayerIcon[ii][jj];
|
|
|
|
iconDC.SetPen( pen );
|
2007-08-04 01:08:43 +00:00
|
|
|
}
|
|
|
|
|
2019-07-28 16:19:25 -06:00
|
|
|
iconDC.DrawPoint( jj, ii );
|
2007-08-04 01:08:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 16:19:25 -06:00
|
|
|
// Deselect the bitmap from the DC in order to delete the MemoryDC safely without
|
|
|
|
// deleting the bitmap
|
|
|
|
iconDC.SelectObject( wxNullBitmap );
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2019-07-28 16:19:25 -06:00
|
|
|
// Scale the bitmap
|
|
|
|
const int scale = ( requested_scale <= 0 ) ? KiIconScale( this ) : requested_scale;
|
|
|
|
wxImage image = LayerPairBitmap->ConvertToImage();
|
2018-01-07 21:05:03 -07:00
|
|
|
|
2019-07-28 16:19:25 -06:00
|
|
|
// "NEAREST" causes less mixing of colors
|
|
|
|
image.Rescale( scale * image.GetWidth() / 4, scale * image.GetHeight() / 4,
|
|
|
|
wxIMAGE_QUALITY_NEAREST );
|
2018-01-07 21:05:03 -07:00
|
|
|
|
2019-07-28 16:19:25 -06:00
|
|
|
LayerPairBitmap = std::make_unique<wxBitmap>( image );
|
2018-01-07 21:05:03 -07:00
|
|
|
|
2020-08-17 12:37:25 +01:00
|
|
|
if( m_mainToolBar )
|
|
|
|
{
|
|
|
|
m_mainToolBar->SetToolBitmap( PCB_ACTIONS::selectLayerPair, *LayerPairBitmap );
|
|
|
|
m_mainToolBar->Refresh();
|
|
|
|
}
|
2007-08-04 01:08:43 +00:00
|
|
|
}
|
2007-06-13 15:35:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 14:26:17 -05:00
|
|
|
void PCB_EDIT_FRAME::ReCreateHToolbar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2019-01-18 17:24:40 +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 and therefore do not delete them
|
|
|
|
// So we do not recreate them after clearing the tools.
|
|
|
|
|
2018-10-13 13:49:49 +01:00
|
|
|
wxWindowUpdateLocker dummy( this );
|
2007-08-04 01:08:43 +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-19 19:56:05 -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 );
|
|
|
|
|
2021-07-19 19:56:05 -04:00
|
|
|
// The layer indicator is special, so we register a callback directly that will
|
|
|
|
// regenerate the bitmap instead of using the conditions system.
|
2020-09-27 00:55:59 +01:00
|
|
|
auto layerIndicatorUpdate =
|
|
|
|
[this] ( wxUpdateUIEvent& )
|
|
|
|
{
|
|
|
|
PrepareLayerIndicator();
|
|
|
|
};
|
|
|
|
|
|
|
|
Bind( wxEVT_UPDATE_UI, layerIndicatorUpdate, PCB_ACTIONS::selectLayerPair.GetUIId() );
|
|
|
|
}
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2007-08-04 01:08:43 +00:00
|
|
|
// Set up toolbar
|
2014-06-11 00:18:41 -05:00
|
|
|
if( Kiface().IsSingle() )
|
|
|
|
{
|
2019-05-26 16:36:40 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::doNew );
|
|
|
|
m_mainToolBar->Add( ACTIONS::open );
|
2014-06-11 00:18:41 -05:00
|
|
|
}
|
|
|
|
|
2019-05-26 16:36:40 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::save );
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-06-04 21:59:59 +01:00
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::boardSetup );
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-05-26 16:36:40 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::pageSettings );
|
|
|
|
m_mainToolBar->Add( ACTIONS::print );
|
|
|
|
m_mainToolBar->Add( ACTIONS::plot );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-05-15 23:49:48 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::undo );
|
|
|
|
m_mainToolBar->Add( ACTIONS::redo );
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-05-15 23:49:48 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::find );
|
2007-08-04 01:08:43 +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-25 00:31:56 -07:00
|
|
|
m_mainToolBar->Add( ACTIONS::zoomFitObjects );
|
2020-09-05 01:48:22 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::zoomTool, ACTION_TOOLBAR::TOGGLE, ACTION_TOOLBAR::CANCEL );
|
2017-06-06 09:35:20 -04:00
|
|
|
|
2021-02-16 20:45:25 +00:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::rotateCcw );
|
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::rotateCw );
|
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::group );
|
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::ungroup );
|
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::lock );
|
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::unlock );
|
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-06-06 12:45:28 +01:00
|
|
|
m_mainToolBar->Add( ACTIONS::showFootprintEditor );
|
2020-10-11 12:16:40 -07:00
|
|
|
m_mainToolBar->Add( ACTIONS::showFootprintBrowser );
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2021-03-27 21:49:38 +00:00
|
|
|
|
2021-02-22 14:45:29 -08:00
|
|
|
if( !Kiface().IsSingle() )
|
|
|
|
m_mainToolBar->Add( ACTIONS::updatePcbFromSchematic );
|
|
|
|
else
|
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::importNetlist );
|
|
|
|
|
2019-06-03 14:49:17 +01:00
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::runDRC );
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2010-11-03 19:55:51 +01:00
|
|
|
|
2019-01-18 17:24:40 +01:00
|
|
|
if( m_SelLayerBox == nullptr )
|
2013-09-01 20:38:11 +02:00
|
|
|
{
|
2012-05-04 19:44:42 +02:00
|
|
|
m_SelLayerBox = new PCB_LAYER_BOX_SELECTOR( m_mainToolBar, ID_TOOLBARH_PCB_SELECT_LAYER );
|
2013-09-01 20:38:11 +02:00
|
|
|
m_SelLayerBox->SetBoardFrame( this );
|
|
|
|
}
|
2014-06-29 08:05:51 -05:00
|
|
|
|
2013-09-02 17:26:52 +02:00
|
|
|
ReCreateLayerBox( false );
|
2011-12-16 08:32:23 -05:00
|
|
|
m_mainToolBar->AddControl( m_SelLayerBox );
|
2010-11-03 19:55:51 +01:00
|
|
|
|
2019-06-09 22:57:23 +01:00
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::selectLayerPair );
|
2019-07-29 00:39:24 +02:00
|
|
|
PrepareLayerIndicator( true ); // Force rebuild of the bitmap with the active layer colors
|
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-07-09 00:43:08 +01:00
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::showEeschema );
|
2018-07-22 22:33:01 +01:00
|
|
|
|
2012-08-10 23:53:50 +02:00
|
|
|
// Access to the scripting console
|
2021-03-18 06:28:04 -07:00
|
|
|
if( SCRIPTING::IsWxAvailable() )
|
2015-07-09 18:44:23 +02:00
|
|
|
{
|
2020-06-17 12:03:25 +01:00
|
|
|
m_mainToolBar->AddScaledSeparator( this );
|
2019-06-03 14:49:17 +01:00
|
|
|
m_mainToolBar->Add( PCB_ACTIONS::showPythonConsole, ACTION_TOOLBAR::TOGGLE );
|
2018-08-15 02:26:32 -07:00
|
|
|
AddActionPluginTools();
|
2015-07-09 18:44:23 +02:00
|
|
|
}
|
2014-06-17 20:31:27 +02: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_mainToolBar->UpdateControlWidth( ID_TOOLBARH_PCB_SELECT_LAYER );
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2011-03-01 14:26:17 -05:00
|
|
|
void PCB_EDIT_FRAME::ReCreateOptToolbar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2019-01-18 17:24:40 +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 and therefore do not delete them
|
|
|
|
// So we do not recreate them after clearing the tools.
|
|
|
|
|
2018-10-13 13:49:49 +01:00
|
|
|
wxWindowUpdateLocker dummy( this );
|
2010-07-27 14:47:08 +02:00
|
|
|
|
2018-01-07 21:05:03 -07: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
|
|
|
}
|
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_optionsToolBar = new ACTION_TOOLBAR( this, ID_OPT_TOOLBAR,
|
|
|
|
wxDefaultPosition, wxDefaultSize,
|
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_VERTICAL );
|
2020-09-27 00:55:59 +01:00
|
|
|
m_optionsToolBar->SetAuiManager( &m_auimgr );
|
|
|
|
}
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2019-06-04 22:29:51 +01:00
|
|
|
m_optionsToolBar->Add( ACTIONS::toggleGrid, ACTION_TOOLBAR::TOGGLE );
|
2019-05-14 20:21:10 +01:00
|
|
|
|
2019-06-04 22:29:51 +01:00
|
|
|
m_optionsToolBar->Add( PCB_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-06-04 22:29:51 +01:00
|
|
|
m_optionsToolBar->Add( ACTIONS::toggleCursorStyle, ACTION_TOOLBAR::TOGGLE );
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2019-06-04 22:29:51 +01:00
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::showRatsnest, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::ratsnestLineMode, ACTION_TOOLBAR::TOGGLE );
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2021-05-29 11:53:55 -04:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
|
|
|
m_optionsToolBar->Add( ACTIONS::highContrastMode, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::toggleNetHighlight, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2021-07-26 18:56:11 +01:00
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::zoneDisplayFilled, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::zoneDisplayOutline, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
|
|
|
|
if( ADVANCED_CFG::GetCfg().m_ExtraZoneDisplayModes )
|
|
|
|
{
|
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::zoneDisplayFractured, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::zoneDisplayTriangulated, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
}
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2019-06-04 22:29:51 +01:00
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::padDisplayMode, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::viaDisplayMode, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::trackDisplayMode, ACTION_TOOLBAR::TOGGLE );
|
2009-06-19 20:13:22 +00:00
|
|
|
|
2010-01-24 13:46:01 +00:00
|
|
|
// Tools to show/hide toolbars:
|
2020-06-17 12:03:25 +01:00
|
|
|
m_optionsToolBar->AddScaledSeparator( this );
|
2019-06-04 22:29:51 +01:00
|
|
|
m_optionsToolBar->Add( PCB_ACTIONS::showLayersManager, ACTION_TOOLBAR::TOGGLE );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
PCB_SELECTION_TOOL* selTool = m_toolManager->GetTool<PCB_SELECTION_TOOL>();
|
2020-09-27 18:27:25 +01:00
|
|
|
std::unique_ptr<ACTION_MENU> gridMenu = std::make_unique<ACTION_MENU>( false, selTool );
|
|
|
|
gridMenu->Add( ACTIONS::gridProperties );
|
|
|
|
m_optionsToolBar->AddToolContextMenu( ACTIONS::toggleGrid, std::move( gridMenu ) );
|
|
|
|
|
2020-11-05 20:56:02 -05:00
|
|
|
m_optionsToolBar->KiRealize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 14:26:17 -05:00
|
|
|
void PCB_EDIT_FRAME::ReCreateVToolbar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2018-10-13 13:49:49 +01:00
|
|
|
wxWindowUpdateLocker dummy( this );
|
2010-07-27 14:47:08 +02:00
|
|
|
|
2018-01-07 21:05:03 -07:00
|
|
|
if( m_drawToolBar )
|
2020-09-27 00:55:59 +01:00
|
|
|
{
|
2020-06-23 11:42:23 +01:00
|
|
|
m_drawToolBar->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_drawToolBar = new ACTION_TOOLBAR( this, ID_V_TOOLBAR, wxDefaultPosition, wxDefaultSize,
|
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_VERTICAL );
|
2020-09-27 00:55:59 +01:00
|
|
|
m_drawToolBar->SetAuiManager( &m_auimgr );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Groups contained on this toolbar
|
|
|
|
static ACTION_GROUP* dimensionGroup = nullptr;
|
|
|
|
static ACTION_GROUP* originGroup = nullptr;
|
|
|
|
static ACTION_GROUP* routingGroup = nullptr;
|
2021-05-07 15:44:47 +02:00
|
|
|
static ACTION_GROUP* tuneGroup = nullptr;
|
2020-09-27 00:55:59 +01:00
|
|
|
|
|
|
|
if( !dimensionGroup )
|
|
|
|
{
|
|
|
|
dimensionGroup = new ACTION_GROUP( "group.pcbDimensions",
|
|
|
|
{ &PCB_ACTIONS::drawAlignedDimension,
|
|
|
|
&PCB_ACTIONS::drawOrthogonalDimension,
|
|
|
|
&PCB_ACTIONS::drawCenterDimension,
|
|
|
|
&PCB_ACTIONS::drawLeader } );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !originGroup )
|
|
|
|
{
|
|
|
|
originGroup = new ACTION_GROUP( "group.pcbOrigins",
|
|
|
|
{ &PCB_ACTIONS::drillOrigin,
|
|
|
|
&PCB_ACTIONS::gridSetOrigin } );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !routingGroup )
|
|
|
|
{
|
|
|
|
routingGroup = new ACTION_GROUP( "group.pcbRouting",
|
|
|
|
{ &PCB_ACTIONS::routeSingleTrack,
|
|
|
|
&PCB_ACTIONS::routeDiffPair } );
|
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2021-05-07 15:44:47 +02:00
|
|
|
if( !tuneGroup )
|
|
|
|
{
|
2021-06-06 15:03:10 -04:00
|
|
|
tuneGroup = new ACTION_GROUP( "group.pcbTune",
|
2021-05-07 15:44:47 +02:00
|
|
|
{ &PCB_ACTIONS::routerTuneSingleTrace,
|
|
|
|
&PCB_ACTIONS::routerTuneDiffPair,
|
|
|
|
&PCB_ACTIONS::routerTuneDiffPairSkew } );
|
|
|
|
}
|
|
|
|
|
2019-06-24 16:27:05 +01:00
|
|
|
m_drawToolBar->Add( ACTIONS::selectionTool, ACTION_TOOLBAR::TOGGLE );
|
2019-05-15 23:49:48 +01:00
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::localRatsnestTool, ACTION_TOOLBAR::TOGGLE );
|
2012-07-13 20:55:29 +02:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_drawToolBar->AddScaledSeparator( this );
|
2021-01-25 13:58:30 +00:00
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::placeFootprint, ACTION_TOOLBAR::TOGGLE );
|
2020-09-27 00:55:59 +01:00
|
|
|
m_drawToolBar->AddGroup( routingGroup, ACTION_TOOLBAR::TOGGLE );
|
2021-05-07 15:44:47 +02:00
|
|
|
m_drawToolBar->AddGroup( tuneGroup, ACTION_TOOLBAR::TOGGLE );
|
2019-05-15 23:49:48 +01:00
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::drawVia, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::drawZone, ACTION_TOOLBAR::TOGGLE );
|
2020-09-21 19:32:07 -04:00
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::drawRuleArea, ACTION_TOOLBAR::TOGGLE );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_drawToolBar->AddScaledSeparator( this );
|
2019-05-15 23:49:48 +01:00
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::drawLine, ACTION_TOOLBAR::TOGGLE );
|
2020-12-13 12:00:40 +00:00
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::drawArc, ACTION_TOOLBAR::TOGGLE );
|
2020-07-01 13:28:10 +01:00
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::drawRectangle, ACTION_TOOLBAR::TOGGLE );
|
2019-05-15 23:49:48 +01:00
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::drawCircle, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::drawPolygon, ACTION_TOOLBAR::TOGGLE );
|
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::placeText, ACTION_TOOLBAR::TOGGLE );
|
2020-09-27 00:55:59 +01:00
|
|
|
m_drawToolBar->AddGroup( dimensionGroup, ACTION_TOOLBAR::TOGGLE );
|
2019-05-15 23:49:48 +01:00
|
|
|
m_drawToolBar->Add( PCB_ACTIONS::placeTarget, ACTION_TOOLBAR::TOGGLE );
|
2019-07-31 13:10:13 +01:00
|
|
|
m_drawToolBar->Add( ACTIONS::deleteTool, ACTION_TOOLBAR::TOGGLE );
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2020-06-17 12:03:25 +01:00
|
|
|
m_drawToolBar->AddScaledSeparator( this );
|
2020-09-27 00:55:59 +01:00
|
|
|
m_drawToolBar->AddGroup( originGroup, ACTION_TOOLBAR::TOGGLE );
|
2019-06-03 02:46:08 +01:00
|
|
|
m_drawToolBar->Add( ACTIONS::measureTool, ACTION_TOOLBAR::TOGGLE );
|
2017-03-09 17:09:13 +08:00
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
PCB_SELECTION_TOOL* selTool = m_toolManager->GetTool<PCB_SELECTION_TOOL>();
|
2020-10-01 22:55:17 +01:00
|
|
|
|
2021-04-22 21:37:15 -04:00
|
|
|
auto makeRouteMenu =
|
|
|
|
[&]()
|
|
|
|
{
|
|
|
|
std::unique_ptr<ACTION_MENU> routeMenu =
|
|
|
|
std::make_unique<ACTION_MENU>( false, selTool );
|
|
|
|
|
|
|
|
routeMenu->Add( PCB_ACTIONS::routerHighlightMode, ACTION_MENU::CHECK );
|
|
|
|
routeMenu->Add( PCB_ACTIONS::routerShoveMode, ACTION_MENU::CHECK );
|
|
|
|
routeMenu->Add( PCB_ACTIONS::routerWalkaroundMode, ACTION_MENU::CHECK );
|
|
|
|
|
|
|
|
routeMenu->AppendSeparator();
|
|
|
|
routeMenu->Add( PCB_ACTIONS::routerSettingsDialog );
|
|
|
|
|
|
|
|
return routeMenu;
|
|
|
|
};
|
|
|
|
|
|
|
|
m_drawToolBar->AddToolContextMenu( PCB_ACTIONS::routeSingleTrack, makeRouteMenu() );
|
|
|
|
m_drawToolBar->AddToolContextMenu( PCB_ACTIONS::routeDiffPair, makeRouteMenu() );
|
2020-06-23 11:44:39 +01:00
|
|
|
|
2021-06-06 15:03:10 -04:00
|
|
|
auto makeTuneMenu =
|
2021-05-11 17:22:42 +02:00
|
|
|
[&]()
|
|
|
|
{
|
|
|
|
std::unique_ptr<ACTION_MENU> tuneMenu = std::make_unique<ACTION_MENU>( false, selTool );
|
|
|
|
tuneMenu->Add( PCB_ACTIONS::lengthTunerSettingsDialog );
|
|
|
|
return tuneMenu;
|
|
|
|
};
|
|
|
|
|
|
|
|
m_drawToolBar->AddToolContextMenu( PCB_ACTIONS::routerTuneSingleTrace, makeTuneMenu() );
|
|
|
|
m_drawToolBar->AddToolContextMenu( PCB_ACTIONS::routerTuneDiffPair, makeTuneMenu() );
|
|
|
|
m_drawToolBar->AddToolContextMenu( PCB_ACTIONS::routerTuneDiffPairSkew, makeTuneMenu() );
|
|
|
|
|
2020-10-01 22:55:17 +01:00
|
|
|
std::unique_ptr<ACTION_MENU> zoneMenu = std::make_unique<ACTION_MENU>( false, selTool );
|
2020-08-14 00:09:17 +01:00
|
|
|
zoneMenu->Add( PCB_ACTIONS::zoneFillAll );
|
|
|
|
zoneMenu->Add( PCB_ACTIONS::zoneUnfillAll );
|
2020-10-01 22:55:17 +01:00
|
|
|
m_drawToolBar->AddToolContextMenu( PCB_ACTIONS::drawZone, std::move( zoneMenu ) );
|
2020-06-23 11:44:39 +01:00
|
|
|
|
2021-02-06 00:43:32 +01:00
|
|
|
std::unique_ptr<ACTION_MENU> lineMenu = std::make_unique<ACTION_MENU>( false, selTool );
|
|
|
|
m_drawToolBar->AddToolContextMenu( PCB_ACTIONS::drawLine, std::move( lineMenu ) );
|
|
|
|
|
2020-11-05 20:56:02 -05:00
|
|
|
m_drawToolBar->KiRealize();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 14:26:17 -05:00
|
|
|
void PCB_EDIT_FRAME::ReCreateAuxiliaryToolbar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2018-10-13 13:49:49 +01:00
|
|
|
wxWindowUpdateLocker dummy( this );
|
2010-07-27 14:47:08 +02:00
|
|
|
|
2011-12-14 15:03:15 -05:00
|
|
|
if( m_auxiliaryToolBar )
|
2015-01-05 14:20:04 +01:00
|
|
|
{
|
2021-03-27 21:49:38 +00:00
|
|
|
m_auxiliaryToolBar->ClearToolbar();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-07-19 19:56:05 -04:00
|
|
|
m_auxiliaryToolBar = new ACTION_TOOLBAR( this, ID_AUX_TOOLBAR, wxDefaultPosition,
|
|
|
|
wxDefaultSize,
|
2021-03-27 21:49:38 +00:00
|
|
|
KICAD_AUI_TB_STYLE | wxAUI_TB_HORZ_LAYOUT );
|
|
|
|
m_auxiliaryToolBar->SetAuiManager( &m_auimgr );
|
2015-01-05 14:20:04 +01:00
|
|
|
}
|
2011-02-21 08:54:29 -05:00
|
|
|
|
|
|
|
/* Set up toolbar items */
|
|
|
|
|
|
|
|
// Creates box to display and choose tracks widths:
|
2019-01-18 17:24:40 +01:00
|
|
|
if( m_SelTrackWidthBox == nullptr )
|
2019-06-03 21:06:58 +01:00
|
|
|
m_SelTrackWidthBox = new wxChoice( m_auxiliaryToolBar, ID_AUX_TOOLBAR_PCB_TRACK_WIDTH,
|
2021-07-19 19:56:05 -04:00
|
|
|
wxDefaultPosition, wxDefaultSize, 0, nullptr );
|
2019-01-18 17:24:40 +01:00
|
|
|
|
2018-04-28 16:22:25 +01:00
|
|
|
UpdateTrackWidthSelectBox( m_SelTrackWidthBox );
|
2011-12-14 15:03:15 -05:00
|
|
|
m_auxiliaryToolBar->AddControl( m_SelTrackWidthBox );
|
2021-07-03 13:36:18 -04:00
|
|
|
m_SelTrackWidthBox->SetToolTip( _( "Select the default width for new tracks. Note that this "
|
|
|
|
"width can be overridden by the board minimum width, or by "
|
|
|
|
"the width of an existing track if the 'Use Existing Track "
|
|
|
|
"Width' feature is enabled." ) );
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2021-04-25 19:58:11 -04:00
|
|
|
m_auxiliaryToolBar->AddTool( ID_AUX_TOOLBAR_PCB_SELECT_AUTO_WIDTH, wxEmptyString,
|
|
|
|
KiScaledBitmap( BITMAPS::auto_track_width, this ),
|
|
|
|
_( "When routing from an existing track use its width instead "
|
|
|
|
"of the current width setting" ),
|
|
|
|
wxITEM_CHECK );
|
|
|
|
|
|
|
|
m_auxiliaryToolBar->AddScaledSeparator( this );
|
|
|
|
|
2011-02-21 08:54:29 -05:00
|
|
|
// Creates box to display and choose vias diameters:
|
2019-01-28 06:15:32 -08:00
|
|
|
|
2019-01-18 17:24:40 +01:00
|
|
|
if( m_SelViaSizeBox == nullptr )
|
2019-06-03 21:06:58 +01:00
|
|
|
m_SelViaSizeBox = new wxChoice( m_auxiliaryToolBar, ID_AUX_TOOLBAR_PCB_VIA_SIZE,
|
2021-07-19 19:56:05 -04:00
|
|
|
wxDefaultPosition, wxDefaultSize, 0, nullptr );
|
2019-01-18 17:24:40 +01:00
|
|
|
|
2018-04-28 16:22:25 +01:00
|
|
|
UpdateViaSizeSelectBox( m_SelViaSizeBox );
|
2011-12-14 15:03:15 -05:00
|
|
|
m_auxiliaryToolBar->AddControl( m_SelViaSizeBox );
|
2011-02-21 08:54:29 -05:00
|
|
|
|
|
|
|
// Add the box to display and select the current grid size:
|
2020-06-17 12:03:25 +01:00
|
|
|
m_auxiliaryToolBar->AddScaledSeparator( this );
|
2019-01-18 17:24:40 +01:00
|
|
|
|
|
|
|
if( m_gridSelectBox == nullptr )
|
2019-06-03 21:06:58 +01:00
|
|
|
m_gridSelectBox = new wxChoice( m_auxiliaryToolBar, ID_ON_GRID_SELECT,
|
2021-07-19 19:56:05 -04:00
|
|
|
wxDefaultPosition, wxDefaultSize, 0, nullptr );
|
2019-01-18 17:24:40 +01:00
|
|
|
|
2018-11-23 23:33:02 +00:00
|
|
|
UpdateGridSelectBox();
|
2018-11-28 09:58:41 -05:00
|
|
|
|
2011-12-14 15:03:15 -05:00
|
|
|
m_auxiliaryToolBar->AddControl( m_gridSelectBox );
|
2011-02-21 08:54:29 -05:00
|
|
|
|
|
|
|
// Add the box to display and select the current Zoom
|
2020-06-17 12:03:25 +01:00
|
|
|
m_auxiliaryToolBar->AddScaledSeparator( this );
|
2019-01-18 17:24:40 +01:00
|
|
|
|
|
|
|
if( m_zoomSelectBox == nullptr )
|
2019-06-03 21:06:58 +01:00
|
|
|
m_zoomSelectBox = new wxChoice( m_auxiliaryToolBar, ID_ON_ZOOM_SELECT,
|
2021-07-19 19:56:05 -04:00
|
|
|
wxDefaultPosition, wxDefaultSize, 0, nullptr );
|
2019-01-18 17:24:40 +01:00
|
|
|
|
2020-06-14 16:08:47 +01:00
|
|
|
UpdateZoomSelectBox();
|
2015-01-05 14:20:04 +01:00
|
|
|
m_auxiliaryToolBar->AddControl( m_zoomSelectBox );
|
2007-08-04 01:08:43 +00: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_AUX_TOOLBAR_PCB_TRACK_WIDTH );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_AUX_TOOLBAR_PCB_VIA_SIZE );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_ON_ZOOM_SELECT );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_ON_GRID_SELECT );
|
|
|
|
|
2011-02-21 08:54:29 -05:00
|
|
|
// after adding the buttons to the toolbar, must call Realize()
|
2020-11-05 20:56:02 -05:00
|
|
|
m_auxiliaryToolBar->KiRealize();
|
2011-02-21 08:54:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-27 21:49:38 +00:00
|
|
|
void PCB_EDIT_FRAME::UpdateToolbarControlSizes()
|
|
|
|
{
|
|
|
|
if( m_mainToolBar )
|
|
|
|
{
|
|
|
|
// Update the item widths
|
|
|
|
m_mainToolBar->UpdateControlWidth( ID_TOOLBARH_PCB_SELECT_LAYER );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( m_auxiliaryToolBar )
|
|
|
|
{
|
|
|
|
// Update the item widths
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_AUX_TOOLBAR_PCB_TRACK_WIDTH );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_AUX_TOOLBAR_PCB_VIA_SIZE );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_ON_ZOOM_SELECT );
|
|
|
|
m_auxiliaryToolBar->UpdateControlWidth( ID_ON_GRID_SELECT );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-05 20:26:33 +01:00
|
|
|
static wxString ComboBoxUnits( EDA_UNITS aUnits, double aValue, bool aIncludeLabel = true )
|
|
|
|
{
|
|
|
|
wxString text;
|
|
|
|
const wxChar* format;
|
|
|
|
|
|
|
|
switch( aUnits )
|
|
|
|
{
|
|
|
|
default: wxASSERT_MSG( false, "Invalid unit" ); KI_FALLTHROUGH;
|
|
|
|
case EDA_UNITS::UNSCALED: format = wxT( "%.0f" ); break;
|
|
|
|
case EDA_UNITS::MILLIMETRES: format = wxT( "%.3f" ); break;
|
|
|
|
case EDA_UNITS::MILS: format = wxT( "%.2f" ); break;
|
|
|
|
case EDA_UNITS::INCHES: format = wxT( "%.5f" ); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
text.Printf( format, To_User_Unit( aUnits, aValue ) );
|
|
|
|
|
|
|
|
if( aIncludeLabel )
|
|
|
|
{
|
|
|
|
text += " ";
|
|
|
|
text += GetAbbreviatedUnitsLabel( aUnits, EDA_DATA_TYPE::DISTANCE );
|
|
|
|
}
|
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-03 14:49:17 +01:00
|
|
|
void PCB_EDIT_FRAME::UpdateTrackWidthSelectBox( wxChoice* aTrackWidthSelectBox, bool aEdit )
|
2011-02-21 08:54:29 -05:00
|
|
|
{
|
2021-07-19 19:56:05 -04:00
|
|
|
if( aTrackWidthSelectBox == nullptr )
|
2011-02-21 08:54:29 -05:00
|
|
|
return;
|
|
|
|
|
2020-10-05 20:26:33 +01:00
|
|
|
EDA_UNITS primaryUnit;
|
|
|
|
EDA_UNITS secondaryUnit;
|
|
|
|
|
|
|
|
GetUnitPair( primaryUnit, secondaryUnit );
|
|
|
|
|
2011-02-21 08:54:29 -05:00
|
|
|
wxString msg;
|
|
|
|
|
2018-04-28 16:22:25 +01:00
|
|
|
aTrackWidthSelectBox->Clear();
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2020-10-10 19:29:41 +01:00
|
|
|
aTrackWidthSelectBox->Append( _( "Track: use netclass width" ) );
|
|
|
|
|
|
|
|
for( unsigned ii = 1; ii < GetDesignSettings().m_TrackWidthList.size(); ii++ )
|
2010-07-12 09:07:09 -05:00
|
|
|
{
|
2015-01-05 14:20:04 +01:00
|
|
|
int size = GetDesignSettings().m_TrackWidthList[ii];
|
|
|
|
|
2020-10-05 20:26:33 +01:00
|
|
|
msg.Printf( _( "Track: %s (%s)" ), ComboBoxUnits( primaryUnit, size ),
|
|
|
|
ComboBoxUnits( secondaryUnit, size ) );
|
2015-01-05 14:20:04 +01:00
|
|
|
|
2018-04-28 16:22:25 +01:00
|
|
|
aTrackWidthSelectBox->Append( msg );
|
2010-07-12 09:07:09 -05:00
|
|
|
}
|
2011-03-01 14:26:17 -05:00
|
|
|
|
2019-02-08 05:50:20 -08:00
|
|
|
if( aEdit )
|
|
|
|
{
|
|
|
|
aTrackWidthSelectBox->Append( wxT( "---" ) );
|
2020-04-08 22:34:18 +01:00
|
|
|
aTrackWidthSelectBox->Append( _( "Edit Pre-defined Sizes..." ) );
|
2019-02-08 05:50:20 -08:00
|
|
|
}
|
2018-11-17 00:33:20 +00:00
|
|
|
|
2014-05-13 11:22:51 +02:00
|
|
|
if( GetDesignSettings().GetTrackWidthIndex() >= GetDesignSettings().m_TrackWidthList.size() )
|
|
|
|
GetDesignSettings().SetTrackWidthIndex( 0 );
|
2013-01-09 13:52:44 -05:00
|
|
|
|
2018-04-28 16:22:25 +01:00
|
|
|
aTrackWidthSelectBox->SetSelection( GetDesignSettings().GetTrackWidthIndex() );
|
2011-02-21 08:54:29 -05:00
|
|
|
}
|
|
|
|
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2019-06-03 14:49:17 +01:00
|
|
|
void PCB_EDIT_FRAME::UpdateViaSizeSelectBox( wxChoice* aViaSizeSelectBox, bool aEdit )
|
2011-02-21 08:54:29 -05:00
|
|
|
{
|
2021-07-19 19:56:05 -04:00
|
|
|
if( aViaSizeSelectBox == nullptr )
|
2011-02-21 08:54:29 -05:00
|
|
|
return;
|
|
|
|
|
2018-04-28 16:22:25 +01:00
|
|
|
aViaSizeSelectBox->Clear();
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2020-10-05 20:26:33 +01:00
|
|
|
COMMON_TOOLS* cmnTool = m_toolManager->GetTool<COMMON_TOOLS>();
|
|
|
|
|
|
|
|
EDA_UNITS primaryUnit = GetUserUnits();
|
|
|
|
EDA_UNITS secondaryUnit = EDA_UNITS::MILS;
|
|
|
|
|
2020-10-24 10:45:37 -04:00
|
|
|
if( EDA_UNIT_UTILS::IsImperialUnit( primaryUnit ) )
|
2020-10-05 20:26:33 +01:00
|
|
|
{
|
|
|
|
if( cmnTool )
|
|
|
|
secondaryUnit = cmnTool->GetLastMetricUnits();
|
|
|
|
else
|
|
|
|
secondaryUnit = EDA_UNITS::MILLIMETRES;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( cmnTool )
|
|
|
|
secondaryUnit = cmnTool->GetLastImperialUnits();
|
|
|
|
else
|
|
|
|
secondaryUnit = EDA_UNITS::MILS;
|
|
|
|
}
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2020-10-10 19:29:41 +01:00
|
|
|
aViaSizeSelectBox->Append( _( "Via: use netclass sizes" ) );
|
|
|
|
|
2020-10-15 15:31:23 +02:00
|
|
|
for( unsigned ii = 1; ii < GetDesignSettings().m_ViasDimensionsList.size(); ii++ )
|
2007-08-04 01:08:43 +00:00
|
|
|
{
|
2018-04-28 16:22:25 +01:00
|
|
|
VIA_DIMENSION viaDimension = GetDesignSettings().m_ViasDimensionsList[ii];
|
2020-10-05 20:26:33 +01:00
|
|
|
wxString msg, priStr, secStr;
|
2015-01-05 14:20:04 +01:00
|
|
|
|
2020-10-05 20:26:33 +01:00
|
|
|
double diam = viaDimension.m_Diameter;
|
|
|
|
double hole = viaDimension.m_Drill;
|
2015-01-05 14:20:04 +01:00
|
|
|
|
2018-04-28 16:22:25 +01:00
|
|
|
if( hole > 0 )
|
2020-10-05 20:26:33 +01:00
|
|
|
{
|
2020-10-20 18:09:00 +01:00
|
|
|
priStr = ComboBoxUnits( primaryUnit, diam, false ) + " / "
|
|
|
|
+ ComboBoxUnits( primaryUnit, hole, true );
|
|
|
|
secStr = ComboBoxUnits( secondaryUnit, diam, false ) + " / "
|
|
|
|
+ ComboBoxUnits( secondaryUnit, hole, true );
|
2020-10-05 20:26:33 +01:00
|
|
|
}
|
2018-04-28 16:22:25 +01:00
|
|
|
else
|
2020-10-05 20:26:33 +01:00
|
|
|
{
|
2020-10-20 18:09:00 +01:00
|
|
|
priStr = ComboBoxUnits( primaryUnit, diam, true );
|
|
|
|
secStr = ComboBoxUnits( secondaryUnit, diam, true );
|
2020-10-05 20:26:33 +01:00
|
|
|
}
|
2018-04-28 16:22:25 +01:00
|
|
|
|
2020-10-05 20:26:33 +01:00
|
|
|
msg.Printf( _( "Via: %s (%s)" ), priStr, secStr );
|
2008-12-05 16:03:05 +00:00
|
|
|
|
2018-04-28 16:22:25 +01:00
|
|
|
aViaSizeSelectBox->Append( msg );
|
2007-08-04 01:08:43 +00:00
|
|
|
}
|
2011-03-01 14:26:17 -05:00
|
|
|
|
2019-02-08 05:50:20 -08:00
|
|
|
if( aEdit )
|
|
|
|
{
|
|
|
|
aViaSizeSelectBox->Append( wxT( "---" ) );
|
2020-04-08 22:34:18 +01:00
|
|
|
aViaSizeSelectBox->Append( _( "Edit Pre-defined Sizes..." ) );
|
2019-02-08 05:50:20 -08:00
|
|
|
}
|
2018-11-17 00:33:20 +00:00
|
|
|
|
2014-05-13 11:22:51 +02:00
|
|
|
if( GetDesignSettings().GetViaSizeIndex() >= GetDesignSettings().m_ViasDimensionsList.size() )
|
|
|
|
GetDesignSettings().SetViaSizeIndex( 0 );
|
2011-12-16 08:32:23 -05:00
|
|
|
|
2018-04-28 16:22:25 +01:00
|
|
|
aViaSizeSelectBox->SetSelection( GetDesignSettings().GetViaSizeIndex() );
|
2011-02-21 08:54:29 -05:00
|
|
|
}
|
2007-08-04 01:08:43 +00:00
|
|
|
|
2011-02-21 08:54:29 -05:00
|
|
|
|
2013-09-02 17:26:52 +02:00
|
|
|
void PCB_EDIT_FRAME::ReCreateLayerBox( bool aForceResizeToolbar )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2021-07-19 19:56:05 -04:00
|
|
|
if( m_SelLayerBox == nullptr || m_mainToolBar == nullptr )
|
2013-09-02 17:26:52 +02:00
|
|
|
return;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2013-09-02 17:26:52 +02:00
|
|
|
m_SelLayerBox->SetToolTip( _( "+/- to switch" ) );
|
2010-11-03 00:13:56 +01:00
|
|
|
m_SelLayerBox->Resync();
|
2008-04-29 13:35:26 +00:00
|
|
|
|
2013-09-02 17:26:52 +02:00
|
|
|
if( aForceResizeToolbar )
|
2021-04-02 21:33:31 +01:00
|
|
|
UpdateToolbarControlSizes();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2015-10-14 14:12:17 -04:00
|
|
|
|
|
|
|
|
2019-06-04 22:29:51 +01:00
|
|
|
void PCB_EDIT_FRAME::ToggleLayersManager()
|
2015-10-14 14:12:17 -04:00
|
|
|
{
|
2021-08-19 21:15:14 -04:00
|
|
|
PCBNEW_SETTINGS* settings = GetPcbNewSettings();
|
|
|
|
wxAuiPaneInfo& layersManager = m_auimgr.GetPane( "LayersManager" );
|
2021-10-30 23:21:15 +01:00
|
|
|
wxAuiPaneInfo& selectionFilter = m_auimgr.GetPane( "SelectionFilter" );
|
2021-08-19 21:15:14 -04:00
|
|
|
|
2019-06-04 22:29:51 +01:00
|
|
|
// show auxiliary Vertical layers and visibility manager toolbar
|
|
|
|
m_show_layer_manager_tools = !m_show_layer_manager_tools;
|
2021-08-19 21:15:14 -04:00
|
|
|
layersManager.Show( m_show_layer_manager_tools );
|
2021-10-30 23:21:15 +01:00
|
|
|
selectionFilter.Show( m_show_layer_manager_tools );
|
2021-08-19 21:15:14 -04:00
|
|
|
|
|
|
|
if( m_show_layer_manager_tools )
|
|
|
|
{
|
|
|
|
SetAuiPaneSize( m_auimgr, layersManager, settings->m_AuiPanels.right_panel_width, -1 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
settings->m_AuiPanels.right_panel_width = m_appearancePanel->GetSize().x;
|
|
|
|
m_auimgr.Update();
|
|
|
|
}
|
2019-06-04 22:29:51 +01:00
|
|
|
}
|
2015-10-14 14:12:17 -04:00
|
|
|
|
|
|
|
|
2019-05-15 23:49:48 +01:00
|
|
|
void PCB_EDIT_FRAME::OnUpdateSelectTrackWidth( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
if( aEvent.GetId() == ID_AUX_TOOLBAR_PCB_TRACK_WIDTH )
|
|
|
|
{
|
2020-10-10 19:29:41 +01:00
|
|
|
BOARD_DESIGN_SETTINGS& bds = GetDesignSettings();
|
|
|
|
int sel;
|
|
|
|
|
2020-10-12 21:00:13 +01:00
|
|
|
if( bds.UseCustomTrackViaSize() )
|
2020-10-10 19:29:41 +01:00
|
|
|
sel = wxNOT_FOUND;
|
|
|
|
else
|
|
|
|
sel = bds.GetTrackWidthIndex();
|
|
|
|
|
|
|
|
if( m_SelTrackWidthBox->GetSelection() != sel )
|
|
|
|
m_SelTrackWidthBox->SetSelection( sel );
|
2019-05-15 23:49:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::OnUpdateSelectViaSize( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
if( aEvent.GetId() == ID_AUX_TOOLBAR_PCB_VIA_SIZE )
|
|
|
|
{
|
2020-10-10 19:29:41 +01:00
|
|
|
BOARD_DESIGN_SETTINGS& bds = GetDesignSettings();
|
|
|
|
int sel = 0;
|
|
|
|
|
|
|
|
if( bds.UseCustomTrackViaSize() )
|
|
|
|
sel = wxNOT_FOUND;
|
|
|
|
else
|
|
|
|
sel = bds.GetViaSizeIndex();
|
|
|
|
|
|
|
|
if( m_SelViaSizeBox->GetSelection() != sel )
|
|
|
|
m_SelViaSizeBox->SetSelection( sel );
|
2019-05-15 23:49:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-10 19:29:41 +01:00
|
|
|
void PCB_EDIT_FRAME::OnUpdateSelectAutoWidth( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
|
|
|
BOARD_DESIGN_SETTINGS& bds = GetDesignSettings();
|
|
|
|
|
|
|
|
aEvent.Check( bds.m_UseConnectedTrackWidth && !bds.UseCustomTrackViaSize() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-15 23:49:48 +01:00
|
|
|
void PCB_EDIT_FRAME::OnUpdateLayerSelectBox( wxUpdateUIEvent& aEvent )
|
|
|
|
{
|
2020-08-17 12:37:25 +01:00
|
|
|
if( m_SelLayerBox->GetLayerSelection() != GetActiveLayer() )
|
|
|
|
m_SelLayerBox->SetLayerSelection( GetActiveLayer() );
|
2019-05-15 23:49:48 +01:00
|
|
|
}
|