2011-10-31 20:49:48 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2017-11-16 11:45:53 +00:00
|
|
|
* Copyright (C) 2004-2017 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
|
|
|
|
*/
|
2009-06-13 17:07:04 +00:00
|
|
|
|
|
|
|
/**
|
2011-10-31 20:49:48 +00:00
|
|
|
* @file lib_text.cpp
|
|
|
|
*/
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <macros.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2018-01-28 18:12:26 +00:00
|
|
|
#include <plotter.h>
|
2018-01-28 21:02:31 +00:00
|
|
|
#include <draw_graphic_text.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <trigo.h>
|
2012-04-13 18:51:24 +00:00
|
|
|
#include <base_units.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <lib_draw_item.h>
|
|
|
|
#include <general.h>
|
|
|
|
#include <transform.h>
|
|
|
|
#include <lib_text.h>
|
2009-06-13 17:07:04 +00:00
|
|
|
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
LIB_TEXT::LIB_TEXT( LIB_PART * aParent ) :
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_ITEM( LIB_TEXT_T, aParent ),
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_TEXT()
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextSize( wxSize( 50, 50 ) );
|
2010-10-22 12:11:52 +00:00
|
|
|
m_rotate = false;
|
|
|
|
m_updateText = false;
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
void LIB_TEXT::ViewGetLayers( int aLayers[], int& aCount ) const
|
|
|
|
{
|
|
|
|
aCount = 1;
|
2018-10-28 15:19:23 +00:00
|
|
|
aLayers[0] = LAYER_DEVICE;
|
2018-10-21 12:50:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool LIB_TEXT::HitTest( const wxPoint& aPosition ) const
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2010-12-14 15:56:30 +00:00
|
|
|
return HitTest( aPosition, 0, DefaultTransform );
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool LIB_TEXT::HitTest( const wxPoint &aPosition, int aThreshold, const TRANSFORM& aTransform ) const
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2011-05-25 10:42:56 +00:00
|
|
|
if( aThreshold < 0 )
|
|
|
|
aThreshold = 0;
|
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
EDA_TEXT tmp_text( *this );
|
2017-01-23 20:30:11 +00:00
|
|
|
tmp_text.SetTextPos( aTransform.TransformCoordinate( GetTextPos() ) );
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2009-06-13 17:07:04 +00:00
|
|
|
/* The text orientation may need to be flipped if the
|
2017-01-23 20:30:11 +00:00
|
|
|
* transformation matrix causes xy axes to be flipped.
|
2009-06-13 17:07:04 +00:00
|
|
|
* this simple algo works only for schematic matrix (rot 90 or/and mirror)
|
2010-10-20 20:24:26 +00:00
|
|
|
*/
|
2017-01-23 20:30:11 +00:00
|
|
|
bool t1 = ( aTransform.x1 != 0 ) ^ ( GetTextAngle() != 0 );
|
|
|
|
|
|
|
|
tmp_text.SetTextAngle( t1 ? TEXT_ANGLE_HORIZ : TEXT_ANGLE_VERT );
|
2014-05-04 17:08:36 +00:00
|
|
|
return tmp_text.TextHitTest( aPosition );
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* LIB_TEXT::Clone() const
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2009-10-08 13:19:28 +00:00
|
|
|
LIB_TEXT* newitem = new LIB_TEXT(NULL);
|
2009-06-13 17:07:04 +00:00
|
|
|
|
|
|
|
newitem->m_Unit = m_Unit;
|
|
|
|
newitem->m_Convert = m_Convert;
|
|
|
|
newitem->m_Flags = m_Flags;
|
|
|
|
newitem->m_Text = m_Text;
|
2017-01-23 20:30:11 +00:00
|
|
|
|
|
|
|
newitem->SetEffects( *this );
|
|
|
|
|
2014-09-13 18:15:45 +00:00
|
|
|
return newitem;
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
int LIB_TEXT::compare( const LIB_ITEM& other ) const
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2010-12-10 19:47:44 +00:00
|
|
|
wxASSERT( other.Type() == LIB_TEXT_T );
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2009-10-08 13:19:28 +00:00
|
|
|
const LIB_TEXT* tmp = ( LIB_TEXT* ) &other;
|
2009-09-14 13:24:17 +00:00
|
|
|
|
2009-10-01 14:17:47 +00:00
|
|
|
int result = m_Text.CmpNoCase( tmp->m_Text );
|
|
|
|
|
|
|
|
if( result != 0 )
|
|
|
|
return result;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_TEXT::SetOffset( const wxPoint& 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
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
bool LIB_TEXT::Inside( EDA_RECT& rect ) const
|
2009-09-14 13:24:17 +00:00
|
|
|
{
|
2017-10-06 20:58:27 +00:00
|
|
|
return rect.Intersects( GetBoundingBox() );
|
2009-09-14 13:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_TEXT::Move( const wxPoint& newPosition )
|
2009-09-25 18:49:04 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextPos( newPosition );
|
2009-09-25 18:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-04 20:57:39 +00:00
|
|
|
void LIB_TEXT::NormalizeJustification( bool inverse )
|
|
|
|
{
|
|
|
|
wxPoint delta( 0, 0 );
|
|
|
|
EDA_RECT bbox = GetTextBox( -1 );
|
|
|
|
|
|
|
|
if( GetTextAngle() == 0.0 )
|
|
|
|
{
|
|
|
|
if( GetHorizJustify() == GR_TEXT_HJUSTIFY_LEFT )
|
|
|
|
delta.x = bbox.GetWidth() / 2;
|
|
|
|
else if( GetHorizJustify() == GR_TEXT_HJUSTIFY_RIGHT )
|
|
|
|
delta.x = - bbox.GetWidth() / 2;
|
|
|
|
|
|
|
|
if( GetVertJustify() == GR_TEXT_VJUSTIFY_TOP )
|
|
|
|
delta.y = - bbox.GetHeight() / 2;
|
|
|
|
else if( GetVertJustify() == GR_TEXT_VJUSTIFY_BOTTOM )
|
|
|
|
delta.y = bbox.GetHeight() / 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( GetHorizJustify() == GR_TEXT_HJUSTIFY_LEFT )
|
|
|
|
delta.y = bbox.GetWidth() / 2;
|
|
|
|
else if( GetHorizJustify() == GR_TEXT_HJUSTIFY_RIGHT )
|
|
|
|
delta.y = - bbox.GetWidth() / 2;
|
|
|
|
|
|
|
|
if( GetVertJustify() == GR_TEXT_VJUSTIFY_TOP )
|
|
|
|
delta.x = + bbox.GetHeight() / 2;
|
|
|
|
else if( GetVertJustify() == GR_TEXT_VJUSTIFY_BOTTOM )
|
|
|
|
delta.x = - bbox.GetHeight() / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( inverse )
|
|
|
|
SetTextPos( GetTextPos() - delta );
|
|
|
|
else
|
|
|
|
SetTextPos( GetTextPos() + delta );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_TEXT::MirrorHorizontal( const wxPoint& center )
|
2009-09-29 18:38:21 +00:00
|
|
|
{
|
2020-02-04 20:57:39 +00:00
|
|
|
NormalizeJustification( false );
|
2017-01-23 20:30:11 +00:00
|
|
|
int x = GetTextPos().x;
|
|
|
|
|
|
|
|
x -= center.x;
|
|
|
|
x *= -1;
|
|
|
|
x += center.x;
|
|
|
|
|
2020-02-04 20:57:39 +00:00
|
|
|
if( GetTextAngle() == 0.0 )
|
|
|
|
{
|
|
|
|
if( GetHorizJustify() == GR_TEXT_HJUSTIFY_LEFT )
|
|
|
|
SetHorizJustify( GR_TEXT_HJUSTIFY_RIGHT );
|
|
|
|
else if( GetHorizJustify() == GR_TEXT_HJUSTIFY_RIGHT )
|
|
|
|
SetHorizJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( GetVertJustify() == GR_TEXT_VJUSTIFY_TOP )
|
|
|
|
SetVertJustify( GR_TEXT_VJUSTIFY_BOTTOM );
|
|
|
|
else if( GetVertJustify() == GR_TEXT_VJUSTIFY_BOTTOM )
|
|
|
|
SetVertJustify( GR_TEXT_VJUSTIFY_TOP );
|
|
|
|
}
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextX( x );
|
2020-02-04 20:57:39 +00:00
|
|
|
NormalizeJustification( true );
|
2009-09-29 18:38:21 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_TEXT::MirrorVertical( const wxPoint& center )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2020-02-04 20:57:39 +00:00
|
|
|
NormalizeJustification( false );
|
2017-01-23 20:30:11 +00:00
|
|
|
int y = GetTextPos().y;
|
|
|
|
|
|
|
|
y -= center.y;
|
|
|
|
y *= -1;
|
|
|
|
y += center.y;
|
|
|
|
|
2020-02-04 20:57:39 +00:00
|
|
|
if( GetTextAngle() == 0.0 )
|
|
|
|
{
|
|
|
|
if( GetVertJustify() == GR_TEXT_VJUSTIFY_TOP )
|
|
|
|
SetVertJustify( GR_TEXT_VJUSTIFY_BOTTOM );
|
|
|
|
else if( GetVertJustify() == GR_TEXT_VJUSTIFY_BOTTOM )
|
|
|
|
SetVertJustify( GR_TEXT_VJUSTIFY_TOP );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( GetHorizJustify() == GR_TEXT_HJUSTIFY_LEFT )
|
|
|
|
SetHorizJustify( GR_TEXT_HJUSTIFY_RIGHT );
|
|
|
|
else if( GetHorizJustify() == GR_TEXT_HJUSTIFY_RIGHT )
|
|
|
|
SetHorizJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
}
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextY( y );
|
2020-02-04 20:57:39 +00:00
|
|
|
NormalizeJustification( true );
|
2011-05-20 18:29:35 +00:00
|
|
|
}
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_TEXT::Rotate( const wxPoint& center, bool aRotateCCW )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2020-02-04 20:57:39 +00:00
|
|
|
NormalizeJustification( false );
|
2011-05-22 19:08:34 +00:00
|
|
|
int rot_angle = aRotateCCW ? -900 : 900;
|
|
|
|
|
2017-01-23 20:30:11 +00:00
|
|
|
wxPoint pt = GetTextPos();
|
|
|
|
RotatePoint( &pt, center, rot_angle );
|
|
|
|
SetTextPos( pt );
|
|
|
|
|
2020-02-04 20:57:39 +00:00
|
|
|
if( GetTextAngle() == 0.0 )
|
|
|
|
{
|
|
|
|
SetTextAngle( 900 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// 180º of rotation is a mirror
|
|
|
|
|
|
|
|
if( GetHorizJustify() == GR_TEXT_HJUSTIFY_LEFT )
|
|
|
|
SetHorizJustify( GR_TEXT_HJUSTIFY_RIGHT );
|
|
|
|
else if( GetHorizJustify() == GR_TEXT_HJUSTIFY_RIGHT )
|
|
|
|
SetHorizJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
|
|
|
|
if( GetVertJustify() == GR_TEXT_VJUSTIFY_TOP )
|
|
|
|
SetVertJustify( GR_TEXT_VJUSTIFY_BOTTOM );
|
|
|
|
else if( GetVertJustify() == GR_TEXT_VJUSTIFY_BOTTOM )
|
|
|
|
SetVertJustify( GR_TEXT_VJUSTIFY_TOP );
|
|
|
|
|
|
|
|
SetTextAngle( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
NormalizeJustification( true );
|
2011-05-20 18:29:35 +00:00
|
|
|
}
|
|
|
|
|
2009-09-29 18:38:21 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_TEXT::Plot( PLOTTER* plotter, const wxPoint& offset, bool fill,
|
|
|
|
const TRANSFORM& aTransform )
|
2009-10-05 17:52:41 +00:00
|
|
|
{
|
|
|
|
wxASSERT( plotter != NULL );
|
|
|
|
|
2015-11-08 10:10:52 +00:00
|
|
|
EDA_RECT bBox = GetBoundingBox();
|
|
|
|
// convert coordinates from draw Y axis to libedit Y axis
|
|
|
|
bBox.RevertYAxis();
|
|
|
|
wxPoint txtpos = bBox.Centre();
|
|
|
|
|
2009-10-05 17:52:41 +00:00
|
|
|
/* The text orientation may need to be flipped if the
|
|
|
|
* transformation matrix causes xy axes to be flipped. */
|
2017-01-23 20:30:11 +00:00
|
|
|
int t1 = ( aTransform.x1 != 0 ) ^ ( GetTextAngle() != 0 );
|
2015-11-08 10:10:52 +00:00
|
|
|
wxPoint pos = aTransform.TransformCoordinate( txtpos ) + offset;
|
2009-10-05 17:52:41 +00:00
|
|
|
|
2013-02-21 23:45:46 +00:00
|
|
|
// Get color
|
2017-02-20 16:57:41 +00:00
|
|
|
COLOR4D color;
|
2013-02-21 23:45:46 +00:00
|
|
|
|
|
|
|
if( plotter->GetColorMode() ) // Used normal color or selected color
|
|
|
|
color = IsSelected() ? GetItemSelectedColor() : GetDefaultColor();
|
|
|
|
else
|
2017-02-20 17:48:27 +00:00
|
|
|
color = COLOR4D::BLACK;
|
2013-02-21 23:45:46 +00:00
|
|
|
|
2014-09-13 18:15:45 +00:00
|
|
|
plotter->Text( pos, color, GetShownText(),
|
2017-01-23 20:30:11 +00:00
|
|
|
t1 ? TEXT_ANGLE_HORIZ : TEXT_ANGLE_VERT,
|
|
|
|
GetTextSize(), GR_TEXT_HJUSTIFY_CENTER, GR_TEXT_VJUSTIFY_CENTER,
|
|
|
|
GetPenSize(), IsItalic(), IsBold() );
|
2009-10-05 17:52:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
int LIB_TEXT::GetPenSize() const
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
int pensize = GetThickness();
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2009-06-30 17:57:27 +00:00
|
|
|
if( pensize == 0 ) // Use default values for pen size
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
if( IsBold() )
|
|
|
|
pensize = GetPenSizeForBold( GetTextWidth() );
|
2009-06-13 17:07:04 +00:00
|
|
|
else
|
2012-09-28 17:47:41 +00:00
|
|
|
pensize = GetDefaultLineThickness();
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2009-06-13 17:07:04 +00:00
|
|
|
// Clip pen size for small texts:
|
2017-01-23 20:30:11 +00:00
|
|
|
pensize = Clamp_Text_PenSize( pensize, GetTextSize(), IsBold() );
|
2009-06-30 17:57:27 +00:00
|
|
|
return pensize;
|
|
|
|
}
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2011-01-21 19:30:59 +00:00
|
|
|
void LIB_TEXT::drawGraphic( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aOffset,
|
2017-02-20 16:57:41 +00:00
|
|
|
COLOR4D aColor, GR_DRAWMODE aDrawMode, void* aData,
|
2012-09-02 12:06:47 +00:00
|
|
|
const TRANSFORM& aTransform )
|
2009-06-30 17:57:27 +00:00
|
|
|
{
|
2017-02-20 16:57:41 +00:00
|
|
|
COLOR4D color = GetDefaultColor();
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2017-02-20 17:48:27 +00:00
|
|
|
if( aColor == COLOR4D::UNSPECIFIED ) // Used normal color or selected color
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
2011-12-21 13:42:02 +00:00
|
|
|
if( IsSelected() )
|
2012-09-28 17:47:41 +00:00
|
|
|
color = GetItemSelectedColor();
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
else
|
2011-10-31 20:49:48 +00:00
|
|
|
{
|
2009-06-13 17:07:04 +00:00
|
|
|
color = aColor;
|
2011-10-31 20:49:48 +00:00
|
|
|
}
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2009-09-04 18:57:37 +00:00
|
|
|
GRSetDrawMode( aDC, aDrawMode );
|
|
|
|
|
2010-03-16 12:05:47 +00:00
|
|
|
/* Calculate the text orientation, according to the component
|
|
|
|
* orientation/mirror (needed when draw text in schematic)
|
|
|
|
*/
|
2017-01-23 20:30:11 +00:00
|
|
|
int orient = GetTextAngle();
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
if( aTransform.y1 ) // Rotate component 90 degrees.
|
2010-03-16 12:05:47 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
if( orient == TEXT_ANGLE_HORIZ )
|
|
|
|
orient = TEXT_ANGLE_VERT;
|
2010-03-16 12:05:47 +00:00
|
|
|
else
|
2017-01-23 20:30:11 +00:00
|
|
|
orient = TEXT_ANGLE_HORIZ;
|
2010-03-16 12:05:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
*/
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT bBox = GetBoundingBox();
|
2017-01-23 20:30:11 +00:00
|
|
|
|
2015-06-18 14:56:08 +00:00
|
|
|
// convert coordinates from draw Y axis to libedit Y axis:
|
|
|
|
bBox.RevertYAxis();
|
2011-11-11 07:00:51 +00:00
|
|
|
wxPoint txtpos = bBox.Centre();
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2015-06-18 14:56:08 +00:00
|
|
|
// Calculate pos according to mirror/rotation.
|
2011-11-11 07:00:51 +00:00
|
|
|
txtpos = aTransform.TransformCoordinate( txtpos ) + aOffset;
|
|
|
|
|
2013-06-29 09:52:22 +00:00
|
|
|
EDA_RECT* clipbox = aPanel? aPanel->GetClipBox() : NULL;
|
2017-01-23 20:30:11 +00:00
|
|
|
DrawGraphicText( clipbox, aDC, txtpos, color, GetShownText(), orient, GetTextSize(),
|
2010-10-20 20:24:26 +00:00
|
|
|
GR_TEXT_HJUSTIFY_CENTER, GR_TEXT_VJUSTIFY_CENTER, GetPenSize(),
|
2017-01-23 20:30:11 +00:00
|
|
|
IsItalic(), IsBold() );
|
2010-10-20 20:24:26 +00:00
|
|
|
|
2009-10-01 14:17:47 +00:00
|
|
|
|
2010-03-16 12:05:47 +00:00
|
|
|
/* Enable this to draw the bounding box around the text field to validate
|
|
|
|
* the bounding box calculations.
|
2010-10-20 20:24:26 +00:00
|
|
|
*/
|
2009-10-01 14:17:47 +00:00
|
|
|
#if 0
|
2015-06-18 14:56:08 +00:00
|
|
|
// bBox already uses libedit Y axis.
|
|
|
|
bBox = aTransform.TransformCoordinate( bBox );
|
|
|
|
bBox.Move( aOffset );
|
|
|
|
GRRect( clipbox, aDC, bBox, 0, LIGHTMAGENTA );
|
2009-10-01 14:17:47 +00:00
|
|
|
#endif
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
void LIB_TEXT::GetMsgPanelInfo( EDA_UNITS_T aUnits, MSG_PANEL_ITEMS& aList )
|
2009-06-13 17:07:04 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
LIB_ITEM::GetMsgPanelInfo( aUnits, aList );
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
msg = MessageTextFromValue( aUnits, GetThickness(), true );
|
2009-06-13 17:07:04 +00:00
|
|
|
|
2014-11-15 19:06:05 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Line Width" ), msg, BLUE ) );
|
2009-06-13 17:07:04 +00:00
|
|
|
}
|
2009-10-01 14:17:47 +00:00
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT LIB_TEXT::GetBoundingBox() const
|
2009-10-01 14:17:47 +00:00
|
|
|
{
|
2010-12-10 19:47:44 +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.
|
2010-03-16 12:05:47 +00:00
|
|
|
*/
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect = GetTextBox( -1, -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.
|
2009-10-01 14:17:47 +00:00
|
|
|
wxPoint orig = rect.GetOrigin();
|
2017-01-23 20:30:11 +00:00
|
|
|
wxPoint end = rect.GetEnd();
|
|
|
|
|
|
|
|
RotatePoint( &orig, GetTextPos(), -GetTextAngle() );
|
|
|
|
RotatePoint( &end, GetTextPos(), -GetTextAngle() );
|
2015-06-18 14:56:08 +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();
|
2011-11-11 07:00:51 +00:00
|
|
|
|
2009-10-01 14:17:47 +00:00
|
|
|
return rect;
|
|
|
|
}
|
2010-10-20 20:24:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
void LIB_TEXT::Rotate()
|
|
|
|
{
|
|
|
|
if( InEditMode() )
|
|
|
|
{
|
|
|
|
m_rotate = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextAngle( GetTextAngle() == TEXT_ANGLE_VERT ? TEXT_ANGLE_HORIZ : TEXT_ANGLE_VERT );
|
2010-10-20 20:24:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-22 12:11:52 +00:00
|
|
|
void LIB_TEXT::SetText( const wxString& aText )
|
|
|
|
{
|
|
|
|
if( aText == m_Text )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if( InEditMode() )
|
|
|
|
{
|
|
|
|
m_savedText = aText;
|
|
|
|
m_updateText = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_Text = aText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
wxString LIB_TEXT::GetSelectMenuText( EDA_UNITS_T aUnits ) const
|
2011-04-27 19:44:32 +00:00
|
|
|
{
|
2018-04-10 10:52:12 +00:00
|
|
|
return wxString::Format( _( "Graphic Text \"%s\"" ), ShortenedShownText() );
|
2011-04-27 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF LIB_TEXT::GetMenuImage() const
|
|
|
|
{
|
2017-06-02 09:51:11 +00:00
|
|
|
return text_xpm;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-28 19:12:46 +00:00
|
|
|
void LIB_TEXT::BeginEdit( STATUS_FLAGS aEditMode, const wxPoint aPosition )
|
2010-10-20 20:24:26 +00:00
|
|
|
{
|
|
|
|
wxCHECK_RET( ( aEditMode & ( IS_NEW | IS_MOVED ) ) != 0,
|
|
|
|
wxT( "Invalid edit mode for LIB_TEXT object." ) );
|
|
|
|
|
|
|
|
if( aEditMode == IS_MOVED )
|
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
m_initialPos = GetTextPos();
|
2010-10-20 20:24:26 +00:00
|
|
|
m_initialCursorPos = aPosition;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextPos( aPosition );
|
2010-10-20 20:24:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_Flags = aEditMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool LIB_TEXT::ContinueEdit( const wxPoint aPosition )
|
|
|
|
{
|
|
|
|
wxCHECK_MSG( ( m_Flags & ( IS_NEW | IS_MOVED ) ) != 0, false,
|
|
|
|
wxT( "Bad call to ContinueEdit(). Text is not being edited." ) );
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_TEXT::EndEdit( const wxPoint& aPosition, bool aAbort )
|
|
|
|
{
|
|
|
|
wxCHECK_RET( ( m_Flags & ( IS_NEW | IS_MOVED ) ) != 0,
|
|
|
|
wxT( "Bad call to EndEdit(). Text is not being edited." ) );
|
|
|
|
|
|
|
|
m_Flags = 0;
|
2010-10-22 12:11:52 +00:00
|
|
|
m_rotate = false;
|
|
|
|
m_updateText = false;
|
2010-10-20 20:24:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
void LIB_TEXT::CalcEdit( const wxPoint& aPosition )
|
2010-10-20 20:24:26 +00:00
|
|
|
{
|
2018-10-11 05:31:17 +00:00
|
|
|
DBG(printf("textCalcEdit %d %d\n", aPosition.x, aPosition.y );)
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
if( m_rotate )
|
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextAngle( GetTextAngle() == TEXT_ANGLE_VERT ? TEXT_ANGLE_HORIZ : TEXT_ANGLE_VERT );
|
2010-10-20 20:24:26 +00:00
|
|
|
m_rotate = false;
|
|
|
|
}
|
|
|
|
|
2010-10-22 12:11:52 +00:00
|
|
|
if( m_updateText )
|
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
std::swap( m_Text, m_savedText );
|
2010-10-22 12:11:52 +00:00
|
|
|
m_updateText = false;
|
|
|
|
}
|
|
|
|
|
2010-10-20 20:24:26 +00:00
|
|
|
if( m_Flags == IS_NEW )
|
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextPos( aPosition );
|
2010-10-20 20:24:26 +00:00
|
|
|
}
|
|
|
|
else if( m_Flags == IS_MOVED )
|
|
|
|
{
|
|
|
|
Move( m_initialPos + aPosition - m_initialCursorPos );
|
2018-10-11 05:31:17 +00:00
|
|
|
DBG(printf("%p: move %d %d\n", this, GetPosition().x, GetPosition().y );)
|
2010-10-20 20:24:26 +00:00
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-11 05:31:17 +00:00
|
|
|
DBG(printf("%p: move2 %d %d\n", this, GetPosition().x, GetPosition().y );)
|
2010-10-20 20:24:26 +00:00
|
|
|
}
|