kicad/include/marker_base.h

139 lines
4.5 KiB
C
Raw Normal View History

2014-10-22 15:51:34 +00:00
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2009-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
2020-12-19 23:29:10 +00:00
* Copyright (C) 2009-2020 KiCad Developers, see CHANGELOG.TXT for contributors.
2014-10-22 15:51:34 +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
*/
2018-01-28 21:02:31 +00:00
#ifndef MARKER_BASE_H
#define MARKER_BASE_H
2020-08-11 13:33:16 +00:00
#include <memory>
#include <rc_item.h>
#include <gr_basic.h>
2018-09-04 20:53:04 +00:00
#include <eda_rect.h>
class SHAPE_LINE_CHAIN;
2020-04-14 12:25:00 +00:00
namespace KIGFX
{
class RENDER_SETTINGS;
}
using KIGFX::RENDER_SETTINGS;
/*
* Marker are mainly used to show a DRC or ERC error or warning
*/
class MARKER_BASE
{
public:
enum TYPEMARKER {
MARKER_UNSPEC,
MARKER_ERC,
MARKER_PCB,
MARKER_SIMUL
};
2020-12-19 23:29:10 +00:00
MARKER_BASE( int aScalingFactor, std::shared_ptr<RC_ITEM> aItem,
TYPEMARKER aType = MARKER_UNSPEC );
virtual ~MARKER_BASE();
2020-12-19 23:29:10 +00:00
/**
* The scaling factor to convert polygonal shape coordinates to internal units.
*/
int MarkerScale() const { return m_scalingFactor; }
2020-12-19 23:29:10 +00:00
/**
* Return the shape polygon in internal units in a #SHAPE_LINE_CHAIN the coordinates
* are relatives to the marker position (are not absolute).
*
* @param aPolygon is the #SHAPE_LINE_CHAIN to fill with the shape.
*/
void ShapeToPolygon( SHAPE_LINE_CHAIN& aPolygon, int aScale = -1 ) const;
2010-11-12 15:17:10 +00:00
/**
2020-12-19 23:29:10 +00:00
* Print the shape is the polygon defined in m_Corners (array of wxPoints).
*/
2020-12-20 18:18:54 +00:00
void PrintMarker( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset );
/**
2020-12-19 23:29:10 +00:00
* @return the position of this marker in internal units.
*/
const wxPoint& GetPos() const { return m_Pos; }
virtual const KIID GetUUID() const = 0;
2010-11-12 15:17:10 +00:00
/**
2020-12-19 23:29:10 +00:00
* Accessors to set/get marker type (DRC, ERC, or other)
*/
void SetMarkerType( enum TYPEMARKER aMarkerType ) { m_markerType = aMarkerType; }
enum TYPEMARKER GetMarkerType() const { return m_markerType; }
bool IsExcluded() const { return m_excluded; }
void SetExcluded( bool aExcluded ) { m_excluded = aExcluded; }
/**
2020-12-19 23:29:10 +00:00
* @return the #RC_ITEM held within this marker so that its interface may be used.
*/
2020-08-11 13:33:16 +00:00
std::shared_ptr<RC_ITEM> GetRCItem() const { return m_rcItem; }
/**
2020-12-19 23:29:10 +00:00
* Test if the given wxPoint is within the bounds of this object.
*
* @param aHitPosition is the wxPoint to test (in internal units).
* @return true if a hit, else false.
*/
bool HitTestMarker( const wxPoint& aHitPosition, int aAccuracy ) const;
/**
2020-12-19 23:29:10 +00:00
* Return the orthogonal, bounding box of this object for display purposes.
*
* This box should be an enclosing perimeter for visible components of this
* object, and the units should be in the pcb or schematic coordinate system.
* It is OK to overestimate the size by a few counts.
*/
EDA_RECT GetBoundingBoxMarker() const;
protected:
virtual KIGFX::COLOR4D getColor() const = 0;
2020-12-19 23:29:10 +00:00
public:
wxPoint m_Pos; ///< position of the marker
protected:
TYPEMARKER m_markerType; // The type of marker (useful to filter markers)
bool m_excluded; // User has excluded this specific error
std::shared_ptr<RC_ITEM> m_rcItem;
int m_scalingFactor; // Scaling factor to convert corners coordinates
// to internal units coordinates
EDA_RECT m_shapeBoundingBox; // Bounding box of the graphic symbol, relative
// to the position of the shape, in marker shape
// units
};
2018-01-28 21:02:31 +00:00
#endif // MARKER_BASE_H