2018-08-03 12:18:26 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 CERN
|
|
|
|
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <sch_item_struct.h>
|
|
|
|
|
|
|
|
#include <lib_draw_item.h>
|
|
|
|
#include <lib_rectangle.h>
|
|
|
|
#include <lib_pin.h>
|
|
|
|
#include <lib_circle.h>
|
|
|
|
#include <lib_polyline.h>
|
|
|
|
#include <lib_arc.h>
|
|
|
|
#include <lib_field.h>
|
|
|
|
#include <lib_text.h>
|
|
|
|
#include <sch_line.h>
|
|
|
|
#include <sch_component.h>
|
|
|
|
#include <sch_field.h>
|
|
|
|
#include <sch_junction.h>
|
|
|
|
#include <sch_text.h>
|
|
|
|
#include <sch_no_connect.h>
|
|
|
|
#include <sch_bus_entry.h>
|
2018-08-27 13:25:48 +00:00
|
|
|
#include <sch_bitmap.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <draw_graphic_text.h>
|
2018-09-07 21:33:01 +00:00
|
|
|
#include <geometry/geometry_utils.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <lib_edit_frame.h>
|
2018-09-07 21:33:01 +00:00
|
|
|
#include <plotter.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <template_fieldnames.h>
|
|
|
|
#include <class_libentry.h>
|
|
|
|
#include <class_library.h>
|
|
|
|
#include <sch_edit_frame.h>
|
2018-10-21 12:50:31 +00:00
|
|
|
#include <view/view.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <gal/graphics_abstraction_layer.h>
|
|
|
|
#include <colors_design_settings.h>
|
2018-12-19 18:53:27 +00:00
|
|
|
#include <geometry/shape_line_chain.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
|
|
|
|
#include "sch_painter.h"
|
|
|
|
|
2018-09-05 22:17:22 +00:00
|
|
|
namespace KIGFX
|
|
|
|
{
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
SCH_RENDER_SETTINGS::SCH_RENDER_SETTINGS() :
|
2019-01-03 16:49:25 +00:00
|
|
|
m_ShowUnit( 0 ), m_ShowConvert( 0 )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
|
|
|
ImportLegacyColors( nullptr );
|
2019-01-03 16:49:25 +00:00
|
|
|
|
|
|
|
m_ShowHiddenText = true;
|
|
|
|
m_ShowHiddenPins = true;
|
|
|
|
m_ShowPinsElectricalType = true;
|
|
|
|
m_ShowUmbilicals = true;
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
void SCH_RENDER_SETTINGS::ImportLegacyColors( const COLORS_DESIGN_SETTINGS* aSettings )
|
|
|
|
{
|
|
|
|
for( int layer = SCH_LAYER_ID_START; layer < SCH_LAYER_ID_END; layer ++)
|
|
|
|
m_layerColors[ layer ] = ::GetLayerColor( static_cast<SCH_LAYER_ID>( layer ) );
|
|
|
|
|
2018-08-14 18:52:27 +00:00
|
|
|
for( int layer = GAL_LAYER_ID_START; layer < GAL_LAYER_ID_END; layer ++)
|
|
|
|
m_layerColors[ layer ] = ::GetLayerColor( static_cast<SCH_LAYER_ID>( layer ) );
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
m_backgroundColor = ::GetLayerColor( LAYER_SCHEMATIC_BACKGROUND );
|
|
|
|
}
|
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
const COLOR4D& SCH_RENDER_SETTINGS::GetColor( const VIEW_ITEM* aItem, int aLayer ) const
|
|
|
|
{
|
|
|
|
return m_layerColors[ aLayer ];
|
|
|
|
}
|
|
|
|
|
2018-12-24 11:17:35 +00:00
|
|
|
static const COLOR4D getOverlayColor( const EDA_ITEM* aItem, const COLOR4D& aColor, bool aOnBackgroundLayer )
|
2018-09-05 22:17:22 +00:00
|
|
|
{
|
2018-12-24 11:17:35 +00:00
|
|
|
if( aItem->IsMoving() || ( aItem->GetParent() && aItem->GetParent()->IsMoving() ) )
|
|
|
|
{
|
|
|
|
return aColor.Brightened( 0.5 );
|
|
|
|
}
|
|
|
|
else if( aItem->IsHighlighted() || ( aItem->GetParent() && aItem->GetParent()->IsHighlighted() ) )
|
|
|
|
{
|
|
|
|
if ( aOnBackgroundLayer )
|
|
|
|
{
|
|
|
|
auto bri = aColor.GetBrightness();
|
|
|
|
return COLOR4D( bri, 0.0, 0.0, 0.3 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return COLOR4D( 1.0, 0.3, 0.3, 1.0 );
|
|
|
|
}
|
|
|
|
}
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-12-24 11:17:35 +00:00
|
|
|
return aColor;
|
|
|
|
}
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
/**
|
|
|
|
* Used when a LIB_PART is not found in library to draw a dummy shape.
|
|
|
|
* This component is a 400 mils square with the text "??"
|
|
|
|
* DEF DUMMY U 0 40 Y Y 1 0 N
|
|
|
|
* F0 "U" 0 -350 60 H V
|
|
|
|
* F1 "DUMMY" 0 350 60 H V
|
|
|
|
* DRAW
|
|
|
|
* T 0 0 0 150 0 0 0 ??
|
|
|
|
* S -200 200 200 -200 0 1 0
|
|
|
|
* ENDDRAW
|
|
|
|
* ENDDEF
|
|
|
|
*/
|
|
|
|
static LIB_PART* dummy()
|
|
|
|
{
|
|
|
|
static LIB_PART* part;
|
|
|
|
|
|
|
|
if( !part )
|
|
|
|
{
|
|
|
|
part = new LIB_PART( wxEmptyString );
|
|
|
|
|
|
|
|
LIB_RECTANGLE* square = new LIB_RECTANGLE( part );
|
|
|
|
|
|
|
|
square->Move( wxPoint( -200, 200 ) );
|
|
|
|
square->SetEndPosition( wxPoint( 200, -200 ) );
|
|
|
|
|
|
|
|
LIB_TEXT* text = new LIB_TEXT( part );
|
|
|
|
|
|
|
|
text->SetTextSize( wxSize( 150, 150 ) );
|
|
|
|
text->SetText( wxString( wxT( "??" ) ) );
|
|
|
|
|
|
|
|
part->AddDrawItem( square );
|
|
|
|
part->AddDrawItem( text );
|
|
|
|
}
|
|
|
|
|
|
|
|
return part;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
SCH_PAINTER::SCH_PAINTER( GAL* aGal ) :
|
2018-08-30 19:44:10 +00:00
|
|
|
KIGFX::PAINTER (aGal)
|
|
|
|
{ }
|
2018-08-03 12:18:26 +00:00
|
|
|
|
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
#define HANDLE_ITEM( type_id, type_name ) \
|
2018-09-19 20:52:13 +00:00
|
|
|
case type_id: draw( (type_name *) item, aLayer ); break;
|
2018-09-09 20:14:00 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
|
|
|
|
bool SCH_PAINTER::Draw( const VIEW_ITEM *aItem, int aLayer )
|
|
|
|
{
|
2018-09-09 20:14:00 +00:00
|
|
|
auto item2 = static_cast<const EDA_ITEM*>( aItem );
|
|
|
|
auto item = const_cast<EDA_ITEM*>( item2 );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
|
|
|
m_schSettings.ImportLegacyColors( nullptr );
|
|
|
|
|
2018-09-07 07:15:22 +00:00
|
|
|
switch( item->Type() )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-08-28 13:27:56 +00:00
|
|
|
HANDLE_ITEM(LIB_ALIAS_T, LIB_ALIAS);
|
2018-08-27 13:25:48 +00:00
|
|
|
HANDLE_ITEM(LIB_PART_T, LIB_PART);
|
|
|
|
HANDLE_ITEM(LIB_RECTANGLE_T, LIB_RECTANGLE);
|
2018-09-05 22:17:22 +00:00
|
|
|
HANDLE_ITEM(LIB_POLYLINE_T, LIB_POLYLINE);
|
|
|
|
HANDLE_ITEM(LIB_CIRCLE_T, LIB_CIRCLE);
|
|
|
|
HANDLE_ITEM(LIB_PIN_T, LIB_PIN);
|
|
|
|
HANDLE_ITEM(LIB_ARC_T, LIB_ARC);
|
|
|
|
HANDLE_ITEM(LIB_FIELD_T, LIB_FIELD);
|
|
|
|
HANDLE_ITEM(LIB_TEXT_T, LIB_TEXT);
|
|
|
|
HANDLE_ITEM(SCH_COMPONENT_T, SCH_COMPONENT);
|
|
|
|
HANDLE_ITEM(SCH_JUNCTION_T, SCH_JUNCTION);
|
|
|
|
HANDLE_ITEM(SCH_LINE_T, SCH_LINE);
|
|
|
|
HANDLE_ITEM(SCH_TEXT_T, SCH_TEXT);
|
|
|
|
HANDLE_ITEM(SCH_LABEL_T, SCH_TEXT);
|
|
|
|
HANDLE_ITEM(SCH_FIELD_T, SCH_FIELD);
|
|
|
|
HANDLE_ITEM(SCH_HIERARCHICAL_LABEL_T, SCH_HIERLABEL);
|
|
|
|
HANDLE_ITEM(SCH_GLOBAL_LABEL_T, SCH_GLOBALLABEL);
|
|
|
|
HANDLE_ITEM(SCH_SHEET_T, SCH_SHEET);
|
2018-09-10 10:58:50 +00:00
|
|
|
HANDLE_ITEM(SCH_SHEET_PIN_T, SCH_HIERLABEL);
|
2018-09-05 22:17:22 +00:00
|
|
|
HANDLE_ITEM(SCH_NO_CONNECT_T, SCH_NO_CONNECT);
|
|
|
|
HANDLE_ITEM(SCH_BUS_WIRE_ENTRY_T, SCH_BUS_ENTRY_BASE);
|
|
|
|
HANDLE_ITEM(SCH_BUS_BUS_ENTRY_T, SCH_BUS_ENTRY_BASE);
|
|
|
|
HANDLE_ITEM(SCH_BITMAP_T, SCH_BITMAP);
|
|
|
|
HANDLE_ITEM(SCH_MARKER_T, SCH_MARKER);
|
|
|
|
|
2018-09-19 20:52:13 +00:00
|
|
|
default: return false;
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-08-28 13:27:56 +00:00
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
bool SCH_PAINTER::isUnitAndConversionShown( const LIB_ITEM* aItem )
|
|
|
|
{
|
|
|
|
if( m_schSettings.m_ShowUnit // showing a specific unit
|
|
|
|
&& aItem->GetUnit() // item is unit-specific
|
|
|
|
&& aItem->GetUnit() != m_schSettings.m_ShowUnit )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( m_schSettings.m_ShowConvert // showing a specific conversion
|
|
|
|
&& aItem->GetConvert() // item is conversion-specific
|
|
|
|
&& aItem->GetConvert() != m_schSettings.m_ShowConvert )
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
void SCH_PAINTER::draw( LIB_PART *aComp, int aLayer, bool aDrawFields, int aUnit, int aConvert,
|
2018-09-19 20:52:13 +00:00
|
|
|
std::vector<bool>* danglingPinFlags )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-02 20:19:22 +00:00
|
|
|
if( !aUnit )
|
|
|
|
aUnit = m_schSettings.m_ShowUnit;
|
|
|
|
|
|
|
|
if( !aConvert )
|
|
|
|
aConvert = m_schSettings.m_ShowConvert;
|
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
size_t pinIndex = 0;
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
for( auto& item : aComp->GetDrawItems() )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-08-31 21:39:11 +00:00
|
|
|
if( !aDrawFields && item.Type() == LIB_FIELD_T )
|
2018-10-21 12:50:31 +00:00
|
|
|
continue;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-28 13:27:56 +00:00
|
|
|
if( aUnit && item.GetUnit() && aUnit != item.GetUnit() )
|
2018-10-21 12:50:31 +00:00
|
|
|
continue;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-28 13:27:56 +00:00
|
|
|
if( aConvert && item.GetConvert() && aConvert != item.GetConvert() )
|
2018-10-21 12:50:31 +00:00
|
|
|
continue;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
if( item.Type() == LIB_PIN_T )
|
|
|
|
{
|
|
|
|
auto pin = static_cast<LIB_PIN*>( &item );
|
|
|
|
bool dangling = true;
|
|
|
|
|
|
|
|
if( danglingPinFlags && pinIndex < danglingPinFlags->size() )
|
|
|
|
dangling = (*danglingPinFlags)[ pinIndex ];
|
|
|
|
|
2018-09-05 22:17:22 +00:00
|
|
|
draw( pin, aLayer, dangling, aComp->IsMoving() );
|
2018-08-30 19:44:10 +00:00
|
|
|
pinIndex++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Draw( &item, aLayer );
|
2018-10-21 12:50:31 +00:00
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-28 13:27:56 +00:00
|
|
|
|
|
|
|
void SCH_PAINTER::draw( LIB_ALIAS *aAlias, int aLayer )
|
|
|
|
{
|
|
|
|
LIB_PART* comp = aAlias->GetPart();
|
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
draw( comp, aLayer, false );
|
2018-08-28 13:27:56 +00:00
|
|
|
|
|
|
|
LIB_FIELDS fields;
|
|
|
|
comp->GetFields( fields );
|
|
|
|
|
|
|
|
if( !aAlias->IsRoot() )
|
|
|
|
{
|
|
|
|
fields[ VALUE ].SetText( aAlias->GetName() );
|
|
|
|
fields[ DATASHEET ].SetText( aAlias->GetDocFileName() );
|
|
|
|
}
|
|
|
|
|
|
|
|
for( LIB_FIELD& field : fields )
|
|
|
|
draw( &field, aLayer );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
static VECTOR2D mapCoords( const wxPoint& aCoord )
|
|
|
|
{
|
|
|
|
return VECTOR2D( aCoord.x, -aCoord.y );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
void SCH_PAINTER::triLine( const VECTOR2D &a, const VECTOR2D &b, const VECTOR2D &c )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-09 20:14:00 +00:00
|
|
|
m_gal->DrawLine( a, b );
|
|
|
|
m_gal->DrawLine( b, c );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
bool SCH_PAINTER::setColors( const LIB_ITEM* aItem, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-10-21 12:50:31 +00:00
|
|
|
if( aLayer == LAYER_DEVICE_BACKGROUND && aItem->GetFillMode() == FILLED_WITH_BG_BODYCOLOR )
|
2018-10-15 18:35:10 +00:00
|
|
|
{
|
2018-12-24 11:17:35 +00:00
|
|
|
COLOR4D color = getOverlayColor( aItem, m_schSettings.GetLayerColor( LAYER_DEVICE_BACKGROUND ), true );
|
2018-10-15 18:35:10 +00:00
|
|
|
|
|
|
|
m_gal->SetIsFill( true );
|
|
|
|
m_gal->SetFillColor( color );
|
2018-09-05 16:21:51 +00:00
|
|
|
|
2018-10-15 18:35:10 +00:00
|
|
|
m_gal->SetIsStroke( false );
|
2018-10-21 12:50:31 +00:00
|
|
|
return true;
|
2018-10-15 18:35:10 +00:00
|
|
|
}
|
2018-10-21 12:50:31 +00:00
|
|
|
else if( aLayer == LAYER_DEVICE )
|
2018-09-05 22:17:22 +00:00
|
|
|
{
|
2018-12-24 11:17:35 +00:00
|
|
|
COLOR4D color = getOverlayColor( aItem, m_schSettings.GetLayerColor( LAYER_DEVICE ), false );
|
2018-10-15 18:35:10 +00:00
|
|
|
|
|
|
|
m_gal->SetIsStroke( true );
|
|
|
|
m_gal->SetStrokeColor( color );
|
|
|
|
m_gal->SetLineWidth( aItem->GetPenSize() );
|
|
|
|
|
|
|
|
m_gal->SetIsFill( aItem->GetFillMode() == FILLED_SHAPE );
|
|
|
|
m_gal->SetFillColor( color );
|
2018-10-21 12:50:31 +00:00
|
|
|
return true;
|
2018-09-05 22:17:22 +00:00
|
|
|
}
|
2018-10-21 12:50:31 +00:00
|
|
|
|
|
|
|
return false;
|
2018-10-15 18:35:10 +00:00
|
|
|
}
|
2018-09-05 16:21:51 +00:00
|
|
|
|
|
|
|
|
2018-10-15 18:35:10 +00:00
|
|
|
void SCH_PAINTER::draw( LIB_RECTANGLE *aRect, int aLayer )
|
|
|
|
{
|
|
|
|
if( !isUnitAndConversionShown( aRect ) )
|
|
|
|
return;
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
if( setColors( aRect, aLayer ) )
|
2018-10-15 18:35:10 +00:00
|
|
|
m_gal->DrawRectangle( mapCoords( aRect->GetPosition() ), mapCoords( aRect->GetEnd() ) );
|
2018-09-05 16:21:51 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-09-05 16:21:51 +00:00
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
void SCH_PAINTER::draw( LIB_CIRCLE *aCircle, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-02 20:19:22 +00:00
|
|
|
if( !isUnitAndConversionShown( aCircle ) )
|
|
|
|
return;
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
if( setColors( aCircle, aLayer ) )
|
2018-10-15 18:35:10 +00:00
|
|
|
m_gal->DrawCircle( mapCoords( aCircle->GetPosition() ), aCircle->GetRadius() );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-09-19 20:52:13 +00:00
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
void SCH_PAINTER::draw( LIB_ARC *aArc, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-02 20:19:22 +00:00
|
|
|
if( !isUnitAndConversionShown( aArc ) )
|
|
|
|
return;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
int sai = aArc->GetFirstRadiusAngle();
|
|
|
|
int eai = aArc->GetSecondRadiusAngle();
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
if( TRANSFORM().MapAngles( &sai, &eai ) )
|
|
|
|
std::swap( sai, eai );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
double sa = (double) sai * M_PI / 1800.0;
|
|
|
|
double ea = (double) eai * M_PI / 1800.0 ;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
VECTOR2D pos = mapCoords( aArc->GetPosition() );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
if( setColors( aArc, aLayer ) )
|
2018-10-15 18:35:10 +00:00
|
|
|
m_gal->DrawArc( pos, aArc->GetRadius(), sa, ea );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-15 18:35:10 +00:00
|
|
|
void SCH_PAINTER::draw( LIB_POLYLINE *aLine, int aLayer )
|
|
|
|
{
|
|
|
|
if( !isUnitAndConversionShown( aLine ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
const std::vector<wxPoint>& pts = aLine->GetPolyPoints();
|
|
|
|
std::deque<VECTOR2D> vtx;
|
|
|
|
|
|
|
|
for( auto p : pts )
|
|
|
|
vtx.push_back( mapCoords( p ) );
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
if( setColors( aLine, aLayer ) )
|
2018-10-15 18:35:10 +00:00
|
|
|
m_gal->DrawPolygon( vtx );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
void SCH_PAINTER::draw( LIB_FIELD *aField, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-10-21 12:50:31 +00:00
|
|
|
// Must check layer as fields are sometimes drawn by their parent rather than
|
|
|
|
// directly from the view.
|
|
|
|
int layers[KIGFX::VIEW::VIEW_MAX_LAYERS], layers_count;
|
|
|
|
aField->ViewGetLayers( layers, layers_count );
|
|
|
|
|
|
|
|
if( aLayer != layers[0] )
|
2018-09-02 20:19:22 +00:00
|
|
|
return;
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
if( !isUnitAndConversionShown( aField ) )
|
|
|
|
return;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-12-24 11:17:35 +00:00
|
|
|
auto color = getOverlayColor( aField, aField->GetDefaultColor(), false );
|
2018-09-09 20:14:00 +00:00
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
if( !aField->IsVisible() )
|
|
|
|
{
|
2018-09-02 20:19:22 +00:00
|
|
|
if( m_schSettings.m_ShowHiddenText )
|
2018-08-31 17:19:09 +00:00
|
|
|
color = m_schSettings.GetLayerColor( LAYER_HIDDEN );
|
|
|
|
else
|
2018-09-09 20:14:00 +00:00
|
|
|
return;
|
2018-09-05 22:17:22 +00:00
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
int linewidth = aField->GetPenSize();
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
m_gal->SetLineWidth( linewidth );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->SetIsFill( false );
|
2018-09-01 23:29:19 +00:00
|
|
|
m_gal->SetIsStroke( true );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->SetStrokeColor( color );
|
2018-09-01 23:29:19 +00:00
|
|
|
m_gal->SetGlyphSize( VECTOR2D( aField->GetTextSize() ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
|
|
|
m_gal->SetHorizontalJustify( aField->GetHorizJustify( ) );
|
|
|
|
m_gal->SetVerticalJustify( aField->GetVertJustify( ) );
|
|
|
|
|
|
|
|
auto pos = mapCoords( aField->GetPosition() );
|
|
|
|
double orient = aField->GetTextAngleRadians();
|
|
|
|
|
|
|
|
m_gal->StrokeText( aField->GetText(), pos, orient );
|
2018-10-21 21:54:02 +00:00
|
|
|
|
|
|
|
// Draw the umbilical line
|
2018-11-14 23:34:32 +00:00
|
|
|
if( aField->IsMoving() && m_schSettings.m_ShowUmbilicals )
|
2018-10-21 21:54:02 +00:00
|
|
|
{
|
|
|
|
m_gal->SetLineWidth( m_schSettings.m_outlineWidth );
|
|
|
|
m_gal->SetStrokeColor( COLOR4D( 0.0, 0.0, 1.0, 1.0 ) );
|
|
|
|
m_gal->DrawLine( pos, wxPoint( 0, 0 ) );
|
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
void SCH_PAINTER::draw( LIB_TEXT *aText, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-02 20:19:22 +00:00
|
|
|
if( !isUnitAndConversionShown( aText ) )
|
|
|
|
return;
|
|
|
|
|
2018-12-24 11:17:35 +00:00
|
|
|
auto color = getOverlayColor( aText, m_schSettings.GetLayerColor( LAYER_DEVICE ), false );
|
2018-09-09 20:14:00 +00:00
|
|
|
|
2018-09-05 22:17:22 +00:00
|
|
|
if( !aText->IsVisible() )
|
|
|
|
{
|
2018-09-09 20:14:00 +00:00
|
|
|
if( m_schSettings.m_ShowHiddenText )
|
|
|
|
color = m_schSettings.GetLayerColor( LAYER_HIDDEN );
|
|
|
|
else
|
2018-09-05 22:17:22 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-11-02 10:27:57 +00:00
|
|
|
int linewidth = aText->GetPenSize();
|
2018-09-01 23:29:19 +00:00
|
|
|
EDA_RECT bBox = aText->GetBoundingBox();
|
|
|
|
bBox.RevertYAxis();
|
|
|
|
VECTOR2D pos = mapCoords( bBox.Centre() );
|
|
|
|
double orient = aText->GetTextAngleRadians();
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-01 23:29:19 +00:00
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
2018-11-02 10:27:57 +00:00
|
|
|
m_gal->SetLineWidth( linewidth );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->SetIsFill( false );
|
2018-08-31 17:19:09 +00:00
|
|
|
m_gal->SetIsStroke( true );
|
|
|
|
m_gal->SetStrokeColor( color );
|
2018-09-01 23:29:19 +00:00
|
|
|
m_gal->SetGlyphSize( VECTOR2D( aText->GetTextSize() ) );
|
2018-08-31 17:19:09 +00:00
|
|
|
m_gal->SetFontBold( aText->IsBold() );
|
|
|
|
m_gal->SetFontItalic( aText->IsItalic() );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->StrokeText( aText->GetText(), pos, orient );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int InternalPinDecoSize( const LIB_PIN &aPin )
|
|
|
|
{
|
|
|
|
return aPin.GetNameTextSize() != 0 ? aPin.GetNameTextSize() / 2 : aPin.GetNumberTextSize() / 2;
|
|
|
|
}
|
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
|
|
|
|
// Utility for getting the size of the 'external' pin decorators (as a radius)
|
|
|
|
// i.e. the negation circle, the polarity 'slopes' and the nonlogic marker
|
2018-08-03 12:18:26 +00:00
|
|
|
static int ExternalPinDecoSize( const LIB_PIN &aPin )
|
|
|
|
{
|
|
|
|
return aPin.GetNumberTextSize() / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
// Draw the target (an open circle) for a pin which has no connection or is being
|
|
|
|
// moved.
|
|
|
|
static void drawPinDanglingSymbol( GAL* aGal, const VECTOR2I& aPos, const COLOR4D& aColor )
|
|
|
|
{
|
|
|
|
aGal->SetIsStroke( true );
|
|
|
|
aGal->SetIsFill( false );
|
|
|
|
aGal->SetStrokeColor( aColor );
|
|
|
|
|
|
|
|
aGal->SetLineWidth ( 1.0 );
|
|
|
|
aGal->DrawCircle( aPos, TARGET_PIN_RADIUS );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-05 22:17:22 +00:00
|
|
|
void SCH_PAINTER::draw( LIB_PIN *aPin, int aLayer, bool isDangling, bool isMoving )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-10-21 12:50:31 +00:00
|
|
|
if( aLayer != LAYER_DEVICE )
|
|
|
|
return;
|
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
if( !isUnitAndConversionShown( aPin ) )
|
|
|
|
return;
|
|
|
|
|
2018-09-06 14:26:00 +00:00
|
|
|
if( aPin->IsMoving() )
|
|
|
|
isMoving = true;
|
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
VECTOR2I pos = mapCoords( aPin->GetPosition() );
|
|
|
|
|
2018-12-24 11:17:35 +00:00
|
|
|
COLOR4D color = getOverlayColor( aPin, m_schSettings.GetLayerColor( LAYER_PIN ), false );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
if( !aPin->IsVisible() )
|
|
|
|
{
|
2018-09-09 20:14:00 +00:00
|
|
|
if( m_schSettings.m_ShowHiddenPins )
|
|
|
|
{
|
|
|
|
color = m_schSettings.GetLayerColor( LAYER_HIDDEN );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-10-29 18:11:04 +00:00
|
|
|
if( isDangling && aPin->IsPowerConnection() )
|
2018-09-09 20:14:00 +00:00
|
|
|
drawPinDanglingSymbol( m_gal, pos, color );
|
2018-08-30 19:44:10 +00:00
|
|
|
|
|
|
|
return;
|
2018-09-09 20:14:00 +00:00
|
|
|
}
|
2018-09-05 22:17:22 +00:00
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
VECTOR2I p0, dir;
|
2018-08-03 12:18:26 +00:00
|
|
|
int len = aPin->GetLength();
|
|
|
|
int width = aPin->GetPenSize();
|
|
|
|
int shape = aPin->GetShape();
|
|
|
|
int orient = aPin->GetOrientation();
|
|
|
|
|
2018-08-29 18:31:43 +00:00
|
|
|
switch( orient )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
|
|
|
case PIN_UP:
|
|
|
|
p0 = VECTOR2I( pos.x, pos.y - len );
|
|
|
|
dir = VECTOR2I(0, 1);
|
|
|
|
break;
|
|
|
|
case PIN_DOWN:
|
|
|
|
p0 = VECTOR2I( pos.x, pos.y + len );
|
|
|
|
dir = VECTOR2I(0, -1);
|
|
|
|
break;
|
|
|
|
case PIN_LEFT:
|
|
|
|
p0 = VECTOR2I( pos.x - len, pos.y );
|
|
|
|
dir = VECTOR2I(1, 0);
|
|
|
|
break;
|
|
|
|
case PIN_RIGHT:
|
|
|
|
p0 = VECTOR2I( pos.x + len, pos.y );
|
|
|
|
dir = VECTOR2I(-1, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-08-29 18:31:43 +00:00
|
|
|
VECTOR2D pc;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-29 18:31:43 +00:00
|
|
|
m_gal->SetIsStroke( true );
|
|
|
|
m_gal->SetIsFill( false );
|
|
|
|
m_gal->SetLineWidth( width );
|
|
|
|
m_gal->SetStrokeColor( color );
|
|
|
|
m_gal->SetFontBold( false );
|
|
|
|
m_gal->SetFontItalic( false );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-29 18:31:43 +00:00
|
|
|
const int radius = ExternalPinDecoSize( *aPin );
|
2018-10-14 10:36:02 +00:00
|
|
|
const int diam = radius*2;
|
2018-08-29 18:31:43 +00:00
|
|
|
const int clock_size = InternalPinDecoSize( *aPin );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-29 18:31:43 +00:00
|
|
|
if( shape == PINSHAPE_INVERTED )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-08-29 18:31:43 +00:00
|
|
|
m_gal->DrawCircle( p0 + dir * radius, radius );
|
2018-10-14 10:36:02 +00:00
|
|
|
m_gal->DrawLine( p0 + dir * ( diam ), pos );
|
2018-08-29 18:31:43 +00:00
|
|
|
}
|
|
|
|
else if( shape == PINSHAPE_FALLING_EDGE_CLOCK )
|
|
|
|
{
|
|
|
|
pc = p0 + dir * clock_size ;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-29 18:31:43 +00:00
|
|
|
triLine( p0 + VECTOR2D( dir.y, -dir.x) * clock_size,
|
|
|
|
pc,
|
2018-08-30 19:44:10 +00:00
|
|
|
p0 + VECTOR2D( -dir.y, dir.x) * clock_size );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-29 18:31:43 +00:00
|
|
|
m_gal->DrawLine( pos, pc );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-08-30 19:44:10 +00:00
|
|
|
m_gal->DrawLine( p0, pos );
|
2018-08-29 18:31:43 +00:00
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
if( shape == PINSHAPE_CLOCK )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-08-29 18:31:43 +00:00
|
|
|
if (!dir.y)
|
|
|
|
{
|
2018-08-30 19:44:10 +00:00
|
|
|
triLine( p0 + VECTOR2D( 0, clock_size ),
|
|
|
|
p0 + VECTOR2D( -dir.x * clock_size, 0 ),
|
|
|
|
p0 + VECTOR2D( 0, -clock_size ) );
|
2018-08-29 18:31:43 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-08-30 19:44:10 +00:00
|
|
|
triLine( p0 + VECTOR2D( clock_size, 0 ),
|
|
|
|
p0 + VECTOR2D( 0, -dir.y * clock_size ),
|
|
|
|
p0 + VECTOR2D( -clock_size, 0 ) );
|
2018-08-29 18:31:43 +00:00
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-29 18:31:43 +00:00
|
|
|
if( shape == PINSHAPE_INPUT_LOW )
|
|
|
|
{
|
|
|
|
if(!dir.y)
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-10-14 10:36:02 +00:00
|
|
|
triLine( p0 + VECTOR2D(dir.x, 0) * diam,
|
|
|
|
p0 + VECTOR2D(dir.x, -1) * diam,
|
2018-09-09 20:14:00 +00:00
|
|
|
p0 );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
else /* MapX1 = 0 */
|
|
|
|
{
|
2018-10-14 10:36:02 +00:00
|
|
|
triLine( p0 + VECTOR2D( 0, dir.y) * diam,
|
|
|
|
p0 + VECTOR2D(-1, dir.y) * diam,
|
2018-09-09 20:14:00 +00:00
|
|
|
p0 );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( shape == PINSHAPE_OUTPUT_LOW ) /* IEEE symbol "Active Low Output" */
|
|
|
|
{
|
2018-10-14 10:36:02 +00:00
|
|
|
if( !dir.y ) // Horizontal pin
|
|
|
|
m_gal->DrawLine( p0 - VECTOR2D( 0, diam ), p0 + VECTOR2D( dir.x, 0 ) * diam );
|
|
|
|
else // Vertical pin
|
|
|
|
m_gal->DrawLine( p0 - VECTOR2D( diam, 0 ), p0 + VECTOR2D( 0, dir.y ) * diam );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( shape == PINSHAPE_NONLOGIC ) /* NonLogic pin symbol */
|
|
|
|
{
|
2018-08-30 19:44:10 +00:00
|
|
|
m_gal->DrawLine( p0 - VECTOR2D( dir.x + dir.y, dir.y - dir.x ) * radius,
|
|
|
|
p0 + VECTOR2D( dir.x + dir.y, dir.y - dir.x ) * radius );
|
|
|
|
m_gal->DrawLine( p0 - VECTOR2D( dir.x - dir.y, dir.x + dir.y ) * radius,
|
|
|
|
p0 + VECTOR2D( dir.x - dir.y, dir.x + dir.y ) * radius );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( aPin->GetType() == PIN_NC ) // Draw a N.C. symbol
|
|
|
|
{
|
2018-08-30 19:44:10 +00:00
|
|
|
m_gal->DrawLine( pos + VECTOR2D( -1, -1 ) * TARGET_PIN_RADIUS,
|
|
|
|
pos + VECTOR2D( 1, 1 ) * TARGET_PIN_RADIUS );
|
|
|
|
m_gal->DrawLine( pos + VECTOR2D( 1, -1 ) * TARGET_PIN_RADIUS ,
|
|
|
|
pos + VECTOR2D( -1, 1 ) * TARGET_PIN_RADIUS );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-10-29 18:11:04 +00:00
|
|
|
if( isDangling && ( aPin->IsVisible() || aPin->IsPowerConnection() ) )
|
2018-09-09 20:14:00 +00:00
|
|
|
drawPinDanglingSymbol( m_gal, pos, color );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-19 20:52:13 +00:00
|
|
|
// Draw the labels
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
LIB_PART* libEntry = aPin->GetParent();
|
2018-08-03 12:18:26 +00:00
|
|
|
int textOffset = libEntry->GetPinNameOffset();
|
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
int nameLineWidth = aPin->GetPenSize();
|
2018-08-03 12:18:26 +00:00
|
|
|
nameLineWidth = Clamp_Text_PenSize( nameLineWidth, aPin->GetNameTextSize(), false );
|
2018-08-30 01:38:08 +00:00
|
|
|
int numLineWidth = aPin->GetPenSize();
|
2018-08-03 12:18:26 +00:00
|
|
|
numLineWidth = Clamp_Text_PenSize( numLineWidth, aPin->GetNumberTextSize(), false );
|
|
|
|
|
|
|
|
#define PIN_TEXT_MARGIN 4
|
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
// Four locations around a pin where text can be drawn
|
|
|
|
enum { INSIDE = 0, OUTSIDE, ABOVE, BELOW };
|
|
|
|
int size[4] = { 0, 0, 0, 0 };
|
2018-09-06 15:55:37 +00:00
|
|
|
int thickness[4] = { numLineWidth, numLineWidth, numLineWidth, numLineWidth };
|
2018-08-30 01:38:08 +00:00
|
|
|
COLOR4D colour[4];
|
|
|
|
wxString text[4];
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
// TextOffset > 0 means pin NAMES on inside, pin NUMBERS above and nothing below
|
|
|
|
if( textOffset )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-08-30 01:38:08 +00:00
|
|
|
size [INSIDE] = libEntry->ShowPinNames() ? aPin->GetNameTextSize() : 0;
|
|
|
|
thickness[INSIDE] = nameLineWidth;
|
|
|
|
colour [INSIDE] = m_schSettings.GetLayerColor( LAYER_PINNAM );
|
|
|
|
text [INSIDE] = aPin->GetName();
|
|
|
|
|
|
|
|
size [ABOVE] = libEntry->ShowPinNumbers() ? aPin->GetNumberTextSize() : 0;
|
|
|
|
thickness[ABOVE] = numLineWidth;
|
|
|
|
colour [ABOVE] = m_schSettings.GetLayerColor( LAYER_PINNUM );
|
|
|
|
text [ABOVE] = aPin->GetNumber();
|
|
|
|
}
|
|
|
|
// Otherwise pin NAMES go above and pin NUMBERS go below
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size [ABOVE] = libEntry->ShowPinNames() ? aPin->GetNameTextSize() : 0;
|
|
|
|
thickness[ABOVE] = nameLineWidth;
|
|
|
|
colour [ABOVE] = m_schSettings.GetLayerColor( LAYER_PINNAM );
|
|
|
|
text [ABOVE] = aPin->GetName();
|
|
|
|
|
|
|
|
size [BELOW] = libEntry->ShowPinNumbers() ? aPin->GetNumberTextSize() : 0;
|
|
|
|
thickness[BELOW] = numLineWidth;
|
|
|
|
colour [BELOW] = m_schSettings.GetLayerColor( LAYER_PINNUM );
|
|
|
|
text [BELOW] = aPin->GetNumber();
|
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-02 20:19:22 +00:00
|
|
|
if( m_schSettings.m_ShowPinsElectricalType )
|
2018-08-30 01:38:08 +00:00
|
|
|
{
|
|
|
|
size [OUTSIDE] = std::max( aPin->GetNameTextSize() * 3 / 4, Millimeter2iu( 0.7 ) );
|
|
|
|
thickness[OUTSIDE] = size[OUTSIDE] / 6;
|
|
|
|
colour [OUTSIDE] = m_schSettings.GetLayerColor( LAYER_NOTES );
|
|
|
|
text [OUTSIDE] = aPin->GetElectricalTypeName();
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
if( !aPin->IsVisible() )
|
|
|
|
{
|
|
|
|
for( COLOR4D& c : colour )
|
|
|
|
c = m_schSettings.GetLayerColor( LAYER_HIDDEN );
|
|
|
|
}
|
2018-09-06 14:26:00 +00:00
|
|
|
else if( isMoving )
|
|
|
|
{
|
|
|
|
for( COLOR4D& c : colour )
|
2018-12-24 11:17:35 +00:00
|
|
|
c = getOverlayColor( aPin, c, false );
|
2018-09-06 14:26:00 +00:00
|
|
|
}
|
2018-08-30 19:44:10 +00:00
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
int insideOffset = textOffset;
|
|
|
|
int outsideOffset = 10;
|
|
|
|
int aboveOffset = PIN_TEXT_MARGIN + ( thickness[ABOVE] + GetDefaultLineThickness() ) / 2;
|
|
|
|
int belowOffset = PIN_TEXT_MARGIN + ( thickness[BELOW] + GetDefaultLineThickness() ) / 2;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
#define SET_DC( i ) \
|
|
|
|
m_gal->SetGlyphSize( VECTOR2D( size[i], size[i] ) ); \
|
|
|
|
m_gal->SetLineWidth( thickness[i] ); \
|
|
|
|
m_gal->SetStrokeColor( colour[i] );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
switch( orient )
|
2018-08-29 18:31:43 +00:00
|
|
|
{
|
2018-08-30 01:38:08 +00:00
|
|
|
case PIN_LEFT:
|
|
|
|
if( size[INSIDE] )
|
|
|
|
{
|
|
|
|
SET_DC( INSIDE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_RIGHT );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
|
|
|
m_gal->StrokeText( text[INSIDE], pos + VECTOR2D( -insideOffset - len, 0 ), 0 );
|
|
|
|
}
|
|
|
|
if( size[OUTSIDE] )
|
|
|
|
{
|
|
|
|
SET_DC( OUTSIDE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
|
|
|
m_gal->StrokeText( text[OUTSIDE], pos + VECTOR2D( outsideOffset, 0 ), 0 );
|
|
|
|
}
|
|
|
|
if( size[ABOVE] )
|
|
|
|
{
|
|
|
|
SET_DC( ABOVE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_BOTTOM );
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->StrokeText( text[ABOVE], pos + VECTOR2D( -len / 2.0, -aboveOffset ), 0 );
|
2018-08-30 01:38:08 +00:00
|
|
|
}
|
|
|
|
if( size[BELOW] )
|
|
|
|
{
|
|
|
|
SET_DC( BELOW );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_TOP );
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->StrokeText( text[BELOW], pos + VECTOR2D( -len / 2.0, belowOffset ), 0 );
|
2018-08-30 01:38:08 +00:00
|
|
|
}
|
|
|
|
break;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
case PIN_RIGHT:
|
|
|
|
if( size[INSIDE] )
|
|
|
|
{
|
|
|
|
SET_DC( INSIDE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_gal->StrokeText( text[INSIDE], pos + VECTOR2D( insideOffset + len, 0 ), 0 );
|
|
|
|
}
|
|
|
|
if( size[OUTSIDE] )
|
|
|
|
{
|
|
|
|
SET_DC( OUTSIDE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_RIGHT );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
|
|
|
m_gal->StrokeText( text[OUTSIDE], pos + VECTOR2D( -outsideOffset, 0 ), 0 );
|
|
|
|
}
|
|
|
|
if( size[ABOVE] )
|
|
|
|
{
|
|
|
|
SET_DC( ABOVE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_BOTTOM );
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->StrokeText( text[ABOVE], pos + VECTOR2D( len / 2.0, -aboveOffset ), 0 );
|
2018-08-30 01:38:08 +00:00
|
|
|
}
|
|
|
|
if( size[BELOW] )
|
|
|
|
{
|
|
|
|
SET_DC( BELOW );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_TOP );
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->StrokeText( text[BELOW], pos + VECTOR2D( len / 2.0, belowOffset ), 0 );
|
2018-08-30 01:38:08 +00:00
|
|
|
}
|
|
|
|
break;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
case PIN_DOWN:
|
|
|
|
if( size[INSIDE] )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-08-30 01:38:08 +00:00
|
|
|
SET_DC( INSIDE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_RIGHT );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
|
|
|
m_gal->StrokeText ( text[INSIDE], pos + VECTOR2D( 0, insideOffset + len ), M_PI / 2);
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
2018-08-30 01:38:08 +00:00
|
|
|
if( size[OUTSIDE] )
|
|
|
|
{
|
|
|
|
SET_DC( OUTSIDE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
|
|
|
m_gal->StrokeText ( text[OUTSIDE], pos + VECTOR2D( 0, -outsideOffset ), M_PI / 2);
|
|
|
|
}
|
|
|
|
if( size[ABOVE] )
|
|
|
|
{
|
|
|
|
SET_DC( ABOVE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_BOTTOM );
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->StrokeText( text[ABOVE], pos + VECTOR2D( -aboveOffset, len / 2.0 ), M_PI / 2 );
|
2018-08-30 01:38:08 +00:00
|
|
|
}
|
|
|
|
if( size[BELOW] )
|
|
|
|
{
|
|
|
|
SET_DC( BELOW );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_TOP );
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->StrokeText( text[BELOW], pos + VECTOR2D( belowOffset, len / 2.0 ), M_PI / 2 );
|
2018-08-30 01:38:08 +00:00
|
|
|
}
|
|
|
|
break;
|
2018-08-29 18:31:43 +00:00
|
|
|
|
2018-08-30 01:38:08 +00:00
|
|
|
case PIN_UP:
|
|
|
|
if( size[INSIDE] )
|
|
|
|
{
|
|
|
|
SET_DC( INSIDE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
|
|
|
m_gal->StrokeText ( text[INSIDE], pos + VECTOR2D( 0, -insideOffset - len ), M_PI / 2);
|
|
|
|
}
|
|
|
|
if( size[OUTSIDE] )
|
|
|
|
{
|
|
|
|
SET_DC( OUTSIDE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_RIGHT );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
|
|
|
m_gal->StrokeText ( text[OUTSIDE], pos + VECTOR2D( 0, outsideOffset ), M_PI / 2);
|
|
|
|
}
|
|
|
|
if( size[ABOVE] )
|
|
|
|
{
|
|
|
|
SET_DC( ABOVE );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_BOTTOM );
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->StrokeText( text[ABOVE], pos + VECTOR2D( -aboveOffset, -len / 2.0 ), M_PI / 2 );
|
2018-08-30 01:38:08 +00:00
|
|
|
}
|
|
|
|
if( size[BELOW] )
|
|
|
|
{
|
|
|
|
SET_DC( BELOW );
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_TOP );
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->StrokeText( text[BELOW], pos + VECTOR2D( belowOffset, -len / 2.0 ), M_PI / 2 );
|
2018-08-30 01:38:08 +00:00
|
|
|
}
|
|
|
|
break;
|
2018-09-19 20:52:13 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
wxFAIL_MSG( "Unknown pin orientation" );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
// Draw the target (an open square) for a wire or label which has no connection or is
|
|
|
|
// being moved.
|
2018-08-30 22:43:42 +00:00
|
|
|
static void drawDanglingSymbol( GAL* aGal, const wxPoint& aPos )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-08-30 22:43:42 +00:00
|
|
|
wxPoint radius( DANGLING_SYMBOL_SIZE, DANGLING_SYMBOL_SIZE );
|
2018-09-09 20:14:00 +00:00
|
|
|
|
|
|
|
aGal->SetIsStroke( true );
|
|
|
|
aGal->SetIsFill( false );
|
2018-08-30 22:43:42 +00:00
|
|
|
aGal->SetLineWidth ( 1.0 );
|
2018-09-09 20:14:00 +00:00
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
aGal->DrawRectangle( aPos - radius, aPos + radius );
|
|
|
|
}
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
void SCH_PAINTER::draw( SCH_JUNCTION *aJct, int aLayer )
|
|
|
|
{
|
2018-09-05 22:17:22 +00:00
|
|
|
COLOR4D color = m_schSettings.GetLayerColor( LAYER_JUNCTION );
|
|
|
|
|
2018-10-13 14:12:22 +00:00
|
|
|
if( aJct->GetState( BRIGHTENED ) )
|
|
|
|
color = m_schSettings.GetLayerColor( LAYER_BRIGHTENED );
|
2018-12-24 11:17:35 +00:00
|
|
|
else
|
|
|
|
color = getOverlayColor( aJct, color, false );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
|
|
|
m_gal->SetIsStroke(true);
|
|
|
|
m_gal->SetIsFill(true);
|
|
|
|
m_gal->SetStrokeColor( color );
|
|
|
|
m_gal->SetFillColor( color );
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->DrawCircle( aJct->GetPosition(), SCH_JUNCTION::GetEffectiveSymbolSize() / 2.0 );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
|
|
|
|
void SCH_PAINTER::draw( SCH_LINE *aLine, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-06 22:18:48 +00:00
|
|
|
COLOR4D color = aLine->GetLineColor();
|
2018-09-05 22:17:22 +00:00
|
|
|
|
|
|
|
if( aLine->GetState( BRIGHTENED ) )
|
|
|
|
color = m_schSettings.GetLayerColor( LAYER_BRIGHTENED );
|
2018-12-24 11:17:35 +00:00
|
|
|
|
|
|
|
color = getOverlayColor( aLine, color, false );
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
int width = aLine->GetPenSize();
|
|
|
|
|
2018-09-07 21:33:01 +00:00
|
|
|
m_gal->SetIsStroke( true );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->SetStrokeColor(color);
|
|
|
|
m_gal->SetLineWidth( width );
|
2018-09-07 21:33:01 +00:00
|
|
|
|
|
|
|
if( aLine->GetLineStyle() <= PLOTDASHTYPE_SOLID )
|
|
|
|
{
|
|
|
|
m_gal->DrawLine( aLine->GetStartPoint(), aLine->GetEndPoint() );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VECTOR2D start = aLine->GetStartPoint();
|
|
|
|
VECTOR2D end = aLine->GetEndPoint();
|
|
|
|
|
|
|
|
EDA_RECT clip( wxPoint( start.x, start.y ), wxSize( end.x - start.x, end.y - start.y ) );
|
|
|
|
clip.Normalize();
|
|
|
|
|
|
|
|
double theta = atan2( end.y - start.y, end.x - start.x );
|
|
|
|
double strokes[] = { 1.0, DASH_GAP_LEN( width ), 1.0, DASH_GAP_LEN( width ) };
|
|
|
|
|
|
|
|
switch( aLine->GetLineStyle() )
|
|
|
|
{
|
2018-09-19 20:52:13 +00:00
|
|
|
default:
|
2018-09-07 21:33:01 +00:00
|
|
|
case PLOTDASHTYPE_DASH:
|
|
|
|
strokes[0] = strokes[2] = DASH_MARK_LEN( width );
|
|
|
|
break;
|
|
|
|
case PLOTDASHTYPE_DOT:
|
|
|
|
strokes[0] = strokes[2] = DOT_MARK_LEN( width );
|
|
|
|
break;
|
|
|
|
case PLOTDASHTYPE_DASHDOT:
|
|
|
|
strokes[0] = DASH_MARK_LEN( width );
|
|
|
|
strokes[2] = DOT_MARK_LEN( width );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
for( size_t i = 0; i < 10000; ++i )
|
2018-09-07 21:33:01 +00:00
|
|
|
{
|
|
|
|
// Calculations MUST be done in doubles to keep from accumulating rounding
|
|
|
|
// errors as we go.
|
|
|
|
VECTOR2D next( start.x + strokes[ i % 4 ] * cos( theta ),
|
|
|
|
start.y + strokes[ i % 4 ] * sin( theta ) );
|
|
|
|
|
2018-09-09 20:14:00 +00:00
|
|
|
// Drawing each segment can be done rounded to ints.
|
2018-09-07 21:33:01 +00:00
|
|
|
wxPoint segStart( KiROUND( start.x ), KiROUND( start.y ) );
|
|
|
|
wxPoint segEnd( KiROUND( next.x ), KiROUND( next.y ) );
|
|
|
|
|
|
|
|
if( ClipLine( &clip, segStart.x, segStart.y, segEnd.x, segEnd.y ) )
|
|
|
|
break;
|
|
|
|
else if( i % 2 == 0 )
|
|
|
|
m_gal->DrawLine( segStart, segEnd );
|
|
|
|
|
|
|
|
start = next;
|
|
|
|
}
|
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
if( aLine->IsStartDangling() )
|
|
|
|
drawDanglingSymbol( m_gal, aLine->GetStartPoint());
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
if( aLine->IsEndDangling() )
|
|
|
|
drawDanglingSymbol( m_gal, aLine->GetEndPoint());
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
void SCH_PAINTER::draw( SCH_TEXT *aText, int aLayer )
|
|
|
|
{
|
2018-08-31 17:19:09 +00:00
|
|
|
COLOR4D color;
|
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
switch( aText->Type() )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-17 23:19:58 +00:00
|
|
|
case SCH_SHEET_PIN_T: color = m_schSettings.GetLayerColor( LAYER_SHEETLABEL ); break;
|
|
|
|
case SCH_HIERARCHICAL_LABEL_T: color = m_schSettings.GetLayerColor( LAYER_HIERLABEL ); break;
|
2018-09-09 20:14:00 +00:00
|
|
|
case SCH_GLOBAL_LABEL_T: color = m_schSettings.GetLayerColor( LAYER_GLOBLABEL ); break;
|
|
|
|
case SCH_LABEL_T: color = m_schSettings.GetLayerColor( LAYER_LOCLABEL ); break;
|
|
|
|
default: color = m_schSettings.GetLayerColor( LAYER_NOTES ); break;
|
2018-08-31 17:19:09 +00:00
|
|
|
}
|
|
|
|
|
2018-10-13 14:12:22 +00:00
|
|
|
if( aText->GetState( BRIGHTENED ) )
|
|
|
|
color = m_schSettings.GetLayerColor( LAYER_BRIGHTENED );
|
2018-12-24 11:17:35 +00:00
|
|
|
|
|
|
|
color = getOverlayColor( aText, color, false );
|
2018-09-09 20:14:00 +00:00
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
if( !aText->IsVisible() )
|
|
|
|
{
|
2018-09-09 20:14:00 +00:00
|
|
|
if( m_schSettings.m_ShowHiddenText )
|
|
|
|
color = m_schSettings.GetLayerColor( LAYER_HIDDEN );
|
|
|
|
else
|
2018-08-31 17:19:09 +00:00
|
|
|
return;
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-11-19 20:29:28 +00:00
|
|
|
m_gal->SetStrokeColor( color );
|
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
if( aText->IsDangling() )
|
2018-09-09 20:14:00 +00:00
|
|
|
drawDanglingSymbol( m_gal, aText->GetTextPos() );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
wxPoint text_offset = aText->GetTextPos() + aText->GetSchematicTextOffset();
|
2018-11-02 10:27:57 +00:00
|
|
|
int linewidth = aText->GetPenSize();
|
2018-08-30 22:43:42 +00:00
|
|
|
wxString shownText( aText->GetShownText() );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
if( !shownText.IsEmpty() )
|
|
|
|
{
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->SetIsFill( false );
|
|
|
|
m_gal->SetIsStroke( true );
|
|
|
|
m_gal->SetTextAttributes( aText );
|
|
|
|
m_gal->SetLineWidth( linewidth );
|
|
|
|
m_gal->StrokeText( shownText, text_offset, aText->GetTextAngleRadians() );
|
2018-08-30 22:43:42 +00:00
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
static void orientComponent( LIB_PART *part, int orientation )
|
|
|
|
{
|
2018-08-30 22:43:42 +00:00
|
|
|
struct ORIENT
|
|
|
|
{
|
2018-08-03 12:18:26 +00:00
|
|
|
int flag;
|
|
|
|
int n_rots;
|
2018-09-01 23:29:19 +00:00
|
|
|
int mirror_x;
|
|
|
|
int mirror_y;
|
2018-08-30 22:43:42 +00:00
|
|
|
}
|
2018-09-01 23:29:19 +00:00
|
|
|
orientations[] =
|
2018-08-30 22:43:42 +00:00
|
|
|
{
|
|
|
|
{ CMP_ORIENT_0, 0, 0, 0 },
|
|
|
|
{ CMP_ORIENT_90, 1, 0, 0 },
|
|
|
|
{ CMP_ORIENT_180, 2, 0, 0 },
|
|
|
|
{ CMP_ORIENT_270, 3, 0, 0 },
|
|
|
|
{ CMP_MIRROR_X + CMP_ORIENT_0, 0, 1, 0 },
|
|
|
|
{ CMP_MIRROR_X + CMP_ORIENT_90, 1, 1, 0 },
|
|
|
|
{ CMP_MIRROR_Y, 0, 0, 1 },
|
2018-09-01 23:29:19 +00:00
|
|
|
{ CMP_MIRROR_X + CMP_ORIENT_270, 3, 1, 0 },
|
|
|
|
{ CMP_MIRROR_Y + CMP_ORIENT_0, 0, 0, 1 },
|
|
|
|
{ CMP_MIRROR_Y + CMP_ORIENT_90, 1, 0, 1 },
|
|
|
|
{ CMP_MIRROR_Y + CMP_ORIENT_180, 2, 0, 1 },
|
|
|
|
{ CMP_MIRROR_Y + CMP_ORIENT_270, 3, 0, 1 }
|
2018-08-03 12:18:26 +00:00
|
|
|
};
|
|
|
|
|
2018-09-01 23:29:19 +00:00
|
|
|
ORIENT o = orientations[ 0 ];
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-01 23:29:19 +00:00
|
|
|
for( auto& i : orientations )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-01 23:29:19 +00:00
|
|
|
if( i.flag == orientation )
|
2018-08-30 22:43:42 +00:00
|
|
|
{
|
2018-09-01 23:29:19 +00:00
|
|
|
o = i;
|
2018-08-30 22:43:42 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-09-01 23:29:19 +00:00
|
|
|
for( auto& item : part->GetDrawItems() )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-01 23:29:19 +00:00
|
|
|
for( int i = 0; i < o.n_rots; i++ )
|
2018-08-03 12:18:26 +00:00
|
|
|
item.Rotate( wxPoint(0, 0 ), true );
|
|
|
|
|
2018-09-01 23:29:19 +00:00
|
|
|
if( o.mirror_x )
|
|
|
|
item.MirrorVertical( wxPoint( 0, 0 ) );
|
|
|
|
|
|
|
|
if( o.mirror_y )
|
|
|
|
item.MirrorHorizontal( wxPoint( 0, 0 ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-30 22:43:42 +00:00
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
void SCH_PAINTER::draw( SCH_COMPONENT *aComp, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
|
|
|
PART_SPTR part = aComp->GetPartRef().lock();
|
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
// Use dummy part if the actual couldn't be found (or couldn't be locked).
|
|
|
|
// In either case copy it so we can re-orient and translate it.
|
2018-09-19 20:52:13 +00:00
|
|
|
std::unique_ptr<LIB_PART> temp( new LIB_PART( part ? *part.get() : *dummy() ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-05 16:21:51 +00:00
|
|
|
if( aComp->IsMoving() )
|
2018-09-19 20:52:13 +00:00
|
|
|
temp->SetFlags( IS_MOVED );
|
2018-09-05 16:21:51 +00:00
|
|
|
|
2018-12-24 11:17:35 +00:00
|
|
|
if( aComp->IsHighlighted() )
|
|
|
|
temp->SetFlags( HIGHLIGHTED );
|
|
|
|
|
2018-09-19 20:52:13 +00:00
|
|
|
orientComponent( temp.get(), aComp->GetOrientation() );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-09-19 20:52:13 +00:00
|
|
|
for( auto& item : temp->GetDrawItems() )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-08-30 19:44:10 +00:00
|
|
|
auto rp = aComp->GetPosition();
|
|
|
|
auto ip = item.GetPosition();
|
|
|
|
item.Move( wxPoint( rp.x + ip.x, ip.y - rp.y ) );
|
2018-12-24 11:17:35 +00:00
|
|
|
|
|
|
|
if( item.Type() == LIB_PIN_T )
|
|
|
|
{
|
|
|
|
auto pin = static_cast<LIB_PIN*>( &item );
|
|
|
|
if( aComp->IsPinHighlighted( pin ) )
|
|
|
|
{
|
|
|
|
pin->SetFlags( HIGHLIGHTED );
|
|
|
|
}
|
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-09-19 20:52:13 +00:00
|
|
|
draw( temp.get(), aLayer, false,
|
2018-09-05 22:17:22 +00:00
|
|
|
aComp->GetUnit(), aComp->GetConvert(), aComp->GetDanglingPinFlags() );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
// The fields are SCH_COMPONENT-specific and so don't need to be copied/
|
|
|
|
// oriented/translated.
|
|
|
|
std::vector<SCH_FIELD*> fields;
|
|
|
|
aComp->GetFields( fields, false );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-30 19:44:10 +00:00
|
|
|
for( SCH_FIELD* field : fields )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-10-23 16:16:23 +00:00
|
|
|
if( !field->IsMoving() )
|
2018-08-30 19:44:10 +00:00
|
|
|
draw( field, aLayer );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-01 23:29:19 +00:00
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
void SCH_PAINTER::draw( SCH_FIELD *aField, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
|
|
|
COLOR4D color;
|
|
|
|
SCH_COMPONENT* parentComponent = (SCH_COMPONENT*) aField->GetParent();
|
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
switch( aField->GetId() )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-08-31 17:19:09 +00:00
|
|
|
case REFERENCE: color = m_schSettings.GetLayerColor( LAYER_REFERENCEPART ); break;
|
|
|
|
case VALUE: color = m_schSettings.GetLayerColor( LAYER_VALUEPART ); break;
|
|
|
|
default: color = m_schSettings.GetLayerColor( LAYER_FIELDS ); break;
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-12-24 11:17:35 +00:00
|
|
|
color = getOverlayColor( aField, color, false );
|
2018-09-09 20:14:00 +00:00
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
if( !aField->IsVisible() )
|
|
|
|
{
|
2018-09-09 20:14:00 +00:00
|
|
|
if( m_schSettings.m_ShowHiddenText )
|
|
|
|
color = m_schSettings.GetLayerColor( LAYER_HIDDEN );
|
|
|
|
else
|
2018-08-31 17:19:09 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-08-31 17:19:09 +00:00
|
|
|
if( aField->IsVoid() )
|
2018-08-03 12:18:26 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Calculate the text orientation according to the component orientation.
|
2018-11-02 10:27:57 +00:00
|
|
|
int orient = (int) aField->GetTextAngle();
|
2018-08-03 12:18:26 +00:00
|
|
|
|
|
|
|
if( parentComponent->GetTransform().y1 ) // Rotate component 90 degrees.
|
|
|
|
{
|
|
|
|
if( orient == TEXT_ANGLE_HORIZ )
|
|
|
|
orient = TEXT_ANGLE_VERT;
|
|
|
|
else
|
|
|
|
orient = TEXT_ANGLE_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 = aField->GetBoundingBox();
|
2018-11-02 10:27:57 +00:00
|
|
|
wxPoint textpos = boundaryBox.Centre();
|
|
|
|
int lineWidth = aField->GetPenSize();
|
2018-08-03 12:18:26 +00:00
|
|
|
|
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_CENTER );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_CENTER );
|
|
|
|
m_gal->SetStrokeColor( color );
|
|
|
|
m_gal->SetIsFill( false );
|
|
|
|
m_gal->SetIsStroke( true );
|
2018-09-01 23:29:19 +00:00
|
|
|
m_gal->SetGlyphSize( VECTOR2D( aField->GetTextSize() ) );
|
|
|
|
m_gal->SetFontBold( aField->IsBold() );
|
|
|
|
m_gal->SetFontItalic( aField->IsItalic() );
|
|
|
|
m_gal->SetTextMirrored( aField->IsMirrored() );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->SetLineWidth( lineWidth );
|
2018-09-01 23:29:19 +00:00
|
|
|
m_gal->StrokeText( aField->GetFullyQualifiedText(), textpos, orient == TEXT_ANGLE_VERT ? M_PI/2 : 0 );
|
2018-10-21 21:54:02 +00:00
|
|
|
|
|
|
|
// Draw the umbilical line
|
|
|
|
if( aField->IsMoving() )
|
|
|
|
{
|
|
|
|
m_gal->SetLineWidth( m_schSettings.m_outlineWidth );
|
|
|
|
m_gal->SetStrokeColor( COLOR4D( 0.0, 0.0, 1.0, 1.0 ) );
|
|
|
|
m_gal->DrawLine( textpos, parentComponent->GetPosition() );
|
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-08-27 13:25:48 +00:00
|
|
|
|
2018-09-01 23:29:19 +00:00
|
|
|
void SCH_PAINTER::draw( SCH_GLOBALLABEL *aLabel, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2019-01-28 04:58:10 +00:00
|
|
|
auto color = m_schSettings.GetLayerColor( LAYER_GLOBLABEL );
|
|
|
|
auto back_color = m_schSettings.GetLayerColor( LAYER_SCHEMATIC_BACKGROUND );
|
|
|
|
int width = aLabel->GetThickness() ? aLabel->GetThickness() : GetDefaultLineThickness();
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-10-13 14:12:22 +00:00
|
|
|
if( aLabel->GetState( BRIGHTENED ) )
|
|
|
|
color = m_schSettings.GetLayerColor( LAYER_BRIGHTENED );
|
2018-12-24 11:17:35 +00:00
|
|
|
|
|
|
|
color = getOverlayColor( aLabel, color, false );
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-08-27 13:25:48 +00:00
|
|
|
std::vector<wxPoint> pts;
|
|
|
|
std::deque<VECTOR2D> pts2;
|
|
|
|
|
|
|
|
aLabel->CreateGraphicShape( pts, aLabel->GetTextPos() );
|
|
|
|
|
|
|
|
for( auto p : pts )
|
2018-09-19 20:52:13 +00:00
|
|
|
pts2.emplace_back( VECTOR2D( p.x, p.y ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2019-01-28 04:58:10 +00:00
|
|
|
m_gal->SetIsFill( true );
|
|
|
|
m_gal->SetFillColor( back_color );
|
2018-08-27 13:25:48 +00:00
|
|
|
m_gal->SetIsStroke( true );
|
2018-09-06 22:08:12 +00:00
|
|
|
m_gal->SetLineWidth( width );
|
2018-09-05 22:17:22 +00:00
|
|
|
m_gal->SetStrokeColor( color );
|
2018-08-27 13:25:48 +00:00
|
|
|
m_gal->DrawPolyline( pts2 );
|
|
|
|
|
|
|
|
draw( static_cast<SCH_TEXT*>( aLabel ), aLayer );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-01 23:29:19 +00:00
|
|
|
void SCH_PAINTER::draw( SCH_HIERLABEL *aLabel, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2019-01-28 04:58:10 +00:00
|
|
|
auto color = m_schSettings.GetLayerColor( LAYER_SHEETLABEL );
|
|
|
|
auto back_color = m_schSettings.GetLayerColor( LAYER_SCHEMATIC_BACKGROUND );
|
|
|
|
int width = aLabel->GetThickness() ? aLabel->GetThickness() : GetDefaultLineThickness();
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-10-13 14:12:22 +00:00
|
|
|
if( aLabel->GetState( BRIGHTENED ) )
|
|
|
|
color = m_schSettings.GetLayerColor( LAYER_BRIGHTENED );
|
2018-12-24 11:17:35 +00:00
|
|
|
|
|
|
|
color = getOverlayColor( aLabel, color, false );
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
std::vector<wxPoint> pts;
|
|
|
|
std::deque<VECTOR2D> pts2;
|
|
|
|
|
|
|
|
aLabel->CreateGraphicShape( pts, aLabel->GetTextPos() );
|
|
|
|
|
|
|
|
for( auto p : pts )
|
2018-09-19 20:52:13 +00:00
|
|
|
pts2.emplace_back( VECTOR2D( p.x, p.y ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2019-01-28 04:58:10 +00:00
|
|
|
m_gal->SetIsFill( true );
|
|
|
|
m_gal->SetFillColor( back_color );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->SetIsStroke( true );
|
2018-09-06 22:08:12 +00:00
|
|
|
m_gal->SetLineWidth( width );
|
2018-09-05 22:17:22 +00:00
|
|
|
m_gal->SetStrokeColor( color );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->DrawPolyline( pts2 );
|
|
|
|
|
|
|
|
draw( static_cast<SCH_TEXT*>( aLabel ), aLayer );
|
|
|
|
}
|
|
|
|
|
2018-09-05 22:17:22 +00:00
|
|
|
void SCH_PAINTER::draw( SCH_SHEET *aSheet, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
|
|
|
VECTOR2D pos = aSheet->GetPosition();
|
|
|
|
VECTOR2D size = aSheet->GetSize();
|
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
if( aLayer == LAYER_SHEET_BACKGROUND )
|
2018-09-16 11:30:18 +00:00
|
|
|
{
|
2018-10-21 12:50:31 +00:00
|
|
|
m_gal->SetIsStroke( false );
|
|
|
|
|
|
|
|
if( aSheet->IsMoving() ) // Gives a filled background when moving for a better look
|
|
|
|
{
|
|
|
|
// Select a fill color working well with black and white background color,
|
|
|
|
// both in Opengl and Cairo
|
|
|
|
m_gal->SetFillColor( COLOR4D( 0.1, 0.5, 0.5, 0.3 ) );
|
|
|
|
m_gal->SetIsFill( true );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Could be modified later, when sheets can have their own fill color
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_gal->DrawRectangle( pos, pos + size );
|
2018-09-16 11:30:18 +00:00
|
|
|
}
|
2018-10-21 12:50:31 +00:00
|
|
|
else if( aLayer == LAYER_SHEET )
|
2018-09-16 11:30:18 +00:00
|
|
|
{
|
2018-10-21 12:50:31 +00:00
|
|
|
m_gal->SetStrokeColor( m_schSettings.GetLayerColor( LAYER_SHEET ) );
|
|
|
|
m_gal->SetIsStroke( true );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
m_gal->SetIsFill( false );
|
2018-10-25 13:12:34 +00:00
|
|
|
m_gal->SetLineWidth( aSheet->GetPenSize() );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
m_gal->DrawRectangle( pos, pos + size );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
VECTOR2D pos_sheetname = aSheet->GetSheetNamePosition();
|
|
|
|
VECTOR2D pos_filename = aSheet->GetFileNamePosition();
|
|
|
|
double nameAngle = 0.0;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
if( aSheet->IsVerticalOrientation() )
|
|
|
|
nameAngle = -M_PI/2;
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
m_gal->SetStrokeColor( m_schSettings.GetLayerColor( LAYER_SHEETNAME ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
auto text = wxT( "Sheet: " ) + aSheet->GetName();
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
m_gal->SetHorizontalJustify( GR_TEXT_HJUSTIFY_LEFT );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_BOTTOM );
|
|
|
|
|
|
|
|
auto txtSize = aSheet->GetSheetNameSize();
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
m_gal->SetGlyphSize( VECTOR2D( txtSize, txtSize ) );
|
|
|
|
m_gal->SetFontBold( false );
|
|
|
|
m_gal->SetFontItalic( false );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
m_gal->StrokeText( text, pos_sheetname, nameAngle );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
txtSize = aSheet->GetFileNameSize();
|
|
|
|
m_gal->SetGlyphSize( VECTOR2D( txtSize, txtSize ) );
|
|
|
|
m_gal->SetStrokeColor( m_schSettings.GetLayerColor( LAYER_SHEETFILENAME ) );
|
|
|
|
m_gal->SetVerticalJustify( GR_TEXT_VJUSTIFY_TOP );
|
2018-08-03 12:18:26 +00:00
|
|
|
|
2018-10-21 12:50:31 +00:00
|
|
|
text = wxT( "File: " ) + aSheet->GetFileName();
|
|
|
|
m_gal->StrokeText( text, pos_filename, nameAngle );
|
2018-12-13 23:04:49 +00:00
|
|
|
}
|
|
|
|
else if( aLayer == LAYER_HIERLABEL )
|
|
|
|
{
|
2018-10-21 12:50:31 +00:00
|
|
|
for( auto& sheetPin : aSheet->GetPins() )
|
2018-10-24 15:08:21 +00:00
|
|
|
{
|
|
|
|
if( !sheetPin.IsMoving() )
|
2018-12-13 23:04:49 +00:00
|
|
|
{
|
2018-12-16 14:31:31 +00:00
|
|
|
// For aesthetic reasons, the SHEET_PIN is drawn with a small offset
|
|
|
|
// of width / 2
|
2018-12-13 23:04:49 +00:00
|
|
|
int width = aSheet->GetPenSize();
|
2018-12-16 14:31:31 +00:00
|
|
|
wxPoint initial_pos = sheetPin.GetTextPos();
|
|
|
|
wxPoint offset_pos = initial_pos;
|
2018-12-13 23:04:49 +00:00
|
|
|
|
|
|
|
switch( sheetPin.GetEdge() )
|
|
|
|
{
|
2018-12-16 14:31:31 +00:00
|
|
|
case SCH_SHEET_PIN::SHEET_TOP_SIDE: offset_pos.y -= width / 2; break;
|
|
|
|
case SCH_SHEET_PIN::SHEET_BOTTOM_SIDE: offset_pos.y += width / 2; break;
|
|
|
|
case SCH_SHEET_PIN::SHEET_RIGHT_SIDE: offset_pos.x -= width / 2; break;
|
|
|
|
case SCH_SHEET_PIN::SHEET_LEFT_SIDE: offset_pos.x += width / 2; break;
|
2018-12-13 23:04:49 +00:00
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
2018-12-16 14:31:31 +00:00
|
|
|
sheetPin.SetTextPos( offset_pos );
|
2018-10-24 15:08:21 +00:00
|
|
|
draw( static_cast<SCH_HIERLABEL*>( &sheetPin ), aLayer );
|
2018-12-16 14:31:31 +00:00
|
|
|
m_gal->DrawLine( offset_pos, initial_pos );
|
|
|
|
sheetPin.SetTextPos( initial_pos );
|
2018-12-13 23:04:49 +00:00
|
|
|
}
|
2018-10-24 15:08:21 +00:00
|
|
|
}
|
2018-10-21 12:50:31 +00:00
|
|
|
}
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-09-04 20:53:04 +00:00
|
|
|
|
|
|
|
void SCH_PAINTER::draw( SCH_NO_CONNECT *aNC, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-09 23:04:42 +00:00
|
|
|
int delta = aNC->GetSize() / 2;
|
2018-08-03 12:18:26 +00:00
|
|
|
int width = GetDefaultLineThickness();
|
|
|
|
|
2018-09-05 22:17:22 +00:00
|
|
|
m_gal->SetStrokeColor( m_schSettings.GetLayerColor( LAYER_NOCONNECT ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->SetIsStroke( true );
|
|
|
|
m_gal->SetIsFill( false );
|
|
|
|
m_gal->SetLineWidth( width );
|
|
|
|
|
|
|
|
VECTOR2D p = aNC->GetPosition();
|
|
|
|
|
2018-09-19 20:52:13 +00:00
|
|
|
m_gal->DrawLine( p + VECTOR2D( -delta, -delta ), p + VECTOR2D( delta, delta ) );
|
|
|
|
m_gal->DrawLine( p + VECTOR2D( -delta, delta ), p + VECTOR2D( delta, -delta ) );
|
2018-08-03 12:18:26 +00:00
|
|
|
}
|
|
|
|
|
2018-09-04 20:53:04 +00:00
|
|
|
|
|
|
|
void SCH_PAINTER::draw( SCH_BUS_ENTRY_BASE *aEntry, int aLayer )
|
2018-08-03 12:18:26 +00:00
|
|
|
{
|
2018-09-07 07:15:22 +00:00
|
|
|
COLOR4D color = aEntry->Type() == SCH_BUS_BUS_ENTRY_T ?
|
|
|
|
m_schSettings.GetLayerColor( LAYER_BUS )
|
|
|
|
: m_schSettings.GetLayerColor( LAYER_WIRE );
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-12-24 11:17:35 +00:00
|
|
|
color = getOverlayColor( aEntry, color, false );
|
2018-09-05 22:17:22 +00:00
|
|
|
|
|
|
|
m_gal->SetStrokeColor( color );
|
2018-08-03 12:18:26 +00:00
|
|
|
m_gal->SetIsStroke( true );
|
|
|
|
m_gal->SetLineWidth( aEntry->GetPenSize() );
|
|
|
|
m_gal->SetIsFill( false );
|
|
|
|
|
|
|
|
VECTOR2D pos = aEntry->GetPosition();
|
|
|
|
VECTOR2D endPos = aEntry->m_End();
|
|
|
|
|
|
|
|
m_gal->DrawLine( pos, endPos );
|
|
|
|
|
2018-09-07 07:15:22 +00:00
|
|
|
// Draw dangling symbols:
|
|
|
|
m_gal->SetLineWidth ( 1.0 );
|
2018-09-05 22:17:22 +00:00
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
if( aEntry->IsDanglingStart() )
|
|
|
|
m_gal->DrawCircle( pos, TARGET_BUSENTRY_RADIUS );
|
|
|
|
|
|
|
|
if( aEntry->IsDanglingEnd() )
|
|
|
|
m_gal->DrawCircle( endPos, TARGET_BUSENTRY_RADIUS );
|
|
|
|
}
|
|
|
|
|
2018-09-04 20:53:04 +00:00
|
|
|
|
|
|
|
void SCH_PAINTER::draw( SCH_BITMAP *aBitmap, int aLayer )
|
2018-08-27 13:25:48 +00:00
|
|
|
{
|
|
|
|
m_gal->Save();
|
|
|
|
m_gal->Translate( aBitmap->GetPosition() );
|
2018-09-08 11:12:41 +00:00
|
|
|
|
|
|
|
// When the image scale factor is not 1.0, we need to modify the actual
|
|
|
|
// as the image scale factor is similar to a local zoom
|
2018-10-20 16:24:22 +00:00
|
|
|
double img_scale = aBitmap->GetImageScale();
|
|
|
|
|
|
|
|
if( img_scale != 1.0 )
|
|
|
|
m_gal->Scale( VECTOR2D( img_scale, img_scale ) );
|
2018-09-08 11:12:41 +00:00
|
|
|
|
2018-08-27 13:25:48 +00:00
|
|
|
m_gal->DrawBitmap( *aBitmap->GetImage() );
|
2018-09-08 11:12:41 +00:00
|
|
|
|
2018-08-27 13:25:48 +00:00
|
|
|
m_gal->Restore();
|
|
|
|
}
|
|
|
|
|
2018-09-04 20:53:04 +00:00
|
|
|
|
|
|
|
void SCH_PAINTER::draw( SCH_MARKER *aMarker, int aLayer )
|
2018-08-27 13:25:48 +00:00
|
|
|
{
|
2018-12-19 18:53:27 +00:00
|
|
|
SHAPE_LINE_CHAIN polygon;
|
|
|
|
aMarker->ShapeToPolygon( polygon );
|
2018-09-04 20:53:04 +00:00
|
|
|
|
2018-09-05 22:17:22 +00:00
|
|
|
COLOR4D color = m_schSettings.GetLayerColor( LAYER_ERC_WARN );
|
2018-09-04 20:53:04 +00:00
|
|
|
|
|
|
|
if( aMarker->GetErrorLevel() == MARKER_BASE::MARKER_SEVERITY_ERROR )
|
2018-09-05 22:17:22 +00:00
|
|
|
color = m_schSettings.GetLayerColor( LAYER_ERC_ERR );
|
2018-08-27 13:25:48 +00:00
|
|
|
|
2018-09-04 20:53:04 +00:00
|
|
|
m_gal->Save();
|
|
|
|
m_gal->Translate( aMarker->GetPosition() );
|
|
|
|
m_gal->SetFillColor( color );
|
|
|
|
m_gal->SetIsFill( true );
|
|
|
|
m_gal->SetIsStroke( false );
|
2018-12-19 18:53:27 +00:00
|
|
|
m_gal->DrawPolygon( polygon );
|
2018-09-04 20:53:04 +00:00
|
|
|
m_gal->Restore();
|
2018-08-27 13:25:48 +00:00
|
|
|
}
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
|
|
|
|
}; // namespace KIGFX
|