2012-06-08 09:56:42 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2023-08-06 19:20:53 +00:00
|
|
|
* Copyright (C) 1992-2023 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
|
|
|
|
*/
|
|
|
|
|
2021-02-06 01:01:50 +00:00
|
|
|
#include <pybind11/pybind11.h>
|
|
|
|
|
2017-11-29 18:51:01 +00:00
|
|
|
#include <wx/debug.h>
|
2021-08-03 16:53:30 +00:00
|
|
|
#include <wx/msgdlg.h>
|
2020-10-16 15:51:24 +00:00
|
|
|
#include <i18n_utility.h>
|
2021-07-17 19:56:18 +00:00
|
|
|
#include <macros.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
2021-07-17 19:56:18 +00:00
|
|
|
#include <board_design_settings.h>
|
2021-07-22 11:45:33 +00:00
|
|
|
#include <pcb_group.h>
|
2023-12-15 17:36:42 +00:00
|
|
|
#include <pcb_generator.h>
|
2023-03-30 11:49:23 +00:00
|
|
|
#include <footprint.h>
|
2023-09-18 23:52:27 +00:00
|
|
|
#include <font/font.h>
|
2021-06-06 12:41:16 +00:00
|
|
|
|
2008-05-05 19:52:09 +00:00
|
|
|
|
2022-11-11 17:09:25 +00:00
|
|
|
BOARD_ITEM::~BOARD_ITEM()
|
|
|
|
{
|
|
|
|
wxASSERT( m_group == nullptr );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-16 09:53:27 +00:00
|
|
|
const BOARD* BOARD_ITEM::GetBoard() const
|
2009-08-17 02:59:38 +00:00
|
|
|
{
|
2011-10-01 19:24:27 +00:00
|
|
|
if( Type() == PCB_T )
|
2021-08-16 09:53:27 +00:00
|
|
|
return static_cast<const BOARD*>( this );
|
|
|
|
|
|
|
|
BOARD_ITEM* parent = GetParent();
|
|
|
|
|
|
|
|
if( parent )
|
|
|
|
return parent->GetBoard();
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BOARD* BOARD_ITEM::GetBoard()
|
|
|
|
{
|
|
|
|
if( Type() == PCB_T )
|
|
|
|
return static_cast<BOARD*>( this );
|
2009-08-17 02:59:38 +00:00
|
|
|
|
2009-08-17 16:56:02 +00:00
|
|
|
BOARD_ITEM* parent = GetParent();
|
|
|
|
|
|
|
|
if( parent )
|
|
|
|
return parent->GetBoard();
|
|
|
|
|
2021-07-19 23:56:05 +00:00
|
|
|
return nullptr;
|
2009-08-17 02:59:38 +00:00
|
|
|
}
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2021-07-22 11:45:33 +00:00
|
|
|
bool BOARD_ITEM::IsLocked() const
|
|
|
|
{
|
2023-12-15 17:36:42 +00:00
|
|
|
if( GetParentGroup() && GetParentGroup()->IsLocked() )
|
|
|
|
return true;
|
2021-07-22 11:45:33 +00:00
|
|
|
|
2021-10-31 16:32:24 +00:00
|
|
|
const BOARD* board = GetBoard();
|
|
|
|
|
2022-03-08 13:16:39 +00:00
|
|
|
return board && board->GetBoardUse() != BOARD_USE::FPHOLDER && m_isLocked;
|
2021-07-22 11:45:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-17 19:56:18 +00:00
|
|
|
STROKE_PARAMS BOARD_ITEM::GetStroke() const
|
|
|
|
{
|
2022-09-16 11:33:56 +00:00
|
|
|
wxCHECK( false, STROKE_PARAMS( pcbIUScale.mmToIU( DEFAULT_LINE_WIDTH ) ) );
|
2021-07-17 19:56:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD_ITEM::SetStroke( const STROKE_PARAMS& aStroke )
|
|
|
|
{
|
|
|
|
wxCHECK( false, /* void */ );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-06 19:20:53 +00:00
|
|
|
const KIFONT::METRICS& BOARD_ITEM::GetFontMetrics() const
|
|
|
|
{
|
|
|
|
return KIFONT::METRICS::Default();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-14 15:42:44 +00:00
|
|
|
wxString BOARD_ITEM::GetLayerName() const
|
|
|
|
{
|
2021-08-16 09:53:27 +00:00
|
|
|
const BOARD* board = GetBoard();
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2012-11-10 06:39:18 +00:00
|
|
|
if( board )
|
2020-11-14 14:29:11 +00:00
|
|
|
return board->GetLayerName( m_layer );
|
2011-07-14 15:42:44 +00:00
|
|
|
|
2013-03-20 04:46:32 +00:00
|
|
|
// If no parent, return standard name
|
2020-11-14 14:29:11 +00:00
|
|
|
return BOARD::GetStandardLayerName( m_layer );
|
2011-07-14 15:42:44 +00:00
|
|
|
}
|
2012-04-01 20:51:56 +00:00
|
|
|
|
|
|
|
|
2020-11-16 11:16:44 +00:00
|
|
|
wxString BOARD_ITEM::layerMaskDescribe() const
|
2020-05-21 17:42:42 +00:00
|
|
|
{
|
2021-08-16 09:53:27 +00:00
|
|
|
const BOARD* board = GetBoard();
|
2023-02-03 13:19:27 +00:00
|
|
|
LSET layers = GetLayerSet() & board->GetEnabledLayers();
|
|
|
|
|
|
|
|
LSET copperLayers = layers & LSET::AllCuMask();
|
|
|
|
LSET techLayers = layers & LSET::AllTechMask();
|
2020-09-19 16:12:00 +00:00
|
|
|
|
2020-05-21 17:42:42 +00:00
|
|
|
// Try to be smart and useful. Check all copper first.
|
2023-02-03 13:19:27 +00:00
|
|
|
if( (int) copperLayers.count() == board->GetCopperLayerCount() )
|
2020-09-19 16:12:00 +00:00
|
|
|
return _( "all copper layers" );
|
2020-05-21 17:42:42 +00:00
|
|
|
|
2020-09-19 16:12:00 +00:00
|
|
|
for( LSET testLayers : { copperLayers, techLayers, layers } )
|
2020-05-21 17:42:42 +00:00
|
|
|
{
|
|
|
|
for( int bit = PCBNEW_LAYER_ID_START; bit < PCB_LAYER_ID_COUNT; ++bit )
|
|
|
|
{
|
2020-09-19 16:12:00 +00:00
|
|
|
if( testLayers[ bit ] )
|
2020-05-21 17:42:42 +00:00
|
|
|
{
|
2020-09-19 16:12:00 +00:00
|
|
|
wxString layerInfo = board->GetLayerName( static_cast<PCB_LAYER_ID>( bit ) );
|
2020-05-21 17:42:42 +00:00
|
|
|
|
2020-09-19 16:12:00 +00:00
|
|
|
if( testLayers.count() > 1 )
|
2020-10-20 19:05:04 +00:00
|
|
|
layerInfo << wxS( " " ) + _( "and others" );
|
2020-05-21 17:42:42 +00:00
|
|
|
|
|
|
|
return layerInfo;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No copper, no technicals: no layer
|
|
|
|
return _( "no layers" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Introduction of Graphics Abstraction Layer based rendering for pcbnew.
New classes:
- VIEW - represents view that is seen by user, takes care of layer ordering & visibility and how it is displayed (which location, how much zoomed, etc.)
- VIEW_ITEM - Base class for every item that can be displayed on VIEW (the biggest change is that now it may be necessary to override ViewBBox & ViewGetLayers method for derived classes).
- EDA_DRAW_PANEL_GAL - Inherits after EDA_DRAW_PANEL, displays VIEW output, right now it is not editable (in opposite to usual EDA_DRAW_PANEL).
- GAL/OPENGL_GAL/CAIRO_GAL - Base Graphics Abstraction Layer class + two different flavours (Cairo is not fully supported yet), that offers methods to draw primitives using different libraries.
- WX_VIEW_CONTROLS - Controller for VIEW, handles user events, allows zooming, panning, etc.
- PAINTER/PCB_PAINTER - Classes that uses GAL interface to draw items (as you may have already guessed - PCB_PAINTER is a class for drawing PCB specific object, PAINTER is an abstract class). Its methods are invoked by VIEW, when an item has to be drawn. To display a new type of item - you need to implement draw(ITEM_TYPE*) method that draws it using GAL methods.
- STROKE_FONT - Implements stroke font drawing using GAL methods.
Most important changes to Kicad original code:
* EDA_ITEM now inherits from VIEW_ITEM, which is a base class for all drawable objects.
* EDA_DRAW_FRAME contains both usual EDA_DRAW_PANEL and new EDA_DRAW_PANEL_GAL, that can be switched anytime.
* There are some new layers for displaying multilayer pads, vias & pads holes (these are not shown yet on the right sidebar in pcbnew)
* Display order of layers is different than in previous versions (if you are curious - you may check m_galLayerOrder@pcbnew/basepcbframe.cpp). Preserving usual order would result in not very natural display, such as showing silkscreen texts on the bottom.
* Introduced new hotkey (Alt+F12) and new menu option (View->Switch canvas) for switching canvas during runtime.
* Some of classes (mostly derived from BOARD_ITEM) now includes ViewBBox & ViewGetLayers methods.
* Removed tools/class_painter.h, as now it is extended and included in source code.
Build changes:
* GAL-based rendering option is turned on by a new compilation CMake option KICAD_GAL.
* When compiling with CMake option KICAD_GAL=ON, GLEW and Cairo libraries are required.
* GAL-related code is compiled into a static library (common/libgal).
* Build with KICAD_GAL=OFF should not need any new libraries and should come out as a standard version of Kicad
Currently most of items in pcbnew can be displayed using OpenGL (to be done are DIMENSIONS and MARKERS).
More details about GAL can be found in: http://www.ohwr.org/attachments/1884/view-spec.pdf
2013-04-02 06:54:03 +00:00
|
|
|
void BOARD_ITEM::ViewGetLayers( int aLayers[], int& aCount ) const
|
|
|
|
{
|
|
|
|
// Basic fallback
|
|
|
|
aCount = 1;
|
2020-11-14 14:29:11 +00:00
|
|
|
aLayers[0] = m_layer;
|
2022-03-07 17:03:06 +00:00
|
|
|
|
|
|
|
if( IsLocked() )
|
|
|
|
aLayers[aCount++] = LAYER_LOCKED_ITEM_SHADOW;
|
Introduction of Graphics Abstraction Layer based rendering for pcbnew.
New classes:
- VIEW - represents view that is seen by user, takes care of layer ordering & visibility and how it is displayed (which location, how much zoomed, etc.)
- VIEW_ITEM - Base class for every item that can be displayed on VIEW (the biggest change is that now it may be necessary to override ViewBBox & ViewGetLayers method for derived classes).
- EDA_DRAW_PANEL_GAL - Inherits after EDA_DRAW_PANEL, displays VIEW output, right now it is not editable (in opposite to usual EDA_DRAW_PANEL).
- GAL/OPENGL_GAL/CAIRO_GAL - Base Graphics Abstraction Layer class + two different flavours (Cairo is not fully supported yet), that offers methods to draw primitives using different libraries.
- WX_VIEW_CONTROLS - Controller for VIEW, handles user events, allows zooming, panning, etc.
- PAINTER/PCB_PAINTER - Classes that uses GAL interface to draw items (as you may have already guessed - PCB_PAINTER is a class for drawing PCB specific object, PAINTER is an abstract class). Its methods are invoked by VIEW, when an item has to be drawn. To display a new type of item - you need to implement draw(ITEM_TYPE*) method that draws it using GAL methods.
- STROKE_FONT - Implements stroke font drawing using GAL methods.
Most important changes to Kicad original code:
* EDA_ITEM now inherits from VIEW_ITEM, which is a base class for all drawable objects.
* EDA_DRAW_FRAME contains both usual EDA_DRAW_PANEL and new EDA_DRAW_PANEL_GAL, that can be switched anytime.
* There are some new layers for displaying multilayer pads, vias & pads holes (these are not shown yet on the right sidebar in pcbnew)
* Display order of layers is different than in previous versions (if you are curious - you may check m_galLayerOrder@pcbnew/basepcbframe.cpp). Preserving usual order would result in not very natural display, such as showing silkscreen texts on the bottom.
* Introduced new hotkey (Alt+F12) and new menu option (View->Switch canvas) for switching canvas during runtime.
* Some of classes (mostly derived from BOARD_ITEM) now includes ViewBBox & ViewGetLayers methods.
* Removed tools/class_painter.h, as now it is extended and included in source code.
Build changes:
* GAL-based rendering option is turned on by a new compilation CMake option KICAD_GAL.
* When compiling with CMake option KICAD_GAL=ON, GLEW and Cairo libraries are required.
* GAL-related code is compiled into a static library (common/libgal).
* Build with KICAD_GAL=OFF should not need any new libraries and should come out as a standard version of Kicad
Currently most of items in pcbnew can be displayed using OpenGL (to be done are DIMENSIONS and MARKERS).
More details about GAL can be found in: http://www.ohwr.org/attachments/1884/view-spec.pdf
2013-04-02 06:54:03 +00:00
|
|
|
}
|
2015-02-12 03:22:24 +00:00
|
|
|
|
|
|
|
|
2016-12-10 15:20:21 +00:00
|
|
|
void BOARD_ITEM::DeleteStructure()
|
|
|
|
{
|
2020-11-17 20:47:50 +00:00
|
|
|
BOARD_ITEM_CONTAINER* parent = GetParent();
|
2016-12-10 15:20:21 +00:00
|
|
|
|
2019-06-11 14:47:54 +00:00
|
|
|
if( parent )
|
2016-12-13 16:24:19 +00:00
|
|
|
parent->Remove( this );
|
2016-12-10 15:20:21 +00:00
|
|
|
|
|
|
|
delete this;
|
|
|
|
}
|
2017-10-31 13:59:03 +00:00
|
|
|
|
|
|
|
|
2022-11-11 17:09:25 +00:00
|
|
|
void BOARD_ITEM::swapData( BOARD_ITEM* aImage )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD_ITEM::SwapItemData( BOARD_ITEM* aImage )
|
2017-10-31 13:59:03 +00:00
|
|
|
{
|
2022-11-11 17:09:25 +00:00
|
|
|
if( aImage == nullptr )
|
|
|
|
return;
|
|
|
|
|
|
|
|
EDA_ITEM* parent = GetParent();
|
|
|
|
PCB_GROUP* group = GetParentGroup();
|
|
|
|
|
|
|
|
SetParentGroup( nullptr );
|
|
|
|
aImage->SetParentGroup( nullptr );
|
|
|
|
swapData( aImage );
|
|
|
|
|
|
|
|
// Restore pointers to be sure they are not broken
|
|
|
|
SetParent( parent );
|
|
|
|
SetParentGroup( group );
|
2017-10-31 13:59:03 +00:00
|
|
|
}
|
2017-11-29 18:51:01 +00:00
|
|
|
|
2020-02-02 18:40:14 +00:00
|
|
|
|
2022-02-04 14:26:32 +00:00
|
|
|
BOARD_ITEM* BOARD_ITEM::Duplicate() const
|
|
|
|
{
|
|
|
|
BOARD_ITEM* dupe = static_cast<BOARD_ITEM*>( Clone() );
|
|
|
|
const_cast<KIID&>( dupe->m_Uuid ) = KIID();
|
|
|
|
|
|
|
|
if( dupe->GetParentGroup() )
|
|
|
|
dupe->GetParentGroup()->AddItem( dupe );
|
|
|
|
|
2023-07-13 10:24:33 +00:00
|
|
|
return dupe;
|
2022-02-04 14:26:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-21 12:48:45 +00:00
|
|
|
void BOARD_ITEM::TransformShapeToPolygon( SHAPE_POLY_SET& aBuffer, PCB_LAYER_ID aLayer,
|
|
|
|
int aClearance, int aError, ERROR_LOC aErrorLoc,
|
|
|
|
bool ignoreLineWidth ) const
|
2018-11-14 23:34:32 +00:00
|
|
|
{
|
2022-10-21 12:48:45 +00:00
|
|
|
wxASSERT_MSG( false, wxT( "Called TransformShapeToPolygon() on unsupported BOARD_ITEM." ) );
|
2017-11-29 18:51:01 +00:00
|
|
|
};
|
2020-02-02 18:40:14 +00:00
|
|
|
|
|
|
|
|
2020-07-24 22:08:36 +00:00
|
|
|
bool BOARD_ITEM::ptr_cmp::operator() ( const BOARD_ITEM* a, const BOARD_ITEM* b ) const
|
|
|
|
{
|
|
|
|
if( a->Type() != b->Type() )
|
|
|
|
return a->Type() < b->Type();
|
|
|
|
|
2022-02-18 12:52:25 +00:00
|
|
|
if( a->GetLayerSet() != b->GetLayerSet() )
|
|
|
|
return a->GetLayerSet().Seq() < b->GetLayerSet().Seq();
|
2020-07-24 22:08:36 +00:00
|
|
|
|
2021-11-02 18:32:48 +00:00
|
|
|
if( a->m_Uuid != b->m_Uuid ) // UUIDs *should* always be unique (for valid boards anyway)
|
2020-10-11 17:02:38 +00:00
|
|
|
return a->m_Uuid < b->m_Uuid;
|
|
|
|
|
2021-11-02 18:32:48 +00:00
|
|
|
return a < b; // But just in case; ptrs are guaranteed to be different
|
2020-07-24 22:08:36 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 16:23:36 +00:00
|
|
|
|
2022-03-16 23:48:24 +00:00
|
|
|
std::shared_ptr<SHAPE> BOARD_ITEM::GetEffectiveShape( PCB_LAYER_ID aLayer, FLASHING aFlash ) const
|
2020-07-15 16:23:36 +00:00
|
|
|
{
|
2022-07-22 22:05:25 +00:00
|
|
|
static std::shared_ptr<SHAPE> shape;
|
2020-07-15 16:23:36 +00:00
|
|
|
|
2021-07-17 19:56:18 +00:00
|
|
|
UNIMPLEMENTED_FOR( GetClass() );
|
2020-08-03 22:09:23 +00:00
|
|
|
|
2020-07-15 16:23:36 +00:00
|
|
|
return shape;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-07-22 22:05:25 +00:00
|
|
|
std::shared_ptr<SHAPE_SEGMENT> BOARD_ITEM::GetEffectiveHoleShape() const
|
|
|
|
{
|
|
|
|
static std::shared_ptr<SHAPE_SEGMENT> slot;
|
|
|
|
|
|
|
|
UNIMPLEMENTED_FOR( GetClass() );
|
|
|
|
|
|
|
|
return slot;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-03-30 11:49:23 +00:00
|
|
|
FOOTPRINT* BOARD_ITEM::GetParentFootprint() const
|
2021-11-26 23:01:53 +00:00
|
|
|
{
|
|
|
|
BOARD_ITEM_CONTAINER* ancestor = GetParent();
|
|
|
|
|
|
|
|
while( ancestor && ancestor->Type() == PCB_GROUP_T )
|
|
|
|
ancestor = ancestor->GetParent();
|
|
|
|
|
2023-03-30 11:49:23 +00:00
|
|
|
if( ancestor && ancestor->Type() == PCB_FOOTPRINT_T )
|
|
|
|
return static_cast<FOOTPRINT*>( ancestor );
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
VECTOR2I BOARD_ITEM::GetFPRelativePosition() const
|
|
|
|
{
|
|
|
|
VECTOR2I pos = GetPosition();
|
|
|
|
|
|
|
|
if( FOOTPRINT* parentFP = GetParentFootprint() )
|
|
|
|
{
|
|
|
|
pos -= parentFP->GetPosition();
|
|
|
|
RotatePoint( pos, -parentFP->GetOrientation() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BOARD_ITEM::SetFPRelativePosition( const VECTOR2I& aPos )
|
|
|
|
{
|
|
|
|
VECTOR2I pos( aPos );
|
|
|
|
|
|
|
|
if( FOOTPRINT* parentFP = GetParentFootprint() )
|
|
|
|
{
|
|
|
|
RotatePoint( pos, parentFP->GetOrientation() );
|
|
|
|
pos += parentFP->GetPosition();
|
|
|
|
}
|
|
|
|
|
|
|
|
SetPosition( pos );
|
2021-11-26 23:01:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-13 19:32:00 +00:00
|
|
|
void BOARD_ITEM::Rotate( const VECTOR2I& aRotCentre, const EDA_ANGLE& aAngle )
|
2021-06-06 12:41:16 +00:00
|
|
|
{
|
|
|
|
wxMessageBox( wxT( "virtual BOARD_ITEM::Rotate used, should not occur" ), GetClass() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void BOARD_ITEM::Flip( const VECTOR2I& aCentre, bool aFlipLeftRight )
|
2021-06-06 12:41:16 +00:00
|
|
|
{
|
|
|
|
wxMessageBox( wxT( "virtual BOARD_ITEM::Flip used, should not occur" ), GetClass() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-18 17:35:44 +00:00
|
|
|
wxString BOARD_ITEM::GetParentAsString() const
|
|
|
|
{
|
|
|
|
if( FOOTPRINT* fp = dynamic_cast<FOOTPRINT*>( m_parent ) )
|
|
|
|
return fp->GetReference();
|
|
|
|
|
|
|
|
return m_parent->m_Uuid.AsString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-02 18:40:14 +00:00
|
|
|
static struct BOARD_ITEM_DESC
|
|
|
|
{
|
|
|
|
BOARD_ITEM_DESC()
|
|
|
|
{
|
2020-07-19 21:22:49 +00:00
|
|
|
ENUM_MAP<PCB_LAYER_ID>& layerEnum = ENUM_MAP<PCB_LAYER_ID>::Instance();
|
2020-02-05 15:04:12 +00:00
|
|
|
|
2020-07-06 16:16:55 +00:00
|
|
|
if( layerEnum.Choices().GetCount() == 0 )
|
2020-02-05 15:04:12 +00:00
|
|
|
{
|
2020-07-23 10:35:05 +00:00
|
|
|
layerEnum.Undefined( UNDEFINED_LAYER );
|
2020-07-19 21:22:49 +00:00
|
|
|
|
2020-07-06 16:16:55 +00:00
|
|
|
for( LSEQ seq = LSET::AllLayersMask().Seq(); seq; ++seq )
|
|
|
|
layerEnum.Map( *seq, LSET::Name( *seq ) );
|
2020-02-05 15:04:12 +00:00
|
|
|
}
|
2020-02-02 18:40:14 +00:00
|
|
|
|
|
|
|
PROPERTY_MANAGER& propMgr = PROPERTY_MANAGER::Instance();
|
|
|
|
REGISTER_TYPE( BOARD_ITEM );
|
|
|
|
propMgr.InheritsAfter( TYPE_HASH( BOARD_ITEM ), TYPE_HASH( EDA_ITEM ) );
|
|
|
|
|
2023-08-18 17:35:44 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<BOARD_ITEM, wxString>( _HKI( "Parent" ),
|
|
|
|
NO_SETTER( BOARD_ITEM, wxString ), &BOARD_ITEM::GetParentAsString ) )
|
2024-01-24 01:41:34 +00:00
|
|
|
.SetIsHiddenFromLibraryEditors()
|
|
|
|
.SetIsHiddenFromPropertiesManager();
|
2023-08-18 17:35:44 +00:00
|
|
|
|
2020-10-16 15:51:24 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<BOARD_ITEM, int>( _HKI( "Position X" ),
|
2022-10-31 01:09:59 +00:00
|
|
|
&BOARD_ITEM::SetX, &BOARD_ITEM::GetX, PROPERTY_DISPLAY::PT_COORD,
|
2022-11-25 21:29:56 +00:00
|
|
|
ORIGIN_TRANSFORMS::ABS_X_COORD ) );
|
2020-10-16 15:51:24 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<BOARD_ITEM, int>( _HKI( "Position Y" ),
|
2022-10-31 01:09:59 +00:00
|
|
|
&BOARD_ITEM::SetY, &BOARD_ITEM::GetY, PROPERTY_DISPLAY::PT_COORD,
|
2022-11-25 21:29:56 +00:00
|
|
|
ORIGIN_TRANSFORMS::ABS_Y_COORD ) );
|
2020-10-16 15:51:24 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY_ENUM<BOARD_ITEM, PCB_LAYER_ID>( _HKI( "Layer" ),
|
2020-02-02 18:40:14 +00:00
|
|
|
&BOARD_ITEM::SetLayer, &BOARD_ITEM::GetLayer ) );
|
2020-10-16 15:51:24 +00:00
|
|
|
propMgr.AddProperty( new PROPERTY<BOARD_ITEM, bool>( _HKI( "Locked" ),
|
2023-12-15 21:04:33 +00:00
|
|
|
&BOARD_ITEM::SetLocked, &BOARD_ITEM::IsLocked ) )
|
2023-06-30 19:51:01 +00:00
|
|
|
.SetAvailableFunc(
|
|
|
|
[=]( INSPECTABLE* aItem ) -> bool
|
|
|
|
{
|
|
|
|
BOARD_ITEM* item = dynamic_cast<BOARD_ITEM*>( aItem );
|
|
|
|
return item && item->GetBoard() && !item->GetBoard()->IsFootprintHolder();
|
|
|
|
} );
|
2020-02-02 18:40:14 +00:00
|
|
|
}
|
|
|
|
} _BOARD_ITEM_DESC;
|
|
|
|
|
|
|
|
IMPLEMENT_ENUM_TO_WXANY( PCB_LAYER_ID )
|