2014-03-24 07:45:05 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2020-02-04 08:40:25 +00:00
|
|
|
* Copyright (C) 2014-2020 CERN
|
2021-01-27 22:15:38 +00:00
|
|
|
* Copyright (C) 2021 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
2014-03-24 07:45:05 +00:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
#ifndef PCB_CONTROL_H
|
|
|
|
#define PCB_CONTROL_H
|
2014-03-24 07:45:05 +00:00
|
|
|
|
2023-12-19 17:39:26 +00:00
|
|
|
#include <pcb_io/pcb_io_mgr.h>
|
2017-03-02 22:57:13 +00:00
|
|
|
#include <memory>
|
2019-05-12 11:49:58 +00:00
|
|
|
#include <tools/pcb_tool_base.h>
|
2021-05-26 00:18:34 +00:00
|
|
|
#include <status_popup.h>
|
2014-03-24 07:45:05 +00:00
|
|
|
|
2015-06-18 15:51:53 +00:00
|
|
|
namespace KIGFX {
|
|
|
|
class ORIGIN_VIEWITEM;
|
|
|
|
}
|
2014-03-24 16:20:23 +00:00
|
|
|
|
2017-09-22 15:17:38 +00:00
|
|
|
class PCB_BASE_FRAME;
|
|
|
|
class BOARD_ITEM;
|
2021-01-27 22:15:38 +00:00
|
|
|
|
2014-03-24 07:45:05 +00:00
|
|
|
/**
|
2021-01-27 22:15:38 +00:00
|
|
|
* Handle actions that are shared between different frames in PcbNew.
|
2014-03-24 07:45:05 +00:00
|
|
|
*/
|
|
|
|
|
2020-12-16 13:31:32 +00:00
|
|
|
class PCB_CONTROL : public PCB_TOOL_BASE
|
2014-03-24 07:45:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-12-16 13:31:32 +00:00
|
|
|
PCB_CONTROL();
|
|
|
|
~PCB_CONTROL();
|
2014-03-24 07:45:05 +00:00
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Reset()
|
2016-09-24 18:53:15 +00:00
|
|
|
void Reset( RESET_REASON aReason ) override;
|
2014-03-24 07:45:05 +00:00
|
|
|
|
2019-06-02 20:07:57 +00:00
|
|
|
int AddLibrary( const TOOL_EVENT& aEvent );
|
2019-05-26 15:36:40 +00:00
|
|
|
int Print( const TOOL_EVENT& aEvent );
|
|
|
|
int Quit( const TOOL_EVENT& aEvent );
|
|
|
|
|
2014-03-24 07:45:05 +00:00
|
|
|
// Display modes
|
2019-05-15 22:49:48 +00:00
|
|
|
int ToggleRatsnest( const TOOL_EVENT& aEvent );
|
2018-02-18 14:21:23 +00:00
|
|
|
int ZoneDisplayMode( const TOOL_EVENT& aEvent );
|
2015-02-14 20:28:47 +00:00
|
|
|
int TrackDisplayMode( const TOOL_EVENT& aEvent );
|
|
|
|
int ViaDisplayMode( const TOOL_EVENT& aEvent );
|
2020-07-11 17:40:23 +00:00
|
|
|
|
|
|
|
// Update the view with the new high-contrast mode from the display settings
|
2015-02-14 20:28:47 +00:00
|
|
|
int HighContrastMode( const TOOL_EVENT& aEvent );
|
2014-03-24 07:45:05 +00:00
|
|
|
|
2023-06-18 03:47:26 +00:00
|
|
|
int ContrastModeFeedback( const TOOL_EVENT& aEvent );
|
|
|
|
|
2021-10-04 12:42:08 +00:00
|
|
|
// Rotate through the available high-contrast, net color and ratsnest color modes
|
2020-07-11 17:40:23 +00:00
|
|
|
int HighContrastModeCycle( const TOOL_EVENT& aEvent );
|
2021-10-04 12:42:08 +00:00
|
|
|
int NetColorModeCycle( const TOOL_EVENT& aEvent );
|
|
|
|
int RatsnestModeCycle( const TOOL_EVENT& aEvent );
|
2020-07-11 17:40:23 +00:00
|
|
|
|
2014-03-24 07:45:05 +00:00
|
|
|
// Layer control
|
2015-02-14 20:28:47 +00:00
|
|
|
int LayerSwitch( const TOOL_EVENT& aEvent );
|
|
|
|
int LayerNext( const TOOL_EVENT& aEvent );
|
|
|
|
int LayerPrev( const TOOL_EVENT& aEvent );
|
2015-05-18 11:48:11 +00:00
|
|
|
int LayerToggle( const TOOL_EVENT& aEvent );
|
2015-02-14 20:28:47 +00:00
|
|
|
int LayerAlphaInc( const TOOL_EVENT& aEvent );
|
|
|
|
int LayerAlphaDec( const TOOL_EVENT& aEvent );
|
2014-03-24 07:45:05 +00:00
|
|
|
|
|
|
|
// Grid control
|
2023-08-26 12:29:24 +00:00
|
|
|
int GridPlaceOrigin( const TOOL_EVENT& aEvent );
|
2016-05-04 12:59:14 +00:00
|
|
|
int GridResetOrigin( const TOOL_EVENT& aEvent );
|
2014-03-24 07:45:05 +00:00
|
|
|
|
2018-01-24 10:19:33 +00:00
|
|
|
// Low-level access (below undo) to setting the grid origin
|
2019-06-12 22:04:00 +00:00
|
|
|
static void DoSetGridOrigin( KIGFX::VIEW* aView, PCB_BASE_FRAME* aFrame,
|
2020-09-09 02:54:17 +00:00
|
|
|
EDA_ITEM* originViewItem, const VECTOR2D& aPoint );
|
2018-01-24 10:19:33 +00:00
|
|
|
|
2019-05-14 19:21:10 +00:00
|
|
|
int Undo( const TOOL_EVENT& aEvent );
|
|
|
|
int Redo( const TOOL_EVENT& aEvent );
|
|
|
|
|
2023-08-17 13:25:26 +00:00
|
|
|
// Snapping control
|
|
|
|
int SnapMode( const TOOL_EVENT& aEvent );
|
|
|
|
int SnapModeFeedback( const TOOL_EVENT& aEvent );
|
|
|
|
|
2014-03-24 07:45:05 +00:00
|
|
|
// Miscellaneous
|
2023-10-10 14:43:45 +00:00
|
|
|
int InteractiveDelete( const TOOL_EVENT& aEvent );
|
2019-05-15 22:49:48 +00:00
|
|
|
int Paste( const TOOL_EVENT& aEvent );
|
2017-04-15 16:08:23 +00:00
|
|
|
int AppendBoardFromFile( const TOOL_EVENT& aEvent );
|
2023-12-19 17:39:26 +00:00
|
|
|
int AppendBoard( PCB_IO& pi, wxString& fileName );
|
2019-05-28 23:23:58 +00:00
|
|
|
int UpdateMessagePanel( const TOOL_EVENT& aEvent );
|
2014-03-24 07:45:05 +00:00
|
|
|
|
2021-02-10 17:05:47 +00:00
|
|
|
int FlipPcbView( const TOOL_EVENT& aEvent );
|
|
|
|
|
2022-09-14 22:28:09 +00:00
|
|
|
// Drag and drop
|
|
|
|
int DdAppendBoard( const TOOL_EVENT& aEvent );
|
|
|
|
int DdAddLibrary( const TOOL_EVENT& aEvent );
|
|
|
|
int DdImportFootprint( const TOOL_EVENT& aEvent );
|
|
|
|
|
2021-02-10 17:05:47 +00:00
|
|
|
private:
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Sets up handlers for various events.
|
2017-07-31 12:30:51 +00:00
|
|
|
void setTransitions() override;
|
2014-03-24 16:20:23 +00:00
|
|
|
|
2021-07-27 14:13:26 +00:00
|
|
|
/**
|
|
|
|
* We have bug reports indicating that some new users confuse zone filling/unfilling with
|
|
|
|
* the display modes. This will put up a warning if they show zone fills when one or more
|
|
|
|
* zones are unfilled.
|
|
|
|
*/
|
|
|
|
void unfilledZoneCheck();
|
|
|
|
|
2022-09-09 20:01:34 +00:00
|
|
|
/**
|
|
|
|
* Helper for pasting. Remove non-enabled layers from the items in \a aItems. If an item
|
|
|
|
* exists only on non-enabled layers, it will be removed entirely.
|
|
|
|
*/
|
|
|
|
void pruneItemLayers( std::vector<BOARD_ITEM*>& aItems );
|
|
|
|
|
2019-08-20 18:40:26 +00:00
|
|
|
/**
|
|
|
|
* Add and select or just select for move/place command a list of board items.
|
2021-01-27 22:15:38 +00:00
|
|
|
*
|
2017-11-11 08:09:24 +00:00
|
|
|
* @param aItems is the list of items
|
|
|
|
* @param aIsNew = true to add items to the current board, false to just select if
|
2019-08-20 18:40:26 +00:00
|
|
|
* items are already managed by the current board
|
|
|
|
* @param aAnchorAtOrigin = true if the items are translated so that the anchor is {0, 0}
|
|
|
|
* (if false, the top-left item's origin will be used)
|
2021-05-01 22:44:22 +00:00
|
|
|
* @param aReannotateDuplicates = true to reannotate any footprints with a designator
|
|
|
|
that already exist in the board.
|
2017-11-11 08:09:24 +00:00
|
|
|
*/
|
2023-06-27 15:52:50 +00:00
|
|
|
bool placeBoardItems( BOARD_COMMIT* aCommit, std::vector<BOARD_ITEM*>& aItems, bool aIsNew,
|
|
|
|
bool aAnchorAtOrigin, bool aReannotateDuplicates );
|
2019-08-20 18:40:26 +00:00
|
|
|
|
2023-06-27 15:52:50 +00:00
|
|
|
bool placeBoardItems( BOARD_COMMIT* aCommit, BOARD* aBoard, bool aAnchorAtOrigin,
|
|
|
|
bool aReannotateDuplicates );
|
2017-09-22 15:17:38 +00:00
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Pointer to the currently used edit frame.
|
2014-07-09 11:50:27 +00:00
|
|
|
PCB_BASE_FRAME* m_frame;
|
2015-05-12 10:03:39 +00:00
|
|
|
|
2021-01-27 22:15:38 +00:00
|
|
|
///< Grid origin marker.
|
2017-03-02 22:57:13 +00:00
|
|
|
std::unique_ptr<KIGFX::ORIGIN_VIEWITEM> m_gridOrigin;
|
2015-06-18 15:51:53 +00:00
|
|
|
|
2019-06-25 13:01:22 +00:00
|
|
|
BOARD_ITEM* m_pickerItem;
|
2021-05-26 00:18:34 +00:00
|
|
|
|
|
|
|
std::unique_ptr<STATUS_TEXT_POPUP> m_statusPopup;
|
2014-03-24 07:45:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|