KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcad_pcb_component.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) 2007, 2008 Lubo Racko <[email protected]>
5 * Copyright (C) 2007, 2008, 2012-2013 Alexander Lunev <[email protected]>
6 * Copyright (C) 2012-2023 KiCad Developers, see AUTHORS.TXT for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, you may find one here:
20 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
21 * or you may search the http://www.gnu.org website for the version 2 license,
22 * or you may write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
24 */
25
26#ifndef PCB_COMPONENT_H_
27#define PCB_COMPONENT_H_
28
31#include <pcad/pcad_callbacks.h>
32
33#include <kiid.h>
34#include <layer_ids.h>
35#include <wx/object.h>
36
37class BOARD;
38class FOOTPRINT;
39class wxString;
40class wxRealPoint;
41
42namespace PCAD2KICAD {
43
44// basic parent class for PCB objects
45class PCAD_PCB_COMPONENT : public wxObject
46{
47public:
48 PCAD_PCB_COMPONENT( PCAD_CALLBACKS* aCallbacks, BOARD* aBoard );
50
51 virtual void SetPosOffset( int aX_offs, int aY_offs );
52 virtual void Flip();
53 virtual void AddToBoard( FOOTPRINT* aFootprint = nullptr ) = 0;
54
56
57 int GetNetCode( const wxString& aNetName ) const
58 {
59 return m_callbacks->GetNetCode( aNetName );
60 }
61
62public:
70 TTEXTVALUE m_Name; // name has also private positions, rotations and so on....
71 wxString m_Net;
73 wxString m_CompRef; // internal usage for XL parsing
74 wxString m_PatGraphRefName; // internal usage for XL parsing
75
76protected:
79};
80
81} // namespace PCAD2KICAD
82
83#endif // PCB_COMPONENT_H_
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:281
Definition: kiid.h:49
virtual int GetNetCode(const wxString &netName) const =0
virtual PCB_LAYER_ID GetKiCadLayer(int aPCadLayer) const =0
virtual void SetPosOffset(int aX_offs, int aY_offs)
PCB_LAYER_ID GetKiCadLayer() const
virtual void AddToBoard(FOOTPRINT *aFootprint=nullptr)=0
int GetNetCode(const wxString &aNetName) const
PCB_LAYER_ID
A quick note on layer IDs:
Definition: layer_ids.h:60