2013-12-09 11:01:05 +01:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2020-12-15 22:32:02 +00:00
|
|
|
* Copyright (C) 2013-2020 CERN
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2021-01-27 17:15:38 -05:00
|
|
|
*
|
2013-12-09 11:01:05 +01:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
2015-03-03 11:55:23 +01:00
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2013-12-09 11:01:05 +01: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __EDIT_TOOL_H
|
|
|
|
#define __EDIT_TOOL_H
|
|
|
|
|
|
|
|
#include <math/vector2d.h>
|
2019-05-12 12:49:58 +01:00
|
|
|
#include <tools/pcb_tool_base.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include <tools/pcb_selection_tool.h>
|
2018-12-12 17:22:27 -08:00
|
|
|
#include <status_popup.h>
|
2024-03-27 12:47:05 +00:00
|
|
|
#include <unordered_set>
|
2013-12-09 11:01:05 +01:00
|
|
|
|
2017-08-03 17:53:07 +02:00
|
|
|
|
2016-06-21 17:06:28 +02:00
|
|
|
class BOARD_COMMIT;
|
2013-12-09 11:01:05 +01:00
|
|
|
class BOARD_ITEM;
|
2017-03-22 14:43:10 +01:00
|
|
|
class CONNECTIVITY_DATA;
|
2019-07-17 21:19:23 +01:00
|
|
|
class STATUS_TEXT_POPUP;
|
2013-12-09 11:01:05 +01:00
|
|
|
|
2023-06-27 16:52:50 +01:00
|
|
|
namespace KIGFX::PREVIEW
|
2020-12-15 22:32:02 +00:00
|
|
|
{
|
2023-06-27 16:52:50 +01:00
|
|
|
class RULER_ITEM;
|
2019-07-01 22:01:33 +01:00
|
|
|
}
|
|
|
|
|
2018-11-13 08:30:56 -05:00
|
|
|
|
2020-12-15 22:32:02 +00:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* The interactive edit tool.
|
2013-12-09 11:01:05 +01:00
|
|
|
*
|
2021-01-27 17:15:38 -05:00
|
|
|
* Allows one to move, rotate, flip and change properties of items selected using the
|
|
|
|
* pcbnew.InteractiveSelection tool.
|
2013-12-09 11:01:05 +01:00
|
|
|
*/
|
2019-05-12 12:49:58 +01:00
|
|
|
class EDIT_TOOL : public PCB_TOOL_BASE
|
2013-12-09 11:01:05 +01:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
EDIT_TOOL();
|
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Reset()
|
2016-09-24 14:53:15 -04:00
|
|
|
void Reset( RESET_REASON aReason ) override;
|
2013-12-09 11:01:05 +01:00
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Init()
|
2016-09-24 14:53:15 -04:00
|
|
|
bool Init() override;
|
2013-12-09 11:01:05 +01:00
|
|
|
|
2021-01-27 17:15:38 -05:00
|
|
|
///< Find an item and start moving.
|
2019-08-13 13:29:18 +01:00
|
|
|
int GetAndPlace( const TOOL_EVENT& aEvent );
|
|
|
|
|
2013-12-09 11:01:05 +01:00
|
|
|
/**
|
|
|
|
* Main loop in which events are handled.
|
|
|
|
*/
|
2019-08-10 11:56:15 +01:00
|
|
|
int Move( const TOOL_EVENT& aEvent );
|
2013-12-09 11:01:05 +01:00
|
|
|
|
2017-08-03 17:53:07 +02:00
|
|
|
/**
|
2021-01-03 01:21:20 +00:00
|
|
|
* Invoke the PNS router to drag tracks or do an offline resizing of an arc track
|
2021-01-27 17:15:38 -05:00
|
|
|
* if a single arc track is selected.
|
2017-08-03 17:53:07 +02:00
|
|
|
*/
|
|
|
|
int Drag( const TOOL_EVENT& aEvent );
|
|
|
|
|
2021-01-03 01:21:20 +00:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Drag-resize an arc (and change end points of connected straight segments).
|
2021-01-03 01:21:20 +00:00
|
|
|
*/
|
2021-06-12 11:39:28 +01:00
|
|
|
int DragArcTrack( const TOOL_EVENT& aTrack );
|
2021-01-03 01:21:20 +00:00
|
|
|
|
2013-12-09 11:01:05 +01:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Display properties window for the selected object.
|
2013-12-09 11:01:05 +01:00
|
|
|
*/
|
2015-02-14 21:28:47 +01:00
|
|
|
int Properties( const TOOL_EVENT& aEvent );
|
2013-12-09 11:01:05 +01:00
|
|
|
|
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Rotate currently selected items.
|
2013-12-09 11:01:05 +01:00
|
|
|
*/
|
2015-02-14 21:28:47 +01:00
|
|
|
int Rotate( const TOOL_EVENT& aEvent );
|
2013-12-09 11:01:05 +01:00
|
|
|
|
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Rotate currently selected items. The rotation point is the current cursor position.
|
2013-12-09 11:01:05 +01:00
|
|
|
*/
|
2015-02-14 21:28:47 +01:00
|
|
|
int Flip( const TOOL_EVENT& aEvent );
|
2013-12-09 11:01:05 +01:00
|
|
|
|
2017-01-23 14:47:39 +08:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Mirror the current selection. The mirror axis passes through the current point.
|
2017-01-23 14:47:39 +08:00
|
|
|
*/
|
|
|
|
int Mirror( const TOOL_EVENT& aEvent );
|
|
|
|
|
2022-12-27 14:18:13 -05:00
|
|
|
static const std::vector<KICAD_T> MirrorableItems;
|
|
|
|
|
2023-11-21 23:43:48 +00:00
|
|
|
/**
|
|
|
|
* Set the justification on any text items (or fields) in the current selection.
|
|
|
|
*/
|
|
|
|
int JustifyText( const TOOL_EVENT& aEvent );
|
|
|
|
|
2022-08-29 15:07:16 -04:00
|
|
|
/**
|
|
|
|
* Swap currently selected items' positions. Changes position of each item to the next.
|
|
|
|
*/
|
|
|
|
int Swap( const TOOL_EVENT& aEvent );
|
|
|
|
|
2022-09-27 16:30:17 +03:00
|
|
|
/**
|
|
|
|
* Try to fit selected footprints inside a minimal area and start movement.
|
|
|
|
*/
|
|
|
|
int PackAndMoveFootprints( const TOOL_EVENT& aEvent );
|
|
|
|
|
2019-10-31 00:00:07 +00:00
|
|
|
int ChangeTrackWidth( const TOOL_EVENT& aEvent );
|
2025-05-20 15:48:49 -04:00
|
|
|
int ChangeTrackLayer( const TOOL_EVENT& aEvent );
|
2019-10-31 00:00:07 +00:00
|
|
|
|
2020-10-20 21:23:05 +00:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Fillet (i.e. adds an arc tangent to) all selected straight tracks by a user defined radius.
|
2020-10-20 21:23:05 +00:00
|
|
|
*/
|
|
|
|
int FilletTracks( const TOOL_EVENT& aEvent );
|
|
|
|
|
2022-11-18 06:32:43 -08:00
|
|
|
/**
|
2023-07-02 18:59:04 +01:00
|
|
|
* "Modify" graphical lines. This includes operations such as filleting, chamfering,
|
|
|
|
* extending to meet.
|
2022-11-18 06:32:43 -08:00
|
|
|
*/
|
2023-07-02 18:59:04 +01:00
|
|
|
int ModifyLines( const TOOL_EVENT& aEvent );
|
2022-11-18 06:32:43 -08:00
|
|
|
|
2023-10-17 10:27:59 +03:00
|
|
|
/**
|
|
|
|
* Make ends of selected shapes meet by extending or cutting them, or adding extra geometry.
|
|
|
|
*/
|
|
|
|
int HealShapes( const TOOL_EVENT& aEvent );
|
|
|
|
|
2024-04-29 17:47:34 -07:00
|
|
|
/**
|
|
|
|
* Simplify the outlines of selected polygon objects
|
|
|
|
*/
|
|
|
|
int SimplifyPolygons( const TOOL_EVENT& aEvent );
|
|
|
|
|
2024-09-12 19:28:13 +01:00
|
|
|
/**
|
|
|
|
* Create outset items from selection
|
|
|
|
*/
|
|
|
|
int OutsetItems( const TOOL_EVENT& aEvent );
|
|
|
|
|
2023-07-22 01:23:59 +01:00
|
|
|
/**
|
|
|
|
* Modify selected polygons into a single polygon using boolean operations
|
|
|
|
* such as merge (union) or subtract (difference)
|
|
|
|
*/
|
|
|
|
int BooleanPolygons( const TOOL_EVENT& aEvent );
|
|
|
|
|
2013-12-09 11:01:05 +01:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Delete currently selected items.
|
2013-12-09 11:01:05 +01:00
|
|
|
*/
|
2015-02-14 21:28:47 +01:00
|
|
|
int Remove( const TOOL_EVENT& aEvent );
|
2015-02-12 03:22:24 +00:00
|
|
|
|
2024-01-07 12:57:22 +00:00
|
|
|
void DeleteItems( const PCB_SELECTION& aItem, bool aIsCut );
|
2022-10-17 13:02:39 +01:00
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Duplicate the current selection and starts a move action.
|
2015-02-12 03:22:24 +00:00
|
|
|
*/
|
2024-01-07 12:57:22 +00:00
|
|
|
int Duplicate( const TOOL_EVENT& aItem );
|
2015-02-12 03:22:24 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Invoke a dialog box to allow moving of the item by an exact amount.
|
2015-02-12 03:22:24 +00:00
|
|
|
*/
|
2015-02-18 20:27:00 +01:00
|
|
|
int MoveExact( const TOOL_EVENT& aEvent );
|
2015-02-12 03:22:24 +00:00
|
|
|
|
2024-10-13 13:53:15 +08:00
|
|
|
/**
|
|
|
|
* Increment some aspect of the selected items.q
|
|
|
|
*/
|
|
|
|
int Increment( const TOOL_EVENT& aEvent );
|
|
|
|
|
2018-01-05 23:44:37 +00:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* A selection filter which prunes the selection to contain only items of type #PCB_MODULE_T.
|
2018-01-05 23:44:37 +00:00
|
|
|
*/
|
2020-12-15 22:32:02 +00:00
|
|
|
static void FootprintFilter( const VECTOR2I&, GENERAL_COLLECTOR& aCollector,
|
2020-12-16 13:31:32 +00:00
|
|
|
PCB_SELECTION_TOOL* sTool );
|
2018-01-05 23:44:37 +00:00
|
|
|
|
2019-01-08 17:17:49 -08:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* A selection filter which prunes the selection to contain only items of type #PCB_PAD_T.
|
2019-01-08 17:17:49 -08:00
|
|
|
*/
|
2020-12-16 13:31:32 +00:00
|
|
|
static void PadFilter( const VECTOR2I&, GENERAL_COLLECTOR& aCollector,
|
|
|
|
PCB_SELECTION_TOOL* sTool );
|
2019-01-08 17:17:49 -08:00
|
|
|
|
2020-12-15 22:32:02 +00:00
|
|
|
private:
|
2021-01-27 17:15:38 -05:00
|
|
|
///< Set up handlers for various events.
|
2017-07-31 14:30:51 +02:00
|
|
|
void setTransitions() override;
|
2015-04-30 10:46:03 +02:00
|
|
|
|
2017-09-17 19:49:06 +02:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Send the current selection to the clipboard by formatting it as a fake pcb
|
|
|
|
* see #AppendBoardFromClipboard for importing.
|
2017-09-17 19:49:06 +02:00
|
|
|
*/
|
|
|
|
int copyToClipboard( const TOOL_EVENT& aEvent );
|
|
|
|
|
2024-10-13 13:26:11 +08:00
|
|
|
/**
|
|
|
|
* Send the current selection to the clipboard as text.
|
|
|
|
*/
|
|
|
|
int copyToClipboardAsText( const TOOL_EVENT& aEvent );
|
|
|
|
|
2017-09-17 19:49:06 +02:00
|
|
|
/**
|
2021-01-27 17:15:38 -05:00
|
|
|
* Cut the current selection to the clipboard by formatting it as a fake pcb
|
|
|
|
* see #AppendBoardFromClipboard for importing.
|
2017-09-17 19:49:06 +02:00
|
|
|
*/
|
|
|
|
int cutToClipboard( const TOOL_EVENT& aEvent );
|
|
|
|
|
2021-01-27 17:15:38 -05:00
|
|
|
///< Return the right modification point (e.g. for rotation), depending on the number of
|
|
|
|
///< selected items.
|
2020-12-16 13:31:32 +00:00
|
|
|
bool updateModificationPoint( PCB_SELECTION& aSelection );
|
2014-02-04 17:27:00 +01:00
|
|
|
|
2017-08-03 17:53:07 +02:00
|
|
|
bool invokeInlineRouter( int aDragMode );
|
2020-08-05 16:01:10 +01:00
|
|
|
bool isRouterActive() const;
|
2017-08-03 17:53:07 +02:00
|
|
|
|
2021-12-12 02:57:51 +03:00
|
|
|
VECTOR2I getSafeMovement( const VECTOR2I& aMovement, const BOX2I& aSourceBBox,
|
|
|
|
const VECTOR2D& aBBoxOffset );
|
|
|
|
|
2020-07-05 17:36:12 -04:00
|
|
|
bool pickReferencePoint( const wxString& aTooltip, const wxString& aSuccessMessage,
|
|
|
|
const wxString& aCanceledMessage, VECTOR2I& aReferencePoint );
|
2017-08-03 17:53:07 +02:00
|
|
|
|
2024-02-15 13:06:55 +00:00
|
|
|
bool doMoveSelection( const TOOL_EVENT& aEvent, BOARD_COMMIT* aCommit, bool aAutoStart );
|
2023-06-30 18:57:01 +01:00
|
|
|
|
2022-11-30 09:11:03 -05:00
|
|
|
///< Rebuilds the ratsnest for operations that require it outside the commit rebuild
|
|
|
|
void rebuildConnectivity();
|
|
|
|
|
2019-07-17 21:19:23 +01:00
|
|
|
private:
|
2023-06-27 16:52:50 +01:00
|
|
|
PCB_SELECTION_TOOL* m_selectionTool;
|
|
|
|
bool m_dragging; // Indicates objects are currently being dragged
|
|
|
|
VECTOR2I m_cursor; // Last cursor position (so getModificationPoint()
|
|
|
|
// can avoid changes of edit reference point).
|
2020-12-15 22:32:02 +00:00
|
|
|
std::unique_ptr<STATUS_TEXT_POPUP> m_statusPopup;
|
2021-12-12 02:57:51 +03:00
|
|
|
|
|
|
|
static const unsigned int COORDS_PADDING; // Padding from coordinates limits for this tool
|
2013-12-09 11:01:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|