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, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#pragma once
26
27#include <tools/sch_tool_base.h>
28
29
30class SCH_PIN;
31class SCH_SHAPE;
33
34
35class SYMBOL_EDITOR_EDIT_TOOL : public SCH_TOOL_BASE<SYMBOL_EDIT_FRAME>
36{
37public:
40
41 static const std::vector<KICAD_T> SwappableItems;
42
44 bool Init() override;
45
46 int Rotate( const TOOL_EVENT& aEvent );
47 int Mirror( const TOOL_EVENT& aEvent );
48 int Swap( const TOOL_EVENT& aEvent );
49
50 int Duplicate( const TOOL_EVENT& aEvent );
51
52 int Properties( const TOOL_EVENT& aEvent );
53 int PinTable( const TOOL_EVENT& aEvent );
54 int ConvertStackedPins( const TOOL_EVENT& aEvent );
55 int ExplodeStackedPin( const TOOL_EVENT& aEvent );
56 int UpdateSymbolFields( const TOOL_EVENT& aEvent );
57
58 int Undo( const TOOL_EVENT& aEvent );
59 int Redo( const TOOL_EVENT& aEvent );
60 int Cut( const TOOL_EVENT& aEvent );
61 int Copy( const TOOL_EVENT& aEvent );
62 int CopyAsText( const TOOL_EVENT& aEvent );
63 int Paste( const TOOL_EVENT& aEvent );
64
68 int DoDelete( const TOOL_EVENT& aEvent );
69
70private:
71 void editShapeProperties( SCH_SHAPE* aShape );
72 void editTextProperties( SCH_ITEM* aItem );
73 void editTextBoxProperties( SCH_ITEM* aItem );
74 void editFieldProperties( SCH_FIELD* aField );
76
78 void setTransitions() override;
79};
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:167
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)
~SYMBOL_EDITOR_EDIT_TOOL()=default
int ConvertStackedPins(const TOOL_EVENT &aEvent)
void editSymbolProperties()
Set up handlers for various events.
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:171