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
|
2021-01-26 15:23:37 +00:00
|
|
|
* Copyright (C) 2019-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2019-04-29 20:38: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
|
|
|
|
*/
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
#ifndef SYMBOL_EDITOR_EDIT_TOOL_H
|
|
|
|
#define SYMBOL_EDITOR_EDIT_TOOL_H
|
2019-04-29 20:38:05 +00:00
|
|
|
|
2019-05-12 11:49:58 +00:00
|
|
|
#include <tools/ee_tool_base.h>
|
2019-04-29 20:38:05 +00:00
|
|
|
|
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
class SYMBOL_EDIT_FRAME;
|
2019-04-29 20:38:05 +00:00
|
|
|
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
class SYMBOL_EDITOR_EDIT_TOOL : public EE_TOOL_BASE<SYMBOL_EDIT_FRAME>
|
2019-04-29 20:38:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2020-12-12 03:13:52 +00:00
|
|
|
SYMBOL_EDITOR_EDIT_TOOL();
|
|
|
|
~SYMBOL_EDITOR_EDIT_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
|
|
|
int Rotate( const TOOL_EVENT& aEvent );
|
|
|
|
int Mirror( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
int Duplicate( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
int Properties( const TOOL_EVENT& aEvent );
|
2019-05-11 14:38:05 +00:00
|
|
|
int PinTable( const TOOL_EVENT& aEvent );
|
2022-09-14 22:11:37 +00:00
|
|
|
int SetUnitDisplayName( const TOOL_EVENT& aEvent );
|
2021-02-13 21:28:06 +00:00
|
|
|
int UpdateSymbolFields( const TOOL_EVENT& aEvent );
|
2019-05-08 18:56:03 +00:00
|
|
|
|
2019-05-14 19:21:10 +00:00
|
|
|
int Undo( const TOOL_EVENT& aEvent );
|
|
|
|
int Redo( const TOOL_EVENT& aEvent );
|
2019-05-08 18:56:03 +00:00
|
|
|
int Cut( const TOOL_EVENT& aEvent );
|
|
|
|
int Copy( const TOOL_EVENT& aEvent );
|
|
|
|
int Paste( const TOOL_EVENT& aEvent );
|
|
|
|
|
|
|
|
/**
|
2021-01-26 15:23:37 +00:00
|
|
|
* Delete the selected items, or the item under the cursor.
|
2019-05-08 18:56:03 +00:00
|
|
|
*/
|
|
|
|
int DoDelete( const TOOL_EVENT& aEvent );
|
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Run the deletion tool.
|
2023-10-10 14:43:45 +00:00
|
|
|
int InteractiveDelete( const TOOL_EVENT& aEvent );
|
2019-04-30 18:36:11 +00:00
|
|
|
|
2019-04-29 20:38:05 +00:00
|
|
|
private:
|
2022-06-16 12:23:35 +00:00
|
|
|
void editShapeProperties( LIB_SHAPE* aShape );
|
2019-05-08 18:56:03 +00:00
|
|
|
void editTextProperties( LIB_ITEM* aItem );
|
2022-01-25 22:33:37 +00:00
|
|
|
void editTextBoxProperties( LIB_ITEM* aItem );
|
2019-05-08 18:56:03 +00:00
|
|
|
void editFieldProperties( LIB_FIELD* aField );
|
2019-05-11 14:38:05 +00:00
|
|
|
void editSymbolProperties();
|
2022-05-14 22:33:43 +00:00
|
|
|
void handlePinDuplication(LIB_PIN* aOldPin, LIB_PIN* aNewPin, int &aSymbolLastPinNumber );
|
2019-05-08 18:56:03 +00:00
|
|
|
|
2021-01-26 15:23:37 +00:00
|
|
|
///< Set up handlers for various events.
|
2019-04-29 20:38:05 +00:00
|
|
|
void setTransitions() override;
|
2019-06-24 15:27:05 +00:00
|
|
|
|
|
|
|
EDA_ITEM* m_pickerItem;
|
2019-04-29 20:38:05 +00:00
|
|
|
};
|
|
|
|
|
2020-12-12 03:13:52 +00:00
|
|
|
#endif // SYMBOL_EDITOR_EDIT_TOOL_H
|