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) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2021-06-08 14:09:24 +00:00
|
|
|
* Copyright (C) 2004-2021 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
|
|
|
|
*/
|
|
|
|
|
2021-08-18 20:38:14 +00:00
|
|
|
|
|
|
|
#include <eda_draw_frame.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.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>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <lib_rectangle.h>
|
2020-03-06 03:00:30 +00:00
|
|
|
#include <settings/color_settings.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <transform.h>
|
2010-11-27 13:09:18 +00:00
|
|
|
|
|
|
|
|
2021-06-10 18:51:46 +00:00
|
|
|
LIB_RECTANGLE::LIB_RECTANGLE( LIB_SYMBOL* aParent ) : LIB_ITEM( LIB_RECTANGLE_T, aParent )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2020-10-15 08:48:02 +00:00
|
|
|
m_Width = 0;
|
2021-01-26 22:54:10 +00:00
|
|
|
m_fill = FILL_TYPE::NO_FILL;
|
2020-10-15 08:48:02 +00:00
|
|
|
m_isFillable = true;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* LIB_RECTANGLE::Clone() const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2011-04-27 19:44:32 +00:00
|
|
|
return new LIB_RECTANGLE( *this );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-02-13 13:39:52 +00:00
|
|
|
int LIB_RECTANGLE::compare( const LIB_ITEM& aOther, LIB_ITEM::COMPARE_FLAGS aCompareFlags ) const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2010-12-10 19:47:44 +00:00
|
|
|
wxASSERT( aOther.Type() == LIB_RECTANGLE_T );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2020-02-13 13:39:52 +00:00
|
|
|
int retv = LIB_ITEM::compare( aOther );
|
|
|
|
|
|
|
|
if( retv )
|
|
|
|
return retv;
|
|
|
|
|
2010-11-27 13:09:18 +00:00
|
|
|
const LIB_RECTANGLE* tmp = ( LIB_RECTANGLE* ) &aOther;
|
|
|
|
|
|
|
|
if( m_Pos.x != tmp->m_Pos.x )
|
|
|
|
return m_Pos.x - tmp->m_Pos.x;
|
|
|
|
|
|
|
|
if( m_Pos.y != tmp->m_Pos.y )
|
|
|
|
return m_Pos.y - tmp->m_Pos.y;
|
|
|
|
|
|
|
|
if( m_End.x != tmp->m_End.x )
|
|
|
|
return m_End.x - tmp->m_End.x;
|
|
|
|
|
|
|
|
if( m_End.y != tmp->m_End.y )
|
|
|
|
return m_End.y - tmp->m_End.y;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-09 07:57:07 +00:00
|
|
|
void LIB_RECTANGLE::Offset( const wxPoint& aOffset )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
|
|
|
m_Pos += aOffset;
|
|
|
|
m_End += aOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-09 07:57:07 +00:00
|
|
|
void LIB_RECTANGLE::MoveTo( const wxPoint& aPosition )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
|
|
|
wxPoint size = m_End - m_Pos;
|
|
|
|
m_Pos = aPosition;
|
|
|
|
m_End = aPosition + size;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_RECTANGLE::MirrorHorizontal( const wxPoint& aCenter )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
|
|
|
m_Pos.x -= aCenter.x;
|
|
|
|
m_Pos.x *= -1;
|
|
|
|
m_Pos.x += aCenter.x;
|
|
|
|
m_End.x -= aCenter.x;
|
|
|
|
m_End.x *= -1;
|
|
|
|
m_End.x += aCenter.x;
|
|
|
|
}
|
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_RECTANGLE::MirrorVertical( const wxPoint& aCenter )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
|
|
|
m_Pos.y -= aCenter.y;
|
|
|
|
m_Pos.y *= -1;
|
|
|
|
m_Pos.y += aCenter.y;
|
|
|
|
m_End.y -= aCenter.y;
|
|
|
|
m_End.y *= -1;
|
|
|
|
m_End.y += aCenter.y;
|
|
|
|
}
|
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_RECTANGLE::Rotate( const wxPoint& aCenter, bool aRotateCCW )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2011-05-22 19:08:34 +00:00
|
|
|
int rot_angle = aRotateCCW ? -900 : 900;
|
|
|
|
RotatePoint( &m_Pos, aCenter, rot_angle );
|
|
|
|
RotatePoint( &m_End, aCenter, rot_angle );
|
2011-05-20 18:29:35 +00:00
|
|
|
}
|
|
|
|
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_RECTANGLE::Plot( PLOTTER* aPlotter, const wxPoint& aOffset, bool aFill,
|
2021-03-06 09:27:41 +00:00
|
|
|
const TRANSFORM& aTransform ) const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2021-07-16 20:13:26 +00:00
|
|
|
wxASSERT( aPlotter != nullptr );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
|
|
|
wxPoint pos = aTransform.TransformCoordinate( m_Pos ) + aOffset;
|
|
|
|
wxPoint end = aTransform.TransformCoordinate( m_End ) + aOffset;
|
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
if( aFill && m_fill == FILL_TYPE::FILLED_WITH_BG_BODYCOLOR )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
aPlotter->SetColor( aPlotter->RenderSettings()->GetLayerColor( LAYER_DEVICE_BACKGROUND ) );
|
2020-10-15 01:45:20 +00:00
|
|
|
aPlotter->Rect( pos, end, FILL_TYPE::FILLED_WITH_BG_BODYCOLOR, 0 );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
bool already_filled = m_fill == FILL_TYPE::FILLED_WITH_BG_BODYCOLOR;
|
2021-08-17 10:59:04 +00:00
|
|
|
int pen_size = GetEffectivePenWidth( aPlotter->RenderSettings() );
|
2019-03-11 06:41:00 +00:00
|
|
|
|
|
|
|
if( !already_filled || pen_size > 0 )
|
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
aPlotter->SetColor( aPlotter->RenderSettings()->GetLayerColor( LAYER_DEVICE ) );
|
2021-01-26 22:54:10 +00:00
|
|
|
aPlotter->Rect( pos, end, already_filled ? FILL_TYPE::NO_FILL : m_fill, pen_size );
|
2019-03-11 06:41:00 +00:00
|
|
|
}
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
int LIB_RECTANGLE::GetPenWidth() const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2021-08-17 10:59:04 +00:00
|
|
|
return m_Width;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2020-12-20 18:18:54 +00:00
|
|
|
void LIB_RECTANGLE::print( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset,
|
|
|
|
void* aData, const TRANSFORM& aTransform )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2020-04-21 17:12:36 +00:00
|
|
|
bool forceNoFill = static_cast<bool>( aData );
|
2021-08-17 10:59:04 +00:00
|
|
|
int penWidth = GetEffectivePenWidth( aSettings );
|
2020-04-21 17:12:36 +00:00
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
if( forceNoFill && m_fill != FILL_TYPE::NO_FILL && penWidth == 0 )
|
2020-04-21 17:12:36 +00:00
|
|
|
return;
|
|
|
|
|
2020-12-15 17:11:14 +00:00
|
|
|
wxDC* DC = aSettings->GetPrintDC();
|
|
|
|
COLOR4D color = aSettings->GetLayerColor( LAYER_DEVICE );
|
|
|
|
wxPoint pt1 = aTransform.TransformCoordinate( m_Pos ) + aOffset;
|
|
|
|
wxPoint pt2 = aTransform.TransformCoordinate( m_End ) + aOffset;
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2021-01-26 22:54:10 +00:00
|
|
|
if( forceNoFill || m_fill == FILL_TYPE::NO_FILL )
|
2020-04-21 17:12:36 +00:00
|
|
|
{
|
|
|
|
GRRect( nullptr, DC, pt1.x, pt1.y, pt2.x, pt2.y, penWidth, color );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-01-26 22:54:10 +00:00
|
|
|
if( m_fill == FILL_TYPE::FILLED_WITH_BG_BODYCOLOR )
|
2020-04-21 17:12:36 +00:00
|
|
|
color = aSettings->GetLayerColor( LAYER_DEVICE_BACKGROUND );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
GRFilledRect( nullptr, DC, pt1.x, pt1.y, pt2.x, pt2.y, penWidth, color, color );
|
2020-04-21 17:12:36 +00:00
|
|
|
}
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-26 23:22:32 +00:00
|
|
|
void LIB_RECTANGLE::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame, std::vector<MSG_PANEL_ITEM>& aList )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2020-04-24 13:36:10 +00:00
|
|
|
LIB_ITEM::GetMsgPanelInfo( aFrame, aList );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2021-09-28 13:28:35 +00:00
|
|
|
aList.emplace_back( _( "Line Width" ), MessageTextFromValue( aFrame->GetUserUnits(), m_Width ) );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT LIB_RECTANGLE::GetBoundingBox() const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect;
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2015-06-18 14:56:08 +00:00
|
|
|
rect.SetOrigin( m_Pos );
|
|
|
|
rect.SetEnd( m_End );
|
2020-04-14 12:25:00 +00:00
|
|
|
rect.Inflate( ( GetPenWidth() / 2 ) + 1 );
|
2015-06-18 14:56:08 +00:00
|
|
|
|
|
|
|
rect.RevertYAxis();
|
|
|
|
|
2010-11-27 13:09:18 +00:00
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
bool LIB_RECTANGLE::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2020-04-14 12:25:00 +00:00
|
|
|
int mindist = std::max( aAccuracy + GetPenWidth() / 2,
|
2019-12-30 18:28:00 +00:00
|
|
|
Mils2iu( MINIMUM_SELECTION_DISTANCE ) );
|
2019-05-05 10:33:34 +00:00
|
|
|
wxPoint actualStart = DefaultTransform.TransformCoordinate( m_Pos );
|
|
|
|
wxPoint actualEnd = DefaultTransform.TransformCoordinate( m_End );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
|
|
|
// locate lower segment
|
|
|
|
wxPoint start, end;
|
|
|
|
|
|
|
|
start = actualStart;
|
|
|
|
end.x = actualEnd.x;
|
|
|
|
end.y = actualStart.y;
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
if( TestSegmentHit( aPosition, start, end, mindist ) )
|
2010-11-27 13:09:18 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// locate right segment
|
|
|
|
start.x = actualEnd.x;
|
|
|
|
end.y = actualEnd.y;
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
if( TestSegmentHit( aPosition, start, end, mindist ) )
|
2010-11-27 13:09:18 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// locate upper segment
|
|
|
|
start.y = actualEnd.y;
|
|
|
|
end.x = actualStart.x;
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
if( TestSegmentHit( aPosition, start, end, mindist ) )
|
2010-11-27 13:09:18 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// locate left segment
|
|
|
|
start = actualStart;
|
|
|
|
end.x = actualStart.x;
|
|
|
|
end.y = actualEnd.y;
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
if( TestSegmentHit( aPosition, start, end, mindist ) )
|
2010-11-27 13:09:18 +00:00
|
|
|
return true;
|
|
|
|
|
2021-01-26 22:59:36 +00:00
|
|
|
if( m_fill == FILL_TYPE::NO_FILL )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return GetBoundingBox().Contains( aPosition );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-06 18:02:01 +00:00
|
|
|
bool LIB_RECTANGLE::HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy ) const
|
|
|
|
{
|
|
|
|
if( m_flags & (STRUCT_DELETED | SKIP_STRUCT ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
EDA_RECT sel = aRect;
|
|
|
|
|
|
|
|
if ( aAccuracy )
|
|
|
|
sel.Inflate( aAccuracy );
|
|
|
|
|
|
|
|
if( aContained )
|
|
|
|
return sel.Contains( GetBoundingBox() );
|
|
|
|
|
|
|
|
return sel.Intersects( GetBoundingBox() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
wxString LIB_RECTANGLE::GetSelectMenuText( EDA_UNITS aUnits ) const
|
2011-04-27 19:44:32 +00:00
|
|
|
{
|
2020-09-19 16:12:00 +00:00
|
|
|
return wxString::Format( _( "Rectangle, width %s height %s" ),
|
|
|
|
MessageTextFromValue( aUnits, std::abs( m_Pos.x - m_End.x ) ),
|
|
|
|
MessageTextFromValue( aUnits, std::abs( m_Pos.y - m_End.y ) ) );
|
2011-04-27 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS LIB_RECTANGLE::GetMenuImage() const
|
2017-02-20 12:20:39 +00:00
|
|
|
{
|
2021-03-08 02:59:07 +00:00
|
|
|
return BITMAPS::add_rectangle;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-06-08 14:09:24 +00:00
|
|
|
void LIB_RECTANGLE::BeginEdit( const wxPoint& aPosition )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
m_Pos = m_End = aPosition;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
void LIB_RECTANGLE::CalcEdit( const wxPoint& aPosition )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
m_End = aPosition;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|