2014-10-23 17:53:38 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-12-19 14:07:07 +00:00
|
|
|
* Copyright (C) 2009-2018 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
2021-12-01 14:42:44 +00:00
|
|
|
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-23 17:53:38 +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-14 18:11:28 +00:00
|
|
|
#ifndef PCB_MARKER_H
|
|
|
|
#define PCB_MARKER_H
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
#include <board_item.h>
|
2021-12-01 14:42:44 +00:00
|
|
|
#include <rc_item.h>
|
2018-01-28 21:02:31 +00:00
|
|
|
#include <marker_base.h>
|
2020-06-13 23:20:45 +00:00
|
|
|
|
|
|
|
class DRC_ITEM;
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2018-12-19 14:07:07 +00:00
|
|
|
// Coordinates count for the basic shape marker
|
|
|
|
#define MARKER_SHAPE_POINT_COUNT 9
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
class MSG_PANEL_ITEM;
|
|
|
|
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
class PCB_MARKER : public BOARD_ITEM, public MARKER_BASE
|
2007-10-26 09:41:25 +00:00
|
|
|
{
|
|
|
|
public:
|
2022-08-15 16:59:34 +00:00
|
|
|
PCB_MARKER( std::shared_ptr<RC_ITEM> aItem, const VECTOR2I& aPos, int aLayer = F_Cu );
|
2022-01-22 21:34:01 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
~PCB_MARKER();
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2018-08-28 20:14:47 +00:00
|
|
|
static inline bool ClassOf( const EDA_ITEM* aItem )
|
|
|
|
{
|
|
|
|
return aItem && PCB_MARKER_T == aItem->Type();
|
|
|
|
}
|
|
|
|
|
2020-03-16 11:05:01 +00:00
|
|
|
const KIID GetUUID() const override { return m_Uuid; }
|
|
|
|
|
2023-01-29 18:06:05 +00:00
|
|
|
wxString SerializeToString() const;
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2023-01-29 18:06:05 +00:00
|
|
|
static PCB_MARKER* DeserializeFromString( const wxString& data );
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void Move( const VECTOR2I& aMoveVector ) override
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
|
|
|
m_Pos += aMoveVector;
|
|
|
|
}
|
2007-11-27 22:49:35 +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;
|
2007-12-01 03:42:52 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I GetPosition() const override { return m_Pos; }
|
|
|
|
void SetPosition( const VECTOR2I& aPos ) override { m_Pos = aPos; }
|
2008-04-01 05:21:50 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
VECTOR2I GetCenter() const override
|
2020-10-06 16:38:24 +00:00
|
|
|
{
|
|
|
|
return GetPosition();
|
|
|
|
}
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
bool HitTest( const VECTOR2I& aPosition, int aAccuracy = 0 ) const override
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2021-12-01 14:42:44 +00:00
|
|
|
if( GetMarkerType() == MARKER_RATSNEST )
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return HitTestMarker( aPosition, aAccuracy );
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
|
|
|
|
2021-11-30 23:26:47 +00:00
|
|
|
EDA_ITEM* Clone() const override
|
|
|
|
{
|
|
|
|
return new PCB_MARKER( *this );
|
|
|
|
}
|
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
GAL_LAYER_ID GetColorLayer() const;
|
|
|
|
|
2022-03-16 23:48:24 +00:00
|
|
|
std::shared_ptr<SHAPE> GetEffectiveShape( PCB_LAYER_ID aLayer,
|
|
|
|
FLASHING aFlash = FLASHING::DEFAULT ) const override;
|
2020-11-24 22:16:27 +00:00
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
void GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList ) override;
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2022-08-05 02:40:38 +00:00
|
|
|
bool Matches( const EDA_SEARCH_DATA& aSearchData, void* aAuxData ) const override
|
2019-12-20 14:11:39 +00:00
|
|
|
{
|
2020-04-24 18:56:44 +00:00
|
|
|
return BOARD_ITEM::Matches( m_rcItem->GetErrorMessage(), aSearchData );
|
2019-12-20 14:11:39 +00:00
|
|
|
}
|
2019-11-28 00:18:20 +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;
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2021-12-21 15:42:10 +00:00
|
|
|
void SetZoom( double aZoomFactor );
|
|
|
|
|
2018-12-19 14:07:07 +00:00
|
|
|
const BOX2I ViewBBox() const override;
|
2014-03-19 12:42:46 +00:00
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
const BOX2I GetBoundingBox() const override;
|
2017-03-03 15:04:58 +00:00
|
|
|
|
2016-12-13 16:24:19 +00:00
|
|
|
void ViewGetLayers( int aLayers[], int& aCount ) const override;
|
2014-03-19 12:42:46 +00:00
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
SEVERITY GetSeverity() const override;
|
|
|
|
|
2023-09-14 21:39:42 +00:00
|
|
|
double Similarity( const BOARD_ITEM& aBoardItem ) const override
|
|
|
|
{
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==( const BOARD_ITEM& aBoardItem ) const override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
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
|
2014-03-19 12:42:46 +00:00
|
|
|
|
2015-03-06 08:58:32 +00:00
|
|
|
/** Get class name
|
2020-11-14 18:11:28 +00:00
|
|
|
* @return string "PCB_MARKER"
|
2015-03-06 08:58:32 +00:00
|
|
|
*/
|
2016-09-24 18:53:15 +00:00
|
|
|
virtual wxString GetClass() const override
|
2015-03-06 08:58:32 +00:00
|
|
|
{
|
2020-11-14 18:11:28 +00:00
|
|
|
return wxT( "PCB_MARKER" );
|
2015-03-06 08:58:32 +00:00
|
|
|
}
|
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
protected:
|
|
|
|
KIGFX::COLOR4D getColor() const override;
|
2011-12-14 17:25:42 +00:00
|
|
|
};
|
2007-10-26 09:41:25 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
#endif // PCB_MARKER_H
|