KiCad PCB EDA Suite
Loading...
Searching...
No Matches
sch_tool_utils.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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#pragma once
25
26#include <optional>
27#include <set>
28
29#include <sch_item.h>
30#include <tool/selection.h>
31
32class SCHEMATIC;
33class SCH_REFERENCE;
34class SCH_SYMBOL;
35class SCH_PIN;
36class SCHEMATIC;
37class LIB_ID;
38
39wxString GetSchItemAsText( const SCH_ITEM& aItem );
40
41wxString GetSelectedItemsAsText( const SELECTION& aSel );
42
46std::set<int> GetUnplacedUnitsForSymbol( const SCH_SYMBOL& aSym );
47
53std::optional<SCH_REFERENCE> FindSymbolByRefAndUnit( const SCHEMATIC& aSheet, const wxString& aRef,
54 int aUnit );
55
64std::vector<SCH_SYMBOL*> GetSameSymbolMultiUnitSelection( const SELECTION& aSel );
65
74bool SwapPinGeometry( SCH_PIN* aFirst, SCH_PIN* aSecond );
75
85bool SymbolHasSheetInstances( const SCH_SYMBOL& aSymbol, const wxString& aCurrentProject,
86 std::set<wxString>* aSheetPaths = nullptr, std::set<wxString>* aProjectNames = nullptr );
87
96std::set<wxString> GetSheetNamesFromPaths( const std::set<wxString>& aSheetPaths, const SCHEMATIC& aSchematic );
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:49
Holds all the data relating to one schematic.
Definition schematic.h:88
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition sch_item.h:167
A helper to define a symbol's reference designator in a schematic.
Schematic symbol object.
Definition sch_symbol.h:75
std::optional< SCH_REFERENCE > FindSymbolByRefAndUnit(const SCHEMATIC &aSheet, const wxString &aRef, int aUnit)
Find a symbol by reference and unit.
std::set< wxString > GetSheetNamesFromPaths(const std::set< wxString > &aSheetPaths, const SCHEMATIC &aSchematic)
Get human-readable sheet names from a set of sheet paths, e.g.
bool SwapPinGeometry(SCH_PIN *aFirst, SCH_PIN *aSecond)
Swap the positions/lengths/etc.
std::set< int > GetUnplacedUnitsForSymbol(const SCH_SYMBOL &aSym)
Get a list of unplaced (i.e.
bool SymbolHasSheetInstances(const SCH_SYMBOL &aSymbol, const wxString &aCurrentProject, std::set< wxString > *aSheetPaths=nullptr, std::set< wxString > *aProjectNames=nullptr)
Returns true when the given symbol has instances, e.g.
wxString GetSelectedItemsAsText(const SELECTION &aSel)
std::vector< SCH_SYMBOL * > GetSameSymbolMultiUnitSelection(const SELECTION &aSel)
Validates and gathers a selection containing multiple symbol units that all belong to the same refere...
wxString GetSchItemAsText(const SCH_ITEM &aItem)