2011-10-17 20:01:27 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2016-03-07 07:13:06 +00:00
|
|
|
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2015-02-01 07:19:31 +00:00
|
|
|
* Copyright (C) 2015 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
|
|
* Copyright (C) 2015 Wayne Stambaugh <stambaughw@verizon.net>
|
2020-08-18 14:17:16 +00:00
|
|
|
* Copyright (C) 2017-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-17 20:01:27 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2021-09-14 22:45:14 +00:00
|
|
|
#include <kiface_base.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
|
|
|
#include <gestfich.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew_id.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <footprint.h>
|
2021-06-06 19:03:10 +00:00
|
|
|
#include <pad.h>
|
2020-11-11 23:05:59 +00:00
|
|
|
#include <zone.h>
|
|
|
|
#include <pcb_target.h>
|
2021-06-11 16:59:28 +00:00
|
|
|
#include <pcb_dimension.h>
|
2023-03-30 11:49:23 +00:00
|
|
|
#include <pcb_textbox.h>
|
|
|
|
#include <pcb_shape.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_drc.h>
|
2018-10-12 06:17:15 +00:00
|
|
|
#include <connectivity/connectivity_data.h>
|
2014-02-17 17:21:00 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2017-02-21 12:42:08 +00:00
|
|
|
#include <tools/pcb_actions.h>
|
2021-10-05 22:33:30 +00:00
|
|
|
#include <tools/drc_tool.h>
|
2020-09-08 02:42:26 +00:00
|
|
|
#include <dialogs/dialog_dimension_properties.h>
|
2021-07-21 23:14:56 +00:00
|
|
|
#include <pcb_layer_box_selector.h>
|
2014-02-17 17:21:00 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
// Handles the selection of command events.
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::Process_Special_Functions( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2019-05-30 09:16:05 +00:00
|
|
|
int id = event.GetId();
|
2019-11-15 19:16:26 +00:00
|
|
|
const PCB_DISPLAY_OPTIONS& displ_opts = GetDisplayOptions();
|
2009-06-19 20:13:22 +00:00
|
|
|
|
2007-09-29 13:31:10 +00:00
|
|
|
switch( id ) // Execute command
|
2007-08-04 00:56:53 +00:00
|
|
|
{
|
2009-07-25 04:53:39 +00:00
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
|
2007-08-04 00:56:53 +00:00
|
|
|
case ID_TOOLBARH_PCB_SELECT_LAYER:
|
2014-06-29 13:05:51 +00:00
|
|
|
SetActiveLayer( ToLAYER_ID( m_SelLayerBox->GetLayerSelection() ) );
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2020-07-11 17:40:23 +00:00
|
|
|
if( displ_opts.m_ContrastModeDisplay != HIGH_CONTRAST_MODE::NORMAL )
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->Refresh();
|
2007-08-04 00:56:53 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-09 16:45:36 +00:00
|
|
|
case ID_MENU_EXPORT_FOOTPRINTS_TO_LIBRARY:
|
|
|
|
ExportFootprintsToLibrary( false );
|
2007-08-04 00:56:53 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-09 16:45:36 +00:00
|
|
|
case ID_MENU_EXPORT_FOOTPRINTS_TO_NEW_LIBRARY:
|
|
|
|
ExportFootprintsToLibrary( true );
|
2007-08-04 00:56:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-09 18:14:11 +00:00
|
|
|
void PCB_EDIT_FRAME::SwitchLayer( PCB_LAYER_ID layer )
|
2007-06-11 21:21:00 +00:00
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
PCB_LAYER_ID curLayer = GetActiveLayer();
|
2019-11-07 14:23:09 +00:00
|
|
|
auto displ_opts = GetDisplayOptions();
|
2007-08-04 00:56:53 +00:00
|
|
|
|
2007-10-10 21:35:41 +00:00
|
|
|
// Check if the specified layer matches the present layer
|
2010-01-24 02:05:07 +00:00
|
|
|
if( layer == curLayer )
|
2007-08-04 00:56:53 +00:00
|
|
|
return;
|
|
|
|
|
2021-03-16 11:42:59 +00:00
|
|
|
// Copper layers cannot be selected unconditionally; how many of those layers are currently
|
|
|
|
// enabled needs to be checked.
|
2013-04-09 16:00:46 +00:00
|
|
|
if( IsCopperLayer( layer ) )
|
2007-08-04 00:56:53 +00:00
|
|
|
{
|
2021-03-16 11:42:59 +00:00
|
|
|
// If only one copper layer is enabled, the only such layer that can be selected to is
|
|
|
|
// the "Back" layer (so the selection of any other copper layer is disregarded).
|
2010-01-31 20:01:46 +00:00
|
|
|
if( GetBoard()->GetCopperLayerCount() < 2 )
|
2007-10-10 21:35:41 +00:00
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
if( layer != B_Cu )
|
2007-10-10 21:35:41 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-03-16 11:42:59 +00:00
|
|
|
// If more than one copper layer is enabled, the "Copper" and "Component" layers can be
|
|
|
|
// selected, but the total number of copper layers determines which internal layers are
|
|
|
|
// also capable of being selected.
|
2007-10-10 21:35:41 +00:00
|
|
|
else
|
|
|
|
{
|
2021-03-16 11:42:59 +00:00
|
|
|
if( layer != B_Cu && layer != F_Cu && layer >= GetBoard()->GetCopperLayerCount() - 1 )
|
2007-10-10 21:35:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2007-08-04 00:56:53 +00:00
|
|
|
|
2021-03-16 11:42:59 +00:00
|
|
|
// Is yet more checking required? E.g. when the layer to be selected is a non-copper layer,
|
|
|
|
// or when switching between a copper layer and a non-copper layer, or vice-versa?
|
2007-08-04 00:56:53 +00:00
|
|
|
|
2014-03-21 10:17:47 +00:00
|
|
|
SetActiveLayer( layer );
|
2007-10-10 21:35:41 +00:00
|
|
|
|
2020-07-11 17:40:23 +00:00
|
|
|
if( displ_opts.m_ContrastModeDisplay != HIGH_CONTRAST_MODE::NORMAL )
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->Refresh();
|
2011-02-21 13:54:29 +00:00
|
|
|
}
|
2015-02-12 03:22:24 +00:00
|
|
|
|
|
|
|
|
2019-05-28 23:23:58 +00:00
|
|
|
void PCB_EDIT_FRAME::OnEditItemRequest( BOARD_ITEM* aItem )
|
2019-05-28 00:00:33 +00:00
|
|
|
{
|
|
|
|
switch( aItem->Type() )
|
|
|
|
{
|
2022-02-08 19:29:54 +00:00
|
|
|
case PCB_BITMAP_T:
|
|
|
|
ShowBitmapPropertiesDialog( aItem);
|
|
|
|
break;
|
|
|
|
|
2020-12-10 02:14:29 +00:00
|
|
|
case PCB_TEXT_T:
|
2023-03-30 11:49:23 +00:00
|
|
|
ShowTextPropertiesDialog( static_cast<PCB_TEXT*>( aItem ) );
|
2019-05-28 00:00:33 +00:00
|
|
|
break;
|
|
|
|
|
2022-01-30 10:52:52 +00:00
|
|
|
case PCB_TEXTBOX_T:
|
2023-03-30 11:49:23 +00:00
|
|
|
ShowTextBoxPropertiesDialog( static_cast<PCB_TEXTBOX*>( aItem ) );
|
2022-01-30 10:52:52 +00:00
|
|
|
break;
|
|
|
|
|
2019-05-28 00:00:33 +00:00
|
|
|
case PCB_PAD_T:
|
2020-11-12 22:30:02 +00:00
|
|
|
ShowPadPropertiesDialog( static_cast<PAD*>( aItem ) );
|
2019-05-28 00:00:33 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-13 12:21:02 +00:00
|
|
|
case PCB_FOOTPRINT_T:
|
2020-11-13 15:15:52 +00:00
|
|
|
ShowFootprintPropertiesDialog( static_cast<FOOTPRINT*>( aItem ) );
|
2019-05-28 00:00:33 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PCB_TARGET_T:
|
2019-05-28 23:23:58 +00:00
|
|
|
ShowTargetOptionsDialog( static_cast<PCB_TARGET*>( aItem ) );
|
2019-05-28 00:00:33 +00:00
|
|
|
break;
|
|
|
|
|
2020-09-12 20:09:40 +00:00
|
|
|
case PCB_DIM_ALIGNED_T:
|
2020-09-17 00:54:58 +00:00
|
|
|
case PCB_DIM_CENTER_T:
|
2021-07-13 18:46:33 +00:00
|
|
|
case PCB_DIM_RADIAL_T:
|
2020-09-17 00:54:58 +00:00
|
|
|
case PCB_DIM_ORTHOGONAL_T:
|
2020-09-12 20:09:40 +00:00
|
|
|
case PCB_DIM_LEADER_T:
|
2021-12-04 23:52:00 +00:00
|
|
|
{
|
|
|
|
DIALOG_DIMENSION_PROPERTIES dlg( this, static_cast<PCB_DIMENSION_BASE*>( aItem ) );
|
|
|
|
dlg.ShowQuasiModal();
|
2019-05-28 00:00:33 +00:00
|
|
|
break;
|
2021-12-04 23:52:00 +00:00
|
|
|
}
|
2019-05-28 00:00:33 +00:00
|
|
|
|
2020-11-04 00:36:27 +00:00
|
|
|
case PCB_SHAPE_T:
|
2023-03-30 11:49:23 +00:00
|
|
|
ShowGraphicItemPropertiesDialog( static_cast<PCB_SHAPE*>( aItem ) );
|
2019-05-28 00:00:33 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-11 23:05:59 +00:00
|
|
|
case PCB_ZONE_T:
|
|
|
|
Edit_Zone_Params( static_cast<ZONE*>( aItem ) );
|
2019-05-28 00:00:33 +00:00
|
|
|
break;
|
|
|
|
|
2020-09-24 01:05:46 +00:00
|
|
|
case PCB_GROUP_T:
|
|
|
|
m_toolManager->RunAction( PCB_ACTIONS::groupProperties, true, aItem );
|
|
|
|
break;
|
|
|
|
|
2021-10-05 22:33:30 +00:00
|
|
|
case PCB_MARKER_T:
|
|
|
|
m_toolManager->GetTool<DRC_TOOL>()->CrossProbe( static_cast<PCB_MARKER*>( aItem ) );
|
|
|
|
break;
|
|
|
|
|
2019-05-28 00:00:33 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|