kicad/pcbnew/edit.cpp

181 lines
5.5 KiB
C++
Raw Normal View History

/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
* Copyright (C) 2015 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2015 Wayne Stambaugh <stambaughw@verizon.net>
* Copyright (C) 2017-2020 KiCad Developers, see AUTHORS.txt for contributors.
*
* 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-15 06:45:14 +08:00
#include <kiface_base.h>
#include <confirm.h>
#include <gestfich.h>
2018-01-30 04:58:58 +08:00
#include <pcb_edit_frame.h>
#include <pcbnew_id.h>
#include <board.h>
#include <footprint.h>
#include <pad.h>
#include <zone.h>
#include <pcb_target.h>
2021-06-12 00:59:28 +08:00
#include <pcb_dimension.h>
#include <pcb_textbox.h>
#include <pcb_shape.h>
#include <dialog_drc.h>
#include <connectivity/connectivity_data.h>
#include <tool/tool_manager.h>
#include <tools/pcb_actions.h>
#include <tools/drc_tool.h>
2020-09-08 10:42:26 +08:00
#include <dialogs/dialog_dimension_properties.h>
2021-07-22 07:14:56 +08:00
#include <pcb_layer_box_selector.h>
// Handles the selection of command events.
void PCB_EDIT_FRAME::Process_Special_Functions( wxCommandEvent& event )
2007-05-07 00:03:28 +08:00
{
int id = event.GetId();
const PCB_DISPLAY_OPTIONS& displ_opts = GetDisplayOptions();
switch( id ) // Execute command
2007-08-04 08:56:53 +08:00
{
case 0:
break;
2007-08-04 08:56:53 +08:00
case ID_TOOLBARH_PCB_SELECT_LAYER:
2014-06-29 21:05:51 +08:00
SetActiveLayer( ToLAYER_ID( m_SelLayerBox->GetLayerSelection() ) );
if( displ_opts.m_ContrastModeDisplay != HIGH_CONTRAST_MODE::NORMAL )
GetCanvas()->Refresh();
2007-08-04 08:56:53 +08:00
break;
2020-11-10 00:45:36 +08:00
case ID_MENU_EXPORT_FOOTPRINTS_TO_LIBRARY:
ExportFootprintsToLibrary( false );
2007-08-04 08:56:53 +08:00
break;
2020-11-10 00:45:36 +08:00
case ID_MENU_EXPORT_FOOTPRINTS_TO_NEW_LIBRARY:
ExportFootprintsToLibrary( true );
2007-08-04 08:56:53 +08:00
break;
default:
break;
}
2007-05-07 00:03:28 +08:00
}
void PCB_EDIT_FRAME::SwitchLayer( PCB_LAYER_ID layer )
{
PCB_LAYER_ID curLayer = GetActiveLayer();
auto displ_opts = GetDisplayOptions();
2007-08-04 08:56:53 +08:00
2007-10-11 05:35:41 +08:00
// Check if the specified layer matches the present layer
2010-01-24 10:05:07 +08:00
if( layer == curLayer )
2007-08-04 08:56:53 +08:00
return;
2021-03-16 19:42:59 +08:00
// Copper layers cannot be selected unconditionally; how many of those layers are currently
// enabled needs to be checked.
if( IsCopperLayer( layer ) )
2007-08-04 08:56:53 +08:00
{
2021-03-16 19:42:59 +08: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).
if( GetBoard()->GetCopperLayerCount() < 2 )
2007-10-11 05:35:41 +08:00
{
if( layer != B_Cu )
2007-10-11 05:35:41 +08:00
return;
}
2021-03-16 19:42:59 +08: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-11 05:35:41 +08:00
else
{
2021-03-16 19:42:59 +08:00
if( layer != B_Cu && layer != F_Cu && layer >= GetBoard()->GetCopperLayerCount() - 1 )
2007-10-11 05:35:41 +08:00
return;
}
}
2007-08-04 08:56:53 +08:00
2021-03-16 19:42:59 +08: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 08:56:53 +08:00
SetActiveLayer( layer );
2007-10-11 05:35:41 +08:00
if( displ_opts.m_ContrastModeDisplay != HIGH_CONTRAST_MODE::NORMAL )
GetCanvas()->Refresh();
}
void PCB_EDIT_FRAME::OnEditItemRequest( BOARD_ITEM* aItem )
{
switch( aItem->Type() )
{
2022-02-09 03:29:54 +08:00
case PCB_BITMAP_T:
ShowBitmapPropertiesDialog( aItem);
break;
2023-06-06 23:09:34 +08:00
case PCB_FIELD_T:
case PCB_TEXT_T:
ShowTextPropertiesDialog( static_cast<PCB_TEXT*>( aItem ) );
break;
2022-01-30 18:52:52 +08:00
case PCB_TEXTBOX_T:
ShowTextBoxPropertiesDialog( static_cast<PCB_TEXTBOX*>( aItem ) );
2022-01-30 18:52:52 +08:00
break;
case PCB_PAD_T:
2020-11-13 06:30:02 +08:00
ShowPadPropertiesDialog( static_cast<PAD*>( aItem ) );
break;
2020-11-13 20:21:02 +08:00
case PCB_FOOTPRINT_T:
2020-11-13 23:15:52 +08:00
ShowFootprintPropertiesDialog( static_cast<FOOTPRINT*>( aItem ) );
break;
case PCB_TARGET_T:
ShowTargetOptionsDialog( static_cast<PCB_TARGET*>( aItem ) );
break;
case PCB_DIM_ALIGNED_T:
2020-09-17 08:54:58 +08:00
case PCB_DIM_CENTER_T:
case PCB_DIM_RADIAL_T:
2020-09-17 08:54:58 +08:00
case PCB_DIM_ORTHOGONAL_T:
case PCB_DIM_LEADER_T:
{
DIALOG_DIMENSION_PROPERTIES dlg( this, static_cast<PCB_DIMENSION_BASE*>( aItem ) );
dlg.ShowQuasiModal();
break;
}
case PCB_SHAPE_T:
ShowGraphicItemPropertiesDialog( static_cast<PCB_SHAPE*>( aItem ) );
break;
case PCB_ZONE_T:
Edit_Zone_Params( static_cast<ZONE*>( aItem ) );
break;
case PCB_GROUP_T:
m_toolManager->RunAction( PCB_ACTIONS::groupProperties, true, aItem );
break;
case PCB_MARKER_T:
m_toolManager->GetTool<DRC_TOOL>()->CrossProbe( static_cast<PCB_MARKER*>( aItem ) );
break;
default:
break;
}
}