KiCad PCB EDA Suite
Loading...
Searching...
No Matches
symbol_editor_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
25
26class SCH_PIN;
27class SCH_SHAPE;
29
30
31class SYMBOL_EDITOR_EDIT_TOOL : public SCH_TOOL_BASE<SYMBOL_EDIT_FRAME>
32{
33public:
36
37 static const std::vector<KICAD_T> SwappableItems;
38
40 bool Init() override;
41
42 int Rotate( const TOOL_EVENT& aEvent );
43 int Mirror( const TOOL_EVENT& aEvent );
44 int Swap( const TOOL_EVENT& aEvent );
45
46 int Duplicate( const TOOL_EVENT& aEvent );
47
48 int Properties( const TOOL_EVENT& aEvent );
49 int PinTable( const TOOL_EVENT& aEvent );
50 int ConvertStackedPins( const TOOL_EVENT& aEvent );
51 int ExplodeStackedPin( const TOOL_EVENT& aEvent );
52 int UpdateSymbolFields( const TOOL_EVENT& aEvent );
53
54 int Undo( const TOOL_EVENT& aEvent );
55 int Redo( const TOOL_EVENT& aEvent );
56 int Cut( const TOOL_EVENT& aEvent );
57 int Copy( const TOOL_EVENT& aEvent );
58 int CopyAsText( const TOOL_EVENT& aEvent );
59 int Paste( const TOOL_EVENT& aEvent );
60
64 int DoDelete( const TOOL_EVENT& aEvent );
65
66private:
67 void editShapeProperties( SCH_SHAPE* aShape );
68 void editTextProperties( SCH_ITEM* aItem );
69 void editTextBoxProperties( SCH_ITEM* aItem );
70 void editFieldProperties( SCH_FIELD* aField );
72 void editSymbolPropertiesFromLibrary( const LIB_ID& aLibId );
73
75 void setTransitions() override;
76};
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:45
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:162
SCH_TOOL_BASE(const std::string &aName)
int Undo(const TOOL_EVENT &aEvent)
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
void editTextBoxProperties(SCH_ITEM *aItem)
int PinTable(const TOOL_EVENT &aEvent)
int Copy(const TOOL_EVENT &aEvent)
int CopyAsText(const TOOL_EVENT &aEvent)
int Paste(const TOOL_EVENT &aEvent)
int Cut(const TOOL_EVENT &aEvent)
bool Init() override
Init() is called once upon a registration of the tool.
int Redo(const TOOL_EVENT &aEvent)
void editTextProperties(SCH_ITEM *aItem)
int Swap(const TOOL_EVENT &aEvent)
void editFieldProperties(SCH_FIELD *aField)
void editShapeProperties(SCH_SHAPE *aShape)
int Duplicate(const TOOL_EVENT &aEvent)
int Mirror(const TOOL_EVENT &aEvent)
int Rotate(const TOOL_EVENT &aEvent)
int Properties(const TOOL_EVENT &aEvent)
int ExplodeStackedPin(const TOOL_EVENT &aEvent)
void editSymbolPropertiesFromLibrary(const LIB_ID &aLibId)
Set up handlers for various events.
~SYMBOL_EDITOR_EDIT_TOOL()=default
int ConvertStackedPins(const TOOL_EVENT &aEvent)
int UpdateSymbolFields(const TOOL_EVENT &aEvent)
int DoDelete(const TOOL_EVENT &aEvent)
Delete the selected items, or the item under the cursor.
static const std::vector< KICAD_T > SwappableItems
The symbol library editor main window.
Generic, UI-independent tool event.
Definition tool_event.h:167