2013-12-09 10:01:05 +00: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
|
2023-06-27 15:52:50 +00:00
|
|
|
* Copyright (C) 2013-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2021-01-27 22:15:38 +00:00
|
|
|
*
|
2013-12-09 10:01:05 +00:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
2015-03-03 10:55:23 +00:00
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
2013-12-09 10:01:05 +00: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 11:49:58 +00:00
|
|
|
#include <tools/pcb_tool_base.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include <tools/pcb_selection_tool.h>
|
2018-12-13 01:22:27 +00:00
|
|
|
#include <status_popup.h>
|
2013-12-09 10:01:05 +00:00
|
|
|
|
2017-08-03 15:53:07 +00:00
|
|
|
|
2016-06-21 15:06:28 +00:00
|
|
|
class BOARD_COMMIT;
|
2013-12-09 10:01:05 +00:00
|
|
|
class BOARD_ITEM;
|
2017-03-22 13:43:10 +00:00
|
|
|
class CONNECTIVITY_DATA;
|
2019-07-17 20:19:23 +00:00
|
|
|
class STATUS_TEXT_POPUP;
|
2013-12-09 10:01:05 +00:00
|
|
|
|
2023-06-27 15:52:50 +00:00
|
|
|
namespace KIGFX::PREVIEW
|
2020-12-15 22:32:02 +00:00
|
|
|
{
|
2023-06-27 15:52:50 +00:00
|
|
|
class RULER_ITEM;
|
2019-07-01 21:01:33 +00:00
|
|
|
}
|
|
|
|
|
2018-11-13 13:30:56 +00:00
|
|
|
|
2020-12-15 22:32:02 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* The interactive edit tool.
|
2013-12-09 10:01:05 +00:00
|
|
|
*
|
2021-01-27 22:15:38 +00:00
|
|
|
* Allows one to move, rotate, flip and change properties of items selected using the
|
|
|
|
* pcbnew.InteractiveSelection tool.
|
2013-12-09 10:01:05 +00:00
|
|
|
*/
|
2019-05-12 11:49:58 +00:00
|
|
|
class EDIT_TOOL : public PCB_TOOL_BASE
|
2013-12-09 10:01:05 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
EDIT_TOOL();
|
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Reset()
|
2016-09-24 18:53:15 +00:00
|
|
|
void Reset( RESET_REASON aReason ) override;
|
2013-12-09 10:01:05 +00:00
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Init()
|
2016-09-24 18:53:15 +00:00
|
|
|
bool Init() override;
|
2013-12-09 10:01:05 +00:00
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Find an item and start moving.
|
2019-08-13 12:29:18 +00:00
|
|
|
int GetAndPlace( const TOOL_EVENT& aEvent );
|
|
|
|
|
2013-12-09 10:01:05 +00:00
|
|
|
/**
|
|
|
|
* Main loop in which events are handled.
|
|
|
|
*/
|
2019-08-10 10:56:15 +00:00
|
|
|
int Move( const TOOL_EVENT& aEvent );
|
2013-12-09 10:01:05 +00:00
|
|
|
|
2017-08-03 15:53:07 +00: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 22:15:38 +00:00
|
|
|
* if a single arc track is selected.
|
2017-08-03 15:53:07 +00:00
|
|
|
*/
|
|
|
|
int Drag( const TOOL_EVENT& aEvent );
|
|
|
|
|
2021-01-03 01:21:20 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Drag-resize an arc (and change end points of connected straight segments).
|
2021-01-03 01:21:20 +00:00
|
|
|
*/
|
2021-06-12 10:39:28 +00:00
|
|
|
int DragArcTrack( const TOOL_EVENT& aTrack );
|
2021-01-03 01:21:20 +00:00
|
|
|
|
2013-12-09 10:01:05 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Display properties window for the selected object.
|
2013-12-09 10:01:05 +00:00
|
|
|
*/
|
2015-02-14 20:28:47 +00:00
|
|
|
int Properties( const TOOL_EVENT& aEvent );
|
2013-12-09 10:01:05 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Rotate currently selected items.
|
2013-12-09 10:01:05 +00:00
|
|
|
*/
|
2015-02-14 20:28:47 +00:00
|
|
|
int Rotate( const TOOL_EVENT& aEvent );
|
2013-12-09 10:01:05 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Rotate currently selected items. The rotation point is the current cursor position.
|
2013-12-09 10:01:05 +00:00
|
|
|
*/
|
2015-02-14 20:28:47 +00:00
|
|
|
int Flip( const TOOL_EVENT& aEvent );
|
2013-12-09 10:01:05 +00:00
|
|
|
|
2017-01-23 06:47:39 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Mirror the current selection. The mirror axis passes through the current point.
|
2017-01-23 06:47:39 +00:00
|
|
|
*/
|
|
|
|
int Mirror( const TOOL_EVENT& aEvent );
|
|
|
|
|
2022-12-27 19:18:13 +00:00
|
|
|
static const std::vector<KICAD_T> MirrorableItems;
|
|
|
|
|
2022-08-29 19:07:16 +00:00
|
|
|
/**
|
|
|
|
* Swap currently selected items' positions. Changes position of each item to the next.
|
|
|
|
*/
|
|
|
|
int Swap( const TOOL_EVENT& aEvent );
|
|
|
|
|
2022-09-27 13:30:17 +00: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 );
|
|
|
|
|
2020-10-20 21:23:05 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00: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 14:32:43 +00:00
|
|
|
/**
|
2023-07-02 17:59:04 +00:00
|
|
|
* "Modify" graphical lines. This includes operations such as filleting, chamfering,
|
|
|
|
* extending to meet.
|
2022-11-18 14:32:43 +00:00
|
|
|
*/
|
2023-07-02 17:59:04 +00:00
|
|
|
int ModifyLines( const TOOL_EVENT& aEvent );
|
2022-11-18 14:32:43 +00:00
|
|
|
|
2023-10-17 07:27:59 +00:00
|
|
|
/**
|
|
|
|
* Make ends of selected shapes meet by extending or cutting them, or adding extra geometry.
|
|
|
|
*/
|
|
|
|
int HealShapes( const TOOL_EVENT& aEvent );
|
|
|
|
|
2023-07-22 00:23:59 +00: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 10:01:05 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Delete currently selected items.
|
2013-12-09 10:01:05 +00:00
|
|
|
*/
|
2015-02-14 20:28:47 +00:00
|
|
|
int Remove( const TOOL_EVENT& aEvent );
|
2015-02-12 03:22:24 +00:00
|
|
|
|
2022-10-17 12:02:39 +00:00
|
|
|
void DeleteItems( const PCB_SELECTION& aItems, bool aIsCut );
|
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Duplicate the current selection and starts a move action.
|
2015-02-12 03:22:24 +00:00
|
|
|
*/
|
2015-02-18 19:27:00 +00:00
|
|
|
int Duplicate( const TOOL_EVENT& aEvent );
|
2015-02-12 03:22:24 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00: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 19:27:00 +00:00
|
|
|
int MoveExact( const TOOL_EVENT& aEvent );
|
2015-02-12 03:22:24 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Create an array of the selected items, invoking the array editor dialog to set the options.
|
2015-02-12 03:22:24 +00:00
|
|
|
*/
|
2015-02-18 19:27:00 +00:00
|
|
|
int CreateArray( const TOOL_EVENT& aEvent );
|
2013-12-09 10:01:05 +00:00
|
|
|
|
2018-01-05 23:44:37 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00: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-09 01:17:49 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* A selection filter which prunes the selection to contain only items of type #PCB_PAD_T.
|
2019-01-09 01:17:49 +00:00
|
|
|
*/
|
2020-12-16 13:31:32 +00:00
|
|
|
static void PadFilter( const VECTOR2I&, GENERAL_COLLECTOR& aCollector,
|
|
|
|
PCB_SELECTION_TOOL* sTool );
|
2019-01-09 01:17:49 +00:00
|
|
|
|
2020-12-15 22:32:02 +00:00
|
|
|
private:
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Set up handlers for various events.
|
2017-07-31 12:30:51 +00:00
|
|
|
void setTransitions() override;
|
2015-04-30 08:46:03 +00:00
|
|
|
|
2017-09-17 17:49:06 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Send the current selection to the clipboard by formatting it as a fake pcb
|
|
|
|
* see #AppendBoardFromClipboard for importing.
|
2017-09-17 17:49:06 +00:00
|
|
|
*/
|
|
|
|
int copyToClipboard( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Cut the current selection to the clipboard by formatting it as a fake pcb
|
|
|
|
* see #AppendBoardFromClipboard for importing.
|
2017-09-17 17:49:06 +00:00
|
|
|
*/
|
|
|
|
int cutToClipboard( const TOOL_EVENT& aEvent );
|
|
|
|
|
2021-01-27 22:15:38 +00: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 16:27:00 +00:00
|
|
|
|
2017-08-03 15:53:07 +00:00
|
|
|
bool invokeInlineRouter( int aDragMode );
|
2020-08-05 15:01:10 +00:00
|
|
|
bool isRouterActive() const;
|
2017-08-03 15:53:07 +00:00
|
|
|
|
2021-12-11 23:57:51 +00:00
|
|
|
VECTOR2I getSafeMovement( const VECTOR2I& aMovement, const BOX2I& aSourceBBox,
|
|
|
|
const VECTOR2D& aBBoxOffset );
|
|
|
|
|
2020-07-05 21:36:12 +00:00
|
|
|
bool pickReferencePoint( const wxString& aTooltip, const wxString& aSuccessMessage,
|
|
|
|
const wxString& aCanceledMessage, VECTOR2I& aReferencePoint );
|
2017-08-03 15:53:07 +00:00
|
|
|
|
2023-06-30 17:57:01 +00:00
|
|
|
bool doMoveSelection( const TOOL_EVENT& aEvent, BOARD_COMMIT* aCommit );
|
|
|
|
|
2022-11-30 14:11:03 +00:00
|
|
|
///< Rebuilds the ratsnest for operations that require it outside the commit rebuild
|
|
|
|
void rebuildConnectivity();
|
|
|
|
|
2019-07-17 20:19:23 +00:00
|
|
|
private:
|
2023-06-27 15:52:50 +00: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-11 23:57:51 +00:00
|
|
|
|
|
|
|
static const unsigned int COORDS_PADDING; // Padding from coordinates limits for this tool
|
2013-12-09 10:01:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|