KiCad PCB EDA Suite
Loading...
Searching...
No Matches
edit.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2016 Jean-Pierre Charras, jp.charras at wanadoo.fr
5 * Copyright (C) 2015 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright (C) 2015 Wayne Stambaugh <[email protected]>
7 * Copyright (C) 2017-2020 KiCad Developers, see AUTHORS.txt for contributors.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, you may find one here:
21 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
22 * or you may search the http://www.gnu.org website for the version 2 license,
23 * or you may write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
25 */
26
27#include <kiface_base.h>
28#include <confirm.h>
29#include <gestfich.h>
30#include <pcb_edit_frame.h>
31#include <pcbnew_id.h>
32#include <board.h>
33#include <footprint.h>
34#include <pad.h>
35#include <zone.h>
36#include <pcb_group.h>
37#include <pcb_generator.h>
38#include <pcb_target.h>
39#include <pcb_dimension.h>
40#include <pcb_textbox.h>
41#include <pcb_shape.h>
42#include <dialog_drc.h>
44#include <tool/tool_manager.h>
45#include <tools/pcb_actions.h>
46#include <tools/drc_tool.h>
49
50// Handles the selection of command events.
51void PCB_EDIT_FRAME::Process_Special_Functions( wxCommandEvent& event )
52{
53 int id = event.GetId();
54 const PCB_DISPLAY_OPTIONS& displ_opts = GetDisplayOptions();
55
56 switch( id ) // Execute command
57 {
58 case 0:
59 break;
60
63
64 if( displ_opts.m_ContrastModeDisplay != HIGH_CONTRAST_MODE::NORMAL )
65 GetCanvas()->Refresh();
66 break;
67
70 break;
71
74 break;
75
76 default:
77 break;
78 }
79}
80
81
83{
84 PCB_LAYER_ID curLayer = GetActiveLayer();
85 const PCB_DISPLAY_OPTIONS& displ_opts = GetDisplayOptions();
86
87 // Check if the specified layer matches the present layer
88 if( layer == curLayer )
89 return;
90
91 // Copper layers cannot be selected unconditionally; how many of those layers are currently
92 // enabled needs to be checked.
93 if( IsCopperLayer( layer ) )
94 {
95 // If only one copper layer is enabled, the only such layer that can be selected to is
96 // the "Back" layer (so the selection of any other copper layer is disregarded).
97 if( GetBoard()->GetCopperLayerCount() < 2 )
98 {
99 if( layer != B_Cu )
100 return;
101 }
102 // If more than one copper layer is enabled, the "Copper" and "Component" layers can be
103 // selected, but the total number of copper layers determines which internal layers are
104 // also capable of being selected.
105 else
106 {
107 if( layer != B_Cu && layer != F_Cu && layer >= GetBoard()->GetCopperLayerCount() - 1 )
108 return;
109 }
110 }
111
112 // Is yet more checking required? E.g. when the layer to be selected is a non-copper layer,
113 // or when switching between a copper layer and a non-copper layer, or vice-versa?
114
115 SetActiveLayer( layer );
116
117 if( displ_opts.m_ContrastModeDisplay != HIGH_CONTRAST_MODE::NORMAL )
118 GetCanvas()->Refresh();
119}
120
121
123{
124 switch( aItem->Type() )
125 {
128 break;
129
130 case PCB_FIELD_T:
131 case PCB_TEXT_T:
132 ShowTextPropertiesDialog( static_cast<PCB_TEXT*>( aItem ) );
133 break;
134
135 case PCB_TEXTBOX_T:
136 ShowTextBoxPropertiesDialog( static_cast<PCB_TEXTBOX*>( aItem ) );
137 break;
138
139 case PCB_PAD_T:
140 ShowPadPropertiesDialog( static_cast<PAD*>( aItem ) );
141 break;
142
143 case PCB_FOOTPRINT_T:
144 ShowFootprintPropertiesDialog( static_cast<FOOTPRINT*>( aItem ) );
145 break;
146
147 case PCB_TARGET_T:
148 ShowTargetOptionsDialog( static_cast<PCB_TARGET*>( aItem ) );
149 break;
150
152 case PCB_DIM_CENTER_T:
153 case PCB_DIM_RADIAL_T:
155 case PCB_DIM_LEADER_T:
156 {
157 DIALOG_DIMENSION_PROPERTIES dlg( this, static_cast<PCB_DIMENSION_BASE*>( aItem ) );
158 dlg.ShowQuasiModal();
159 break;
160 }
161
162 case PCB_SHAPE_T:
163 ShowGraphicItemPropertiesDialog( static_cast<PCB_SHAPE*>( aItem ) );
164 break;
165
166 case PCB_ZONE_T:
167 Edit_Zone_Params( static_cast<ZONE*>( aItem ) );
168 break;
169
170 case PCB_GROUP_T:
172 break;
173
174 case PCB_GENERATOR_T:
175 static_cast<PCB_GENERATOR*>( aItem )->ShowPropertiesDialog( this );
176 break;
177
178 case PCB_MARKER_T:
179 m_toolManager->GetTool<DRC_TOOL>()->CrossProbe( static_cast<PCB_MARKER*>( aItem ) );
180 break;
181
182 default:
183 break;
184 }
185}
186
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:77
int ShowQuasiModal()
virtual void Refresh(bool aEraseBackground=true, const wxRect *aRect=nullptr) override
KICAD_T Type() const
Returns the type of object.
Definition: eda_item.h:97
Definition: pad.h:59
static TOOL_ACTION groupProperties
Definition: pcb_actions.h:296
int ShowTextBoxPropertiesDialog(PCB_TEXTBOX *aTextBox)
void ShowReferenceImagePropertiesDialog(BOARD_ITEM *aBitmap)
Set the angle used for rotate operations.
void ShowGraphicItemPropertiesDialog(PCB_SHAPE *aShape)
void ShowPadPropertiesDialog(PAD *aPad)
const PCB_DISPLAY_OPTIONS & GetDisplayOptions() const
Display options control the way tracks, vias, outlines and other things are shown (for instance solid...
virtual PCB_LAYER_ID GetActiveLayer() const
PCB_DRAW_PANEL_GAL * GetCanvas() const override
Return a pointer to GAL-based canvas of given EDA draw frame.
BOARD * GetBoard() const
Abstract dimension API.
HIGH_CONTRAST_MODE m_ContrastModeDisplay
How inactive layers are displayed.
void OnEditItemRequest(BOARD_ITEM *aItem) override
Install the corresponding dialog editor for the given item.
Definition: edit.cpp:122
void SetActiveLayer(PCB_LAYER_ID aLayer) override
Change the currently active layer to aLayer and also update the APPEARANCE_CONTROLS.
void SwitchLayer(PCB_LAYER_ID layer) override
Change the active layer in the editor.
Definition: edit.cpp:82
void ShowTargetOptionsDialog(PCB_TARGET *aTarget)
void ExportFootprintsToLibrary(bool aStoreInNewLib, const wxString &aLibName=wxEmptyString, wxString *aLibPath=nullptr)
Save footprints in a library:
void ShowFootprintPropertiesDialog(FOOTPRINT *aFootprint)
void Edit_Zone_Params(ZONE *zone_container)
Edit params (layer, clearance, ...) for a zone outline.
PCB_LAYER_BOX_SELECTOR * m_SelLayerBox
void Process_Special_Functions(wxCommandEvent &event)
Definition: edit.cpp:51
A set of BOARD_ITEMs (i.e., without duplicates).
Definition: pcb_group.h:51
TOOL_MANAGER * m_toolManager
Definition: tools_holder.h:165
bool RunAction(const std::string &aActionName, T aParam)
Run the specified action immediately, pausing the current action to run the new one.
Definition: tool_manager.h:145
Handle a list of polygons defining a copper zone.
Definition: zone.h:72
This file is part of the common library.
bool IsCopperLayer(int aLayerId)
Tests whether a layer is a copper layer.
Definition: layer_ids.h:853
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60
@ B_Cu
Definition: layer_ids.h:96
@ F_Cu
Definition: layer_ids.h:65
PCB_LAYER_ID ToLAYER_ID(int aLayer)
Definition: lset.cpp:941
Class to handle a set of BOARD_ITEMs.
@ ID_MENU_EXPORT_FOOTPRINTS_TO_NEW_LIBRARY
Definition: pcbnew_id.h:83
@ ID_MENU_EXPORT_FOOTPRINTS_TO_LIBRARY
Definition: pcbnew_id.h:82
@ ID_TOOLBARH_PCB_SELECT_LAYER
Definition: pcbnew_id.h:96
@ PCB_SHAPE_T
class PCB_SHAPE, a segment not on copper layers
Definition: typeinfo.h:88
@ PCB_DIM_ORTHOGONAL_T
class PCB_DIM_ORTHOGONAL, a linear dimension constrained to x/y
Definition: typeinfo.h:103
@ PCB_DIM_LEADER_T
class PCB_DIM_LEADER, a leader dimension (graphic item)
Definition: typeinfo.h:100
@ PCB_GENERATOR_T
class PCB_GENERATOR, generator on a layer
Definition: typeinfo.h:91
@ PCB_DIM_CENTER_T
class PCB_DIM_CENTER, a center point marking (graphic item)
Definition: typeinfo.h:101
@ PCB_GROUP_T
class PCB_GROUP, a set of BOARD_ITEMs
Definition: typeinfo.h:108
@ PCB_TEXTBOX_T
class PCB_TEXTBOX, wrapped text on a layer
Definition: typeinfo.h:93
@ PCB_ZONE_T
class ZONE, a copper pour area
Definition: typeinfo.h:105
@ PCB_TEXT_T
class PCB_TEXT, text on a layer
Definition: typeinfo.h:92
@ PCB_REFERENCE_IMAGE_T
class PCB_REFERENCE_IMAGE, bitmap on a layer
Definition: typeinfo.h:89
@ PCB_FIELD_T
class PCB_FIELD, text associated with a footprint property
Definition: typeinfo.h:90
@ PCB_MARKER_T
class PCB_MARKER, a marker used to show something
Definition: typeinfo.h:97
@ PCB_TARGET_T
class PCB_TARGET, a target (graphic item)
Definition: typeinfo.h:104
@ PCB_FOOTPRINT_T
class FOOTPRINT, a footprint
Definition: typeinfo.h:86
@ PCB_DIM_ALIGNED_T
class PCB_DIM_ALIGNED, a linear dimension (graphic item)
Definition: typeinfo.h:99
@ PCB_PAD_T
class PAD, a pad in a footprint
Definition: typeinfo.h:87
@ PCB_DIM_RADIAL_T
class PCB_DIM_RADIAL, a radius or diameter dimension
Definition: typeinfo.h:102