2019-04-22 00:45:34 +01:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2019-08-14 09:28:07 +01:00
|
|
|
* Copyright (C) 2019 CERN
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2019-04-22 00:45:34 +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 KICAD_SCH_EDIT_TOOL_H
|
|
|
|
#define KICAD_SCH_EDIT_TOOL_H
|
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
#include <tools/sch_tool_base.h>
|
2019-04-23 14:06:37 +01:00
|
|
|
#include <sch_base_frame.h>
|
|
|
|
|
|
|
|
|
|
|
|
class SCH_EDIT_FRAME;
|
2025-03-12 14:41:25 +00:00
|
|
|
class SCH_SELECTION_TOOL;
|
2019-04-22 00:45:34 +01:00
|
|
|
|
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
class SCH_EDIT_TOOL : public SCH_TOOL_BASE<SCH_EDIT_FRAME>
|
2019-04-22 00:45:34 +01:00
|
|
|
{
|
2019-04-23 14:06:37 +01:00
|
|
|
public:
|
|
|
|
SCH_EDIT_TOOL();
|
2019-06-17 22:11:41 +01:00
|
|
|
~SCH_EDIT_TOOL() override { }
|
2019-04-23 14:06:37 +01:00
|
|
|
|
2022-12-27 13:22:58 -05:00
|
|
|
static const std::vector<KICAD_T> RotatableItems;
|
|
|
|
|
2019-04-23 14:06:37 +01:00
|
|
|
/// @copydoc TOOL_INTERACTIVE::Init()
|
|
|
|
bool Init() override;
|
|
|
|
|
2019-04-23 18:40:29 +01:00
|
|
|
int Rotate( const TOOL_EVENT& aEvent );
|
2019-04-26 17:34:04 +01:00
|
|
|
int Mirror( const TOOL_EVENT& aEvent );
|
2022-08-30 09:01:48 -04:00
|
|
|
int Swap( const TOOL_EVENT& aEvent );
|
2019-04-23 18:40:29 +01:00
|
|
|
|
2019-04-26 23:23:12 +01:00
|
|
|
int RepeatDrawItem( const TOOL_EVENT& aEvent );
|
2019-04-26 19:37:47 +01:00
|
|
|
|
2019-04-28 00:50:35 +01:00
|
|
|
int Properties( const TOOL_EVENT& aEvent );
|
|
|
|
int EditField( const TOOL_EVENT& aEvent );
|
2019-04-29 00:34:43 +01:00
|
|
|
int AutoplaceFields( const TOOL_EVENT& aEvent );
|
2020-08-13 13:51:26 -04:00
|
|
|
int ChangeSymbols( const TOOL_EVENT& aEvent );
|
2024-01-26 16:16:13 +00:00
|
|
|
int ChangeBodyStyle( const TOOL_EVENT& aEvent );
|
2020-10-18 16:30:37 -04:00
|
|
|
int EditPageNumber( const TOOL_EVENT& aEvent );
|
2019-04-28 00:50:35 +01:00
|
|
|
|
2024-10-13 13:53:15 +08:00
|
|
|
/**
|
|
|
|
* Increment/decrement something about an item.
|
|
|
|
*/
|
|
|
|
int Increment( const TOOL_EVENT& aEvent );
|
|
|
|
|
2020-05-27 12:13:57 +01:00
|
|
|
/**
|
|
|
|
* Change a text type to another one.
|
|
|
|
*
|
|
|
|
* The new text, label, hierarchical label, or global label is created from the old text
|
|
|
|
* and the old text object is deleted.
|
|
|
|
*
|
|
|
|
* A tricky case is when the 'old" text is being edited (i.e. moving) because we must
|
|
|
|
* create a new text, and prepare the undo/redo command data for this change and the
|
|
|
|
* current move/edit command
|
|
|
|
*/
|
2019-04-29 18:50:46 +01:00
|
|
|
int ChangeTextType( const TOOL_EVENT& aEvent );
|
|
|
|
|
2023-11-21 23:43:48 +00:00
|
|
|
int JustifyText( const TOOL_EVENT& aEvent );
|
|
|
|
|
2019-04-30 14:54:32 +01:00
|
|
|
int BreakWire( const TOOL_EVENT& aEvent );
|
|
|
|
|
2019-05-01 23:14:21 +01:00
|
|
|
int CleanupSheetPins( const TOOL_EVENT& aEvent );
|
2019-06-30 23:06:34 +01:00
|
|
|
int GlobalEdit( const TOOL_EVENT& aEvent );
|
2019-05-01 23:14:21 +01:00
|
|
|
|
2021-01-26 10:23:37 -05:00
|
|
|
///< Delete the selected items, or the item under the cursor.
|
2019-04-28 17:36:31 +01:00
|
|
|
int DoDelete( const TOOL_EVENT& aEvent );
|
|
|
|
|
2021-01-26 10:23:37 -05:00
|
|
|
///< Run the deletion tool.
|
2023-10-10 15:43:45 +01:00
|
|
|
int InteractiveDelete( const TOOL_EVENT& aEvent );
|
2019-04-23 14:06:37 +01:00
|
|
|
|
2022-09-14 22:28:09 +00:00
|
|
|
/// Drag and drop
|
|
|
|
int DdAppendFile( const TOOL_EVENT& aEvent );
|
|
|
|
|
2025-02-11 09:23:35 -08:00
|
|
|
/// Modify Attributes (DNP, Exclude, etc.) All attributes are
|
|
|
|
/// set to true unless all symbols already have the attribute set to true.
|
2023-05-04 11:50:39 -07:00
|
|
|
int SetAttribute( const TOOL_EVENT& aEvent );
|
|
|
|
|
2019-04-23 14:06:37 +01:00
|
|
|
private:
|
2020-03-06 20:02:58 +00:00
|
|
|
void editFieldText( SCH_FIELD* aField );
|
2019-06-19 11:31:21 +01:00
|
|
|
|
2025-03-12 14:41:25 +00:00
|
|
|
void collectUnits( const SCH_SELECTION& aSelection,
|
2024-12-21 12:16:16 +00:00
|
|
|
std::set<std::pair<SCH_SYMBOL*, SCH_SCREEN*>>& aCollectedUnits );
|
|
|
|
|
2021-01-26 10:23:37 -05:00
|
|
|
///< Set up handlers for various events.
|
2019-04-23 14:06:37 +01:00
|
|
|
void setTransitions() override;
|
2019-06-17 22:11:41 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
EDA_ITEM* m_pickerItem;
|
2019-04-22 00:45:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //KICAD_SCH_EDIT_TOOL_H
|