2012-01-14 19:50:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2020-12-31 14:46:40 +00:00
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2022-01-29 17:19:22 +00:00
|
|
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-01-14 19:50:32 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2020-11-11 23:05:59 +00:00
|
|
|
#ifndef PCB_TARGET_H
|
|
|
|
#define PCB_TARGET_H
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
#include <board_item.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class LINE_READER;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
class PCB_TARGET : public BOARD_ITEM
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-09-07 19:41:04 +00:00
|
|
|
PCB_TARGET( BOARD_ITEM* aParent );
|
2012-01-14 19:50:32 +00:00
|
|
|
|
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
|
2022-01-01 17:11:21 +00:00
|
|
|
PCB_TARGET( BOARD_ITEM* aParent, int aShape, PCB_LAYER_ID aLayer, const VECTOR2I& aPos,
|
|
|
|
int aSize, int aWidth );
|
2011-12-01 06:04:23 +00:00
|
|
|
|
2016-05-31 08:27:52 +00:00
|
|
|
// Do not create a copy constructor & operator=.
|
|
|
|
// The ones generated by the compiler are adequate.
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
~PCB_TARGET();
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2018-08-28 20:14:47 +00:00
|
|
|
static inline bool ClassOf( const EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
return aItem && PCB_TARGET_T == aItem->Type();
|
|
|
|
}
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void SetPosition( const VECTOR2I& aPos ) override { m_pos = aPos; }
|
|
|
|
VECTOR2I GetPosition() const override { return m_pos; }
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2020-11-24 20:21:16 +00:00
|
|
|
void SetShape( int aShape ) { m_shape = aShape; }
|
|
|
|
int GetShape() const { return m_shape; }
|
2011-12-14 04:29:25 +00:00
|
|
|
|
2020-11-24 20:21:16 +00:00
|
|
|
void SetSize( int aSize ) { m_size = aSize; }
|
|
|
|
int GetSize() const { return m_size; }
|
2011-12-14 04:29:25 +00:00
|
|
|
|
2020-11-24 20:21:16 +00:00
|
|
|
void SetWidth( int aWidth ) { m_lineWidth = aWidth; }
|
|
|
|
int GetWidth() const { return m_lineWidth; }
|
2011-12-14 04:29:25 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void Move( const VECTOR2I& aMoveVector ) override
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
2020-11-24 20:21:16 +00:00
|
|
|
m_pos += aMoveVector;
|
2009-08-01 19:26:05 +00:00
|
|
|
}
|
|
|
|
|
2022-01-13 19:32:00 +00:00
|
|
|
void Rotate( const VECTOR2I& aRotCentre, const EDA_ANGLE& aAngle ) override;
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void Flip( const VECTOR2I& aCentre, bool aFlipLeftRight ) override;
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
wxString GetClass() const override
|
2014-10-13 11:14:02 +00:00
|
|
|
{
|
|
|
|
return wxT( "PCB_TARGET" );
|
|
|
|
}
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override;
|
2022-08-31 09:33:46 +00:00
|
|
|
bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
|
2008-01-06 12:43:57 +00:00
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
// Virtual function
|
2022-08-31 09:15:42 +00:00
|
|
|
const BOX2I GetBoundingBox() const override;
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2022-08-31 09:33:46 +00:00
|
|
|
std::shared_ptr<SHAPE>
|
|
|
|
GetEffectiveShape( PCB_LAYER_ID aLayer, FLASHING aFlash = FLASHING::DEFAULT ) const override;
|
2020-11-24 20:21:16 +00:00
|
|
|
|
2023-01-12 03:27:44 +00:00
|
|
|
wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) const override;
|
2011-08-01 15:29:27 +00:00
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS GetMenuImage() const override;
|
2011-12-14 17:25:42 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
EDA_ITEM* Clone() const override;
|
2012-03-17 14:39:27 +00:00
|
|
|
|
2020-12-31 14:46:40 +00:00
|
|
|
void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
|
|
|
|
|
2022-01-29 17:19:22 +00:00
|
|
|
/**
|
|
|
|
* Convert the shape to a closed polygon.
|
|
|
|
*
|
|
|
|
* Used in filling zones calculations. Circles and arcs are approximated by segments.
|
|
|
|
*
|
2022-10-21 12:48:45 +00:00
|
|
|
* @param aBuffer is a buffer to store the polygon.
|
|
|
|
* @param aClearance is the clearance around the pad.
|
2022-01-29 17:19:22 +00:00
|
|
|
* @param aError is the maximum deviation from a true arc.
|
Fix typos in pcbnew sub-directory
Found via `codespell -q 3 -S *.po,./thirdparty,./Documentation/changelogs -L aactual,acount,aline,alocation,alog,anormal,anumber,aother,apoints,aparent,aray,ba,busses,dout,einstance,leaded,modul,ontext,ot,overide,serie,te,,tesselate,tesselator,tht`
2022-06-29 20:21:10 +00:00
|
|
|
* @param aErrorLoc whether any approximation error should be placed inside or outside
|
2022-10-21 12:48:45 +00:00
|
|
|
* @param ignoreLineWidth is used for edge cut items where the line width is only for
|
|
|
|
* visualization
|
2022-01-29 17:19:22 +00:00
|
|
|
*/
|
2022-10-21 12:48:45 +00:00
|
|
|
void TransformShapeToPolygon( SHAPE_POLY_SET& aBuffer, PCB_LAYER_ID aLayer, int aClearance,
|
|
|
|
int aError, ERROR_LOC aErrorLoc,
|
|
|
|
bool ignoreLineWidth = false ) const override;
|
2022-01-29 17:19:22 +00:00
|
|
|
|
2023-09-14 21:39:42 +00:00
|
|
|
double Similarity( const BOARD_ITEM& aBoardItem ) const override;
|
|
|
|
|
|
|
|
bool operator==( const BOARD_ITEM& aBoardItem ) const override;
|
|
|
|
|
2011-12-14 17:25:42 +00:00
|
|
|
#if defined(DEBUG)
|
2016-09-24 18:53:15 +00:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
|
2011-12-14 17:25:42 +00:00
|
|
|
#endif
|
2021-06-04 13:04:30 +00:00
|
|
|
|
2022-11-11 17:09:25 +00:00
|
|
|
protected:
|
|
|
|
virtual void swapData( BOARD_ITEM* aImage ) override;
|
|
|
|
|
2021-06-04 13:04:30 +00:00
|
|
|
private:
|
2022-01-01 06:04:08 +00:00
|
|
|
int m_shape; // bit 0 : 0 = draw +, 1 = draw X
|
|
|
|
int m_size;
|
|
|
|
int m_lineWidth;
|
|
|
|
VECTOR2I m_pos;
|
2007-06-05 12:10:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-10-31 15:38:10 +00:00
|
|
|
#endif
|