234 lines
7.5 KiB
C++
234 lines
7.5 KiB
C++
/*
|
|
* 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
|
|
* Copyright (C) 1992-2014 KiCad Developers, see CHANGELOG.TXT for contributors.
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
|
|
#ifndef MARKER_BASE_H
|
|
#define MARKER_BASE_H
|
|
|
|
#include <drc_item.h>
|
|
#include <gr_basic.h>
|
|
|
|
|
|
/* Marker are mainly used to show a DRC or ERC error or warning
|
|
*/
|
|
|
|
|
|
class MARKER_BASE
|
|
{
|
|
public:
|
|
enum TYPEMARKER { // Marker type: can be used to identify the purpose of the marker
|
|
MARKER_UNSPEC,
|
|
MARKER_ERC,
|
|
MARKER_PCB,
|
|
MARKER_SIMUL
|
|
};
|
|
enum MARKER_SEVERITY { // Severity of the marker: this is the level of error
|
|
MARKER_SEVERITY_UNSPEC,
|
|
MARKER_SEVERITY_INFO,
|
|
MARKER_SEVERITY_WARNING,
|
|
MARKER_SEVERITY_ERROR
|
|
};
|
|
|
|
wxPoint m_Pos; ///< position of the marker
|
|
|
|
protected:
|
|
TYPEMARKER m_MarkerType; ///< The type of marker (useful to filter markers)
|
|
MARKER_SEVERITY m_ErrorLevel; ///< Specify the severity of the error
|
|
COLOR4D m_Color; ///< color
|
|
EDA_RECT m_ShapeBoundingBox; ///< Bounding box of the graphic symbol, relative
|
|
///< to the position of the shape, used for Hit
|
|
///< Tests
|
|
int m_ScalingFactor; ///< Scaling factor for m_Size and m_Corners (can
|
|
///< set the physical size
|
|
DRC_ITEM m_drc;
|
|
|
|
void init();
|
|
|
|
public:
|
|
|
|
MARKER_BASE();
|
|
|
|
/**
|
|
* Constructor
|
|
* @param aErrorCode The categorizing identifier for an error
|
|
* @param aMarkerPos The position of the MARKER on the BOARD
|
|
* @param aText Text describing the first of two objects
|
|
* @param aPos The position of the first of two objects
|
|
* @param bText Text describing the second of the two conflicting objects
|
|
* @param bPos The position of the second of two objects
|
|
*/
|
|
MARKER_BASE( int aErrorCode, const wxPoint& aMarkerPos,
|
|
const wxString& aText, const wxPoint& aPos,
|
|
const wxString& bText, const wxPoint& bPos );
|
|
|
|
/**
|
|
* Constructor
|
|
* @param aErrorCode The categorizing identifier for an error
|
|
* @param aMarkerPos The position of the MARKER on the BOARD
|
|
* @param aText Text describing the object
|
|
* @param aPos The position of the object
|
|
*/
|
|
MARKER_BASE( int aErrorCode, const wxPoint& aMarkerPos,
|
|
const wxString& aText, const wxPoint& aPos );
|
|
|
|
/**
|
|
* Contructor
|
|
* makes a copy of \a aMarker but does not copy the DRC_ITEM.
|
|
*
|
|
* @param aMarker The marker to copy.
|
|
*/
|
|
MARKER_BASE( const MARKER_BASE& aMarker );
|
|
|
|
~MARKER_BASE();
|
|
|
|
/**
|
|
* Function DrawMarker
|
|
* draws the shape is the polygon defined in m_Corners (array of wxPoints).
|
|
*/
|
|
void DrawMarker( EDA_DRAW_PANEL* aPanel, wxDC* aDC, GR_DRAWMODE aDrawMode,
|
|
const wxPoint& aOffset );
|
|
|
|
/**
|
|
* Function GetPos
|
|
* returns the position of this MARKER, const.
|
|
*/
|
|
const wxPoint& GetPos() const
|
|
{
|
|
return m_Pos;
|
|
}
|
|
|
|
/**
|
|
* Function SetColor
|
|
* Set the color of this marker
|
|
*/
|
|
void SetColor( COLOR4D aColor )
|
|
{
|
|
m_Color = aColor;
|
|
}
|
|
|
|
/**
|
|
* accessors to set/get error levels (warning, error, fatal error..)
|
|
*/
|
|
void SetErrorLevel( MARKER_SEVERITY aErrorLevel )
|
|
{
|
|
m_ErrorLevel = aErrorLevel;
|
|
}
|
|
|
|
MARKER_SEVERITY GetErrorLevel() const
|
|
{
|
|
return m_ErrorLevel;
|
|
}
|
|
|
|
/** 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;
|
|
}
|
|
|
|
/**
|
|
* Function SetData
|
|
* fills in all the reportable data associated with a MARKER.
|
|
* @param aErrorCode The categorizing identifier for an error
|
|
* @param aMarkerPos The position of the MARKER on the BOARD
|
|
* @param aText Text describing the first of two objects
|
|
* @param aPos The position of the first of two objects
|
|
* @param bText Text describing the second of the two conflicting objects
|
|
* @param bPos The position of the second of two objects
|
|
*/
|
|
void SetData( int aErrorCode, const wxPoint& aMarkerPos,
|
|
const wxString& aText, const wxPoint& aPos,
|
|
const wxString& bText, const wxPoint& bPos );
|
|
|
|
/**
|
|
* Function SetData
|
|
* fills in all the reportable data associated with a MARKER.
|
|
* @param aErrorCode The categorizing identifier for an error
|
|
* @param aMarkerPos The position of the MARKER on the BOARD
|
|
* @param aText Text describing the object
|
|
* @param aPos The position of the object
|
|
*/
|
|
void SetData( int aErrorCode, const wxPoint& aMarkerPos,
|
|
const wxString& aText, const wxPoint& aPos );
|
|
|
|
/**
|
|
* Function SetAuxiliaryData
|
|
* initialize data for the second (auxiliary) item
|
|
* @param aAuxiliaryText = the second text (main text) concerning the second schematic or
|
|
* board item
|
|
* @param aAuxiliaryPos = position the second item
|
|
*/
|
|
void SetAuxiliaryData( const wxString& aAuxiliaryText, const wxPoint& aAuxiliaryPos )
|
|
{
|
|
m_drc.SetAuxiliaryData( aAuxiliaryText, aAuxiliaryPos );
|
|
}
|
|
|
|
void SetShowNoCoordinate()
|
|
{
|
|
m_drc.SetShowNoCoordinate();
|
|
}
|
|
|
|
/**
|
|
* Function GetReporter
|
|
* returns the DRC_ITEM held within this MARKER so that its
|
|
* interface may be used.
|
|
* @return const& DRC_ITEM
|
|
*/
|
|
const DRC_ITEM& GetReporter() const
|
|
{
|
|
return m_drc;
|
|
}
|
|
|
|
/**
|
|
* Function DisplayMarkerInfo
|
|
* displays the full info of this marker, in a HTML window.
|
|
*/
|
|
void DisplayMarkerInfo( EDA_DRAW_FRAME* aFrame );
|
|
|
|
/**
|
|
* Function HitTestMarker
|
|
* tests if the given wxPoint is within the bounds of this object.
|
|
* @param ref_pos A wxPoint to test
|
|
* @return bool - true if a hit, else false
|
|
*/
|
|
bool HitTestMarker( const wxPoint& ref_pos ) const;
|
|
|
|
/**
|
|
* Function GetBoundingBoxMarker
|
|
* returns 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;
|
|
};
|
|
|
|
|
|
#endif // MARKER_BASE_H
|