2012-06-08 09:56:42 +00:00
|
|
|
/**
|
|
|
|
* @file class_marker_pcb.cpp
|
|
|
|
* @brief Functions to handle markers used to show something (usually a drc problem)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-12-19 14:07:07 +00:00
|
|
|
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2012-06-08 09:56:42 +00:00
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2018-12-19 14:07:07 +00:00
|
|
|
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-06-08 09:56:42 +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
|
|
|
|
*/
|
2007-10-26 06:08:19 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <trigo.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2018-01-31 09:08:57 +00:00
|
|
|
#include <base_units.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <class_marker_pcb.h>
|
2012-02-09 20:33:38 +00:00
|
|
|
#include <layers_id_colors_and_visibility.h>
|
2007-10-26 06:08:19 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2018-12-19 14:07:07 +00:00
|
|
|
/// Factor to convert the maker unit shape to internal units:
|
|
|
|
#define SCALING_FACTOR Millimeter2iu( 0.1 )
|
2007-10-26 06:08:19 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
MARKER_PCB::MARKER_PCB( BOARD_ITEM* aParent ) :
|
2011-10-01 19:24:27 +00:00
|
|
|
BOARD_ITEM( aParent, PCB_MARKER_T ),
|
2018-12-19 18:53:27 +00:00
|
|
|
MARKER_BASE( SCALING_FACTOR ), m_item( nullptr )
|
2007-12-01 03:42:52 +00:00
|
|
|
{
|
2009-07-07 17:50:02 +00:00
|
|
|
m_Color = WHITE;
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
MARKER_PCB::MARKER_PCB( EDA_UNITS aUnits, int aErrorCode, const wxPoint& aMarkerPos,
|
|
|
|
BOARD_ITEM* aItem, const wxPoint& aPos, BOARD_ITEM* bItem, const wxPoint& bPos )
|
|
|
|
: BOARD_ITEM( nullptr, PCB_MARKER_T ), // parent set during BOARD::Add()
|
|
|
|
MARKER_BASE( aUnits, aErrorCode, aMarkerPos, aItem, aPos, bItem, bPos, SCALING_FACTOR ),
|
|
|
|
m_item( nullptr )
|
2009-07-06 18:02:26 +00:00
|
|
|
{
|
2009-07-07 17:50:02 +00:00
|
|
|
m_Color = WHITE;
|
2007-12-01 03:42:52 +00:00
|
|
|
}
|
|
|
|
|
2018-01-28 09:35:33 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
MARKER_PCB::MARKER_PCB( int aErrorCode, const wxPoint& aMarkerPos,
|
2018-01-28 09:35:33 +00:00
|
|
|
const wxString& aText, const wxPoint& aPos,
|
|
|
|
const wxString& bText, const wxPoint& bPos ) :
|
2018-06-15 04:49:50 +00:00
|
|
|
BOARD_ITEM( nullptr, PCB_MARKER_T ), // parent set during BOARD::Add()
|
2018-12-19 18:53:27 +00:00
|
|
|
MARKER_BASE( aErrorCode, aMarkerPos, aText, aPos, bText, bPos, SCALING_FACTOR ), m_item( nullptr )
|
2008-01-12 20:31:56 +00:00
|
|
|
{
|
2009-07-07 17:50:02 +00:00
|
|
|
m_Color = WHITE;
|
2008-01-12 20:31:56 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 06:08:19 +00:00
|
|
|
|
2009-08-01 19:26:05 +00:00
|
|
|
/* destructor */
|
|
|
|
MARKER_PCB::~MARKER_PCB()
|
2007-10-26 06:08:19 +00:00
|
|
|
{
|
2008-01-12 20:31:56 +00:00
|
|
|
}
|
|
|
|
|
2012-02-09 20:33:38 +00:00
|
|
|
/* 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.
|
|
|
|
*/
|
2017-03-13 03:19:33 +00:00
|
|
|
bool MARKER_PCB::IsOnLayer( PCB_LAYER_ID aLayer ) const
|
2012-02-09 20:33:38 +00:00
|
|
|
{
|
2013-04-09 16:00:46 +00:00
|
|
|
return IsCopperLayer( aLayer );
|
2012-02-09 20:33:38 +00:00
|
|
|
}
|
2007-10-26 06:08:19 +00:00
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
void MARKER_PCB::GetMsgPanelInfo( EDA_UNITS aUnits, std::vector<MSG_PANEL_ITEM>& aList )
|
2007-10-26 06:08:19 +00:00
|
|
|
{
|
2018-06-15 04:49:50 +00:00
|
|
|
wxString errorTxt, txtA, txtB;
|
2008-02-23 04:53:44 +00:00
|
|
|
|
2018-06-15 04:49:50 +00:00
|
|
|
aList.emplace_back( MSG_PANEL_ITEM( _( "Type" ), _( "Marker" ), DARKCYAN ) );
|
2007-10-26 06:08:19 +00:00
|
|
|
|
2018-06-15 04:49:50 +00:00
|
|
|
errorTxt.Printf( _( "ErrType (%d)- %s:" ), m_drc.GetErrorCode(), m_drc.GetErrorText() );
|
2008-02-23 04:53:44 +00:00
|
|
|
|
2018-06-15 04:49:50 +00:00
|
|
|
aList.emplace_back( MSG_PANEL_ITEM( errorTxt, wxEmptyString, RED ) );
|
2008-02-23 04:53:44 +00:00
|
|
|
|
2018-06-15 04:49:50 +00:00
|
|
|
txtA.Printf( wxT( "%s: %s" ), DRC_ITEM::ShowCoord( aUnits, m_drc.GetPointA() ), m_drc.GetTextA() );
|
2007-12-01 05:37:44 +00:00
|
|
|
|
2018-06-15 04:49:50 +00:00
|
|
|
if( m_drc.HasSecondItem() )
|
|
|
|
txtB.Printf( wxT( "%s: %s" ), DRC_ITEM::ShowCoord( aUnits, m_drc.GetPointB() ), m_drc.GetTextB() );
|
2008-02-23 04:53:44 +00:00
|
|
|
|
2018-06-15 04:49:50 +00:00
|
|
|
aList.emplace_back( MSG_PANEL_ITEM( txtA, txtB, DARKBROWN ) );
|
2007-10-26 06:08:19 +00:00
|
|
|
}
|
2009-07-13 15:25:41 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
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 );
|
|
|
|
}
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2019-07-12 21:02:10 +00:00
|
|
|
void MARKER_PCB::Flip(const wxPoint& aCentre, bool aFlipLeftRight )
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
2019-07-12 21:02:10 +00:00
|
|
|
if( aFlipLeftRight )
|
|
|
|
m_Pos.x = aCentre.x - ( m_Pos.x - aCentre.x );
|
|
|
|
else
|
|
|
|
m_Pos.y = aCentre.y - ( m_Pos.y - aCentre.y );
|
2009-08-01 19:26:05 +00:00
|
|
|
}
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
wxString MARKER_PCB::GetSelectMenuText( EDA_UNITS aUnits ) const
|
2011-07-14 15:42:44 +00:00
|
|
|
{
|
2018-01-31 09:08:57 +00:00
|
|
|
return wxString::Format( _( "Marker @(%s, %s)" ),
|
2018-04-10 10:52:12 +00:00
|
|
|
MessageTextFromValue( aUnits, m_Pos.x ),
|
|
|
|
MessageTextFromValue( aUnits, m_Pos.y ) );
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
2014-03-19 12:42:46 +00:00
|
|
|
|
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF MARKER_PCB::GetMenuImage() const
|
|
|
|
{
|
|
|
|
return drc_xpm;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-03-19 12:42:46 +00:00
|
|
|
void MARKER_PCB::ViewGetLayers( int aLayers[], int& aCount ) const
|
|
|
|
{
|
|
|
|
aCount = 1;
|
2017-03-13 03:19:33 +00:00
|
|
|
aLayers[0] = LAYER_DRC;
|
2014-03-19 12:42:46 +00:00
|
|
|
}
|
2017-03-03 15:04:58 +00:00
|
|
|
|
|
|
|
const EDA_RECT MARKER_PCB::GetBoundingBox() const
|
|
|
|
{
|
2018-12-19 14:07:07 +00:00
|
|
|
EDA_RECT bbox = m_ShapeBoundingBox;
|
|
|
|
|
|
|
|
wxPoint pos = m_Pos;
|
|
|
|
pos.x += int( bbox.GetOrigin().x * MarkerScale() );
|
|
|
|
pos.y += int( bbox.GetOrigin().y * MarkerScale() );
|
|
|
|
|
|
|
|
return EDA_RECT( pos, wxSize( int( bbox.GetWidth() * MarkerScale() ),
|
|
|
|
int( bbox.GetHeight() * MarkerScale() ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const BOX2I MARKER_PCB::ViewBBox() const
|
|
|
|
{
|
|
|
|
EDA_RECT bbox = GetBoundingBox();
|
|
|
|
return BOX2I( bbox.GetOrigin(), VECTOR2I( bbox.GetWidth(), bbox.GetHeight() ) );
|
2017-03-03 15:04:58 +00:00
|
|
|
}
|