2011-10-17 16:01:27 -04:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2016-03-07 08:13:06 +01:00
|
|
|
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2015-02-01 08:19:31 +01:00
|
|
|
* Copyright (C) 2015 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
|
|
* Copyright (C) 2015 Wayne Stambaugh <stambaughw@verizon.net>
|
2024-02-03 13:43:41 +00:00
|
|
|
* Copyright (C) 2017-2024 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-17 16:01:27 -04: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 23:45:14 +01:00
|
|
|
#include <kiface_base.h>
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <confirm.h>
|
|
|
|
#include <gestfich.h>
|
2018-01-29 21:58:58 +01:00
|
|
|
#include <pcb_edit_frame.h>
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <pcbnew_id.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <footprint.h>
|
2021-06-06 15:03:10 -04:00
|
|
|
#include <pad.h>
|
2020-11-11 23:05:59 +00:00
|
|
|
#include <zone.h>
|
2022-12-15 00:15:40 +00:00
|
|
|
#include <pcb_group.h>
|
2023-10-06 20:04:00 +03:00
|
|
|
#include <pcb_generator.h>
|
2020-11-11 23:05:59 +00:00
|
|
|
#include <pcb_target.h>
|
2021-06-11 17:59:28 +01:00
|
|
|
#include <pcb_dimension.h>
|
2023-03-30 12:49:23 +01:00
|
|
|
#include <pcb_textbox.h>
|
2024-02-03 13:43:41 +00:00
|
|
|
#include <pcb_table.h>
|
2023-03-30 12:49:23 +01:00
|
|
|
#include <pcb_shape.h>
|
2012-01-22 22:33:36 -06:00
|
|
|
#include <dialog_drc.h>
|
2018-10-11 23:17:15 -07:00
|
|
|
#include <connectivity/connectivity_data.h>
|
2014-02-17 18:21:00 +01:00
|
|
|
#include <tool/tool_manager.h>
|
2017-02-21 13:42:08 +01:00
|
|
|
#include <tools/pcb_actions.h>
|
2021-10-05 23:33:30 +01:00
|
|
|
#include <tools/drc_tool.h>
|
2020-09-07 22:42:26 -04:00
|
|
|
#include <dialogs/dialog_dimension_properties.h>
|
2024-03-09 22:16:53 +00:00
|
|
|
#include <dialogs/dialog_table_properties.h>
|
2021-07-22 00:14:56 +01:00
|
|
|
#include <pcb_layer_box_selector.h>
|
2014-02-17 18:21:00 +01:00
|
|
|
|
2013-08-03 00:15:23 -05:00
|
|
|
// Handles the selection of command events.
|
2011-03-01 14:26:17 -05:00
|
|
|
void PCB_EDIT_FRAME::Process_Special_Functions( wxCommandEvent& event )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2019-05-30 10:16:05 +01:00
|
|
|
int id = event.GetId();
|
2019-11-15 20:16:26 +01: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 08:05:51 -05:00
|
|
|
SetActiveLayer( ToLAYER_ID( m_SelLayerBox->GetLayerSelection() ) );
|
2011-08-26 13:01:17 -04:00
|
|
|
|
2020-07-11 13:40:23 -04:00
|
|
|
if( displ_opts.m_ContrastModeDisplay != HIGH_CONTRAST_MODE::NORMAL )
|
2019-06-13 18:28:55 +01: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 10:14:11 -08:00
|
|
|
void PCB_EDIT_FRAME::SwitchLayer( PCB_LAYER_ID layer )
|
2007-06-11 21:21:00 +00:00
|
|
|
{
|
2017-03-12 23:19:33 -04:00
|
|
|
PCB_LAYER_ID curLayer = GetActiveLayer();
|
2023-11-25 11:44:01 +01:00
|
|
|
const PCB_DISPLAY_OPTIONS& 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 18:00:46 +02: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 11:17:18 -05: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 11:17:47 +01:00
|
|
|
SetActiveLayer( layer );
|
2007-10-10 21:35:41 +00:00
|
|
|
|
2020-07-11 13:40:23 -04:00
|
|
|
if( displ_opts.m_ContrastModeDisplay != HIGH_CONTRAST_MODE::NORMAL )
|
2019-06-13 18:28:55 +01:00
|
|
|
GetCanvas()->Refresh();
|
2011-02-21 08:54:29 -05:00
|
|
|
}
|
2015-02-12 03:22:24 +00:00
|
|
|
|
|
|
|
|
2019-05-29 00:23:58 +01:00
|
|
|
void PCB_EDIT_FRAME::OnEditItemRequest( BOARD_ITEM* aItem )
|
2019-05-28 01:00:33 +01:00
|
|
|
{
|
|
|
|
switch( aItem->Type() )
|
|
|
|
{
|
2023-10-23 18:23:24 +01:00
|
|
|
case PCB_REFERENCE_IMAGE_T:
|
|
|
|
ShowReferenceImagePropertiesDialog( aItem );
|
2022-02-08 14:29:54 -05:00
|
|
|
break;
|
|
|
|
|
2023-06-06 11:09:34 -04:00
|
|
|
case PCB_FIELD_T:
|
2020-12-09 21:14:29 -05:00
|
|
|
case PCB_TEXT_T:
|
2023-03-30 12:49:23 +01:00
|
|
|
ShowTextPropertiesDialog( static_cast<PCB_TEXT*>( aItem ) );
|
2019-05-28 01:00:33 +01:00
|
|
|
break;
|
|
|
|
|
2022-01-30 10:52:52 +00:00
|
|
|
case PCB_TEXTBOX_T:
|
2023-03-30 12:49:23 +01:00
|
|
|
ShowTextBoxPropertiesDialog( static_cast<PCB_TEXTBOX*>( aItem ) );
|
2022-01-30 10:52:52 +00:00
|
|
|
break;
|
|
|
|
|
2024-03-09 22:16:53 +00:00
|
|
|
case PCB_TABLE_T:
|
|
|
|
{
|
|
|
|
DIALOG_TABLE_PROPERTIES dlg( this, static_cast<PCB_TABLE*>( aItem ) );
|
|
|
|
dlg.ShowQuasiModal(); // Scintilla's auto-complete requires quasiModal
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-05-28 01:00:33 +01:00
|
|
|
case PCB_PAD_T:
|
2020-11-12 22:30:02 +00:00
|
|
|
ShowPadPropertiesDialog( static_cast<PAD*>( aItem ) );
|
2019-05-28 01:00:33 +01: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 01:00:33 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PCB_TARGET_T:
|
2019-05-29 00:23:58 +01:00
|
|
|
ShowTargetOptionsDialog( static_cast<PCB_TARGET*>( aItem ) );
|
2019-05-28 01:00:33 +01:00
|
|
|
break;
|
|
|
|
|
2020-09-12 16:09:40 -04:00
|
|
|
case PCB_DIM_ALIGNED_T:
|
2020-09-16 20:54:58 -04:00
|
|
|
case PCB_DIM_CENTER_T:
|
2021-07-13 19:46:33 +01:00
|
|
|
case PCB_DIM_RADIAL_T:
|
2020-09-16 20:54:58 -04:00
|
|
|
case PCB_DIM_ORTHOGONAL_T:
|
2020-09-12 16:09:40 -04: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 01:00:33 +01:00
|
|
|
break;
|
2021-12-04 23:52:00 +00:00
|
|
|
}
|
2019-05-28 01:00:33 +01:00
|
|
|
|
2020-11-04 00:36:27 +00:00
|
|
|
case PCB_SHAPE_T:
|
2023-03-30 12:49:23 +01:00
|
|
|
ShowGraphicItemPropertiesDialog( static_cast<PCB_SHAPE*>( aItem ) );
|
2019-05-28 01:00:33 +01:00
|
|
|
break;
|
|
|
|
|
2020-11-11 23:05:59 +00:00
|
|
|
case PCB_ZONE_T:
|
|
|
|
Edit_Zone_Params( static_cast<ZONE*>( aItem ) );
|
2019-05-28 01:00:33 +01:00
|
|
|
break;
|
|
|
|
|
2020-09-24 02:05:46 +01:00
|
|
|
case PCB_GROUP_T:
|
2023-10-18 17:11:21 +01:00
|
|
|
m_toolManager->RunAction( PCB_ACTIONS::groupProperties, static_cast<PCB_GROUP*>( aItem ) );
|
2020-09-24 02:05:46 +01:00
|
|
|
break;
|
|
|
|
|
2023-10-06 20:04:00 +03:00
|
|
|
case PCB_GENERATOR_T:
|
2023-10-18 17:11:21 +01:00
|
|
|
static_cast<PCB_GENERATOR*>( aItem )->ShowPropertiesDialog( this );
|
2023-10-06 20:04:00 +03:00
|
|
|
break;
|
|
|
|
|
2021-10-05 23:33:30 +01:00
|
|
|
case PCB_MARKER_T:
|
|
|
|
m_toolManager->GetTool<DRC_TOOL>()->CrossProbe( static_cast<PCB_MARKER*>( aItem ) );
|
|
|
|
break;
|
|
|
|
|
2019-05-28 01:00:33 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|