2019-04-29 20:38:05 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2019-08-14 08:28:07 +00:00
|
|
|
* Copyright (C) 2019 CERN
|
2019-04-29 20:38:05 +00:00
|
|
|
* Copyright (C) 2019 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
#ifndef KICAD_LIB_MOVE_TOOL_H
|
|
|
|
#define KICAD_LIB_MOVE_TOOL_H
|
2019-04-29 20:38:05 +00:00
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
#include <tools/ee_tool_base.h>
|
|
|
|
#include <lib_edit_frame.h>
|
2019-04-29 20:38:05 +00:00
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
class LIB_EDIT_FRAME;
|
2019-05-10 17:19:48 +00:00
|
|
|
class EE_SELECTION_TOOL;
|
2019-04-29 20:38:05 +00:00
|
|
|
|
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
class LIB_MOVE_TOOL : public EE_TOOL_BASE<LIB_EDIT_FRAME>
|
2019-04-29 20:38:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-05-08 18:56:03 +00:00
|
|
|
LIB_MOVE_TOOL();
|
2019-06-15 00:29:42 +00:00
|
|
|
~LIB_MOVE_TOOL() override { }
|
2019-04-29 20:38:05 +00:00
|
|
|
|
|
|
|
/// @copydoc TOOL_INTERACTIVE::Init()
|
|
|
|
bool Init() override;
|
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
/// @copydoc TOOL_INTERACTIVE::Reset()
|
2019-04-29 20:38:05 +00:00
|
|
|
void Reset( RESET_REASON aReason ) override;
|
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
/**
|
|
|
|
* Function Main()
|
|
|
|
*
|
|
|
|
* Runs an interactive move of the selected items, or the item under the cursor.
|
|
|
|
*/
|
|
|
|
int Main( const TOOL_EVENT& aEvent );
|
2019-04-30 18:36:11 +00:00
|
|
|
|
2019-04-29 20:38:05 +00:00
|
|
|
private:
|
2019-05-08 18:56:03 +00:00
|
|
|
void moveItem( EDA_ITEM* aItem, VECTOR2I aDelta );
|
|
|
|
|
|
|
|
///> Returns the right modification point (e.g. for rotation), depending on the number of
|
|
|
|
///> selected items.
|
2019-06-08 21:48:22 +00:00
|
|
|
bool updateModificationPoint( EE_SELECTION& aSelection );
|
2019-05-08 18:56:03 +00:00
|
|
|
|
|
|
|
///> Sets up handlers for various events.
|
2019-04-29 20:38:05 +00:00
|
|
|
void setTransitions() override;
|
|
|
|
|
|
|
|
private:
|
2019-05-08 18:56:03 +00:00
|
|
|
///> Flag determining if anything is being dragged right now
|
|
|
|
bool m_moveInProgress;
|
|
|
|
|
|
|
|
///> Used for chaining commands
|
|
|
|
VECTOR2I m_moveOffset;
|
|
|
|
|
|
|
|
///> Last cursor position (needed for getModificationPoint() to avoid changes
|
|
|
|
///> of edit reference point).
|
|
|
|
VECTOR2I m_cursor;
|
2019-08-09 22:45:44 +00:00
|
|
|
VECTOR2I m_anchorPos;
|
2019-04-29 20:38:05 +00:00
|
|
|
};
|
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
#endif //KICAD_LIB_MOVE_TOOL_H
|