2011-10-31 20:49:48 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-11-02 10:27:57 +00:00
|
|
|
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2022-01-13 12:29:46 +00:00
|
|
|
* Copyright (C) 2004-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-31 20:49:48 +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
|
|
|
|
*/
|
|
|
|
|
2020-10-14 01:06:53 +00:00
|
|
|
#include <eda_item.h>
|
2021-07-29 09:56:22 +00:00
|
|
|
#include <string_utils.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2020-04-24 13:36:10 +00:00
|
|
|
#include <eda_draw_frame.h>
|
2021-08-18 20:38:14 +00:00
|
|
|
#include <plotters/plotter.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <trigo.h>
|
2012-04-13 18:51:24 +00:00
|
|
|
#include <base_units.h>
|
2020-10-25 04:49:02 +00:00
|
|
|
#include <widgets/msgpanel.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2020-04-14 12:25:00 +00:00
|
|
|
#include <general.h>
|
2021-02-24 13:48:02 +00:00
|
|
|
#include <lib_symbol.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <transform.h>
|
|
|
|
#include <lib_field.h>
|
|
|
|
#include <template_fieldnames.h>
|
2020-03-06 03:00:30 +00:00
|
|
|
#include <settings/color_settings.h>
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
|
2021-12-12 22:01:13 +00:00
|
|
|
LIB_FIELD::LIB_FIELD( LIB_SYMBOL* aParent, int aId ) :
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_ITEM( LIB_FIELD_T, aParent )
|
2008-12-31 09:27:19 +00:00
|
|
|
{
|
2021-12-12 22:01:13 +00:00
|
|
|
Init( aId );
|
2008-12-31 09:27:19 +00:00
|
|
|
}
|
|
|
|
|
2009-10-20 19:36:58 +00:00
|
|
|
|
2021-12-12 22:01:13 +00:00
|
|
|
LIB_FIELD::LIB_FIELD( int aId ) :
|
2021-07-16 20:13:26 +00:00
|
|
|
LIB_ITEM( LIB_FIELD_T, nullptr )
|
2009-06-18 13:30:52 +00:00
|
|
|
{
|
2021-12-12 22:01:13 +00:00
|
|
|
Init( aId );
|
2019-01-10 05:42:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-12 22:01:13 +00:00
|
|
|
LIB_FIELD::LIB_FIELD( int aId, const wxString& aName ) :
|
2021-07-16 20:13:26 +00:00
|
|
|
LIB_ITEM( LIB_FIELD_T, nullptr )
|
2019-01-10 05:42:14 +00:00
|
|
|
{
|
2021-12-12 22:01:13 +00:00
|
|
|
Init( aId );
|
2019-01-10 05:42:14 +00:00
|
|
|
m_name = aName;
|
2009-06-18 13:30:52 +00:00
|
|
|
}
|
2008-12-31 09:27:19 +00:00
|
|
|
|
2009-10-20 19:36:58 +00:00
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
LIB_FIELD::~LIB_FIELD()
|
2008-12-31 09:27:19 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
LIB_FIELD& LIB_FIELD::operator=( const LIB_FIELD& field )
|
2017-01-23 20:30:11 +00:00
|
|
|
{
|
|
|
|
m_id = field.m_id;
|
|
|
|
m_name = field.m_name;
|
2020-11-14 18:11:28 +00:00
|
|
|
m_parent = field.m_parent;
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2019-08-02 00:10:25 +00:00
|
|
|
SetText( field.GetText() );
|
2021-12-28 22:13:54 +00:00
|
|
|
SetAttributes( field );
|
2019-05-20 10:23:32 +00:00
|
|
|
|
|
|
|
return *this;
|
2017-01-23 20:30:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-12 22:01:13 +00:00
|
|
|
void LIB_FIELD::Init( int aId )
|
2009-10-20 19:36:58 +00:00
|
|
|
{
|
2021-12-12 22:01:13 +00:00
|
|
|
wxCHECK2( aId >= 0, aId = MANDATORY_FIELDS );
|
|
|
|
|
|
|
|
m_id = aId;
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2022-01-13 12:29:46 +00:00
|
|
|
SetTextAngle( ANGLE_HORIZONTAL ); // constructor already did this.
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2019-07-02 20:09:23 +00:00
|
|
|
// Fields in RAM must always have names, because we are trying to get less dependent on
|
|
|
|
// field ids and more dependent on names. Plus assumptions are made in the field editors.
|
2021-12-12 22:01:13 +00:00
|
|
|
m_name = TEMPLATE_FIELDNAME::GetDefaultFieldName( aId );
|
2016-05-16 18:59:35 +00:00
|
|
|
|
2019-07-02 20:09:23 +00:00
|
|
|
// By contrast, VALUE and REFERENCE are are always constructed as initially visible, and
|
|
|
|
// template fieldsnames' initial visibility is controlled by the template fieldname config.
|
2021-12-12 22:01:13 +00:00
|
|
|
if( aId == DATASHEET_FIELD || aId == FOOTPRINT_FIELD )
|
2016-05-16 18:59:35 +00:00
|
|
|
SetVisible( false );
|
2009-10-20 19:36:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-12 22:01:13 +00:00
|
|
|
void LIB_FIELD::SetId( int aId )
|
|
|
|
{
|
|
|
|
wxCHECK2( aId >= 0, aId = MANDATORY_FIELDS );
|
|
|
|
m_id = aId;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
int LIB_FIELD::GetPenWidth() const
|
2009-06-30 17:57:27 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
return GetEffectiveTextPenWidth();
|
2009-06-30 17:57:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-07 00:47:23 +00:00
|
|
|
KIFONT::FONT* LIB_FIELD::GetDrawFont() const
|
|
|
|
{
|
|
|
|
KIFONT::FONT* font = EDA_TEXT::GetFont();
|
|
|
|
|
|
|
|
if( !font )
|
|
|
|
font = KIFONT::FONT::GetFont( GetDefaultFont(), IsBold(), IsItalic() );
|
|
|
|
|
|
|
|
return font;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void LIB_FIELD::print( const RENDER_SETTINGS* aSettings, const VECTOR2I& aOffset, void* aData,
|
2019-05-31 12:15:25 +00:00
|
|
|
const TRANSFORM& aTransform )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
wxDC* DC = aSettings->GetPrintDC();
|
|
|
|
COLOR4D color = aSettings->GetLayerColor( IsVisible() ? GetDefaultLayer() : LAYER_HIDDEN );
|
2021-08-17 10:59:04 +00:00
|
|
|
int penWidth = GetEffectivePenWidth( aSettings );
|
2021-12-29 21:30:11 +00:00
|
|
|
VECTOR2I text_pos = aTransform.TransformCoordinate( GetTextPos() ) + aOffset;
|
2019-08-02 00:10:25 +00:00
|
|
|
wxString text = aData ? *static_cast<wxString*>( aData ) : GetText();
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2022-01-10 01:53:01 +00:00
|
|
|
GRPrintText( DC, text_pos, color, text, GetTextAngle(), GetTextSize(), GetHorizJustify(),
|
|
|
|
GetVertJustify(), penWidth, IsItalic(), IsBold(), GetDrawFont() );
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
bool LIB_FIELD::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2019-08-02 00:10:25 +00:00
|
|
|
// Because HitTest is mainly used to select the field return false if it is empty
|
|
|
|
if( GetText().IsEmpty() )
|
2010-12-20 19:18:20 +00:00
|
|
|
return false;
|
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
// Build a temporary copy of the text for hit testing
|
|
|
|
EDA_TEXT tmp_text( *this );
|
2010-12-07 16:10:42 +00:00
|
|
|
|
2019-07-02 20:09:23 +00:00
|
|
|
// Reference designator text has one or 2 additional character (displays U? or U?A)
|
2020-11-12 21:31:41 +00:00
|
|
|
if( m_id == REFERENCE_FIELD )
|
2009-06-13 17:06:07 +00:00
|
|
|
{
|
2021-06-10 18:51:46 +00:00
|
|
|
const LIB_SYMBOL* parent = dynamic_cast<const LIB_SYMBOL*>( m_parent );
|
2020-03-06 12:05:21 +00:00
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
wxString extended_text = tmp_text.GetText();
|
|
|
|
extended_text.Append('?');
|
2010-12-07 16:10:42 +00:00
|
|
|
|
2020-03-06 12:05:21 +00:00
|
|
|
if ( parent && parent->GetUnitCount() > 1 )
|
2014-05-04 17:08:36 +00:00
|
|
|
extended_text.Append('A');
|
2020-03-06 12:05:21 +00:00
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
tmp_text.SetText( extended_text );
|
2009-06-13 17:06:07 +00:00
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
tmp_text.SetTextPos( DefaultTransform.TransformCoordinate( GetTextPos() ) );
|
2010-12-07 16:10:42 +00:00
|
|
|
|
2019-07-02 20:09:23 +00:00
|
|
|
// The text orientation may need to be flipped if the transformation matrix causes xy axes
|
|
|
|
// to be flipped. This simple algo works only for schematic matrix (rot 90 or/and mirror)
|
2022-01-13 12:29:46 +00:00
|
|
|
bool t1 = ( DefaultTransform.x1 != 0 ) ^ ( GetTextAngle() != ANGLE_HORIZONTAL );
|
|
|
|
tmp_text.SetTextAngle( t1 ? ANGLE_HORIZONTAL : ANGLE_VERTICAL );
|
2009-06-13 17:06:07 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
return tmp_text.TextHitTest( aPosition, aAccuracy );
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
2008-12-31 15:01:29 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* LIB_FIELD::Clone() const
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
LIB_FIELD* newfield = new LIB_FIELD( m_id );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
Copy( newfield );
|
|
|
|
|
2011-04-27 19:44:32 +00:00
|
|
|
return (EDA_ITEM*) newfield;
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-14 15:56:30 +00:00
|
|
|
void LIB_FIELD::Copy( LIB_FIELD* aTarget ) const
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
aTarget->m_name = m_name;
|
|
|
|
|
2019-09-27 18:57:14 +00:00
|
|
|
aTarget->CopyText( *this );
|
2021-12-28 22:13:54 +00:00
|
|
|
aTarget->SetAttributes( *this );
|
2020-11-14 18:11:28 +00:00
|
|
|
aTarget->SetParent( m_parent );
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-13 13:39:52 +00:00
|
|
|
int LIB_FIELD::compare( const LIB_ITEM& aOther, LIB_ITEM::COMPARE_FLAGS aCompareFlags ) const
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2020-02-13 13:39:52 +00:00
|
|
|
wxASSERT( aOther.Type() == LIB_FIELD_T );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2020-02-13 13:39:52 +00:00
|
|
|
int retv = LIB_ITEM::compare( aOther, aCompareFlags );
|
|
|
|
|
|
|
|
if( retv )
|
|
|
|
return retv;
|
|
|
|
|
|
|
|
const LIB_FIELD* tmp = ( LIB_FIELD* ) &aOther;
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2021-12-12 22:01:13 +00:00
|
|
|
// Equality test will vary depending whether or not the field is mandatory. Otherwise,
|
|
|
|
// sorting is done by ordinal.
|
|
|
|
if( aCompareFlags & LIB_ITEM::COMPARE_FLAGS::EQUALITY )
|
|
|
|
{
|
|
|
|
// Mandatory fields have fixed ordinals and their names can vary due to translated field
|
|
|
|
// names. Optional fields have fixed names and their ordinals can vary.
|
|
|
|
if( IsMandatory() )
|
|
|
|
{
|
|
|
|
if( m_id != tmp->m_id )
|
|
|
|
return m_id - tmp->m_id;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
retv = m_name.Cmp( tmp->m_name );
|
|
|
|
|
|
|
|
if( retv )
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( m_id != tmp->m_id )
|
|
|
|
return m_id - tmp->m_id;
|
|
|
|
}
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2021-12-12 22:01:13 +00:00
|
|
|
retv = GetText().CmpNoCase( tmp->GetText() );
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2021-12-12 22:01:13 +00:00
|
|
|
if( retv != 0 )
|
|
|
|
return retv;
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
if( GetTextPos().x != tmp->GetTextPos().x )
|
|
|
|
return GetTextPos().x - tmp->GetTextPos().x;
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
if( GetTextPos().y != tmp->GetTextPos().y )
|
|
|
|
return GetTextPos().y - tmp->GetTextPos().y;
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
if( GetTextWidth() != tmp->GetTextWidth() )
|
|
|
|
return GetTextWidth() - tmp->GetTextWidth();
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
if( GetTextHeight() != tmp->GetTextHeight() )
|
|
|
|
return GetTextHeight() - tmp->GetTextHeight();
|
2009-10-01 14:17:47 +00:00
|
|
|
|
|
|
|
return 0;
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void LIB_FIELD::Offset( const VECTOR2I& aOffset )
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
EDA_TEXT::Offset( aOffset );
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void LIB_FIELD::MoveTo( const VECTOR2I& newPosition )
|
2009-09-25 18:49:04 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
EDA_TEXT::SetTextPos( newPosition );
|
2009-09-25 18:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void LIB_FIELD::MirrorHorizontal( const VECTOR2I& center )
|
2009-09-29 18:38:21 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
int x = GetTextPos().x;
|
|
|
|
|
|
|
|
x -= center.x;
|
|
|
|
x *= -1;
|
|
|
|
x += center.x;
|
|
|
|
|
|
|
|
SetTextX( x );
|
2009-09-29 18:38:21 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void LIB_FIELD::MirrorVertical( const VECTOR2I& center )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
int y = GetTextPos().y;
|
|
|
|
|
|
|
|
y -= center.y;
|
|
|
|
y *= -1;
|
|
|
|
y += center.y;
|
|
|
|
|
|
|
|
SetTextY( y );
|
2011-05-20 18:29:35 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void LIB_FIELD::Rotate( const VECTOR2I& center, bool aRotateCCW )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2022-01-16 21:15:20 +00:00
|
|
|
EDA_ANGLE rot_angle = aRotateCCW ? -ANGLE_90 : ANGLE_90;
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2021-12-29 21:30:11 +00:00
|
|
|
VECTOR2I pt = GetTextPos();
|
|
|
|
RotatePoint( pt, center, rot_angle );
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextPos( pt );
|
|
|
|
|
2022-01-13 12:29:46 +00:00
|
|
|
SetTextAngle( GetTextAngle() != ANGLE_HORIZONTAL ? ANGLE_HORIZONTAL : ANGLE_VERTICAL );
|
2011-05-20 18:29:35 +00:00
|
|
|
}
|
|
|
|
|
2009-09-29 18:38:21 +00:00
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void LIB_FIELD::Plot( PLOTTER* aPlotter, const VECTOR2I& aOffset, bool aFill,
|
2021-03-06 09:27:41 +00:00
|
|
|
const TRANSFORM& aTransform ) const
|
2009-10-05 17:52:41 +00:00
|
|
|
{
|
2019-08-02 00:10:25 +00:00
|
|
|
if( GetText().IsEmpty() )
|
2013-05-18 09:38:23 +00:00
|
|
|
return;
|
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
// Calculate the text orientation, according to the symbol orientation/mirror.
|
2021-12-28 22:13:54 +00:00
|
|
|
EDA_ANGLE orient = GetTextAngle();
|
2013-05-18 09:38:23 +00:00
|
|
|
|
2021-06-14 18:00:08 +00:00
|
|
|
if( aTransform.y1 ) // Rotate symbol 90 deg.
|
2013-05-18 09:38:23 +00:00
|
|
|
{
|
2021-12-28 22:13:54 +00:00
|
|
|
if( orient.IsHorizontal() )
|
2022-01-13 12:29:46 +00:00
|
|
|
orient = ANGLE_VERTICAL;
|
2013-05-18 09:38:23 +00:00
|
|
|
else
|
2022-01-13 12:29:46 +00:00
|
|
|
orient = ANGLE_HORIZONTAL;
|
2013-05-18 09:38:23 +00:00
|
|
|
}
|
|
|
|
|
2021-10-26 12:18:08 +00:00
|
|
|
EDA_RECT bbox = GetBoundingBox();
|
|
|
|
bbox.RevertYAxis();
|
2015-06-18 14:56:08 +00:00
|
|
|
|
2021-12-28 22:13:54 +00:00
|
|
|
GR_TEXT_H_ALIGN_T hjustify = GR_TEXT_H_ALIGN_CENTER;
|
|
|
|
GR_TEXT_V_ALIGN_T vjustify = GR_TEXT_V_ALIGN_CENTER;
|
2021-12-29 21:30:11 +00:00
|
|
|
VECTOR2I textpos = aTransform.TransformCoordinate( bbox.Centre() ) + aOffset;
|
2013-05-18 09:38:23 +00:00
|
|
|
|
2020-03-06 03:00:30 +00:00
|
|
|
COLOR4D color;
|
|
|
|
|
|
|
|
if( aPlotter->GetColorMode() )
|
2020-04-14 12:25:00 +00:00
|
|
|
color = aPlotter->RenderSettings()->GetLayerColor( GetDefaultLayer() );
|
2020-03-06 03:00:30 +00:00
|
|
|
else
|
|
|
|
color = COLOR4D::BLACK;
|
|
|
|
|
2021-08-17 10:59:04 +00:00
|
|
|
int penWidth = GetEffectivePenWidth( aPlotter->RenderSettings() );
|
2020-04-14 12:25:00 +00:00
|
|
|
|
|
|
|
aPlotter->Text( textpos, color, GetShownText(), orient, GetTextSize(), hjustify, vjustify,
|
2020-04-18 20:04:41 +00:00
|
|
|
penWidth, IsItalic(), IsBold() );
|
2009-10-05 17:52:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-05 19:18:29 +00:00
|
|
|
wxString LIB_FIELD::GetFullText( int unit ) const
|
2009-09-22 12:27:57 +00:00
|
|
|
{
|
2020-11-12 21:31:41 +00:00
|
|
|
if( m_id != REFERENCE_FIELD )
|
2014-09-13 18:15:45 +00:00
|
|
|
return GetText();
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2014-09-13 18:15:45 +00:00
|
|
|
wxString text = GetText();
|
2010-04-24 11:27:38 +00:00
|
|
|
text << wxT( "?" );
|
2009-09-22 12:27:57 +00:00
|
|
|
|
2020-05-08 17:33:41 +00:00
|
|
|
wxCHECK( GetParent(), text );
|
|
|
|
|
|
|
|
if( GetParent()->IsMulti() )
|
2021-06-10 18:51:46 +00:00
|
|
|
text << LIB_SYMBOL::SubReference( unit );
|
2009-09-22 12:27:57 +00:00
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT LIB_FIELD::GetBoundingBox() const
|
2009-10-01 14:17:47 +00:00
|
|
|
{
|
2011-11-11 07:00:51 +00:00
|
|
|
/* Y coordinates for LIB_ITEMS are bottom to top, so we must invert the Y position when
|
|
|
|
* calling GetTextBox() that works using top to bottom Y axis orientation.
|
|
|
|
*/
|
2020-04-14 12:25:00 +00:00
|
|
|
EDA_RECT rect = GetTextBox( -1, true );
|
2015-06-18 14:56:08 +00:00
|
|
|
rect.RevertYAxis();
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2015-06-18 14:56:08 +00:00
|
|
|
// We are using now a bottom to top Y axis.
|
2021-12-29 21:30:11 +00:00
|
|
|
VECTOR2I orig = rect.GetOrigin();
|
|
|
|
VECTOR2I end = rect.GetEnd();
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2021-12-29 21:30:11 +00:00
|
|
|
RotatePoint( orig, GetTextPos(), -GetTextAngle() );
|
|
|
|
RotatePoint( end, GetTextPos(), -GetTextAngle() );
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2009-10-01 14:17:47 +00:00
|
|
|
rect.SetOrigin( orig );
|
|
|
|
rect.SetEnd( end );
|
2015-06-18 14:56:08 +00:00
|
|
|
|
|
|
|
// We are using now a top to bottom Y axis:
|
|
|
|
rect.RevertYAxis();
|
2009-10-01 14:17:47 +00:00
|
|
|
|
|
|
|
return rect;
|
|
|
|
}
|
2010-10-20 20:24:26 +00:00
|
|
|
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
void LIB_FIELD::ViewGetLayers( int aLayers[], int& aCount ) const
|
2010-10-20 20:24:26 +00:00
|
|
|
{
|
2019-07-30 01:57:41 +00:00
|
|
|
aCount = 2;
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
switch( m_id )
|
2010-10-20 20:24:26 +00:00
|
|
|
{
|
2020-11-12 21:31:41 +00:00
|
|
|
case REFERENCE_FIELD: aLayers[0] = LAYER_REFERENCEPART; break;
|
|
|
|
case VALUE_FIELD: aLayers[0] = LAYER_VALUEPART; break;
|
|
|
|
default: aLayers[0] = LAYER_FIELDS; break;
|
2018-10-21 12:50:31 +00:00
|
|
|
}
|
2019-07-30 01:57:41 +00:00
|
|
|
|
|
|
|
aLayers[1] = LAYER_SELECTION_SHADOWS;
|
2018-10-21 12:50:31 +00:00
|
|
|
}
|
2010-10-20 20:24:26 +00:00
|
|
|
|
|
|
|
|
2021-03-06 09:27:41 +00:00
|
|
|
SCH_LAYER_ID LIB_FIELD::GetDefaultLayer() const
|
2018-10-21 12:50:31 +00:00
|
|
|
{
|
|
|
|
switch( m_id )
|
|
|
|
{
|
2020-11-12 21:31:41 +00:00
|
|
|
case REFERENCE_FIELD: return LAYER_REFERENCEPART;
|
|
|
|
case VALUE_FIELD: return LAYER_VALUEPART;
|
|
|
|
default: return LAYER_FIELDS;
|
2010-10-20 20:24:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-03-26 11:02:59 +00:00
|
|
|
wxString LIB_FIELD::GetName( bool aUseDefaultName ) const
|
|
|
|
{
|
2020-04-01 14:00:40 +00:00
|
|
|
if( m_name.IsEmpty() && aUseDefaultName )
|
2020-03-26 11:02:59 +00:00
|
|
|
return TEMPLATE_FIELDNAME::GetDefaultFieldName( m_id );
|
2020-04-01 14:00:40 +00:00
|
|
|
|
|
|
|
return m_name;
|
2020-03-26 11:02:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString LIB_FIELD::GetCanonicalName() const
|
2010-10-22 12:11:52 +00:00
|
|
|
{
|
2010-12-07 16:10:42 +00:00
|
|
|
switch( m_id )
|
2010-10-22 12:11:52 +00:00
|
|
|
{
|
2020-11-12 21:31:41 +00:00
|
|
|
case REFERENCE_FIELD: return wxT( "Reference" );
|
|
|
|
case VALUE_FIELD: return wxT( "Value" );
|
|
|
|
case FOOTPRINT_FIELD: return wxT( "Footprint" );
|
|
|
|
case DATASHEET_FIELD: return wxT( "Datasheet" );
|
2010-10-22 12:11:52 +00:00
|
|
|
}
|
2020-03-26 11:02:59 +00:00
|
|
|
|
|
|
|
return m_name;
|
2010-10-22 12:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-07 16:10:42 +00:00
|
|
|
void LIB_FIELD::SetName( const wxString& aName )
|
|
|
|
{
|
|
|
|
// Mandatory field names are fixed.
|
2020-04-01 14:00:40 +00:00
|
|
|
if( IsMandatory() )
|
2011-08-16 15:36:25 +00:00
|
|
|
{
|
2020-04-01 14:00:40 +00:00
|
|
|
wxFAIL_MSG( "trying to set a MANDATORY_FIELD's name\n" );
|
2010-12-07 16:10:42 +00:00
|
|
|
return;
|
2011-08-16 15:36:25 +00:00
|
|
|
}
|
2010-12-07 16:10:42 +00:00
|
|
|
|
|
|
|
if( m_name != aName )
|
|
|
|
{
|
|
|
|
m_name = aName;
|
|
|
|
SetModified();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
wxString LIB_FIELD::GetSelectMenuText( EDA_UNITS aUnits ) const
|
2011-04-27 19:44:32 +00:00
|
|
|
{
|
2021-07-16 20:13:26 +00:00
|
|
|
return wxString::Format( "%s '%s'", GetName(), ShortenedShownText() );
|
2011-04-27 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void LIB_FIELD::BeginEdit( const VECTOR2I& aPosition )
|
2010-10-20 20:24:26 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
SetTextPos( aPosition );
|
2010-10-20 20:24:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-01-01 06:04:08 +00:00
|
|
|
void LIB_FIELD::CalcEdit( const VECTOR2I& aPosition )
|
2010-10-20 20:24:26 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
SetTextPos( aPosition );
|
2010-10-20 20:24:26 +00:00
|
|
|
}
|
2010-11-17 18:41:20 +00:00
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2021-09-26 23:22:32 +00:00
|
|
|
void LIB_FIELD::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList )
|
2010-11-17 18:41:20 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
|
2020-04-24 13:36:10 +00:00
|
|
|
LIB_ITEM::GetMsgPanelInfo( aFrame, aList );
|
2010-11-17 18:41:20 +00:00
|
|
|
|
2021-09-28 13:28:35 +00:00
|
|
|
aList.emplace_back( _( "Field" ), GetName() );
|
2021-09-26 23:22:32 +00:00
|
|
|
|
|
|
|
// Don't use GetShownText() here; we want to show the user the variable references
|
2021-09-28 13:28:35 +00:00
|
|
|
aList.emplace_back( _( "Text" ), UnescapeString( GetText() ) );
|
2021-09-26 23:22:32 +00:00
|
|
|
|
2021-09-28 13:28:35 +00:00
|
|
|
aList.emplace_back( _( "Visible" ), IsVisible() ? _( "Yes" ) : _( "No" ) );
|
2021-09-26 23:22:32 +00:00
|
|
|
|
2021-09-28 13:28:35 +00:00
|
|
|
aList.emplace_back( _( "Style" ), GetTextStyleName() );
|
2010-11-17 18:41:20 +00:00
|
|
|
|
2021-09-28 13:28:35 +00:00
|
|
|
aList.emplace_back( _( "Text Size" ), MessageTextFromValue( aFrame->GetUserUnits(),
|
|
|
|
GetTextWidth() ) );
|
2021-09-26 23:22:32 +00:00
|
|
|
|
|
|
|
switch ( GetHorizJustify() )
|
|
|
|
{
|
2021-12-28 22:13:54 +00:00
|
|
|
case GR_TEXT_H_ALIGN_LEFT: msg = _( "Left" ); break;
|
|
|
|
case GR_TEXT_H_ALIGN_CENTER: msg = _( "Center" ); break;
|
|
|
|
case GR_TEXT_H_ALIGN_RIGHT: msg = _( "Right" ); break;
|
2021-09-26 23:22:32 +00:00
|
|
|
}
|
2010-11-17 18:41:20 +00:00
|
|
|
|
2021-09-28 13:28:35 +00:00
|
|
|
aList.emplace_back( _( "H Justification" ), msg );
|
2010-11-17 18:41:20 +00:00
|
|
|
|
2021-09-26 23:22:32 +00:00
|
|
|
switch ( GetVertJustify() )
|
|
|
|
{
|
2021-12-28 22:13:54 +00:00
|
|
|
case GR_TEXT_V_ALIGN_TOP: msg = _( "Top" ); break;
|
|
|
|
case GR_TEXT_V_ALIGN_CENTER: msg = _( "Center" ); break;
|
|
|
|
case GR_TEXT_V_ALIGN_BOTTOM: msg = _( "Bottom" ); break;
|
2021-09-26 23:22:32 +00:00
|
|
|
}
|
2010-11-17 18:41:20 +00:00
|
|
|
|
2021-09-28 13:28:35 +00:00
|
|
|
aList.emplace_back( _( "V Justification" ), msg );
|
2010-11-17 18:41:20 +00:00
|
|
|
}
|
2017-02-20 12:20:39 +00:00
|
|
|
|
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS LIB_FIELD::GetMenuImage() const
|
2017-02-20 12:20:39 +00:00
|
|
|
{
|
2021-03-08 02:59:07 +00:00
|
|
|
return BITMAPS::move;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
2020-02-13 13:39:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool LIB_FIELD::IsMandatory() const
|
|
|
|
{
|
2020-04-01 14:00:40 +00:00
|
|
|
return m_id >= 0 && m_id < MANDATORY_FIELDS;
|
2020-02-13 13:39:52 +00:00
|
|
|
}
|