kicad/pcbnew/class_marker_pcb.cpp

115 lines
3.0 KiB
C++
Raw Normal View History

/*****************************************************************************/
/* Functions to handle markers used to show something (usually a drc problem) */
/*****************************************************************************/
/* file class_marker.cpp */
#include <fctsys.h>
#include <gr_basic.h>
#include <class_drawpanel.h>
#include <wxstruct.h>
#include <trigo.h>
#include <pcbnew.h>
#include <class_marker_pcb.h>
#include <layers_id_colors_and_visibility.h>
#define SCALING_FACTOR 30 // Adjust the actual size of markers, when using default shape
2009-08-01 19:26:05 +00:00
MARKER_PCB::MARKER_PCB( BOARD_ITEM* aParent ) :
BOARD_ITEM( aParent, PCB_MARKER_T ),
MARKER_BASE( )
2007-12-01 03:42:52 +00:00
{
m_Color = WHITE;
m_ScalingFactor = SCALING_FACTOR;
2007-12-01 03:42:52 +00:00
}
2009-08-01 19:26:05 +00:00
MARKER_PCB::MARKER_PCB( int aErrorCode, const wxPoint& aMarkerPos,
const wxString& aText, const wxPoint& aPos,
const wxString& bText, const wxPoint& bPos ) :
BOARD_ITEM( NULL, PCB_MARKER_T ), // parent set during BOARD::Add()
MARKER_BASE( aErrorCode, aMarkerPos, aText, aPos, bText, bPos )
2007-12-01 03:42:52 +00:00
{
m_Color = WHITE;
m_ScalingFactor = SCALING_FACTOR;
2007-12-01 03:42:52 +00:00
}
2009-08-01 19:26:05 +00:00
MARKER_PCB::MARKER_PCB( int aErrorCode, const wxPoint& aMarkerPos,
const wxString& aText, const wxPoint& aPos ) :
BOARD_ITEM( NULL, PCB_MARKER_T ), // parent set during BOARD::Add()
MARKER_BASE( aErrorCode, aMarkerPos, aText, aPos )
{
m_Color = WHITE;
m_ScalingFactor = SCALING_FACTOR;
}
2009-08-01 19:26:05 +00:00
/* destructor */
MARKER_PCB::~MARKER_PCB()
{
}
/* tests to see if this object is on the given layer.
* DRC markers are not really on a copper layer, but
* MARKER_PCB::IsOnCopperLayer return true if aLayer is a cooper layer,
* because this test is often used to locad a marker
* param aLayer The layer to test for.
* return bool - true if on given layer, else false.
*/
bool MARKER_PCB::IsOnLayer( int aLayer ) const
{
return IsValidCopperLayerIndex( aLayer );
}
void MARKER_PCB::DisplayInfo( EDA_DRAW_FRAME* frame )
{
frame->ClearMsgPanel();
2007-12-01 05:37:44 +00:00
const DRC_ITEM& rpt = m_drc;
2008-02-23 04:53:44 +00:00
frame->AppendMsgPanel( _( "Type" ), _( "Marker" ), DARKCYAN );
2007-12-01 05:37:44 +00:00
wxString errorTxt;
2008-02-23 04:53:44 +00:00
errorTxt << _( "ErrType" ) << wxT( "(" ) << rpt.GetErrorCode() << wxT( ")- " )
<< rpt.GetErrorText() << wxT( ":" );
2008-02-23 04:53:44 +00:00
frame->AppendMsgPanel( errorTxt, wxEmptyString, RED );
2007-12-01 05:37:44 +00:00
wxString txtA;
txtA << DRC_ITEM::ShowCoord( rpt.GetPointA() ) << wxT( ": " ) << rpt.GetTextA();
2008-02-23 04:53:44 +00:00
2007-12-01 05:37:44 +00:00
wxString txtB;
2008-02-23 04:53:44 +00:00
if ( rpt.HasSecondItem() )
txtB << DRC_ITEM::ShowCoord( rpt.GetPointB() ) << wxT( ": " ) << rpt.GetTextB();
2008-02-23 04:53:44 +00:00
frame->AppendMsgPanel( txtA, txtB, DARKBROWN );
}
2011-12-14 04:29:25 +00:00
void MARKER_PCB::Rotate(const wxPoint& aRotCentre, double aAngle)
2009-08-01 19:26:05 +00:00
{
RotatePoint( &m_Pos, aRotCentre, aAngle );
}
2009-08-01 19:26:05 +00:00
void MARKER_PCB::Flip(const wxPoint& aCentre )
{
m_Pos.y = aCentre.y - (m_Pos.y - aCentre.y);
}
wxString MARKER_PCB::GetSelectMenuText() const
{
wxString text;
text << _( "Marker" ) << wxT( " @(" ) << GetPos().x << wxT( "," ) << GetPos().y << wxT( ")" );
return text;
}