2013-07-19 18:27:22 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1992-2013 Jean-Pierre Charras <jp.charras at wanadoo.fr>.
|
2016-06-11 13:51:05 +00:00
|
|
|
* Copyright (C) 1992-2016 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-07-19 18:27:22 +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
|
|
|
|
*/
|
2016-06-11 13:51:05 +00:00
|
|
|
/**
|
|
|
|
* @file page_layout_graphic_items.cpp
|
|
|
|
* @brief description of graphic items and texts to build a title block
|
|
|
|
*/
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* the class WORKSHEET_DATAITEM (and WORKSHEET_DATAITEM_TEXT) defines
|
|
|
|
* a basic shape of a page layout ( frame references and title block )
|
|
|
|
* Basic shapes are line, rect and texts
|
|
|
|
* the WORKSHEET_DATAITEM coordinates units is the mm, and are relative to
|
|
|
|
* one of 4 page corners.
|
|
|
|
*
|
|
|
|
* These items cannot be drawn or plot "as this". they should be converted
|
|
|
|
* to a "draw list" (WS_DRAW_ITEM_BASE and derived items)
|
|
|
|
|
|
|
|
* The list of these items is stored in a WORKSHEET_LAYOUT instance.
|
|
|
|
*
|
|
|
|
* When building the draw list:
|
|
|
|
* the WORKSHEET_LAYOUT is used to create a WS_DRAW_ITEM_LIST
|
|
|
|
* coordinates are converted to draw/plot coordinates.
|
|
|
|
* texts are expanded if they contain format symbols.
|
|
|
|
* Items with m_RepeatCount > 1 are created m_RepeatCount times
|
|
|
|
*
|
|
|
|
* the WORKSHEET_LAYOUT is created only once.
|
|
|
|
* the WS_DRAW_ITEM_LIST is created each time the page layout is plotted/drawn
|
|
|
|
*
|
|
|
|
* the WORKSHEET_LAYOUT instance is created from a S expression which
|
|
|
|
* describes the page layout (can be the default page layout or a custom file).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fctsys.h>
|
2018-01-29 10:37:29 +00:00
|
|
|
#include <eda_rect.h>
|
2018-01-28 21:02:31 +00:00
|
|
|
#include <draw_graphic_text.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <worksheet.h>
|
2018-01-29 10:37:29 +00:00
|
|
|
#include <title_block.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <worksheet_shape_builder.h>
|
2018-01-29 08:39:13 +00:00
|
|
|
#include <worksheet_dataitem.h>
|
2016-06-11 13:51:05 +00:00
|
|
|
#include <polygon_test_point_inside.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-09-06 09:48:53 +00:00
|
|
|
/* a helper function to calculate a marker size scaling factor from zoom level
|
|
|
|
* when one need a "constant" size to draw an item whatever the zoom level
|
|
|
|
* the scaling factor is clamped between 1.0 to 10.0 to avoid ugly drawings
|
|
|
|
* when the factor is ti high (1.0 is the "actual" item size)
|
|
|
|
* Note:
|
|
|
|
* Only the page layout editor uses the marker size.
|
|
|
|
* Other editors do not use or draw markers
|
|
|
|
*/
|
|
|
|
static double getScaleFromZoom( wxDC* aDC )
|
|
|
|
{
|
|
|
|
double x, y;
|
|
|
|
aDC->GetUserScale( &x, &y );
|
|
|
|
|
|
|
|
double scale = (x + y ) / 2; // should be equal, but if not best we can do is average
|
|
|
|
|
|
|
|
double fscale = WORKSHEET_DATAITEM::m_WSunits2Iu * scale;
|
|
|
|
double zscale = 20.0/ fscale; // The 20.0 factor is chosen for best results
|
|
|
|
// (fix the zoom level to have a zscale > 1)
|
|
|
|
|
|
|
|
// clamp scaling factor:
|
|
|
|
zscale = std::max( 1.0, zscale ); // never smaller than actual size
|
|
|
|
zscale = std::min( 10.0, zscale ); // should be enough to make item visible
|
|
|
|
|
|
|
|
return zscale;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
/* a helper function to draw graphic symbols at start point or end point of
|
|
|
|
* an item.
|
|
|
|
* The start point symbol is a filled rectangle
|
|
|
|
* The start point symbol is a filled circle
|
|
|
|
*/
|
|
|
|
inline void drawMarker( EDA_RECT* aClipBox, wxDC* aDC,
|
|
|
|
const wxPoint& aPos, int aSize, bool aEndPointShape = false )
|
|
|
|
{
|
|
|
|
int markerHalfSize = aSize/2;
|
|
|
|
|
|
|
|
if( aEndPointShape )
|
|
|
|
GRFilledCircle( aClipBox, aDC, aPos.x, aPos.y, markerHalfSize,
|
|
|
|
0, GREEN, GREEN );
|
|
|
|
else
|
|
|
|
GRFilledRect( aClipBox, aDC,
|
|
|
|
aPos.x - markerHalfSize, aPos.y - markerHalfSize,
|
|
|
|
aPos.x + markerHalfSize, aPos.y + markerHalfSize,
|
|
|
|
0, GREEN, GREEN );
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
/* Draws the item list created by BuildWorkSheetGraphicList
|
|
|
|
* aClipBox = the clipping rect, or NULL if no clipping
|
|
|
|
* aDC = the current Device Context
|
|
|
|
* The not selected items are drawn first (most of items)
|
|
|
|
* The selected items are drawn after (usually 0 or 1)
|
|
|
|
* to be sure they are seen, even for overlapping items
|
|
|
|
*/
|
|
|
|
void WS_DRAW_ITEM_LIST::Draw( EDA_RECT* aClipBox, wxDC* aDC )
|
|
|
|
{
|
|
|
|
// The not selected items are drawn first (most of items)
|
|
|
|
for( WS_DRAW_ITEM_BASE* item = GetFirst(); item; item = GetNext() )
|
|
|
|
{
|
|
|
|
if( item->GetParent() && item->GetParent()->IsSelected() )
|
|
|
|
continue;
|
|
|
|
|
2013-07-25 18:58:46 +00:00
|
|
|
item->DrawWsItem( aClipBox, aDC );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// The selected items are drawn after (usually 0 or 1)
|
2018-09-06 09:48:53 +00:00
|
|
|
int markerSize = WORKSHEET_DATAITEM::GetMarkerSizeUi( getScaleFromZoom( aDC ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
for( WS_DRAW_ITEM_BASE* item = GetFirst(); item; item = GetNext() )
|
|
|
|
{
|
|
|
|
if( !item->GetParent() || !item->GetParent()->IsSelected() )
|
|
|
|
continue;
|
|
|
|
|
2013-07-25 18:58:46 +00:00
|
|
|
item->DrawWsItem( aClipBox, aDC );
|
|
|
|
|
2018-09-06 09:48:53 +00:00
|
|
|
if( !markerSize )
|
|
|
|
continue;
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
switch( item->GetType() )
|
|
|
|
{
|
|
|
|
case WS_DRAW_ITEM_BASE::wsg_line:
|
|
|
|
{
|
|
|
|
WS_DRAW_ITEM_LINE* line = (WS_DRAW_ITEM_LINE*) item;
|
2018-09-06 09:48:53 +00:00
|
|
|
drawMarker( aClipBox, aDC, line->GetStart(), markerSize );
|
|
|
|
drawMarker( aClipBox, aDC, line->GetEnd(), markerSize, true );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WS_DRAW_ITEM_BASE::wsg_rect:
|
|
|
|
{
|
|
|
|
WS_DRAW_ITEM_RECT* rect = (WS_DRAW_ITEM_RECT*) item;
|
2018-09-06 09:48:53 +00:00
|
|
|
drawMarker( aClipBox, aDC, rect->GetStart(), markerSize );
|
|
|
|
drawMarker( aClipBox, aDC, rect->GetEnd(), markerSize, true );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WS_DRAW_ITEM_BASE::wsg_text:
|
|
|
|
{
|
|
|
|
WS_DRAW_ITEM_TEXT* text = (WS_DRAW_ITEM_TEXT*) item;
|
2018-09-06 09:48:53 +00:00
|
|
|
drawMarker( aClipBox, aDC, text->GetTextPos(), markerSize );
|
|
|
|
}
|
2013-07-19 18:27:22 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WS_DRAW_ITEM_BASE::wsg_poly:
|
|
|
|
{
|
|
|
|
WS_DRAW_ITEM_POLYGON* poly = (WS_DRAW_ITEM_POLYGON*) item;
|
2018-09-06 09:48:53 +00:00
|
|
|
drawMarker( aClipBox, aDC, poly->GetPosition(), markerSize );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
break;
|
2013-10-18 17:38:03 +00:00
|
|
|
|
|
|
|
case WS_DRAW_ITEM_BASE::wsg_bitmap:
|
|
|
|
{
|
|
|
|
WS_DRAW_ITEM_BITMAP* bitmap = (WS_DRAW_ITEM_BITMAP*) item;
|
2018-09-06 09:48:53 +00:00
|
|
|
drawMarker( aClipBox, aDC, bitmap->GetPosition(), markerSize );
|
2013-10-18 17:38:03 +00:00
|
|
|
}
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
2013-07-25 18:58:46 +00:00
|
|
|
WS_DRAW_ITEM_TEXT::WS_DRAW_ITEM_TEXT( WORKSHEET_DATAITEM* aParent,
|
|
|
|
wxString& aText, wxPoint aPos, wxSize aSize,
|
2017-02-20 16:57:41 +00:00
|
|
|
int aPenWidth, COLOR4D aColor,
|
2013-07-25 18:58:46 +00:00
|
|
|
bool aItalic, bool aBold ) :
|
|
|
|
WS_DRAW_ITEM_BASE( aParent, wsg_text, aColor ), EDA_TEXT( aText )
|
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
SetTextPos( aPos );
|
|
|
|
SetTextSize( aSize );
|
2013-07-25 18:58:46 +00:00
|
|
|
SetThickness( aPenWidth );
|
|
|
|
SetItalic( aItalic );
|
|
|
|
SetBold( aBold );
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
void WS_DRAW_ITEM_TEXT::DrawWsItem( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aOffset,
|
2017-02-20 16:57:41 +00:00
|
|
|
GR_DRAWMODE aDrawMode, COLOR4D aColor )
|
2013-07-25 18:58:46 +00:00
|
|
|
{
|
2016-06-11 13:51:05 +00:00
|
|
|
Draw( aClipBox, aDC, aOffset,
|
2017-02-20 17:48:27 +00:00
|
|
|
aColor == COLOR4D::UNSPECIFIED ? GetColor() : aColor,
|
2016-06-11 13:51:05 +00:00
|
|
|
aDrawMode == UNSPECIFIED_DRAWMODE ? GR_COPY : aDrawMode,
|
2017-02-20 17:48:27 +00:00
|
|
|
FILLED, COLOR4D::UNSPECIFIED );
|
2013-07-25 18:58:46 +00:00
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool WS_DRAW_ITEM_TEXT::HitTest( const wxPoint& aPosition) const
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
return EDA_TEXT::TextHitTest( aPosition, 0 );
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
bool WS_DRAW_ITEM_TEXT::HitTest( const EDA_RECT& aRect ) const
|
|
|
|
{
|
|
|
|
return EDA_TEXT::TextHitTest( aRect, 0, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
bool WS_DRAW_ITEM_TEXT::HitTestStartPoint( wxDC *aDC, const wxPoint& aPosition )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
wxPoint pos = GetTextPos();
|
2018-09-06 09:48:53 +00:00
|
|
|
int marker_size = WORKSHEET_DATAITEM::GetMarkerSizeUi( getScaleFromZoom( aDC ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-09-06 09:48:53 +00:00
|
|
|
if( std::abs( pos.x - aPosition.x) <= marker_size / 2 &&
|
|
|
|
std::abs( pos.y - aPosition.y) <= marker_size / 2 )
|
2013-07-19 18:27:22 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
void WS_DRAW_ITEM_POLYGON::DrawWsItem( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aOffset,
|
2017-02-20 16:57:41 +00:00
|
|
|
GR_DRAWMODE aDrawMode, COLOR4D aColor )
|
2013-07-25 18:58:46 +00:00
|
|
|
{
|
2016-06-11 13:51:05 +00:00
|
|
|
std::vector<wxPoint> points_moved;
|
|
|
|
wxPoint *points;
|
|
|
|
|
|
|
|
if( aOffset.x || aOffset.y )
|
|
|
|
{
|
|
|
|
for( auto point: m_Corners )
|
|
|
|
points_moved.push_back( point + aOffset );
|
|
|
|
points = &points_moved[0];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
points = &m_Corners[0];
|
|
|
|
}
|
|
|
|
|
2017-02-20 17:48:27 +00:00
|
|
|
auto color = ( aColor == COLOR4D::UNSPECIFIED ) ? GetColor() : aColor;
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
GRSetDrawMode( aDC, ( aDrawMode == UNSPECIFIED_DRAWMODE ? GR_COPY : aDrawMode ) );
|
2013-07-25 18:58:46 +00:00
|
|
|
GRPoly( aClipBox, aDC,
|
2016-06-11 13:51:05 +00:00
|
|
|
m_Corners.size(), points,
|
2013-07-25 18:58:46 +00:00
|
|
|
IsFilled() ? FILLED_SHAPE : NO_FILL,
|
|
|
|
GetPenWidth(),
|
2016-06-11 13:51:05 +00:00
|
|
|
color, color );
|
|
|
|
GRSetDrawMode( aDC, GR_COPY );
|
2013-07-25 18:58:46 +00:00
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool WS_DRAW_ITEM_POLYGON::HitTest( const wxPoint& aPosition) const
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
return TestPointInsidePolygon( &m_Corners[0],
|
|
|
|
m_Corners.size(), aPosition );
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
bool WS_DRAW_ITEM_POLYGON::HitTest( const EDA_RECT& aRect ) const
|
|
|
|
{
|
|
|
|
// Intersection of two polygons is nontrivial. Test if the rectangle intersects
|
|
|
|
// each line, instead.
|
|
|
|
|
|
|
|
if( m_Corners.size() < 2 )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for( size_t i = 1; i < m_Corners.size(); ++i )
|
|
|
|
{
|
|
|
|
if( aRect.Intersects( m_Corners[i - 1], m_Corners[i] ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
bool WS_DRAW_ITEM_POLYGON::HitTestStartPoint( wxDC *aDC, const wxPoint& aPosition )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
wxPoint pos = GetPosition();
|
2018-09-06 09:48:53 +00:00
|
|
|
int marker_size = WORKSHEET_DATAITEM::GetMarkerSizeUi( getScaleFromZoom( aDC ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-09-06 09:48:53 +00:00
|
|
|
if( std::abs( pos.x - aPosition.x) <= marker_size / 2 &&
|
|
|
|
std::abs( pos.y - aPosition.y) <= marker_size / 2 )
|
2013-07-19 18:27:22 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
void WS_DRAW_ITEM_RECT::DrawWsItem( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aOffset,
|
2017-02-20 16:57:41 +00:00
|
|
|
GR_DRAWMODE aDrawMode, COLOR4D aColor )
|
2013-07-25 18:58:46 +00:00
|
|
|
{
|
2016-06-11 13:51:05 +00:00
|
|
|
GRSetDrawMode( aDC, ( aDrawMode == UNSPECIFIED_DRAWMODE ? GR_COPY : aDrawMode ) );
|
2013-07-25 18:58:46 +00:00
|
|
|
GRRect( aClipBox, aDC,
|
2016-06-11 13:51:05 +00:00
|
|
|
GetStart().x + aOffset.x, GetStart().y + aOffset.y,
|
|
|
|
GetEnd().x + aOffset.x, GetEnd().y + aOffset.y,
|
|
|
|
GetPenWidth(),
|
2017-02-20 17:48:27 +00:00
|
|
|
( aColor == COLOR4D::UNSPECIFIED ) ? GetColor() : aColor );
|
2016-06-11 13:51:05 +00:00
|
|
|
GRSetDrawMode( aDC, GR_COPY );
|
2013-07-25 18:58:46 +00:00
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
bool WS_DRAW_ITEM_RECT::HitTest( const wxPoint& aPosition ) const
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
int dist = GetPenWidth()/2;
|
|
|
|
wxPoint start = GetStart();
|
|
|
|
wxPoint end;
|
|
|
|
end.x = GetEnd().x;
|
|
|
|
end.y = start.y;
|
|
|
|
|
|
|
|
// Upper line
|
|
|
|
if( TestSegmentHit( aPosition, start, end, dist ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Right line
|
|
|
|
start = end;
|
|
|
|
end.y = GetEnd().y;
|
|
|
|
if( TestSegmentHit( aPosition, start, end, dist ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// lower line
|
|
|
|
start = end;
|
|
|
|
end.x = GetStart().x;
|
|
|
|
if( TestSegmentHit( aPosition, start, end, dist ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// left line
|
|
|
|
start = end;
|
|
|
|
end = GetStart();
|
|
|
|
if( TestSegmentHit( aPosition, start, end, dist ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
bool WS_DRAW_ITEM_RECT::HitTest( const EDA_RECT& aRect ) const
|
|
|
|
{
|
|
|
|
wxPoint start = GetStart();
|
|
|
|
wxPoint end;
|
|
|
|
end.x = GetEnd().x;
|
|
|
|
end.y = start.y;
|
|
|
|
|
|
|
|
// Upper line
|
|
|
|
if( aRect.Intersects( start, end ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Right line
|
|
|
|
start = end;
|
|
|
|
end.y = GetEnd().y;
|
|
|
|
if( aRect.Intersects( start, end ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// lower line
|
|
|
|
start = end;
|
|
|
|
end.x = GetStart().x;
|
|
|
|
if( aRect.Intersects( start, end ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// left line
|
|
|
|
start = end;
|
|
|
|
end = GetStart();
|
|
|
|
if( aRect.Intersects( start, end ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
bool WS_DRAW_ITEM_RECT::HitTestStartPoint( wxDC *aDC, const wxPoint& aPosition )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2013-10-18 17:38:03 +00:00
|
|
|
wxPoint dist = GetStart() - aPosition;
|
2018-09-06 09:48:53 +00:00
|
|
|
int marker_size = WORKSHEET_DATAITEM::GetMarkerSizeUi( getScaleFromZoom( aDC ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-09-06 09:48:53 +00:00
|
|
|
if( std::abs( dist.x) <= marker_size / 2 &&
|
|
|
|
std::abs( dist.y) <= marker_size / 2 )
|
2013-07-19 18:27:22 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
bool WS_DRAW_ITEM_RECT::HitTestEndPoint( wxDC *aDC, const wxPoint& aPosition )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
wxPoint pos = GetEnd();
|
2018-09-06 09:48:53 +00:00
|
|
|
int marker_size = WORKSHEET_DATAITEM::GetMarkerSizeUi( getScaleFromZoom( aDC ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
int dist = (int) hypot( pos.x - aPosition.x, pos.y - aPosition.y );
|
|
|
|
|
2018-09-06 09:48:53 +00:00
|
|
|
if( dist <= marker_size / 2 )
|
2013-07-19 18:27:22 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
void WS_DRAW_ITEM_LINE::DrawWsItem( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aOffset,
|
2017-02-20 16:57:41 +00:00
|
|
|
GR_DRAWMODE aDrawMode, COLOR4D aColor )
|
2013-07-25 18:58:46 +00:00
|
|
|
{
|
2016-06-11 13:51:05 +00:00
|
|
|
GRSetDrawMode( aDC, ( aDrawMode == UNSPECIFIED_DRAWMODE ) ? GR_COPY : aDrawMode );
|
|
|
|
GRLine( aClipBox, aDC, GetStart() + aOffset, GetEnd() + aOffset,
|
|
|
|
GetPenWidth(),
|
2017-02-20 17:48:27 +00:00
|
|
|
( aColor == COLOR4D::UNSPECIFIED ) ? GetColor() : aColor );
|
2016-06-11 13:51:05 +00:00
|
|
|
GRSetDrawMode( aDC, GR_COPY );
|
2013-07-25 18:58:46 +00:00
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool WS_DRAW_ITEM_LINE::HitTest( const wxPoint& aPosition) const
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
return TestSegmentHit( aPosition, GetStart(), GetEnd(), GetPenWidth()/2 );
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
bool WS_DRAW_ITEM_LINE::HitTest( const EDA_RECT& aRect ) const
|
|
|
|
{
|
|
|
|
return aRect.Intersects( GetStart(), GetEnd() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
bool WS_DRAW_ITEM_LINE::HitTestStartPoint( wxDC *aDC, const wxPoint& aPosition )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2013-10-18 17:38:03 +00:00
|
|
|
wxPoint dist = GetStart() - aPosition;
|
2018-09-06 09:48:53 +00:00
|
|
|
int marker_size = WORKSHEET_DATAITEM::GetMarkerSizeUi( getScaleFromZoom( aDC ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-09-06 09:48:53 +00:00
|
|
|
if( std::abs( dist.x) <= marker_size / 2 &&
|
|
|
|
std::abs( dist.y) <= marker_size / 2 )
|
2013-07-19 18:27:22 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
bool WS_DRAW_ITEM_LINE::HitTestEndPoint( wxDC *aDC, const wxPoint& aPosition )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2013-10-18 17:38:03 +00:00
|
|
|
wxPoint dist = GetEnd() - aPosition;
|
2018-09-06 09:48:53 +00:00
|
|
|
int marker_size = WORKSHEET_DATAITEM::GetMarkerSizeUi( getScaleFromZoom( aDC ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-09-06 09:48:53 +00:00
|
|
|
if( std::abs( dist.x) <= marker_size / 2 &&
|
|
|
|
std::abs( dist.y) <= marker_size / 2 )
|
2013-07-19 18:27:22 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
void WS_DRAW_ITEM_LIST::Locate( wxDC* aDC, std::vector <WS_DRAW_ITEM_BASE*>& aList,
|
|
|
|
const wxPoint& aPosition )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
for( WS_DRAW_ITEM_BASE* item = GetFirst(); item; item = GetNext() )
|
|
|
|
{
|
|
|
|
item->m_Flags &= ~(LOCATE_STARTPOINT|LOCATE_ENDPOINT);
|
|
|
|
bool found = false;
|
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
if( item->HitTestStartPoint ( aDC, aPosition ) )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
item->m_Flags |= LOCATE_STARTPOINT;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
if( item->HitTestEndPoint ( aDC, aPosition ) )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
item->m_Flags |= LOCATE_ENDPOINT;
|
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( found || item->HitTest( aPosition ) )
|
|
|
|
{
|
|
|
|
aList.push_back( item );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-18 17:38:03 +00:00
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
|
|
|
void WS_DRAW_ITEM_BITMAP::DrawWsItem( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aOffset,
|
2017-02-20 16:57:41 +00:00
|
|
|
GR_DRAWMODE aDrawMode, COLOR4D aColor )
|
2013-10-18 17:38:03 +00:00
|
|
|
{
|
|
|
|
WORKSHEET_DATAITEM_BITMAP* parent = (WORKSHEET_DATAITEM_BITMAP*)GetParent();
|
|
|
|
|
|
|
|
if( parent->m_ImageBitmap )
|
|
|
|
{
|
2016-06-11 13:51:05 +00:00
|
|
|
GRSetDrawMode( aDC, ( aDrawMode == UNSPECIFIED_DRAWMODE ) ? GR_COPY : aDrawMode );
|
2018-08-03 09:04:57 +00:00
|
|
|
parent->m_ImageBitmap->DrawBitmap( aDC, m_pos + aOffset );
|
2016-06-11 13:51:05 +00:00
|
|
|
GRSetDrawMode( aDC, GR_COPY );
|
2013-10-18 17:38:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool WS_DRAW_ITEM_BITMAP::HitTest( const wxPoint& aPosition) const
|
2013-10-18 17:38:03 +00:00
|
|
|
{
|
2014-05-04 17:08:36 +00:00
|
|
|
const WORKSHEET_DATAITEM_BITMAP* parent = static_cast<const WORKSHEET_DATAITEM_BITMAP*>( GetParent() );
|
2013-10-18 17:38:03 +00:00
|
|
|
|
|
|
|
if( parent->m_ImageBitmap == NULL )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
EDA_RECT rect = parent->m_ImageBitmap->GetBoundingBox();
|
|
|
|
rect.Move( m_pos );
|
|
|
|
return rect.Contains( aPosition );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
bool WS_DRAW_ITEM_BITMAP::HitTest( const EDA_RECT& aRect ) const
|
|
|
|
{
|
|
|
|
const WORKSHEET_DATAITEM_BITMAP* parent = static_cast<const WORKSHEET_DATAITEM_BITMAP*>( GetParent() );
|
|
|
|
|
|
|
|
if( parent->m_ImageBitmap == NULL )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
EDA_RECT rect = parent->m_ImageBitmap->GetBoundingBox();
|
|
|
|
rect.Move( m_pos );
|
|
|
|
return rect.Intersects( aRect );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-18 17:38:03 +00:00
|
|
|
/**
|
|
|
|
* return true if the point aPosition is on the reference point of this item.
|
|
|
|
*/
|
2018-08-19 19:49:35 +00:00
|
|
|
bool WS_DRAW_ITEM_BITMAP::HitTestStartPoint( wxDC *aDC, const wxPoint& aPosition )
|
2013-10-18 17:38:03 +00:00
|
|
|
{
|
|
|
|
wxPoint dist = m_pos - aPosition;
|
2018-09-06 09:48:53 +00:00
|
|
|
int marker_size = WORKSHEET_DATAITEM::GetMarkerSizeUi( getScaleFromZoom( aDC ) );
|
2013-10-18 17:38:03 +00:00
|
|
|
|
2018-09-06 09:48:53 +00:00
|
|
|
if( std::abs( dist.x) <= marker_size / 2 &&
|
|
|
|
std::abs( dist.y) <= marker_size / 2 )
|
2013-10-18 17:38:03 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|