2012-06-08 09:56:42 +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) 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>
|
2022-08-30 22:59:30 +00:00
|
|
|
* Copyright (C) 1992-2022 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
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2018-01-31 09:08:57 +00:00
|
|
|
#include <base_units.h>
|
2021-06-06 15:56:12 +00:00
|
|
|
#include <eda_draw_frame.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
2021-06-06 19:03:10 +00:00
|
|
|
#include <board_design_settings.h>
|
2020-11-14 18:11:28 +00:00
|
|
|
#include <pcb_marker.h>
|
2021-07-29 09:47:43 +00:00
|
|
|
#include <layer_ids.h>
|
2020-02-28 00:05:40 +00:00
|
|
|
#include <settings/color_settings.h>
|
|
|
|
#include <settings/settings_manager.h>
|
2020-11-24 22:16:27 +00:00
|
|
|
#include <geometry/shape_null.h>
|
2020-02-28 00:05:40 +00:00
|
|
|
#include <widgets/ui_common.h>
|
|
|
|
#include <pgm_base.h>
|
2020-03-16 11:05:01 +00:00
|
|
|
#include <drc/drc_item.h>
|
2020-10-14 03:37:48 +00:00
|
|
|
#include <trigo.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:
|
2022-09-16 11:33:56 +00:00
|
|
|
#define SCALING_FACTOR pcbIUScale.mmToIU( 0.1625 )
|
2007-10-26 06:08:19 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2020-08-11 13:33:16 +00:00
|
|
|
|
2022-08-15 16:59:34 +00:00
|
|
|
PCB_MARKER::PCB_MARKER( std::shared_ptr<RC_ITEM> aItem, const VECTOR2I& aPosition, int aLayer ) :
|
|
|
|
BOARD_ITEM( nullptr, PCB_MARKER_T, F_Cu ), // parent set during BOARD::Add()
|
|
|
|
MARKER_BASE( SCALING_FACTOR, aItem )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
if( m_rcItem )
|
2021-12-01 14:42:44 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
m_rcItem->SetParent( this );
|
2020-04-24 22:12:06 +00:00
|
|
|
|
2022-08-15 16:59:34 +00:00
|
|
|
if( aLayer == LAYER_DRAWINGSHEET )
|
2021-12-01 14:42:44 +00:00
|
|
|
{
|
2022-08-15 16:59:34 +00:00
|
|
|
SetMarkerType( MARKER_BASE::MARKER_DRAWING_SHEET );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch( m_rcItem->GetErrorCode() )
|
|
|
|
{
|
|
|
|
case DRCE_UNCONNECTED_ITEMS:
|
|
|
|
SetMarkerType( MARKER_BASE::MARKER_RATSNEST );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DRCE_MISSING_FOOTPRINT:
|
|
|
|
case DRCE_DUPLICATE_FOOTPRINT:
|
|
|
|
case DRCE_EXTRA_FOOTPRINT:
|
|
|
|
case DRCE_NET_CONFLICT:
|
2024-01-20 18:41:11 +00:00
|
|
|
case DRCE_SCHEMATIC_PARITY_ISSUES:
|
2022-08-15 16:59:34 +00:00
|
|
|
SetMarkerType( MARKER_BASE::MARKER_PARITY );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
SetMarkerType( MARKER_BASE::MARKER_DRC );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetLayer( ToLAYER_ID( aLayer ) );
|
2021-12-01 14:42:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-24 22:12:06 +00:00
|
|
|
m_Pos = aPosition;
|
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 */
|
2020-11-14 18:11:28 +00:00
|
|
|
PCB_MARKER::~PCB_MARKER()
|
2007-10-26 06:08:19 +00:00
|
|
|
{
|
2022-01-10 21:05:14 +00:00
|
|
|
if( m_rcItem )
|
|
|
|
m_rcItem->SetParent( nullptr );
|
2008-01-12 20:31:56 +00:00
|
|
|
}
|
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2023-01-29 18:06:05 +00:00
|
|
|
wxString PCB_MARKER::SerializeToString() const
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2022-01-11 21:01:35 +00:00
|
|
|
if( m_rcItem->GetErrorCode() == DRCE_COPPER_SLIVER )
|
2022-08-15 16:59:34 +00:00
|
|
|
{
|
|
|
|
return wxString::Format( wxT( "%s|%d|%d|%s|%s" ),
|
|
|
|
m_rcItem->GetSettingsKey(),
|
|
|
|
m_Pos.x,
|
|
|
|
m_Pos.y,
|
|
|
|
m_rcItem->GetMainItemID().AsString(),
|
|
|
|
LayerName( m_layer ) );
|
|
|
|
}
|
2022-12-01 18:04:34 +00:00
|
|
|
else if( m_rcItem->GetErrorCode() == DRCE_STARVED_THERMAL )
|
|
|
|
{
|
|
|
|
return wxString::Format( wxT( "%s|%d|%d|%s|%s|%s" ),
|
|
|
|
m_rcItem->GetSettingsKey(),
|
|
|
|
m_Pos.x,
|
|
|
|
m_Pos.y,
|
|
|
|
m_rcItem->GetMainItemID().AsString(),
|
|
|
|
m_rcItem->GetAuxItemID().AsString(),
|
|
|
|
LayerName( m_layer ) );
|
|
|
|
}
|
2022-08-15 16:59:34 +00:00
|
|
|
else if( m_rcItem->GetErrorCode() == DRCE_UNRESOLVED_VARIABLE
|
|
|
|
&& m_rcItem->GetParent()->GetMarkerType() == MARKER_DRAWING_SHEET )
|
|
|
|
{
|
|
|
|
return wxString::Format( wxT( "%s|%d|%d|%s|%s" ),
|
|
|
|
m_rcItem->GetSettingsKey(),
|
|
|
|
m_Pos.x,
|
|
|
|
m_Pos.y,
|
|
|
|
// Drawing sheet KIIDs aren't preserved between runs
|
|
|
|
wxEmptyString,
|
|
|
|
wxEmptyString );
|
|
|
|
}
|
2022-01-11 21:01:35 +00:00
|
|
|
else
|
2022-08-15 16:59:34 +00:00
|
|
|
{
|
|
|
|
return wxString::Format( wxT( "%s|%d|%d|%s|%s" ),
|
|
|
|
m_rcItem->GetSettingsKey(),
|
|
|
|
m_Pos.x,
|
|
|
|
m_Pos.y,
|
|
|
|
m_rcItem->GetMainItemID().AsString(),
|
|
|
|
m_rcItem->GetAuxItemID().AsString() );
|
|
|
|
}
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-29 18:06:05 +00:00
|
|
|
PCB_MARKER* PCB_MARKER::DeserializeFromString( const wxString& data )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2022-12-01 18:04:34 +00:00
|
|
|
auto getMarkerLayer =
|
|
|
|
[]( const wxString& layerName ) -> int
|
|
|
|
{
|
|
|
|
for( int layer = 0; layer < PCB_LAYER_ID_COUNT; ++layer )
|
|
|
|
{
|
|
|
|
if( LayerName( ToLAYER_ID( layer ) ) == layerName )
|
|
|
|
return layer;
|
|
|
|
}
|
|
|
|
|
|
|
|
return F_Cu;
|
|
|
|
};
|
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
wxArrayString props = wxSplit( data, '|' );
|
2022-08-15 16:59:34 +00:00
|
|
|
int markerLayer = F_Cu;
|
2022-01-11 00:49:49 +00:00
|
|
|
VECTOR2I markerPos( (int) strtol( props[1].c_str(), nullptr, 10 ),
|
2020-04-24 13:36:10 +00:00
|
|
|
(int) strtol( props[2].c_str(), nullptr, 10 ) );
|
|
|
|
|
2020-08-11 13:33:16 +00:00
|
|
|
std::shared_ptr<DRC_ITEM> drcItem = DRC_ITEM::Create( props[0] );
|
2020-10-02 12:29:17 +00:00
|
|
|
|
2020-07-06 16:53:55 +00:00
|
|
|
if( !drcItem )
|
|
|
|
return nullptr;
|
|
|
|
|
2022-01-11 21:01:35 +00:00
|
|
|
if( drcItem->GetErrorCode() == DRCE_COPPER_SLIVER )
|
|
|
|
{
|
|
|
|
drcItem->SetItems( KIID( props[3] ) );
|
2022-12-01 18:04:34 +00:00
|
|
|
markerLayer = getMarkerLayer( props[4] );
|
|
|
|
}
|
|
|
|
else if( drcItem->GetErrorCode() == DRCE_STARVED_THERMAL )
|
|
|
|
{
|
|
|
|
drcItem->SetItems( KIID( props[3] ), KIID( props[4] ) );
|
2022-01-11 21:01:35 +00:00
|
|
|
|
2022-12-01 18:04:34 +00:00
|
|
|
// Pre-7.0 versions didn't differentiate between layers
|
|
|
|
if( props.size() == 6 )
|
|
|
|
markerLayer = getMarkerLayer( props[5] );
|
2022-01-11 21:01:35 +00:00
|
|
|
}
|
2022-08-15 16:59:34 +00:00
|
|
|
else if( drcItem->GetErrorCode() == DRCE_UNRESOLVED_VARIABLE
|
|
|
|
&& props[3].IsEmpty() && props[4].IsEmpty() )
|
|
|
|
{
|
|
|
|
// Note: caller must load our item pointer with the drawing sheet proxy item
|
|
|
|
markerLayer = LAYER_DRAWINGSHEET;
|
|
|
|
}
|
2022-01-11 21:01:35 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
drcItem->SetItems( KIID( props[3] ), KIID( props[4] ) );
|
|
|
|
}
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2022-01-11 21:01:35 +00:00
|
|
|
return new PCB_MARKER( drcItem, markerPos, markerLayer );
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
void PCB_MARKER::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList )
|
2007-10-26 06:08:19 +00:00
|
|
|
{
|
2020-11-30 14:35:48 +00:00
|
|
|
aList.emplace_back( _( "Type" ), _( "Marker" ) );
|
|
|
|
aList.emplace_back( _( "Violation" ), m_rcItem->GetErrorMessage() );
|
2022-09-11 16:27:47 +00:00
|
|
|
|
|
|
|
switch( GetSeverity() )
|
|
|
|
{
|
|
|
|
case RPT_SEVERITY_IGNORE:
|
|
|
|
aList.emplace_back( _( "Severity" ), _( "Ignore" ) );
|
|
|
|
break;
|
|
|
|
case RPT_SEVERITY_WARNING:
|
|
|
|
aList.emplace_back( _( "Severity" ), _( "Warning" ) );
|
|
|
|
break;
|
|
|
|
case RPT_SEVERITY_ERROR:
|
|
|
|
aList.emplace_back( _( "Severity" ), _( "Error" ) );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2022-08-15 16:59:34 +00:00
|
|
|
if( GetMarkerType() == MARKER_DRAWING_SHEET )
|
|
|
|
{
|
|
|
|
aList.emplace_back( _( "Drawing Sheet" ), wxEmptyString );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wxString mainText;
|
|
|
|
wxString auxText;
|
|
|
|
EDA_ITEM* mainItem = nullptr;
|
|
|
|
EDA_ITEM* auxItem = nullptr;
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2022-08-15 16:59:34 +00:00
|
|
|
if( m_rcItem->GetMainItemID() != niluuid )
|
|
|
|
mainItem = aFrame->GetItem( m_rcItem->GetMainItemID() );
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2022-08-15 16:59:34 +00:00
|
|
|
if( m_rcItem->GetAuxItemID() != niluuid )
|
|
|
|
auxItem = aFrame->GetItem( m_rcItem->GetAuxItemID() );
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2022-08-15 16:59:34 +00:00
|
|
|
if( mainItem )
|
2023-01-12 03:27:44 +00:00
|
|
|
mainText = mainItem->GetItemDescription( aFrame );
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2022-08-15 16:59:34 +00:00
|
|
|
if( auxItem )
|
2023-01-12 03:27:44 +00:00
|
|
|
auxText = auxItem->GetItemDescription( aFrame );
|
2020-04-24 13:36:10 +00:00
|
|
|
|
2022-08-15 16:59:34 +00:00
|
|
|
aList.emplace_back( mainText, auxText );
|
|
|
|
}
|
2024-01-29 15:59:28 +00:00
|
|
|
|
|
|
|
if( IsExcluded() )
|
|
|
|
aList.emplace_back( _( "Excluded" ), m_comment );
|
2007-10-26 06:08:19 +00:00
|
|
|
}
|
2009-07-13 15:25:41 +00:00
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2022-01-13 19:32:00 +00:00
|
|
|
void PCB_MARKER::Rotate( const VECTOR2I& aRotCentre, const EDA_ANGLE& aAngle )
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
2020-12-15 22:32:02 +00:00
|
|
|
// Marker geometry isn't user-editable
|
2009-08-01 19:26:05 +00:00
|
|
|
}
|
|
|
|
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void PCB_MARKER::Flip( const VECTOR2I& aCentre, bool aFlipLeftRight )
|
2009-08-01 19:26:05 +00:00
|
|
|
{
|
2020-12-15 22:32:02 +00:00
|
|
|
// Marker geometry isn't user-editable
|
2009-08-01 19:26:05 +00:00
|
|
|
}
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2022-03-16 23:48:24 +00:00
|
|
|
std::shared_ptr<SHAPE> PCB_MARKER::GetEffectiveShape( PCB_LAYER_ID aLayer, FLASHING aFlash ) const
|
2020-11-24 22:16:27 +00:00
|
|
|
{
|
|
|
|
// Markers do not participate in the board geometry space, and therefore have no
|
|
|
|
// effectiven shape.
|
|
|
|
return std::make_shared<SHAPE_NULL>();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-12 03:27:44 +00:00
|
|
|
wxString PCB_MARKER::GetItemDescription( UNITS_PROVIDER* aUnitsProvider ) const
|
2011-07-14 15:42:44 +00:00
|
|
|
{
|
2020-04-24 18:56:44 +00:00
|
|
|
// m_rcItem->GetErrorMessage() could be used instead, but is probably too long
|
|
|
|
// for menu duty.
|
2020-06-08 02:19:46 +00:00
|
|
|
return wxString::Format( _( "Marker (%s)" ), m_rcItem->GetErrorText() );
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
2014-03-19 12:42:46 +00:00
|
|
|
|
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS PCB_MARKER::GetMenuImage() const
|
2017-02-20 12:20:39 +00:00
|
|
|
{
|
2021-03-08 02:59:07 +00:00
|
|
|
return BITMAPS::drc;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
SEVERITY PCB_MARKER::GetSeverity() const
|
2014-03-19 12:42:46 +00:00
|
|
|
{
|
2021-09-05 15:06:12 +00:00
|
|
|
if( IsExcluded() )
|
|
|
|
return RPT_SEVERITY_EXCLUSION;
|
2020-10-12 22:24:35 +00:00
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
DRC_ITEM* item = static_cast<DRC_ITEM*>( m_rcItem.get() );
|
|
|
|
DRC_RULE* rule = item->GetViolatingRule();
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
if( rule && rule->m_Severity != RPT_SEVERITY_UNDEFINED )
|
|
|
|
return rule->m_Severity;
|
|
|
|
|
|
|
|
return GetBoard()->GetDesignSettings().GetSeverity( item->GetErrorCode() );
|
|
|
|
}
|
2020-07-24 00:25:34 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
void PCB_MARKER::ViewGetLayers( int aLayers[], int& aCount ) const
|
|
|
|
{
|
2021-12-01 14:42:44 +00:00
|
|
|
if( GetMarkerType() == MARKER_RATSNEST )
|
|
|
|
{
|
|
|
|
aCount = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
aCount = 2;
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
aLayers[1] = LAYER_MARKER_SHADOWS;
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2021-09-05 15:06:12 +00:00
|
|
|
switch( GetSeverity() )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
|
|
|
default:
|
2021-09-05 15:06:12 +00:00
|
|
|
case SEVERITY::RPT_SEVERITY_ERROR: aLayers[0] = LAYER_DRC_ERROR; break;
|
|
|
|
case SEVERITY::RPT_SEVERITY_WARNING: aLayers[0] = LAYER_DRC_WARNING; break;
|
|
|
|
case SEVERITY::RPT_SEVERITY_EXCLUSION: aLayers[0] = LAYER_DRC_EXCLUSION; break;
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
2014-03-19 12:42:46 +00:00
|
|
|
}
|
2017-03-03 15:04:58 +00:00
|
|
|
|
2020-02-28 00:05:40 +00:00
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
GAL_LAYER_ID PCB_MARKER::GetColorLayer() const
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
2021-09-05 15:06:12 +00:00
|
|
|
switch( GetSeverity() )
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
|
|
|
default:
|
2021-09-05 15:06:12 +00:00
|
|
|
case SEVERITY::RPT_SEVERITY_ERROR: return LAYER_DRC_ERROR;
|
|
|
|
case SEVERITY::RPT_SEVERITY_WARNING: return LAYER_DRC_WARNING;
|
|
|
|
case SEVERITY::RPT_SEVERITY_EXCLUSION: return LAYER_DRC_EXCLUSION;
|
2020-02-28 00:05:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
KIGFX::COLOR4D PCB_MARKER::getColor() const
|
2020-02-28 00:05:40 +00:00
|
|
|
{
|
|
|
|
COLOR_SETTINGS* colors = Pgm().GetSettingsManager().GetColorSettings();
|
|
|
|
return colors->GetColor( GetColorLayer() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-21 15:42:10 +00:00
|
|
|
void PCB_MARKER::SetZoom( double aZoomFactor )
|
|
|
|
{
|
|
|
|
SetMarkerScale( SCALING_FACTOR * aZoomFactor );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-31 09:15:42 +00:00
|
|
|
const BOX2I PCB_MARKER::GetBoundingBox() const
|
2017-03-03 15:04:58 +00:00
|
|
|
{
|
2022-08-30 22:59:30 +00:00
|
|
|
return GetBoundingBoxMarker();
|
2018-12-19 14:07:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-14 18:11:28 +00:00
|
|
|
const BOX2I PCB_MARKER::ViewBBox() const
|
2018-12-19 14:07:07 +00:00
|
|
|
{
|
2022-08-31 16:17:14 +00:00
|
|
|
return GetBoundingBox();
|
2017-03-03 15:04:58 +00:00
|
|
|
}
|
2020-04-14 12:25:00 +00:00
|
|
|
|
|
|
|
|
2022-12-22 22:45:01 +00:00
|
|
|
static struct PCB_MARKER_DESC
|
|
|
|
{
|
|
|
|
PCB_MARKER_DESC()
|
|
|
|
{
|
|
|
|
PROPERTY_MANAGER& propMgr = PROPERTY_MANAGER::Instance();
|
|
|
|
REGISTER_TYPE( PCB_MARKER );
|
|
|
|
propMgr.AddTypeCast( new TYPE_CAST<PCB_MARKER, BOARD_ITEM> );
|
|
|
|
propMgr.AddTypeCast( new TYPE_CAST<PCB_MARKER, MARKER_BASE> );
|
|
|
|
propMgr.InheritsAfter( TYPE_HASH( PCB_MARKER ), TYPE_HASH( BOARD_ITEM ) );
|
|
|
|
propMgr.InheritsAfter( TYPE_HASH( PCB_MARKER ), TYPE_HASH( MARKER_BASE ) );
|
|
|
|
|
|
|
|
// Markers cannot be locked and have no user-accessible layer control
|
|
|
|
propMgr.OverrideAvailability( TYPE_HASH( PCB_MARKER ), TYPE_HASH( BOARD_ITEM ),
|
|
|
|
_HKI( "Layer" ),
|
|
|
|
[]( INSPECTABLE* aItem ) { return false; } );
|
|
|
|
propMgr.OverrideAvailability( TYPE_HASH( PCB_MARKER ), TYPE_HASH( BOARD_ITEM ),
|
|
|
|
_HKI( "Locked" ),
|
|
|
|
[]( INSPECTABLE* aItem ) { return false; } );
|
|
|
|
}
|
2023-01-29 18:06:05 +00:00
|
|
|
} _PCB_MARKER_DESC;
|