2011-10-19 20:32:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
|
|
* Copyright (C) 2004-2011 KiCad Developers, see change_log.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2011-10-07 14:41:30 +00:00
|
|
|
/**
|
|
|
|
* @file sch_field.cpp
|
|
|
|
* @brief Implementation of the SCH_FIELD class.
|
|
|
|
*/
|
2008-12-31 15:01:29 +00:00
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
/* Fields are texts attached to a component, having a special meaning
|
2008-12-31 15:01:29 +00:00
|
|
|
* Fields 0 and 1 are very important: reference and value
|
|
|
|
* Field 2 is used as default footprint name.
|
|
|
|
* Field 3 is reserved (not currently used
|
|
|
|
* Fields 4 and more are user fields.
|
|
|
|
* They can be renamed and can appear in reports
|
|
|
|
*/
|
2008-09-20 17:20:40 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <base_struct.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <drawtxt.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <trigo.h>
|
|
|
|
#include <wxEeschemaStruct.h>
|
|
|
|
#include <plot_common.h>
|
2008-09-20 17:20:40 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <protos.h>
|
|
|
|
#include <class_library.h>
|
|
|
|
#include <sch_component.h>
|
|
|
|
#include <sch_field.h>
|
|
|
|
#include <kicad_string.h>
|
2008-09-20 17:20:40 +00:00
|
|
|
|
2011-10-07 14:41:30 +00:00
|
|
|
|
2010-12-21 15:13:09 +00:00
|
|
|
SCH_FIELD::SCH_FIELD( const wxPoint& aPos, int aFieldId, SCH_COMPONENT* aParent, wxString aName ) :
|
2010-12-10 19:47:44 +00:00
|
|
|
SCH_ITEM( aParent, SCH_FIELD_T ),
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_TEXT()
|
2008-09-20 17:20:40 +00:00
|
|
|
{
|
2011-12-07 18:47:59 +00:00
|
|
|
m_Pos = aPos;
|
|
|
|
m_id = aFieldId;
|
|
|
|
m_Attributs = TEXT_NO_VISIBLE;
|
|
|
|
m_name = aName;
|
2008-10-06 05:44:29 +00:00
|
|
|
|
|
|
|
SetLayer( LAYER_FIELDS );
|
2008-09-20 17:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
SCH_FIELD::~SCH_FIELD()
|
2008-09-20 17:20:40 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* SCH_FIELD::Clone() const
|
2010-12-21 15:13:09 +00:00
|
|
|
{
|
|
|
|
return new SCH_FIELD( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-25 17:09:55 +00:00
|
|
|
const wxString SCH_FIELD::GetFullyQualifiedText() const
|
2011-10-21 18:17:51 +00:00
|
|
|
{
|
|
|
|
wxString text = m_Text;
|
|
|
|
|
|
|
|
/* For more than one part per package, we must add the part selection
|
|
|
|
* A, B, ... or 1, 2, .. to the reference. */
|
2011-12-07 18:47:59 +00:00
|
|
|
if( m_id == REFERENCE )
|
2011-10-21 18:17:51 +00:00
|
|
|
{
|
|
|
|
SCH_COMPONENT* component = (SCH_COMPONENT*) m_Parent;
|
|
|
|
|
|
|
|
wxCHECK_MSG( component != NULL, text,
|
|
|
|
wxT( "No component associated with field" ) + text );
|
2011-11-17 01:06:08 +00:00
|
|
|
|
2011-10-24 13:11:11 +00:00
|
|
|
if( component->GetPartCount() > 1 )
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
text << LIB_COMPONENT::SubReference( component->GetUnit() );
|
2011-10-21 18:17:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-10 19:47:44 +00:00
|
|
|
int SCH_FIELD::GetPenSize() const
|
2009-06-30 17:57:27 +00:00
|
|
|
{
|
2010-11-27 13:09:18 +00:00
|
|
|
int pensize = m_Thickness;
|
2009-06-30 17:57:27 +00:00
|
|
|
|
|
|
|
if( pensize == 0 ) // Use default values for pen size
|
|
|
|
{
|
|
|
|
if( m_Bold )
|
|
|
|
pensize = GetPenSizeForBold( m_Size.x );
|
|
|
|
else
|
2012-09-28 17:47:41 +00:00
|
|
|
pensize = GetDefaultLineThickness();
|
2009-06-30 17:57:27 +00:00
|
|
|
}
|
2009-10-16 07:48:26 +00:00
|
|
|
|
2009-06-30 17:57:27 +00:00
|
|
|
// Clip pen size for small texts:
|
|
|
|
pensize = Clamp_Text_PenSize( pensize, m_Size, m_Bold );
|
|
|
|
return pensize;
|
|
|
|
}
|
|
|
|
|
2009-10-16 07:48:26 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void SCH_FIELD::Draw( EDA_DRAW_PANEL* panel, wxDC* DC,
|
2012-09-02 12:06:47 +00:00
|
|
|
const wxPoint& offset, GR_DRAWMODE DrawMode, EDA_COLOR_T Color )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
|
|
|
int orient;
|
2012-03-26 23:47:08 +00:00
|
|
|
EDA_COLOR_T color;
|
2009-10-16 07:48:26 +00:00
|
|
|
wxPoint textpos;
|
|
|
|
SCH_COMPONENT* parentComponent = (SCH_COMPONENT*) m_Parent;
|
2010-11-27 13:09:18 +00:00
|
|
|
int LineWidth = m_Thickness;
|
2009-06-30 17:57:27 +00:00
|
|
|
|
2009-10-16 07:48:26 +00:00
|
|
|
if( LineWidth == 0 ) // Use default values for pen size
|
2009-06-11 14:26:17 +00:00
|
|
|
{
|
2009-10-16 07:48:26 +00:00
|
|
|
if( m_Bold )
|
2009-06-11 14:26:17 +00:00
|
|
|
LineWidth = GetPenSizeForBold( m_Size.x );
|
|
|
|
else
|
2012-09-28 17:47:41 +00:00
|
|
|
LineWidth = GetDefaultLineThickness();
|
2009-06-11 14:26:17 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 07:26:49 +00:00
|
|
|
|
|
|
|
// Clip pen size for small texts:
|
|
|
|
LineWidth = Clamp_Text_PenSize( LineWidth, m_Size, m_Bold );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2011-12-13 15:37:33 +00:00
|
|
|
if( ((m_Attributs & TEXT_NO_VISIBLE) && !m_forceVisible) || IsVoid() )
|
2009-04-05 20:49:15 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
GRSetDrawMode( DC, DrawMode );
|
|
|
|
|
2011-12-13 15:37:33 +00:00
|
|
|
// Calculate the text orientation according to the component orientation.
|
2009-10-16 07:48:26 +00:00
|
|
|
orient = m_Orient;
|
2010-12-21 15:13:09 +00:00
|
|
|
|
2010-12-14 21:39:31 +00:00
|
|
|
if( parentComponent->GetTransform().y1 ) // Rotate component 90 degrees.
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
|
|
|
if( orient == TEXT_ORIENT_HORIZ )
|
|
|
|
orient = TEXT_ORIENT_VERT;
|
|
|
|
else
|
|
|
|
orient = TEXT_ORIENT_HORIZ;
|
|
|
|
}
|
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
/* Calculate the text justification, according to the component
|
|
|
|
* orientation/mirror this is a bit complicated due to cumulative
|
|
|
|
* calculations:
|
2009-10-16 07:48:26 +00:00
|
|
|
* - numerous cases (mirrored or not, rotation)
|
2009-12-02 21:44:03 +00:00
|
|
|
* - the DrawGraphicText function recalculate also H and H justifications
|
|
|
|
* according to the text orientation.
|
|
|
|
* - When a component is mirrored, the text is not mirrored and
|
|
|
|
* justifications are complicated to calculate
|
2009-10-16 07:48:26 +00:00
|
|
|
* so the more easily way is to use no justifications ( Centered text )
|
|
|
|
* and use GetBoundaryBox to know the text coordinate considered as centered
|
2010-09-05 17:01:48 +00:00
|
|
|
*/
|
2011-11-12 09:51:06 +00:00
|
|
|
EDA_RECT boundaryBox = GetBoundingBox();
|
|
|
|
textpos = boundaryBox.Centre();
|
2009-10-16 07:48:26 +00:00
|
|
|
|
2011-12-13 15:37:33 +00:00
|
|
|
if( m_forceVisible )
|
|
|
|
{
|
|
|
|
color = DARKGRAY;
|
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
else
|
2011-12-13 15:37:33 +00:00
|
|
|
{
|
|
|
|
if( m_id == REFERENCE )
|
2013-04-04 21:35:01 +00:00
|
|
|
color = GetLayerColor( LAYER_REFERENCEPART );
|
2011-12-13 15:37:33 +00:00
|
|
|
else if( m_id == VALUE )
|
2013-04-04 21:35:01 +00:00
|
|
|
color = GetLayerColor( LAYER_VALUEPART );
|
2011-12-13 15:37:33 +00:00
|
|
|
else
|
2013-04-04 21:35:01 +00:00
|
|
|
color = GetLayerColor( LAYER_FIELDS );
|
2011-12-13 15:37:33 +00:00
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2013-06-29 09:52:22 +00:00
|
|
|
EDA_RECT* clipbox = panel? panel->GetClipBox() : NULL;
|
|
|
|
DrawGraphicText( clipbox, DC, textpos, color, GetFullyQualifiedText(), orient, m_Size,
|
2011-11-12 09:51:06 +00:00
|
|
|
GR_TEXT_HJUSTIFY_CENTER, GR_TEXT_VJUSTIFY_CENTER,
|
2011-10-21 18:17:51 +00:00
|
|
|
LineWidth, m_Italic, m_Bold );
|
2010-03-16 12:05:47 +00:00
|
|
|
|
2014-02-11 21:54:30 +00:00
|
|
|
// While moving: don't loose visual contact to which component this label belongs.
|
|
|
|
if ( IsWireImage() )
|
|
|
|
{
|
|
|
|
const wxPoint origin = parentComponent->GetPosition();
|
|
|
|
textpos = m_Pos - origin;
|
|
|
|
textpos = parentComponent->GetScreenCoord( textpos );
|
|
|
|
textpos += parentComponent->GetPosition();
|
2014-04-25 16:49:32 +00:00
|
|
|
GRLine( clipbox, DC, origin, textpos, 2, DARKGRAY );
|
2014-02-11 21:54:30 +00:00
|
|
|
}
|
|
|
|
|
2009-10-16 07:48:26 +00:00
|
|
|
/* Enable this to draw the bounding box around the text field to validate
|
|
|
|
* the bounding box calculations.
|
2010-09-05 17:01:48 +00:00
|
|
|
*/
|
2011-11-12 09:58:20 +00:00
|
|
|
#if 0
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2009-10-16 07:48:26 +00:00
|
|
|
// Draw boundary box:
|
2011-12-29 20:11:42 +00:00
|
|
|
GRRect( panel->GetClipBox(), DC, boundaryBox, 0, BROWN );
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2009-10-16 07:48:26 +00:00
|
|
|
// Draw the text anchor point
|
2010-09-05 17:01:48 +00:00
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
/* Calculate the text position, according to the component
|
|
|
|
* orientation/mirror */
|
2011-10-19 20:32:21 +00:00
|
|
|
textpos = m_Pos - parentComponent->GetPosition();
|
2009-10-16 07:48:26 +00:00
|
|
|
textpos = parentComponent->GetScreenCoord( textpos );
|
2011-10-19 20:32:21 +00:00
|
|
|
textpos += parentComponent->GetPosition();
|
2011-11-12 09:51:06 +00:00
|
|
|
const int len = 10;
|
2013-06-29 09:52:22 +00:00
|
|
|
GRLine( clipbox, DC,
|
2011-11-12 09:51:06 +00:00
|
|
|
textpos.x - len, textpos.y, textpos.x + len, textpos.y, 0, BLUE );
|
2013-06-29 09:52:22 +00:00
|
|
|
GRLine( clipbox, DC,
|
2011-11-12 09:51:06 +00:00
|
|
|
textpos.x, textpos.y - len, textpos.x, textpos.y + len, 0, BLUE );
|
2009-10-16 07:48:26 +00:00
|
|
|
#endif
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
void SCH_FIELD::ImportValues( const LIB_FIELD& aSource )
|
2008-12-31 15:01:29 +00:00
|
|
|
{
|
2013-03-18 19:36:07 +00:00
|
|
|
m_Orient = aSource.GetOrientation();
|
|
|
|
m_Size = aSource.GetSize();
|
|
|
|
m_HJustify = aSource.GetHorizJustify();
|
|
|
|
m_VJustify = aSource.GetVertJustify();
|
|
|
|
m_Italic = aSource.IsItalic();
|
|
|
|
m_Bold = aSource.IsBold();
|
|
|
|
m_Thickness = aSource.GetThickness();
|
|
|
|
m_Attributs = aSource.GetAttributes();
|
|
|
|
m_Mirror = aSource.IsMirrored();
|
2008-12-31 15:01:29 +00:00
|
|
|
}
|
2008-09-20 17:20:40 +00:00
|
|
|
|
2009-10-16 07:48:26 +00:00
|
|
|
|
2011-10-19 20:32:21 +00:00
|
|
|
void SCH_FIELD::SwapData( SCH_ITEM* aItem )
|
2008-09-20 17:20:40 +00:00
|
|
|
{
|
2011-10-19 20:32:21 +00:00
|
|
|
wxCHECK_RET( (aItem != NULL) && (aItem->Type() == SCH_FIELD_T),
|
|
|
|
wxT( "Cannot swap field data with invalid item." ) );
|
|
|
|
|
|
|
|
SCH_FIELD* item = (SCH_FIELD*) aItem;
|
|
|
|
|
|
|
|
EXCHG( m_Text, item->m_Text );
|
|
|
|
EXCHG( m_Layer, item->m_Layer );
|
|
|
|
EXCHG( m_Pos, item->m_Pos );
|
|
|
|
EXCHG( m_Size, item->m_Size );
|
|
|
|
EXCHG( m_Thickness, item->m_Thickness );
|
|
|
|
EXCHG( m_Orient, item->m_Orient );
|
|
|
|
EXCHG( m_Mirror, item->m_Mirror );
|
|
|
|
EXCHG( m_Attributs, item->m_Attributs );
|
|
|
|
EXCHG( m_Italic, item->m_Italic );
|
|
|
|
EXCHG( m_Bold, item->m_Bold );
|
|
|
|
EXCHG( m_HJustify, item->m_HJustify );
|
|
|
|
EXCHG( m_VJustify, item->m_VJustify );
|
2008-09-20 17:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT SCH_FIELD::GetBoundingBox() const
|
2008-09-20 17:20:40 +00:00
|
|
|
{
|
2009-10-16 07:48:26 +00:00
|
|
|
SCH_COMPONENT* parentComponent = (SCH_COMPONENT*) m_Parent;
|
2012-09-28 17:47:41 +00:00
|
|
|
int linewidth = ( m_Thickness == 0 ) ? GetDefaultLineThickness() : m_Thickness;
|
2009-06-02 07:26:49 +00:00
|
|
|
|
2011-11-12 09:51:06 +00:00
|
|
|
// We must pass the effective text thickness to GetTextBox
|
|
|
|
// when calculating the bounding box
|
|
|
|
linewidth = Clamp_Text_PenSize( linewidth, m_Size, m_Bold );
|
|
|
|
|
|
|
|
// Calculate the text bounding box:
|
2012-01-06 19:00:59 +00:00
|
|
|
EDA_RECT rect;
|
|
|
|
|
2014-04-25 16:49:32 +00:00
|
|
|
if( m_id == REFERENCE ) // multi units have one letter or more added to reference
|
2012-01-06 19:00:59 +00:00
|
|
|
{
|
2014-04-25 16:49:32 +00:00
|
|
|
SCH_FIELD text( *this ); // Make a local copy to change text
|
2012-01-06 19:00:59 +00:00
|
|
|
// because GetBoundingBox() is const
|
2014-04-25 16:49:32 +00:00
|
|
|
text.SetText( GetFullyQualifiedText() );
|
2012-01-06 19:00:59 +00:00
|
|
|
rect = text.GetTextBox( -1, linewidth );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rect = GetTextBox( -1, linewidth );
|
2011-11-12 09:51:06 +00:00
|
|
|
|
|
|
|
// Calculate the bounding box position relative to the component:
|
|
|
|
wxPoint origin = parentComponent->GetPosition();
|
|
|
|
wxPoint pos = m_Pos - origin;
|
|
|
|
wxPoint begin = rect.GetOrigin() - origin;
|
|
|
|
wxPoint end = rect.GetEnd() - origin;
|
|
|
|
RotatePoint( &begin, pos, m_Orient );
|
|
|
|
RotatePoint( &end, pos, m_Orient );
|
2011-11-17 01:06:08 +00:00
|
|
|
|
2011-11-12 09:51:06 +00:00
|
|
|
// Due to the Y axis direction, we must mirror the bounding box,
|
|
|
|
// relative to the text position:
|
|
|
|
begin.y -= pos.y;
|
|
|
|
end.y -= pos.y;
|
|
|
|
NEGATE( begin.y );
|
|
|
|
NEGATE( end.y );
|
|
|
|
begin.y += pos.y;
|
|
|
|
end.y += pos.y;
|
2011-11-17 01:06:08 +00:00
|
|
|
|
2011-11-12 09:51:06 +00:00
|
|
|
// Now, apply the component transform (mirror/rot)
|
|
|
|
begin = parentComponent->GetTransform().TransformCoordinate( begin );
|
|
|
|
end = parentComponent->GetTransform().TransformCoordinate( end );
|
|
|
|
rect.SetOrigin( begin);
|
|
|
|
rect.SetEnd( end);
|
|
|
|
rect.Move( origin );
|
|
|
|
rect.Normalize();
|
|
|
|
return rect;
|
2008-09-20 17:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-02 21:44:03 +00:00
|
|
|
bool SCH_FIELD::Save( FILE* aFile ) const
|
2008-09-20 17:20:40 +00:00
|
|
|
{
|
|
|
|
char hjustify = 'C';
|
2009-10-16 07:48:26 +00:00
|
|
|
|
2008-09-20 17:20:40 +00:00
|
|
|
if( m_HJustify == GR_TEXT_HJUSTIFY_LEFT )
|
|
|
|
hjustify = 'L';
|
|
|
|
else if( m_HJustify == GR_TEXT_HJUSTIFY_RIGHT )
|
|
|
|
hjustify = 'R';
|
2008-10-06 05:44:29 +00:00
|
|
|
|
2008-09-20 17:20:40 +00:00
|
|
|
char vjustify = 'C';
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2008-09-20 17:20:40 +00:00
|
|
|
if( m_VJustify == GR_TEXT_VJUSTIFY_BOTTOM )
|
|
|
|
vjustify = 'B';
|
|
|
|
else if( m_VJustify == GR_TEXT_VJUSTIFY_TOP )
|
|
|
|
vjustify = 'T';
|
2008-10-06 05:44:29 +00:00
|
|
|
|
2011-03-25 20:07:27 +00:00
|
|
|
if( fprintf( aFile, "F %d %s %c %-3d %-3d %-3d %4.4X %c %c%c%c",
|
2011-12-07 18:47:59 +00:00
|
|
|
m_id,
|
2011-03-25 20:07:27 +00:00
|
|
|
EscapedUTF8( m_Text ).c_str(), // wraps in quotes too
|
2009-04-05 20:49:15 +00:00
|
|
|
m_Orient == TEXT_ORIENT_HORIZ ? 'H' : 'V',
|
|
|
|
m_Pos.x, m_Pos.y,
|
|
|
|
m_Size.x,
|
|
|
|
m_Attributs,
|
|
|
|
hjustify, vjustify,
|
|
|
|
m_Italic ? 'I' : 'N',
|
2009-05-28 17:39:40 +00:00
|
|
|
m_Bold ? 'B' : 'N' ) == EOF )
|
2008-09-20 17:20:40 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-06 05:44:29 +00:00
|
|
|
// Save field name, if the name is user definable
|
2011-12-07 18:47:59 +00:00
|
|
|
if( m_id >= FIELD1 )
|
2008-09-20 17:20:40 +00:00
|
|
|
{
|
2011-12-07 18:47:59 +00:00
|
|
|
if( fprintf( aFile, " %s", EscapedUTF8( m_name ).c_str() ) == EOF )
|
2008-09-20 17:20:40 +00:00
|
|
|
{
|
2008-10-06 05:44:29 +00:00
|
|
|
return false;
|
2008-09-20 17:20:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( fprintf( aFile, "\n" ) == EOF )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
void SCH_FIELD::Place( SCH_EDIT_FRAME* frame, wxDC* DC )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2011-12-22 13:28:11 +00:00
|
|
|
frame->GetCanvas()->SetMouseCapture( NULL, NULL );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
SCH_COMPONENT* component = (SCH_COMPONENT*) GetParent();
|
|
|
|
|
|
|
|
// save old cmp in undo list
|
2011-04-05 14:46:51 +00:00
|
|
|
frame->SaveUndoItemInUndoList( component );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
Draw( frame->GetCanvas(), DC, wxPoint( 0, 0 ), GR_DEFAULT_DRAWMODE );
|
2011-04-05 14:46:51 +00:00
|
|
|
ClearFlags();
|
2009-04-05 20:49:15 +00:00
|
|
|
frame->GetScreen()->SetCurItem( NULL );
|
2010-09-05 17:01:48 +00:00
|
|
|
frame->OnModify();
|
2009-04-05 20:49:15 +00:00
|
|
|
}
|
2010-03-16 18:22:59 +00:00
|
|
|
|
|
|
|
|
2011-11-17 01:06:08 +00:00
|
|
|
bool SCH_FIELD::Matches( wxFindReplaceData& aSearchData, void* aAuxData, wxPoint* aFindLocation )
|
2010-03-16 18:22:59 +00:00
|
|
|
{
|
2010-10-20 19:43:58 +00:00
|
|
|
bool match;
|
2013-03-25 17:09:55 +00:00
|
|
|
wxString text = GetFullyQualifiedText();
|
2011-11-17 01:06:08 +00:00
|
|
|
|
2013-07-14 18:08:20 +00:00
|
|
|
// User defined fields have an ID of -1.
|
|
|
|
if( ((m_id > VALUE || m_id < REFERENCE) && !(aSearchData.GetFlags() & FR_SEARCH_ALL_FIELDS))
|
2011-12-21 20:21:15 +00:00
|
|
|
|| ((m_id == REFERENCE) && !(aSearchData.GetFlags() & FR_REPLACE_REFERENCES)) )
|
2011-12-01 16:49:28 +00:00
|
|
|
return false;
|
|
|
|
|
2011-12-13 15:37:33 +00:00
|
|
|
wxLogTrace( traceFindItem, wxT( " child item " ) + GetSelectMenuText() );
|
2011-12-01 16:49:28 +00:00
|
|
|
|
2011-11-17 01:06:08 +00:00
|
|
|
// Take sheet path into account which effects the reference field and the unit for
|
|
|
|
// components with multiple parts.
|
2011-12-07 18:47:59 +00:00
|
|
|
if( m_id == REFERENCE && aAuxData != NULL )
|
2011-11-17 01:06:08 +00:00
|
|
|
{
|
|
|
|
SCH_COMPONENT* component = (SCH_COMPONENT*) m_Parent;
|
|
|
|
|
|
|
|
wxCHECK_MSG( component != NULL, false,
|
|
|
|
wxT( "No component associated with field" ) + text );
|
|
|
|
|
|
|
|
text = component->GetRef( (SCH_SHEET_PATH*) aAuxData );
|
|
|
|
|
|
|
|
if( component->GetPartCount() > 1 )
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
text << LIB_COMPONENT::SubReference( component->GetUnit() );
|
2011-11-17 01:06:08 +00:00
|
|
|
}
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2011-11-17 01:06:08 +00:00
|
|
|
match = SCH_ITEM::Matches( text, aSearchData );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2010-10-20 19:43:58 +00:00
|
|
|
if( match )
|
|
|
|
{
|
|
|
|
if( aFindLocation )
|
2010-12-10 19:47:44 +00:00
|
|
|
*aFindLocation = GetBoundingBox().Centre();
|
|
|
|
|
2010-10-20 19:43:58 +00:00
|
|
|
return true;
|
|
|
|
}
|
2010-12-10 19:47:44 +00:00
|
|
|
|
2010-10-20 19:43:58 +00:00
|
|
|
return false;
|
2010-03-16 18:22:59 +00:00
|
|
|
}
|
2010-09-05 17:01:48 +00:00
|
|
|
|
|
|
|
|
2011-12-21 20:21:15 +00:00
|
|
|
bool SCH_FIELD::Replace( wxFindReplaceData& aSearchData, void* aAuxData )
|
|
|
|
{
|
|
|
|
bool isReplaced;
|
2013-03-25 17:09:55 +00:00
|
|
|
wxString text = GetFullyQualifiedText();
|
2011-12-21 20:21:15 +00:00
|
|
|
|
2013-10-27 18:21:53 +00:00
|
|
|
if( m_id == REFERENCE )
|
2011-12-21 20:21:15 +00:00
|
|
|
{
|
2013-10-27 18:21:53 +00:00
|
|
|
wxCHECK_MSG( aAuxData != NULL, false,
|
|
|
|
wxT( "Cannot replace reference designator without valid sheet path." ) );
|
|
|
|
|
2011-12-21 20:21:15 +00:00
|
|
|
wxCHECK_MSG( aSearchData.GetFlags() & FR_REPLACE_REFERENCES, false,
|
|
|
|
wxT( "Invalid replace component reference field call." ) ) ;
|
|
|
|
|
|
|
|
SCH_COMPONENT* component = (SCH_COMPONENT*) m_Parent;
|
|
|
|
|
|
|
|
wxCHECK_MSG( component != NULL, false,
|
|
|
|
wxT( "No component associated with field" ) + text );
|
|
|
|
|
|
|
|
text = component->GetRef( (SCH_SHEET_PATH*) aAuxData );
|
|
|
|
|
2013-10-27 18:21:53 +00:00
|
|
|
// if( component->GetPartCount() > 1 )
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
// text << LIB_COMPONENT::SubReference( component->GetUnit() );
|
2011-12-21 20:21:15 +00:00
|
|
|
|
|
|
|
isReplaced = EDA_ITEM::Replace( aSearchData, text );
|
|
|
|
|
|
|
|
if( isReplaced )
|
|
|
|
component->SetRef( (SCH_SHEET_PATH*) aAuxData, text );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
isReplaced = EDA_ITEM::Replace( aSearchData, m_Text );
|
|
|
|
}
|
|
|
|
|
|
|
|
return isReplaced;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_FIELD::Rotate( wxPoint aPosition )
|
2010-09-05 17:01:48 +00:00
|
|
|
{
|
2012-03-15 14:31:16 +00:00
|
|
|
RotatePoint( &m_Pos, aPosition, 900 );
|
2010-09-05 17:01:48 +00:00
|
|
|
}
|
2010-12-10 19:47:44 +00:00
|
|
|
|
|
|
|
|
2011-03-25 19:16:05 +00:00
|
|
|
wxString SCH_FIELD::GetSelectMenuText() const
|
|
|
|
{
|
2011-03-26 10:08:50 +00:00
|
|
|
wxString tmp;
|
2011-03-30 11:20:05 +00:00
|
|
|
tmp.Printf( _( "Field %s" ), GetChars( GetName() ) );
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2011-03-26 10:08:50 +00:00
|
|
|
return tmp;
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-07 18:47:59 +00:00
|
|
|
wxString SCH_FIELD::GetName( bool aUseDefaultName ) const
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
2011-12-07 18:47:59 +00:00
|
|
|
if( !m_name.IsEmpty() )
|
|
|
|
return m_name;
|
|
|
|
else if( aUseDefaultName )
|
|
|
|
return TEMPLATE_FIELDNAME::GetDefaultFieldName( m_id );
|
|
|
|
|
|
|
|
return wxEmptyString;
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-29 03:04:59 +00:00
|
|
|
BITMAP_DEF SCH_FIELD::GetMenuImage() const
|
2011-03-25 19:16:05 +00:00
|
|
|
{
|
2011-12-07 18:47:59 +00:00
|
|
|
if( m_id == REFERENCE )
|
2011-08-29 03:04:59 +00:00
|
|
|
return edit_comp_ref_xpm;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2011-12-07 18:47:59 +00:00
|
|
|
if( m_id == VALUE )
|
2011-08-29 03:04:59 +00:00
|
|
|
return edit_comp_value_xpm;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2011-12-07 18:47:59 +00:00
|
|
|
if( m_id == FOOTPRINT )
|
2011-08-29 03:04:59 +00:00
|
|
|
return edit_comp_footprint_xpm;
|
2011-03-25 19:16:05 +00:00
|
|
|
|
2011-08-29 03:04:59 +00:00
|
|
|
return edit_text_xpm;
|
2011-03-25 19:16:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool SCH_FIELD::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
2010-12-10 19:47:44 +00:00
|
|
|
{
|
2011-03-10 19:36:30 +00:00
|
|
|
// Do not hit test hidden or empty fields.
|
2011-03-25 19:16:05 +00:00
|
|
|
if( !IsVisible() || IsVoid() )
|
2010-12-10 19:47:44 +00:00
|
|
|
return false;
|
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect = GetBoundingBox();
|
2010-12-10 19:47:44 +00:00
|
|
|
|
|
|
|
rect.Inflate( aAccuracy );
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
return rect.Contains( aPosition );
|
2010-12-10 19:47:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
bool SCH_FIELD::HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy ) const
|
2010-12-10 19:47:44 +00:00
|
|
|
{
|
|
|
|
// Do not hit test hidden fields.
|
2011-03-25 19:16:05 +00:00
|
|
|
if( !IsVisible() || IsVoid() )
|
2010-12-10 19:47:44 +00:00
|
|
|
return false;
|
|
|
|
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect = aRect;
|
2010-12-10 19:47:44 +00:00
|
|
|
|
|
|
|
rect.Inflate( aAccuracy );
|
|
|
|
|
|
|
|
if( aContained )
|
2010-12-20 17:44:25 +00:00
|
|
|
return rect.Contains( GetBoundingBox() );
|
2010-12-10 19:47:44 +00:00
|
|
|
|
|
|
|
return rect.Intersects( GetBoundingBox() );
|
|
|
|
}
|
2011-06-17 13:24:22 +00:00
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_FIELD::Plot( PLOTTER* aPlotter )
|
2011-06-17 13:24:22 +00:00
|
|
|
{
|
|
|
|
SCH_COMPONENT* parent = ( SCH_COMPONENT* ) GetParent();
|
|
|
|
|
|
|
|
wxCHECK_RET( parent != NULL && parent->Type() == SCH_COMPONENT_T,
|
|
|
|
wxT( "Cannot plot field with invalid parent." ) );
|
|
|
|
|
2013-04-04 21:35:01 +00:00
|
|
|
EDA_COLOR_T color = GetLayerColor( GetLayer() );
|
2011-06-17 13:24:22 +00:00
|
|
|
|
|
|
|
if( m_Attributs & TEXT_NO_VISIBLE )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( IsVoid() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Calculate the text orientation, according to the component
|
|
|
|
* orientation/mirror */
|
|
|
|
int orient = m_Orient;
|
|
|
|
|
|
|
|
if( parent->GetTransform().y1 ) // Rotate component 90 deg.
|
|
|
|
{
|
|
|
|
if( orient == TEXT_ORIENT_HORIZ )
|
|
|
|
orient = TEXT_ORIENT_VERT;
|
|
|
|
else
|
|
|
|
orient = TEXT_ORIENT_HORIZ;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate the text justification, according to the component
|
|
|
|
* orientation/mirror
|
|
|
|
* this is a bit complicated due to cumulative calculations:
|
|
|
|
* - numerous cases (mirrored or not, rotation)
|
|
|
|
* - the DrawGraphicText function recalculate also H and H justifications
|
|
|
|
* according to the text orientation.
|
|
|
|
* - When a component is mirrored, the text is not mirrored and
|
|
|
|
* justifications are complicated to calculate
|
|
|
|
* so the more easily way is to use no justifications ( Centered text )
|
|
|
|
* and use GetBoundaryBox to know the text coordinate considered as centered
|
|
|
|
*/
|
|
|
|
EDA_RECT BoundaryBox = GetBoundingBox();
|
2012-01-03 17:14:17 +00:00
|
|
|
EDA_TEXT_HJUSTIFY_T hjustify = GR_TEXT_HJUSTIFY_CENTER;
|
|
|
|
EDA_TEXT_VJUSTIFY_T vjustify = GR_TEXT_VJUSTIFY_CENTER;
|
2011-06-17 13:24:22 +00:00
|
|
|
wxPoint textpos = BoundaryBox.Centre();
|
|
|
|
|
|
|
|
int thickness = GetPenSize();
|
|
|
|
|
2011-12-07 18:47:59 +00:00
|
|
|
if( (parent->GetPartCount() <= 1) || (m_id != REFERENCE) )
|
2011-06-17 13:24:22 +00:00
|
|
|
{
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->Text( textpos, color, m_Text, orient, m_Size, hjustify, vjustify,
|
2011-06-17 13:24:22 +00:00
|
|
|
thickness, m_Italic, m_Bold );
|
|
|
|
}
|
|
|
|
else /* We plot the reference, for a multiple parts per package */
|
|
|
|
{
|
|
|
|
/* Adding A, B ... to the reference */
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
wxString Text = m_Text + LIB_COMPONENT::SubReference( parent->GetUnit() );
|
2011-06-17 13:24:22 +00:00
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->Text( textpos, color, Text, orient, m_Size, hjustify, vjustify,
|
2011-06-17 13:24:22 +00:00
|
|
|
thickness, m_Italic, m_Bold );
|
|
|
|
}
|
|
|
|
}
|
2011-10-21 18:17:51 +00:00
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
void SCH_FIELD::SetPosition( const wxPoint& aPosition )
|
2011-10-21 18:17:51 +00:00
|
|
|
{
|
|
|
|
SCH_COMPONENT* component = (SCH_COMPONENT*) GetParent();
|
|
|
|
|
|
|
|
wxPoint pos = ( (SCH_COMPONENT*) GetParent() )->GetPosition();
|
|
|
|
|
|
|
|
// Actual positions are calculated by the rotation/mirror transform of the
|
|
|
|
// parent component of the field. The inverse transfrom is used to calculate
|
|
|
|
// the position relative to the parent component.
|
|
|
|
wxPoint pt = aPosition - pos;
|
|
|
|
|
|
|
|
m_Pos = pos + component->GetTransform().InverseTransform().TransformCoordinate( pt );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-15 14:31:16 +00:00
|
|
|
wxPoint SCH_FIELD::GetPosition() const
|
2011-10-21 18:17:51 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
SCH_COMPONENT* component = (SCH_COMPONENT*) GetParent();
|
|
|
|
|
|
|
|
wxPoint pos = m_Pos - component->GetPosition();
|
|
|
|
|
|
|
|
return component->GetTransform().TransformCoordinate( pos ) + component->GetPosition();
|
|
|
|
}
|