KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_editor_control.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
26#ifndef SCH_EDITOR_CONTROL_H
27#define SCH_EDITOR_CONTROL_H
28
29#include <sch_base_frame.h>
30#include <tools/sch_tool_base.h>
31#include <status_popup.h>
32
33class SCH_EDIT_FRAME;
34
38class SCH_EDITOR_CONTROL : public wxEvtHandler, public SCH_TOOL_BASE<SCH_EDIT_FRAME>
39{
40public:
42 SCH_TOOL_BASE<SCH_EDIT_FRAME>( "eeschema.EditorControl" ),
43 m_probingPcbToSch( false ),
44 m_pickerItem( nullptr ),
47 { }
48
50
51 int New( const TOOL_EVENT& aEvent );
52 int Open( const TOOL_EVENT& aEvent );
53 int Save( const TOOL_EVENT& aEvent );
54 int SaveAs( const TOOL_EVENT& aEvent );
55
57 int SaveCurrSheetCopyAs( const TOOL_EVENT& aEvent );
58
59 int Revert( const TOOL_EVENT& aEvent );
60
61 int ShowSchematicSetup( const TOOL_EVENT& aEvent );
62 int PageSetup( const TOOL_EVENT& aEvent );
63 int Print( const TOOL_EVENT& aEvent );
64 int Plot( const TOOL_EVENT& aEvent );
65 int Quit( const TOOL_EVENT& aEvent );
66
74 int RescueSymbols( const TOOL_EVENT& aEvent );
75 int RemapSymbols( const TOOL_EVENT& aEvent );
76
77 bool RescueLegacyProject( bool aRunningOnDemand );
78 bool RescueSymbolLibTableProject( bool aRunningOnDemand );
79
81 int CrossProbeToPcb( const TOOL_EVENT& aEvent );
82
84 int ExplicitCrossProbeToPcb( const TOOL_EVENT& aEvent );
85
86 int ExportSymbolsToLibrary( const TOOL_EVENT& aEvent );
87
88 int SimProbe( const TOOL_EVENT& aEvent );
89 int SimTune( const TOOL_EVENT& aEvent );
90
92 int HighlightNet( const TOOL_EVENT& aEvent );
93
95 int HighlightNetChain( const TOOL_EVENT& aEvent );
96 int RemoveFromNetChain( const TOOL_EVENT& aEvent );
97
99 int ClearHighlight( const TOOL_EVENT& aEvent );
100
102 int UpdateNetHighlighting( const TOOL_EVENT& aEvent );
103
105 int HighlightNetCursor( const TOOL_EVENT& aEvent );
106
108 int ReplaceTerminalPin( const TOOL_EVENT& aEvent );
109 int NameNetChain( const TOOL_EVENT& aEvent );
110 int CreateNetChainBetweenPins( const TOOL_EVENT& aEvent );
111
112 int ShowCreateNetChain( const TOOL_EVENT& aEvent );
113
114 int AssignNetclass( const TOOL_EVENT& aEvent );
115 int FindNetInInspector( const TOOL_EVENT& aEvent );
116
117 int Undo( const TOOL_EVENT& aEvent );
118 int Redo( const TOOL_EVENT& aEvent );
119
121 int Cut( const TOOL_EVENT& aEvent );
122 int Copy( const TOOL_EVENT& aEvent );
123 int CopyAsText( const TOOL_EVENT& aEvent );
124 int Paste( const TOOL_EVENT& aEvent );
125 int Duplicate( const TOOL_EVENT& aEvent );
126
127 int EditWithSymbolEditor( const TOOL_EVENT& aEvent );
128 int ShowCvpcb( const TOOL_EVENT& aEvent );
129 int Annotate( const TOOL_EVENT& aEvent );
130 int IncrementAnnotations( const TOOL_EVENT& aEvent );
131 int EditSymbolFields( const TOOL_EVENT& aEvent );
132 int EditSymbolLibraryLinks( const TOOL_EVENT& aEvent );
133 int ShowPcbNew( const TOOL_EVENT& aEvent );
134 int UpdatePCB( const TOOL_EVENT& aEvent );
135 int UpdateFromPCB( const TOOL_EVENT& aEvent );
136 int ImportFPAssignments( const TOOL_EVENT& aEvent );
137 int ImportNonKicadSchematic( const TOOL_EVENT& aEvent );
138 int ExportNetlist( const TOOL_EVENT& aEvent );
139 int GenerateBOM( const TOOL_EVENT& aEvent );
140 int GenerateBOMLegacy( const TOOL_EVENT& aEvent );
141 int DrawSheetOnClipboard( const TOOL_EVENT& aEvent );
142
143 int ShowSearch( const TOOL_EVENT& aEvent );
144 int ShowHierarchy( const TOOL_EVENT& aEvent );
145 int ShowNetNavigator( const TOOL_EVENT& aEvent );
146 int ToggleProperties( const TOOL_EVENT& aEvent );
147 int ToggleLibraryTree( const TOOL_EVENT& aEvent );
148 int ToggleRemoteSymbolPanel( const TOOL_EVENT& aEvent );
149
150 int ToggleHiddenPins( const TOOL_EVENT& aEvent );
151 int ToggleHiddenFields( const TOOL_EVENT& aEvent );
152 int ToggleDirectiveLabels( const TOOL_EVENT& aEvent );
153 int ToggleERCWarnings( const TOOL_EVENT& aEvent );
154 int ToggleERCErrors( const TOOL_EVENT& aEvent );
155 int ToggleERCExclusions( const TOOL_EVENT& aEvent );
156 int MarkSimExclusions( const TOOL_EVENT& aEvent );
157 int ToggleOPVoltages( const TOOL_EVENT& aEvent );
158 int ToggleOPCurrents( const TOOL_EVENT& aEvent );
159 int TogglePinAltIcons( const TOOL_EVENT& aEvent );
160 int ChangeLineMode( const TOOL_EVENT& aEvent );
161 int NextLineMode( const TOOL_EVENT& aEvent );
162 int OnAngleSnapModeChanged( const TOOL_EVENT& aEvent );
163 int ToggleAnnotateAuto( const TOOL_EVENT& aEvent );
164
165 int GridFeedback( const TOOL_EVENT& aEvent );
166
167 void AssignFootprints( const std::string& aChangedSetOfReferences );
168
180 SCH_ITEM* FindSymbolAndItem( const wxString* aPath, const wxString* aReference,
181 bool aSearchHierarchy, SCH_SEARCH_T aSearchType,
182 const wxString& aSearchText );
183
184 void SetHighlightBusMembers( bool aHighlightBusMembers )
185 {
186 m_highlightBusMembers = aHighlightBusMembers;
187 }
188
190
191 int PlaceLinkedDesignBlock( const TOOL_EVENT& aEvent );
192 int SaveToLinkedDesignBlock( const TOOL_EVENT& aEvent );
193
194 int AddVariant( const TOOL_EVENT& aEvent );
195 int RemoveVariant( const TOOL_EVENT& aEvent );
196 int EditVariantDescription( const TOOL_EVENT& aEvent );
197
198private:
200 bool doCopy( bool aUseDuplicateClipboard = false );
201
202 bool rescueProject( RESCUER& aRescuer, bool aRunningOnDemand );
203
204 bool searchSupplementaryClipboard( const wxString& aSheetFilename, SCH_SCREEN** aScreen );
205
206 void doCrossProbeSchToPcb( const TOOL_EVENT& aEvent, bool aForce );
207
208 void updatePastedSymbol( SCH_SYMBOL* aSymbol, const SCH_SHEET_PATH& aPastePath,
209 const KIID_PATH& aClipPath, bool aForceKeepAnnotations );
210
211 SCH_SHEET_PATH updatePastedSheet( SCH_SHEET* aSheet, const SCH_SHEET_PATH& aPastePath,
212 const KIID_PATH& aClipPath, bool aForceKeepAnnotations,
213 SCH_SHEET_LIST* aPastedSheets,
214 std::map<SCH_SHEET_PATH, SCH_REFERENCE_LIST>& aPastedSymbols );
215
216 void setPastedSymbolInstances( const SCH_SCREEN* aScreen );
217
227
248 bool processCmpToFootprintLinkFile( const wxString& aFullFilename, bool aForceVisibilityState,
249 bool aVisibilityState );
250
252 void setTransitions() override;
253
254private:
255 bool m_probingPcbToSch; // Recursion guard for PCB to schematic cross-probing
256 EDA_ITEM* m_pickerItem; // Current item for picker highlighting.
257
258 std::string m_duplicateClipboard; // Temporary storage for Duplicate action
260
262
263 // A map of sheet filename --> screens for the clipboard contents. We use these to hook up
264 // cut/paste operations for unsaved sheet content.
265 std::map<wxString, SCH_SCREEN*> m_supplementaryClipboard;
266
267 // A map of KIID_PATH --> symbol instances for the clipboard contents.
268 std::map<KIID_PATH, SCH_SYMBOL_INSTANCE> m_clipboardSymbolInstances;
269
270 std::set<SCH_SYMBOL*> m_pastedSymbols;
271};
272
273
274#endif // SCH_EDITOR_CONTROL_H
A base class for most all the KiCad significant classes used in schematics and boards.
Definition eda_item.h:100
int PageSetup(const TOOL_EVENT &aEvent)
bool RescueLegacyProject(bool aRunningOnDemand)
int ToggleDirectiveLabels(const TOOL_EVENT &aEvent)
int SaveAs(const TOOL_EVENT &aEvent)
int MarkSimExclusions(const TOOL_EVENT &aEvent)
int Annotate(const TOOL_EVENT &aEvent)
int ShowSchematicSetup(const TOOL_EVENT &aEvent)
int HighlightNet(const TOOL_EVENT &aEvent)
Highlight net chain under the cursor.
int ClearHighlight(const TOOL_EVENT &aEvent)
Update net highlighting after an edit.
int FindNetInInspector(const TOOL_EVENT &aEvent)
int EditSymbolFields(const TOOL_EVENT &aEvent)
int GenerateBOMLegacy(const TOOL_EVENT &aEvent)
int RemoveFromNetChain(const TOOL_EVENT &aEvent)
Remove any net highlighting.
int HighlightNetCursor(const TOOL_EVENT &aEvent)
Replace one of a net chain's terminal pins.
void AssignFootprints(const std::string &aChangedSetOfReferences)
int CopyAsText(const TOOL_EVENT &aEvent)
int AddVariant(const TOOL_EVENT &aEvent)
int ImportFPAssignments(const TOOL_EVENT &aEvent)
int ChangeLineMode(const TOOL_EVENT &aEvent)
void doCrossProbeSchToPcb(const TOOL_EVENT &aEvent, bool aForce)
int ExportSymbolsToLibrary(const TOOL_EVENT &aEvent)
int SaveCurrSheetCopyAs(const TOOL_EVENT &aEvent)
Saves the currently-open schematic sheet to an other name.
bool rescueProject(RESCUER &aRescuer, bool aRunningOnDemand)
int CrossProbeToPcb(const TOOL_EVENT &aEvent)
Equivalent to the above, but initiated by the user.
void SetHighlightBusMembers(bool aHighlightBusMembers)
bool GetHighlightBusMembers() const
int PlaceLinkedDesignBlock(const TOOL_EVENT &aEvent)
int ToggleRemoteSymbolPanel(const TOOL_EVENT &aEvent)
int Quit(const TOOL_EVENT &aEvent)
int RemapSymbols(const TOOL_EVENT &aEvent)
int DrawSheetOnClipboard(const TOOL_EVENT &aEvent)
SCH_SHEET_PATH updatePastedSheet(SCH_SHEET *aSheet, const SCH_SHEET_PATH &aPastePath, const KIID_PATH &aClipPath, bool aForceKeepAnnotations, SCH_SHEET_LIST *aPastedSheets, std::map< SCH_SHEET_PATH, SCH_REFERENCE_LIST > &aPastedSymbols)
int TogglePinAltIcons(const TOOL_EVENT &aEvent)
int RescueSymbols(const TOOL_EVENT &aEvent)
Perform rescue operations to recover old projects from before certain changes were made.
int AssignNetclass(const TOOL_EVENT &aEvent)
std::string m_duplicateClipboard
int ExportNetlist(const TOOL_EVENT &aEvent)
int Open(const TOOL_EVENT &aEvent)
int Paste(const TOOL_EVENT &aEvent)
int ToggleOPVoltages(const TOOL_EVENT &aEvent)
int Copy(const TOOL_EVENT &aEvent)
int SaveToLinkedDesignBlock(const TOOL_EVENT &aEvent)
int ToggleERCWarnings(const TOOL_EVENT &aEvent)
int NextLineMode(const TOOL_EVENT &aEvent)
SCH_ITEM * FindSymbolAndItem(const wxString *aPath, const wxString *aReference, bool aSearchHierarchy, SCH_SEARCH_T aSearchType, const wxString &aSearchText)
Find a symbol in the schematic and an item in this symbol and select it.
int Redo(const TOOL_EVENT &aEvent)
Clipboard support.
int UpdatePCB(const TOOL_EVENT &aEvent)
int RemoveVariant(const TOOL_EVENT &aEvent)
int UpdateFromPCB(const TOOL_EVENT &aEvent)
int ToggleAnnotateAuto(const TOOL_EVENT &aEvent)
int EditVariantDescription(const TOOL_EVENT &aEvent)
int ToggleHiddenPins(const TOOL_EVENT &aEvent)
int Duplicate(const TOOL_EVENT &aEvent)
int IncrementAnnotations(const TOOL_EVENT &aEvent)
bool searchSupplementaryClipboard(const wxString &aSheetFilename, SCH_SCREEN **aScreen)
int GridFeedback(const TOOL_EVENT &aEvent)
int ShowSearch(const TOOL_EVENT &aEvent)
int EditWithSymbolEditor(const TOOL_EVENT &aEvent)
int ReplaceTerminalPin(const TOOL_EVENT &aEvent)
int SimTune(const TOOL_EVENT &aEvent)
Highlight net under the cursor.
int EditSymbolLibraryLinks(const TOOL_EVENT &aEvent)
int New(const TOOL_EVENT &aEvent)
int ImportNonKicadSchematic(const TOOL_EVENT &aEvent)
int ShowCreateNetChain(const TOOL_EVENT &aEvent)
std::map< wxString, SCH_SCREEN * > m_supplementaryClipboard
int ExplicitCrossProbeToPcb(const TOOL_EVENT &aEvent)
int ToggleOPCurrents(const TOOL_EVENT &aEvent)
int ShowPcbNew(const TOOL_EVENT &aEvent)
int UpdateNetHighlighting(const TOOL_EVENT &aEvent)
Launch a tool to highlight nets.
int ToggleERCErrors(const TOOL_EVENT &aEvent)
int ShowHierarchy(const TOOL_EVENT &aEvent)
int OnAngleSnapModeChanged(const TOOL_EVENT &aEvent)
void setTransitions() override
This method is meant to be overridden in order to specify handlers for events.
int ShowNetNavigator(const TOOL_EVENT &aEvent)
int NameNetChain(const TOOL_EVENT &aEvent)
int SimProbe(const TOOL_EVENT &aEvent)
void updatePastedSymbol(SCH_SYMBOL *aSymbol, const SCH_SHEET_PATH &aPastePath, const KIID_PATH &aClipPath, bool aForceKeepAnnotations)
int ShowCvpcb(const TOOL_EVENT &aEvent)
int HighlightNetChain(const TOOL_EVENT &aEvent)
int ToggleLibraryTree(const TOOL_EVENT &aEvent)
std::set< SCH_SYMBOL * > m_pastedSymbols
void prunePastedSymbolInstances()
Remove all pasted symbol instances that do not belong to the current project.
int Cut(const TOOL_EVENT &aEvent)
int ToggleProperties(const TOOL_EVENT &aEvent)
std::map< KIID_PATH, SCH_SYMBOL_INSTANCE > m_clipboardSymbolInstances
int Save(const TOOL_EVENT &aEvent)
bool RescueSymbolLibTableProject(bool aRunningOnDemand)
Notifies pcbnew about the selected item.
bool doCopy(bool aUseDuplicateClipboard=false)
< copy selection to clipboard or to m_duplicateClipboard
int Undo(const TOOL_EVENT &aEvent)
int ToggleERCExclusions(const TOOL_EVENT &aEvent)
int Plot(const TOOL_EVENT &aEvent)
int CreateNetChainBetweenPins(const TOOL_EVENT &aEvent)
int Print(const TOOL_EVENT &aEvent)
bool processCmpToFootprintLinkFile(const wxString &aFullFilename, bool aForceVisibilityState, bool aVisibilityState)
Read the footprint info from each line in the stuff file by reference designator.
int Revert(const TOOL_EVENT &aEvent)
int GenerateBOM(const TOOL_EVENT &aEvent)
void setPastedSymbolInstances(const SCH_SCREEN *aScreen)
int ToggleHiddenFields(const TOOL_EVENT &aEvent)
Schematic editor (Eeschema) main window.
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:168
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition sch_sheet.h:48
Schematic symbol object.
Definition sch_symbol.h:76
SCH_TOOL_BASE(const std::string &aName)
Generic, UI-independent tool event.
Definition tool_event.h:171
SCH_SEARCH_T
Schematic search type used by the socket link with Pcbnew.