2012-01-14 14:50:32 -05:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2020-12-31 15:46:40 +01:00
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2012-01-14 14:50:32 -05: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 09:57:12 -04:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
#include <board_item.h>
|
2011-09-23 09:57:12 -04:00
|
|
|
|
|
|
|
|
|
|
|
class LINE_READER;
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
2011-09-07 15:41:04 -04:00
|
|
|
class PCB_TARGET : public BOARD_ITEM
|
2007-08-08 20:51:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2011-09-07 15:41:04 -04:00
|
|
|
PCB_TARGET( BOARD_ITEM* aParent );
|
2012-01-14 14:50:32 -05:00
|
|
|
|
|
|
|
// Do not create a copy constructor. The one generated by the compiler is adequate.
|
|
|
|
|
2022-01-01 12:11:21 -05:00
|
|
|
PCB_TARGET( BOARD_ITEM* aParent, int aShape, PCB_LAYER_ID aLayer, const VECTOR2I& aPos,
|
|
|
|
int aSize, int aWidth );
|
2011-12-01 00:04:23 -06:00
|
|
|
|
2016-05-31 10:27:52 +02:00
|
|
|
// Do not create a copy constructor & operator=.
|
|
|
|
// The ones generated by the compiler are adequate.
|
|
|
|
|
2011-09-07 15:41:04 -04:00
|
|
|
~PCB_TARGET();
|
2007-08-08 20:51:08 +00:00
|
|
|
|
2018-08-28 13:14:47 -07:00
|
|
|
static inline bool ClassOf( const EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
return aItem && PCB_TARGET_T == aItem->Type();
|
|
|
|
}
|
|
|
|
|
2022-01-01 01:04:08 -05: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-13 22:29:25 -06:00
|
|
|
|
2020-11-24 20:21:16 +00:00
|
|
|
void SetSize( int aSize ) { m_size = aSize; }
|
|
|
|
int GetSize() const { return m_size; }
|
2011-12-13 22:29:25 -06:00
|
|
|
|
2020-11-24 20:21:16 +00:00
|
|
|
void SetWidth( int aWidth ) { m_lineWidth = aWidth; }
|
|
|
|
int GetWidth() const { return m_lineWidth; }
|
2011-12-13 22:29:25 -06:00
|
|
|
|
2022-01-01 01:04:08 -05: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
|
|
|
|
2024-09-27 09:08:31 +01:00
|
|
|
void Flip( const VECTOR2I& aCentre, FLIP_DIRECTION aFlipDirection ) override;
|
2009-08-01 19:26:05 +00:00
|
|
|
|
2016-09-24 14:53:15 -04:00
|
|
|
wxString GetClass() const override
|
2014-10-13 13:14:02 +02:00
|
|
|
{
|
|
|
|
return wxT( "PCB_TARGET" );
|
|
|
|
}
|
|
|
|
|
2022-01-01 01:04:08 -05:00
|
|
|
bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override;
|
2022-08-31 10:33:46 +01:00
|
|
|
bool HitTest( const BOX2I& aRect, bool aContained, int aAccuracy = 0 ) const override;
|
2008-01-06 12:43:57 +00:00
|
|
|
|
2013-11-24 18:48:14 +01:00
|
|
|
// Virtual function
|
2022-08-31 10:15:42 +01:00
|
|
|
const BOX2I GetBoundingBox() const override;
|
2011-07-14 11:42:44 -04:00
|
|
|
|
2022-08-31 10:33:46 +01:00
|
|
|
std::shared_ptr<SHAPE>
|
|
|
|
GetEffectiveShape( PCB_LAYER_ID aLayer, FLASHING aFlash = FLASHING::DEFAULT ) const override;
|
2020-11-24 20:21:16 +00:00
|
|
|
|
2024-06-27 10:11:55 +01:00
|
|
|
wxString GetItemDescription( UNITS_PROVIDER* aUnitsProvider, bool aFull ) const override;
|
2011-08-01 11:29:27 -04:00
|
|
|
|
2021-03-07 21:59:07 -05:00
|
|
|
BITMAPS GetMenuImage() const override;
|
2011-12-14 11:25:42 -06:00
|
|
|
|
2016-09-24 14:53:15 -04:00
|
|
|
EDA_ITEM* Clone() const override;
|
2012-03-17 10:39:27 -04:00
|
|
|
|
2020-12-31 15:46:40 +01:00
|
|
|
void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
|
|
|
|
|
2022-01-29 18:19:22 +01:00
|
|
|
/**
|
|
|
|
* Convert the shape to a closed polygon.
|
|
|
|
*
|
|
|
|
* Used in filling zones calculations. Circles and arcs are approximated by segments.
|
|
|
|
*
|
2022-10-21 13:48:45 +01:00
|
|
|
* @param aBuffer is a buffer to store the polygon.
|
|
|
|
* @param aClearance is the clearance around the pad.
|
2022-01-29 18:19:22 +01: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 16:21:10 -04:00
|
|
|
* @param aErrorLoc whether any approximation error should be placed inside or outside
|
2022-10-21 13:48:45 +01:00
|
|
|
* @param ignoreLineWidth is used for edge cut items where the line width is only for
|
|
|
|
* visualization
|
2022-01-29 18:19:22 +01:00
|
|
|
*/
|
2022-10-21 13:48:45 +01: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 18:19:22 +01:00
|
|
|
|
2023-09-14 14:39:42 -07:00
|
|
|
double Similarity( const BOARD_ITEM& aBoardItem ) const override;
|
|
|
|
|
2024-07-03 13:25:23 +01:00
|
|
|
bool operator==( const PCB_TARGET& aOther ) const;
|
2023-09-14 14:39:42 -07:00
|
|
|
bool operator==( const BOARD_ITEM& aBoardItem ) const override;
|
|
|
|
|
2011-12-14 11:25:42 -06:00
|
|
|
#if defined(DEBUG)
|
2016-09-24 14:53:15 -04:00
|
|
|
void Show( int nestLevel, std::ostream& os ) const override { ShowDummy( os ); }
|
2011-12-14 11:25:42 -06:00
|
|
|
#endif
|
2021-06-04 09:04:30 -04:00
|
|
|
|
2022-11-11 17:09:25 +00:00
|
|
|
protected:
|
|
|
|
virtual void swapData( BOARD_ITEM* aImage ) override;
|
|
|
|
|
2021-06-04 09:04:30 -04:00
|
|
|
private:
|
2022-01-01 01:04:08 -05: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 16:38:10 +01:00
|
|
|
#endif
|