KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_edit_tool.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2019 CERN
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21#pragma once
22
23#include <tools/sch_tool_base.h>
24#include <sch_base_frame.h>
25
26
27class SCH_EDIT_TOOL : public SCH_TOOL_BASE<SCH_EDIT_FRAME>
28{
29public:
31 ~SCH_EDIT_TOOL() = default;
32
33 static const std::vector<KICAD_T> RotatableItems;
34 static const std::vector<KICAD_T> SwappableItems;
35
37 bool Init() override;
38
39 int Rotate( const TOOL_EVENT& aEvent );
40 int Mirror( const TOOL_EVENT& aEvent );
41 int Swap( const TOOL_EVENT& aEvent );
42 int SwapPins( const TOOL_EVENT& aEvent );
43 int SwapPinLabels( const TOOL_EVENT& aEvent );
44 int SwapUnitLabels( const TOOL_EVENT& aEvent );
45
46 int RepeatDrawItem( const TOOL_EVENT& aEvent );
47
48 int Properties( const TOOL_EVENT& aEvent );
49 int EditField( const TOOL_EVENT& aEvent );
50 int AutoplaceFields( const TOOL_EVENT& aEvent );
51 int ChangeSymbols( const TOOL_EVENT& aEvent );
52 int CycleBodyStyle( const TOOL_EVENT& aEvent );
53 int EditPageNumber( const TOOL_EVENT& aEvent );
54
65 int ChangeTextType( const TOOL_EVENT& aEvent );
66
67 int JustifyText( const TOOL_EVENT& aEvent );
68
69 int CleanupSheetPins( const TOOL_EVENT& aEvent );
70 int GlobalEdit( const TOOL_EVENT& aEvent );
71
73 int ToggleLock( const TOOL_EVENT& aEvent );
74 int Lock( const TOOL_EVENT& aEvent );
75 int Unlock( const TOOL_EVENT& aEvent );
76
78 int DoDelete( const TOOL_EVENT& aEvent );
79
81 int DdAppendFile( const TOOL_EVENT& aEvent );
82 int DdAddImage( const TOOL_EVENT& aEvent );
83
86 int SetAttribute( const TOOL_EVENT& aEvent );
87
88 void EditProperties( EDA_ITEM* aItem );
89
90 wxString FixERCErrorMenuText( const std::shared_ptr<RC_ITEM>& aERCItem );
91 void FixERCError( const std::shared_ptr<RC_ITEM>& aERCItem );
92
93private:
94 void editFieldText( SCH_FIELD* aField );
95
96 void collectUnits( const SCH_SELECTION& aSelection,
97 std::set<std::pair<SCH_SYMBOL*, SCH_SCREEN*>>& aCollectedUnits );
98
101
102 int modifyLockSelected( MODIFY_MODE aMode );
103
105 void setTransitions() override;
106};
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:96
wxString FixERCErrorMenuText(const std::shared_ptr< RC_ITEM > &aERCItem)
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
static const std::vector< KICAD_T > RotatableItems
int SwapUnitLabels(const TOOL_EVENT &aEvent)
int EditField(const TOOL_EVENT &aEvent)
int EditPageNumber(const TOOL_EVENT &aEvent)
int DoDelete(const TOOL_EVENT &aEvent)
bool Init() override
Init() is called once upon a registration of the tool.
int CleanupSheetPins(const TOOL_EVENT &aEvent)
int Unlock(const TOOL_EVENT &aEvent)
Delete the selected items, or the item under the cursor.
void EditProperties(EDA_ITEM *aItem)
void editFieldText(SCH_FIELD *aField)
int SwapPins(const TOOL_EVENT &aEvent)
int Mirror(const TOOL_EVENT &aEvent)
int GlobalEdit(const TOOL_EVENT &aEvent)
Lock/unlock selected items.
int SetAttribute(const TOOL_EVENT &aEvent)
Modify Attributes (DNP, Exclude, etc.) All attributes are set to true unless all symbols already have...
int Properties(const TOOL_EVENT &aEvent)
int Rotate(const TOOL_EVENT &aEvent)
void collectUnits(const SCH_SELECTION &aSelection, std::set< std::pair< SCH_SYMBOL *, SCH_SCREEN * > > &aCollectedUnits)
How to modify a property for selected items.
int Lock(const TOOL_EVENT &aEvent)
int DdAppendFile(const TOOL_EVENT &aEvent)
Drag and drop.
int JustifyText(const TOOL_EVENT &aEvent)
int modifyLockSelected(MODIFY_MODE aMode)
Set up handlers for various events.
static const std::vector< KICAD_T > SwappableItems
void FixERCError(const std::shared_ptr< RC_ITEM > &aERCItem)
int SwapPinLabels(const TOOL_EVENT &aEvent)
int AutoplaceFields(const TOOL_EVENT &aEvent)
~SCH_EDIT_TOOL()=default
int CycleBodyStyle(const TOOL_EVENT &aEvent)
int Swap(const TOOL_EVENT &aEvent)
int ChangeSymbols(const TOOL_EVENT &aEvent)
int ChangeTextType(const TOOL_EVENT &aEvent)
Change a text type to another one.
int ToggleLock(const TOOL_EVENT &aEvent)
int DdAddImage(const TOOL_EVENT &aEvent)
int RepeatDrawItem(const TOOL_EVENT &aEvent)
SCH_TOOL_BASE(const std::string &aName)
Generic, UI-independent tool event.
Definition tool_event.h:167