KiCad PCB EDA Suite
Loading...
Searching...
No Matches
edit_tool.h
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) 2013-2020 CERN
5 * Copyright (C) 2013-2023 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * @author Maciej Suminski <[email protected]>
8 * @author Tomasz Wlostowski <[email protected]>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version 2
13 * of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, you may find one here:
22 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
23 * or you may search the http://www.gnu.org website for the version 2 license,
24 * or you may write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
26 */
27
28#ifndef __EDIT_TOOL_H
29#define __EDIT_TOOL_H
30
31#include <math/vector2d.h>
32#include <tools/pcb_tool_base.h>
34#include <status_popup.h>
35
36
37class BOARD_COMMIT;
38class BOARD_ITEM;
41
42namespace KIGFX::PREVIEW
43{
44 class RULER_ITEM;
45}
46
47
55{
56public:
57 EDIT_TOOL();
58
60 void Reset( RESET_REASON aReason ) override;
61
63 bool Init() override;
64
66 int GetAndPlace( const TOOL_EVENT& aEvent );
67
71 int Move( const TOOL_EVENT& aEvent );
72
77 int Drag( const TOOL_EVENT& aEvent );
78
82 int DragArcTrack( const TOOL_EVENT& aTrack );
83
87 int Properties( const TOOL_EVENT& aEvent );
88
92 int Rotate( const TOOL_EVENT& aEvent );
93
97 int Flip( const TOOL_EVENT& aEvent );
98
102 int Mirror( const TOOL_EVENT& aEvent );
103
104 static const std::vector<KICAD_T> MirrorableItems;
105
109 int Swap( const TOOL_EVENT& aEvent );
110
114 int PackAndMoveFootprints( const TOOL_EVENT& aEvent );
115
116 int ChangeTrackWidth( const TOOL_EVENT& aEvent );
117
121 int FilletTracks( const TOOL_EVENT& aEvent );
122
127 int ModifyLines( const TOOL_EVENT& aEvent );
128
133 int BooleanPolygons( const TOOL_EVENT& aEvent );
134
138 int Remove( const TOOL_EVENT& aEvent );
139
140 void DeleteItems( const PCB_SELECTION& aItems, bool aIsCut );
141
145 int Duplicate( const TOOL_EVENT& aEvent );
146
150 int MoveExact( const TOOL_EVENT& aEvent );
151
155 int CreateArray( const TOOL_EVENT& aEvent );
156
160 static void FootprintFilter( const VECTOR2I&, GENERAL_COLLECTOR& aCollector,
161 PCB_SELECTION_TOOL* sTool );
162
166 static void PadFilter( const VECTOR2I&, GENERAL_COLLECTOR& aCollector,
167 PCB_SELECTION_TOOL* sTool );
168
169private:
171 void setTransitions() override;
172
177 int copyToClipboard( const TOOL_EVENT& aEvent );
178
183 int cutToClipboard( const TOOL_EVENT& aEvent );
184
187 bool updateModificationPoint( PCB_SELECTION& aSelection );
188
189 bool invokeInlineRouter( int aDragMode );
190 bool isRouterActive() const;
191
192 VECTOR2I getSafeMovement( const VECTOR2I& aMovement, const BOX2I& aSourceBBox,
193 const VECTOR2D& aBBoxOffset );
194
195 bool pickReferencePoint( const wxString& aTooltip, const wxString& aSuccessMessage,
196 const wxString& aCanceledMessage, VECTOR2I& aReferencePoint );
197
198 bool doMoveSelection( const TOOL_EVENT& aEvent, BOARD_COMMIT* aCommit );
199
201 void rebuildConnectivity();
202
203private:
205 bool m_dragging; // Indicates objects are currently being dragged
206 VECTOR2I m_cursor; // Last cursor position (so getModificationPoint()
207 // can avoid changes of edit reference point).
208 std::unique_ptr<STATUS_TEXT_POPUP> m_statusPopup;
209
210 static const unsigned int COORDS_PADDING; // Padding from coordinates limits for this tool
211};
212
213#endif
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:77
The interactive edit tool.
Definition: edit_tool.h:55
bool isRouterActive() const
Definition: edit_tool.cpp:406
int Drag(const TOOL_EVENT &aEvent)
Invoke the PNS router to drag tracks or do an offline resizing of an arc track if a single arc track ...
Definition: edit_tool.cpp:414
int Duplicate(const TOOL_EVENT &aEvent)
Duplicate the current selection and starts a move action.
Definition: edit_tool.cpp:2341
int Swap(const TOOL_EVENT &aEvent)
Swap currently selected items' positions.
int PackAndMoveFootprints(const TOOL_EVENT &aEvent)
Try to fit selected footprints inside a minimal area and start movement.
int Mirror(const TOOL_EVENT &aEvent)
Mirror the current selection.
Definition: edit_tool.cpp:1796
int CreateArray(const TOOL_EVENT &aEvent)
Create an array of the selected items, invoking the array editor dialog to set the options.
Definition: edit_tool.cpp:2483
bool pickReferencePoint(const wxString &aTooltip, const wxString &aSuccessMessage, const wxString &aCanceledMessage, VECTOR2I &aReferencePoint)
Definition: edit_tool.cpp:2559
bool Init() override
Init() is called once upon a registration of the tool.
Definition: edit_tool.cpp:165
int ModifyLines(const TOOL_EVENT &aEvent)
"Modify" graphical lines.
Definition: edit_tool.cpp:1179
void DeleteItems(const PCB_SELECTION &aItems, bool aIsCut)
Definition: edit_tool.cpp:1994
bool m_dragging
Definition: edit_tool.h:205
int MoveExact(const TOOL_EVENT &aEvent)
Invoke a dialog box to allow moving of the item by an exact amount.
Definition: edit_tool.cpp:2240
int Move(const TOOL_EVENT &aEvent)
Main loop in which events are handled.
static const unsigned int COORDS_PADDING
Definition: edit_tool.h:210
bool updateModificationPoint(PCB_SELECTION &aSelection)
Definition: edit_tool.cpp:2533
VECTOR2I getSafeMovement(const VECTOR2I &aMovement, const BOX2I &aSourceBBox, const VECTOR2D &aBBoxOffset)
std::unique_ptr< STATUS_TEXT_POPUP > m_statusPopup
Definition: edit_tool.h:208
int DragArcTrack(const TOOL_EVENT &aTrack)
Drag-resize an arc (and change end points of connected straight segments).
Definition: edit_tool.cpp:510
int copyToClipboard(const TOOL_EVENT &aEvent)
Send the current selection to the clipboard by formatting it as a fake pcb see #AppendBoardFromClipbo...
Definition: edit_tool.cpp:2641
int Remove(const TOOL_EVENT &aEvent)
Delete currently selected items.
Definition: edit_tool.cpp:2167
int cutToClipboard(const TOOL_EVENT &aEvent)
Cut the current selection to the clipboard by formatting it as a fake pcb see #AppendBoardFromClipboa...
Definition: edit_tool.cpp:2717
static const std::vector< KICAD_T > MirrorableItems
Definition: edit_tool.h:104
static void PadFilter(const VECTOR2I &, GENERAL_COLLECTOR &aCollector, PCB_SELECTION_TOOL *sTool)
A selection filter which prunes the selection to contain only items of type PCB_PAD_T.
Definition: edit_tool.cpp:2511
VECTOR2I m_cursor
Definition: edit_tool.h:206
bool invokeInlineRouter(int aDragMode)
Definition: edit_tool.cpp:377
bool doMoveSelection(const TOOL_EVENT &aEvent, BOARD_COMMIT *aCommit)
Rebuilds the ratsnest for operations that require it outside the commit rebuild.
void rebuildConnectivity()
Definition: edit_tool.cpp:2733
void setTransitions() override
< Set up handlers for various events.
Definition: edit_tool.cpp:2741
int ChangeTrackWidth(const TOOL_EVENT &aEvent)
Definition: edit_tool.cpp:834
int BooleanPolygons(const TOOL_EVENT &aEvent)
Modify selected polygons into a single polygon using boolean operations such as merge (union) or subt...
Definition: edit_tool.cpp:1409
int GetAndPlace(const TOOL_EVENT &aEvent)
Definition: edit_tool.cpp:354
int FilletTracks(const TOOL_EVENT &aEvent)
Fillet (i.e.
Definition: edit_tool.cpp:906
PCB_SELECTION_TOOL * m_selectionTool
Definition: edit_tool.h:204
int Properties(const TOOL_EVENT &aEvent)
Display properties window for the selected object.
Definition: edit_tool.cpp:1520
static void FootprintFilter(const VECTOR2I &, GENERAL_COLLECTOR &aCollector, PCB_SELECTION_TOOL *sTool)
A selection filter which prunes the selection to contain only items of type #PCB_MODULE_T.
Definition: edit_tool.cpp:2522
int Rotate(const TOOL_EVENT &aEvent)
Rotate currently selected items.
Definition: edit_tool.cpp:1582
Used when the right click button is pressed, or when the select tool is in effect.
Definition: collectors.h:204
The selection tool: currently supports:
Extension of STATUS_POPUP for displaying a single line text.
Definition: status_popup.h:83
RESET_REASON
Determine the reason of reset for a tool.
Definition: tool_base.h:78
Generic, UI-independent tool event.
Definition: tool_event.h:167
void Reset() override
void Flip(T &aValue)
#define EDIT_TOOL(tool)