mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-04 22:35:30 +00:00
More NULL expunging.
This commit is contained in:
parent
75190370dd
commit
cf00319c85
pcbnew
action_plugin.cpparray_creator.cpp
autorouter
board_connected_item.cppboard_connected_item.hboard_item.cppboard_items_to_polygon_shape_transform.cppboard_stackup_manager
build_BOM_from_board.cppcollectors.cppcross-probing.cppdialogs
dialog_board_setup.cppdialog_board_statistics.cppdialog_constraints_reporter.cppdialog_drc.cppdialog_footprint_properties_fp_editor.cppdialog_global_edit_tracks_and_vias.cppdialog_pad_basicshapes_properties.cppdialog_pad_properties.cppdialog_print_pcbnew.cppdialog_rule_area_properties.cppdialog_text_properties.cpp
drc
exporters
export_footprint_associations.cppexport_idf.cppexport_vrml.cppgen_drill_report_files.cppgen_footprints_placefile.cppgendrill_Excellon_writer.cppgendrill_gerber_writer.cppgendrill_gerber_writer.h
files.cppfootprint.hfootprint_edit_frame.cppfootprint_editor_utils.cppfootprint_info_impl.cppfootprint_viewer_frame.cppfootprint_wizard.cppfootprint_wizard_frame.cppfootprint_wizard_frame_functions.cppimport_gfx
initpcb.cppio_mgr.cppmicrowave
netinfo.hnetinfo_item.cppnetinfo_list.cppnetlist_reader
pad.cpppcb_base_frame.cpppcb_dimension.cpppcb_draw_panel_gal.cpppcb_edit_frame.cpppcb_edit_frame.hpcb_painter.cpppcb_plot_params.cpppcb_shape.cpppcb_shape.hpcbnew.cpppcbplot.cppplot_board_layers.cppplot_brditems_plotter.cppplotcontroller.hplugins
cadstar
eagle
fabmaster
geda
kicad
legacy
pcad
python
scripting
pcbnew_action_plugins.cpppcbnew_action_plugins.hpcbnew_footprint_wizards.cpppcbnew_footprint_wizards.hpcbnew_scripting.cpppcbnew_scripting_helpers.cpppcbnew_scripting_helpers.h
swig
router
length_tuner_tool.cpppns_algo_base.cpppns_diff_pair.cpppns_diff_pair.hpns_diff_pair_placer.cpppns_dp_meander_placer.cpppns_dragger.cpppns_index.cpppns_item.hpns_itemset.hpns_joint.hpns_kicad_iface.cpppns_meander.hpns_meander_placer.cpppns_meander_placer_base.cpppns_node.hpns_optimizer.cpppns_shove.cpppns_shove.hpns_solid.hpns_tool_base.cpppns_topology.cpppns_topology.hpns_walkaround.cpprouter_preview_item.cpprouter_preview_item.h
specctra_import_export
toolbars_footprint_editor.cpptoolbars_footprint_viewer.cpptoolbars_pcb_editor.cpptools
board_editor_control.cppboard_reannotate_tool.cppconvert_tool.cppdrawing_stackup_table_tool.cppdrawing_tool.cppedit_tool.cppfootprint_editor_control.cpppcb_control.cpppcb_grid_helper.cpppcb_point_editor.cpppcb_selection_tool.cpppcb_selection_tool.hplacement_tool.cppposition_relative_tool.cpp
undo_redo.cppzone.cpp@ -1,7 +1,7 @@
|
||||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2017 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2017-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -67,7 +67,7 @@ ACTION_PLUGIN* ACTION_PLUGINS::GetActionByMenu( int aMenu )
|
||||
return m_actionsList[i];
|
||||
}
|
||||
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
@ -87,7 +87,7 @@ ACTION_PLUGIN* ACTION_PLUGINS::GetActionByButton( int aButton )
|
||||
return m_actionsList[i];
|
||||
}
|
||||
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
@ -107,7 +107,7 @@ ACTION_PLUGIN* ACTION_PLUGINS::GetActionByPath(const wxString& aPath)
|
||||
}
|
||||
}
|
||||
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
@ -125,7 +125,7 @@ ACTION_PLUGIN* ACTION_PLUGINS::GetAction( const wxString& aName )
|
||||
return action;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
@ -190,6 +190,7 @@ bool ACTION_PLUGINS::deregister_object( void* aObject )
|
||||
if( action->GetObject() == aObject )
|
||||
{
|
||||
m_actionsList.erase( m_actionsList.begin() + i );
|
||||
|
||||
//m_actionsListMenu.erase( m_actionsListMenu.begin() + i );
|
||||
delete action;
|
||||
return true;
|
||||
|
@ -2,7 +2,7 @@
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Created on: 11 Mar 2016, author John Beard
|
||||
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2016-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -64,7 +64,7 @@ void ARRAY_CREATOR::Invoke()
|
||||
|
||||
int ret = dialog.ShowModal();
|
||||
|
||||
if( ret != wxID_OK || array_opts == NULL )
|
||||
if( ret != wxID_OK || array_opts == nullptr )
|
||||
return;
|
||||
|
||||
BOARD_COMMIT commit( &m_parent );
|
||||
|
@ -3,9 +3,9 @@
|
||||
*
|
||||
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
||||
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
|
||||
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@gmail.com>
|
||||
*
|
||||
* Copyright (C) 1992-2020 KiCad Developers, see change_log.txt for contributors.
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -139,6 +139,7 @@ int AR_AUTOPLACER::genPlacementRoutingMatrix()
|
||||
m_matrix.TraceSegmentPcb( (PCB_SHAPE*) drawing, CELL_IS_HOLE | CELL_IS_EDGE,
|
||||
m_matrix.m_GridRouting, AR_MATRIX::WRITE_CELL );
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -272,7 +273,7 @@ bool AR_AUTOPLACER::fillMatrix()
|
||||
|
||||
void AR_AUTOPLACER::rotateFootprint( FOOTPRINT* aFootprint, double angle, bool incremental )
|
||||
{
|
||||
if( aFootprint == NULL )
|
||||
if( aFootprint == nullptr )
|
||||
return;
|
||||
|
||||
if( incremental )
|
||||
@ -296,6 +297,7 @@ void AR_AUTOPLACER::addFpBody( wxPoint aStart, wxPoint aEnd, LSET aLayerMask )
|
||||
m_fpAreaTop.Append( aEnd.x, aEnd.y );
|
||||
m_fpAreaTop.Append( aStart.x, aEnd.y );
|
||||
}
|
||||
|
||||
if( aLayerMask[ B_Cu ] )
|
||||
{
|
||||
m_fpAreaBottom.NewOutline();
|
||||
@ -320,6 +322,7 @@ void AR_AUTOPLACER::addPad( PAD* aPad, int aClearance )
|
||||
m_fpAreaTop.Append( bbox.GetRight(), bbox.GetBottom() );
|
||||
m_fpAreaTop.Append( bbox.GetLeft(), bbox.GetBottom() );
|
||||
}
|
||||
|
||||
if( aPad->IsOnLayer( B_Cu ) )
|
||||
{
|
||||
m_fpAreaBottom.NewOutline();
|
||||
@ -407,7 +410,7 @@ void AR_AUTOPLACER::genModuleOnRoutingMatrix( FOOTPRINT* Module )
|
||||
layerMask.set( B_Cu );
|
||||
|
||||
m_matrix.TraceFilledRectangle( ox, oy, fx, fy, layerMask,
|
||||
CELL_IS_MODULE, AR_MATRIX::WRITE_OR_CELL );
|
||||
CELL_IS_MODULE, AR_MATRIX::WRITE_OR_CELL );
|
||||
|
||||
// Trace pads + clearance areas.
|
||||
for( PAD* pad : Module->Pads() )
|
||||
@ -429,12 +432,6 @@ void AR_AUTOPLACER::genModuleOnRoutingMatrix( FOOTPRINT* Module )
|
||||
}
|
||||
|
||||
|
||||
/* Test if the rectangular area (ux, ux .. y0, y1):
|
||||
* - is a free zone (except OCCUPED_By_MODULE returns)
|
||||
* - is on the working surface of the board (otherwise returns OUT_OF_BOARD)
|
||||
*
|
||||
* Returns OUT_OF_BOARD, or OCCUPED_By_MODULE or FREE_CELL if OK
|
||||
*/
|
||||
int AR_AUTOPLACER::testRectangle( const EDA_RECT& aRect, int side )
|
||||
{
|
||||
EDA_RECT rect = aRect;
|
||||
@ -488,10 +485,6 @@ int AR_AUTOPLACER::testRectangle( const EDA_RECT& aRect, int side )
|
||||
}
|
||||
|
||||
|
||||
/* Calculates and returns the clearance area of the rectangular surface
|
||||
* aRect):
|
||||
* (Sum of cells in terms of distance)
|
||||
*/
|
||||
unsigned int AR_AUTOPLACER::calculateKeepOutArea( const EDA_RECT& aRect, int side )
|
||||
{
|
||||
wxPoint start = aRect.GetOrigin();
|
||||
@ -541,10 +534,6 @@ unsigned int AR_AUTOPLACER::calculateKeepOutArea( const EDA_RECT& aRect, int sid
|
||||
}
|
||||
|
||||
|
||||
/* Test if the footprint can be placed on the board.
|
||||
* Returns the value TstRectangle().
|
||||
* Module is known by its bounding box
|
||||
*/
|
||||
int AR_AUTOPLACER::testFootprintOnBoard( FOOTPRINT* aFootprint, bool TstOtherSide,
|
||||
const wxPoint& aOffset )
|
||||
{
|
||||
@ -693,7 +682,8 @@ const PAD* AR_AUTOPLACER::nearestPad( FOOTPRINT *aRefFP, PAD* aRefPad, const wxP
|
||||
if( pad->GetNetCode() != aRefPad->GetNetCode() || pad->GetNetCode() <= 0 )
|
||||
continue;
|
||||
|
||||
auto dist = (VECTOR2I( aRefPad->GetPosition() - aOffset ) - VECTOR2I( pad->GetPosition() ) ).EuclideanNorm();
|
||||
auto dist = ( VECTOR2I( aRefPad->GetPosition() - aOffset ) -
|
||||
VECTOR2I( pad->GetPosition() ) ).EuclideanNorm();
|
||||
|
||||
if ( dist < nearestDist )
|
||||
{
|
||||
@ -737,7 +727,7 @@ double AR_AUTOPLACER::computePlacementRatsnestCost( FOOTPRINT *aFootprint, const
|
||||
dx = abs( dx );
|
||||
dy = abs( dy );
|
||||
|
||||
// ttry to have always dx >= dy to calculate the cost of the rastsnet
|
||||
// ttry to have always dx >= dy to calculate the cost of the ratsnest
|
||||
if( dx < dy )
|
||||
std::swap( dx, dy );
|
||||
|
||||
@ -776,7 +766,7 @@ static bool sortFootprintsByRatsnestSize( FOOTPRINT* ref, FOOTPRINT* compare )
|
||||
}
|
||||
|
||||
|
||||
FOOTPRINT* AR_AUTOPLACER::pickFootprint( )
|
||||
FOOTPRINT* AR_AUTOPLACER::pickFootprint()
|
||||
{
|
||||
std::vector<FOOTPRINT*> fpList;
|
||||
|
||||
@ -947,8 +937,8 @@ AR_RESULT AR_AUTOPLACER::AutoplaceFootprints( std::vector<FOOTPRINT*>& aFootprin
|
||||
//m_frame->SetStatusText( msg );
|
||||
|
||||
if( m_progressReporter )
|
||||
m_progressReporter->SetTitle( wxString::Format(
|
||||
_( "Autoplacing %s" ), footprint->GetReference() ) );
|
||||
m_progressReporter->SetTitle( wxString::Format( _( "Autoplacing %s" ),
|
||||
footprint->GetReference() ) );
|
||||
|
||||
double initialOrient = footprint->GetOrientation();
|
||||
|
||||
@ -1061,6 +1051,7 @@ end_of_tst:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
cnt++;
|
||||
}
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -60,14 +60,10 @@ bool BOARD_CONNECTED_ITEM::SetNetCode( int aNetCode, bool aNoAssert )
|
||||
if( !aNoAssert )
|
||||
wxASSERT( m_netinfo );
|
||||
|
||||
return ( m_netinfo != NULL );
|
||||
return ( m_netinfo != nullptr );
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* This method returns the Default netclass for nets which don't have their own, and the
|
||||
* Orphaned netclass for unassigned nets (netCode == 0)
|
||||
*/
|
||||
NETCLASS* BOARD_CONNECTED_ITEM::GetEffectiveNetclass() const
|
||||
{
|
||||
// NB: we must check the net first, as when it is 0 GetNetClass() will return the
|
||||
@ -79,9 +75,6 @@ NETCLASS* BOARD_CONNECTED_ITEM::GetEffectiveNetclass() const
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Returns the item's "own" clearance (ie: that not affected by other items).
|
||||
*/
|
||||
int BOARD_CONNECTED_ITEM::GetOwnClearance( PCB_LAYER_ID aLayer, wxString* aSource ) const
|
||||
{
|
||||
DRC_CONSTRAINT constraint;
|
||||
|
@ -46,7 +46,7 @@ public:
|
||||
|
||||
static inline bool ClassOf( const EDA_ITEM* aItem )
|
||||
{
|
||||
if( aItem == NULL )
|
||||
if( aItem == nullptr )
|
||||
return false;
|
||||
|
||||
switch( aItem->Type() )
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright (C) 2012 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
||||
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -57,7 +57,7 @@ BOARD* BOARD_ITEM::GetBoard() const
|
||||
if( parent )
|
||||
return parent->GetBoard();
|
||||
|
||||
return NULL;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
@ -135,7 +135,8 @@ void BOARD_ITEM::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBu
|
||||
int aError, ERROR_LOC aErrorLoc,
|
||||
bool ignoreLineWidth ) const
|
||||
{
|
||||
wxASSERT_MSG( false, "Called TransformShapeWithClearanceToPolygon() on unsupported BOARD_ITEM." );
|
||||
wxASSERT_MSG( false,
|
||||
"Called TransformShapeWithClearanceToPolygon() on unsupported BOARD_ITEM." );
|
||||
};
|
||||
|
||||
|
||||
@ -147,7 +148,7 @@ bool BOARD_ITEM::ptr_cmp::operator() ( const BOARD_ITEM* a, const BOARD_ITEM* b
|
||||
if( a->GetLayer() != b->GetLayer() )
|
||||
return a->GetLayer() < b->GetLayer();
|
||||
|
||||
if( a->m_Uuid != b->m_Uuid ) // shopuld be always the case foer valid boards
|
||||
if( a->m_Uuid != b->m_Uuid ) // should be always the case for valid boards
|
||||
return a->m_Uuid < b->m_Uuid;
|
||||
|
||||
return a < b;
|
||||
|
@ -55,6 +55,7 @@ struct TSEGM_2_POLY_PRMS
|
||||
SHAPE_POLY_SET* m_cornerBuffer;
|
||||
};
|
||||
|
||||
|
||||
TSEGM_2_POLY_PRMS prms;
|
||||
|
||||
|
||||
@ -67,7 +68,8 @@ static void addTextSegmToPoly( int x0, int y0, int xf, int yf, void* aData )
|
||||
}
|
||||
|
||||
|
||||
void BOARD::ConvertBrdLayerToPolygonalContours( PCB_LAYER_ID aLayer, SHAPE_POLY_SET& aOutlines ) const
|
||||
void BOARD::ConvertBrdLayerToPolygonalContours( PCB_LAYER_ID aLayer,
|
||||
SHAPE_POLY_SET& aOutlines ) const
|
||||
{
|
||||
int maxError = GetDesignSettings().m_MaxError;
|
||||
|
||||
@ -120,16 +122,16 @@ void BOARD::ConvertBrdLayerToPolygonalContours( PCB_LAYER_ID aLayer, SHAPE_POLY_
|
||||
const PCB_SHAPE* shape = static_cast<const PCB_SHAPE*>( item );
|
||||
shape->TransformShapeWithClearanceToPolygon( aOutlines, aLayer, 0, maxError,
|
||||
ERROR_INSIDE );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case PCB_TEXT_T:
|
||||
{
|
||||
const PCB_TEXT* text = static_cast<const PCB_TEXT*>( item );
|
||||
text->TransformTextShapeWithClearanceToPolygon( aOutlines, aLayer, 0, maxError,
|
||||
ERROR_INSIDE );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
@ -164,11 +166,13 @@ void FOOTPRINT::TransformPadsWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuff
|
||||
case PAD_SHAPE::CIRCLE:
|
||||
if( pad->GetDrillShape() == PAD_DRILL_SHAPE_CIRCLE )
|
||||
continue;
|
||||
|
||||
break;
|
||||
|
||||
case PAD_SHAPE::OVAL:
|
||||
if( pad->GetDrillShape() != PAD_DRILL_SHAPE_CIRCLE )
|
||||
continue;
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -283,12 +287,6 @@ void FOOTPRINT::TransformFPShapesWithClearanceToPolygon( SHAPE_POLY_SET& aCorner
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Convert the text to a polygonSet describing the actual character strokes (one per segment).
|
||||
* @aCornerBuffer = SHAPE_POLY_SET to store the polygon corners
|
||||
* @aClearanceValue = the clearance around the text
|
||||
* @aError = the maximum error to allow when approximating curves
|
||||
*/
|
||||
void FP_TEXT::TransformTextShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuffer,
|
||||
PCB_LAYER_ID aLayer, int aClearance,
|
||||
int aError, ERROR_LOC aErrorLoc ) const
|
||||
@ -302,8 +300,9 @@ void FP_TEXT::TransformTextShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerB
|
||||
if( IsMirrored() )
|
||||
size.x = -size.x;
|
||||
|
||||
GRText( NULL, GetTextPos(), BLACK, GetShownText(), GetDrawRotation(), size, GetHorizJustify(),
|
||||
GetVertJustify(), penWidth, IsItalic(), IsBold(), addTextSegmToPoly, &prms );
|
||||
GRText( nullptr, GetTextPos(), BLACK, GetShownText(), GetDrawRotation(), size,
|
||||
GetHorizJustify(), GetVertJustify(), penWidth, IsItalic(), IsBold(),
|
||||
addTextSegmToPoly, &prms );
|
||||
}
|
||||
|
||||
|
||||
@ -383,15 +382,9 @@ void EDA_TEXT::TransformBoundingBoxWithClearanceToPolygon( SHAPE_POLY_SET* aCorn
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Convert the text to a polygonSet describing the actual character strokes (one per segment).
|
||||
* @aCornerBuffer = SHAPE_POLY_SET to store the polygon corners
|
||||
* @aClearanceValue = the clearance around the text
|
||||
* @aError = the maximum error to allow when approximating curves
|
||||
*/
|
||||
void PCB_TEXT::TransformTextShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuffer,
|
||||
PCB_LAYER_ID aLayer, int aClearanceValue,
|
||||
int aError, ERROR_LOC aErrorLoc ) const
|
||||
PCB_LAYER_ID aLayer, int aClearanceValue,
|
||||
int aError, ERROR_LOC aErrorLoc ) const
|
||||
{
|
||||
wxSize size = GetTextSize();
|
||||
|
||||
@ -405,15 +398,15 @@ void PCB_TEXT::TransformTextShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCorner
|
||||
prms.m_error = aError;
|
||||
COLOR4D color; // not actually used, but needed by GRText
|
||||
|
||||
GRText( NULL, GetTextPos(), color, GetShownText(), GetTextAngle(), size, GetHorizJustify(),
|
||||
GRText( nullptr, GetTextPos(), color, GetShownText(), GetTextAngle(), size, GetHorizJustify(),
|
||||
GetVertJustify(), penWidth, IsItalic(), IsBold(), addTextSegmToPoly, &prms );
|
||||
}
|
||||
|
||||
|
||||
void PCB_TEXT::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuffer,
|
||||
PCB_LAYER_ID aLayer, int aClearance,
|
||||
int aError, ERROR_LOC aErrorLoc,
|
||||
bool aIgnoreLineWidth ) const
|
||||
PCB_LAYER_ID aLayer, int aClearance,
|
||||
int aError, ERROR_LOC aErrorLoc,
|
||||
bool aIgnoreLineWidth ) const
|
||||
{
|
||||
EDA_TEXT::TransformBoundingBoxWithClearanceToPolygon( &aCornerBuffer, aClearance );
|
||||
}
|
||||
@ -441,6 +434,7 @@ void PCB_SHAPE::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
TransformRingToPolygon( aCornerBuffer, GetCenter(), GetRadius(), width, aError,
|
||||
aErrorLoc );
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case PCB_SHAPE_TYPE::RECT:
|
||||
@ -463,8 +457,9 @@ void PCB_SHAPE::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
TransformOvalToPolygon( aCornerBuffer, pts[2], pts[3], width, aError, aErrorLoc );
|
||||
TransformOvalToPolygon( aCornerBuffer, pts[3], pts[0], width, aError, aErrorLoc );
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case PCB_SHAPE_TYPE::ARC:
|
||||
TransformArcToPolygon( aCornerBuffer, GetArcStart(), GetArcMid(), GetArcEnd(), width,
|
||||
@ -518,8 +513,9 @@ void PCB_SHAPE::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
pt1 = pt2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case PCB_SHAPE_TYPE::CURVE: // Bezier curve
|
||||
{
|
||||
@ -530,10 +526,12 @@ void PCB_SHAPE::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
|
||||
for( unsigned ii = 1; ii < poly.size(); ii++ )
|
||||
{
|
||||
TransformOvalToPolygon( aCornerBuffer, poly[ii - 1], poly[ii], width, aError, aErrorLoc );
|
||||
TransformOvalToPolygon( aCornerBuffer, poly[ii - 1], poly[ii], width, aError,
|
||||
aErrorLoc );
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
wxFAIL_MSG( "PCB_SHAPE::TransformShapeWithClearanceToPolygon no implementation for "
|
||||
@ -557,8 +555,8 @@ void PCB_TRACK::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
{
|
||||
int radius = ( m_Width / 2 ) + aClearanceValue;
|
||||
TransformCircleToPolygon( aCornerBuffer, m_Start, radius, aError, aErrorLoc );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case PCB_ARC_T:
|
||||
{
|
||||
@ -567,17 +565,17 @@ void PCB_TRACK::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
|
||||
TransformArcToPolygon( aCornerBuffer, arc->GetStart(), arc->GetMid(),
|
||||
arc->GetEnd(), width, aError, aErrorLoc );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
{
|
||||
int width = m_Width + ( 2 * aClearanceValue );
|
||||
|
||||
TransformOvalToPolygon( aCornerBuffer, m_Start, m_End, width, aError, aErrorLoc );
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -633,8 +631,8 @@ void PAD::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuffer,
|
||||
TransformTrapezoidToPolygon( outline, padShapePos, m_size, angle, ddx, ddy,
|
||||
aClearanceValue, aError, aErrorLoc );
|
||||
aCornerBuffer.Append( outline );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case PAD_SHAPE::CHAMFERED_RECT:
|
||||
case PAD_SHAPE::ROUNDRECT:
|
||||
@ -648,8 +646,8 @@ void PAD::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuffer,
|
||||
doChamfer ? GetChamferPositions() : 0,
|
||||
aClearanceValue, aError, aErrorLoc );
|
||||
aCornerBuffer.Append( outline );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case PAD_SHAPE::CUSTOM:
|
||||
{
|
||||
@ -676,8 +674,8 @@ void PAD::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuffer,
|
||||
}
|
||||
|
||||
aCornerBuffer.Append( outline );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
wxFAIL_MSG( "PAD::TransformShapeWithClearanceToPolygon no implementation for "
|
||||
@ -748,7 +746,8 @@ void PCB_DIMENSION_BASE::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& a
|
||||
}
|
||||
else
|
||||
{
|
||||
wxFAIL_MSG( "PCB_DIMENSION_BASE::TransformShapeWithClearanceToPolygon unexpected shape type." );
|
||||
wxFAIL_MSG( "PCB_DIMENSION_BASE::TransformShapeWithClearanceToPolygon unexpected "
|
||||
"shape type." );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -210,7 +210,9 @@ void PANEL_SETUP_BOARD_STACKUP::onAdjustDielectricThickness( wxCommandEvent& eve
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
wxMessageBox( _( "All dielectric thickness layers are locked" ) );
|
||||
}
|
||||
|
||||
computeBoardThickness();
|
||||
}
|
||||
@ -227,7 +229,7 @@ void PANEL_SETUP_BOARD_STACKUP::disconnectEvents()
|
||||
{
|
||||
cb->Disconnect( wxEVT_COMMAND_COMBOBOX_SELECTED,
|
||||
wxCommandEventHandler( PANEL_SETUP_BOARD_STACKUP::onColorSelected ),
|
||||
NULL, this );
|
||||
nullptr, this );
|
||||
}
|
||||
|
||||
wxButton* matButt = dynamic_cast<wxButton*>( item );
|
||||
@ -236,7 +238,7 @@ void PANEL_SETUP_BOARD_STACKUP::disconnectEvents()
|
||||
{
|
||||
matButt->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED,
|
||||
wxCommandEventHandler( PANEL_SETUP_BOARD_STACKUP::onMaterialChange ),
|
||||
NULL, this );
|
||||
nullptr, this );
|
||||
}
|
||||
|
||||
wxTextCtrl* textCtrl = dynamic_cast<wxTextCtrl*>( item );
|
||||
@ -245,7 +247,7 @@ void PANEL_SETUP_BOARD_STACKUP::disconnectEvents()
|
||||
{
|
||||
textCtrl->Disconnect( wxEVT_COMMAND_TEXT_UPDATED,
|
||||
wxCommandEventHandler( PANEL_SETUP_BOARD_STACKUP::onThicknessChange ),
|
||||
NULL, this );
|
||||
nullptr, this );
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -391,7 +393,7 @@ void PANEL_SETUP_BOARD_STACKUP::onExportToClipboard( wxCommandEvent& event )
|
||||
if( !transferDataFromUIToStackup() )
|
||||
return;
|
||||
|
||||
// Build a ascii representation of stackup and copy it in the clipboard
|
||||
// Build a ASCII representation of stackup and copy it in the clipboard
|
||||
wxString report = BuildStackupReport( m_stackup, m_units );
|
||||
|
||||
wxLogNull doNotLog; // disable logging of failed clipboard actions
|
||||
@ -631,8 +633,7 @@ void PANEL_SETUP_BOARD_STACKUP::showOnlyActiveLayers()
|
||||
}
|
||||
|
||||
|
||||
void PANEL_SETUP_BOARD_STACKUP::addMaterialChooser( wxWindowID aId,
|
||||
const wxString * aMaterialName,
|
||||
void PANEL_SETUP_BOARD_STACKUP::addMaterialChooser( wxWindowID aId, const wxString* aMaterialName,
|
||||
BOARD_STACKUP_ROW_UI_ITEM& aUiRowItem )
|
||||
{
|
||||
wxBoxSizer* bSizerMat = new wxBoxSizer( wxHORIZONTAL );
|
||||
@ -651,12 +652,12 @@ void PANEL_SETUP_BOARD_STACKUP::addMaterialChooser( wxWindowID aId,
|
||||
bSizerMat->Add( textCtrl, 0, wxALIGN_CENTER_VERTICAL|wxLEFT, 5 );
|
||||
|
||||
wxButton* m_buttonMat = new wxButton( m_scGridWin, aId, _( "..." ), wxDefaultPosition,
|
||||
wxDefaultSize, wxBU_EXACTFIT );
|
||||
wxDefaultSize, wxBU_EXACTFIT );
|
||||
bSizerMat->Add( m_buttonMat, 0, wxALIGN_CENTER_VERTICAL, 2 );
|
||||
|
||||
m_buttonMat->Connect( wxEVT_COMMAND_BUTTON_CLICKED,
|
||||
wxCommandEventHandler( PANEL_SETUP_BOARD_STACKUP::onMaterialChange ),
|
||||
NULL, this );
|
||||
nullptr, this );
|
||||
m_controlItemsList.push_back( m_buttonMat );
|
||||
|
||||
aUiRowItem.m_MaterialCtrl = textCtrl;
|
||||
@ -761,7 +762,7 @@ BOARD_STACKUP_ROW_UI_ITEM PANEL_SETUP_BOARD_STACKUP::createRowData( int aRow,
|
||||
m_controlItemsList.push_back( textCtrl );
|
||||
textCtrl->Connect( wxEVT_COMMAND_TEXT_UPDATED,
|
||||
wxCommandEventHandler( PANEL_SETUP_BOARD_STACKUP::onThicknessChange ),
|
||||
NULL, this );
|
||||
nullptr, this );
|
||||
ui_row_item.m_ThicknessCtrl = textCtrl;
|
||||
|
||||
if( item->GetType() == BS_ITEM_TYPE_DIELECTRIC )
|
||||
@ -1021,7 +1022,8 @@ bool PANEL_SETUP_BOARD_STACKUP::transferDataFromUIToStackup()
|
||||
else
|
||||
{
|
||||
success = false;
|
||||
error_msg << _( "Incorrect value for Epsilon R (Epsilon R must be positive or null if not used)" );
|
||||
error_msg << _( "Incorrect value for Epsilon R (Epsilon R must be positive or "
|
||||
"null if not used)" );
|
||||
}
|
||||
}
|
||||
|
||||
@ -1041,7 +1043,8 @@ bool PANEL_SETUP_BOARD_STACKUP::transferDataFromUIToStackup()
|
||||
if( !error_msg.IsEmpty() )
|
||||
error_msg << "\n";
|
||||
|
||||
error_msg << _( "Incorrect value for Loss tg (Loss tg must be positive or null if not used)" );
|
||||
error_msg << _( "Incorrect value for Loss tg (Loss tg must be positive or null "
|
||||
"if not used)" );
|
||||
}
|
||||
}
|
||||
|
||||
@ -1266,8 +1269,7 @@ void PANEL_SETUP_BOARD_STACKUP::onColorSelected( wxCommandEvent& event )
|
||||
combo->SetString( idx, label );
|
||||
|
||||
wxBitmap layerbmp( m_colorSwatchesSize.x, m_colorSwatchesSize.y );
|
||||
LAYER_SELECTOR::DrawColorSwatch( layerbmp, COLOR4D( 0, 0, 0, 0 ),
|
||||
COLOR4D( color ) );
|
||||
LAYER_SELECTOR::DrawColorSwatch( layerbmp, COLOR4D( 0, 0, 0, 0 ), COLOR4D( color ) );
|
||||
combo->SetItemBitmap( combo->GetCount()-1, layerbmp );
|
||||
}
|
||||
}
|
||||
@ -1506,7 +1508,7 @@ wxBitmapComboBox* PANEL_SETUP_BOARD_STACKUP::createBmComboBox( BOARD_STACKUP_ITE
|
||||
|
||||
combo->Connect( wxEVT_COMMAND_COMBOBOX_SELECTED,
|
||||
wxCommandEventHandler( PANEL_SETUP_BOARD_STACKUP::onColorSelected ),
|
||||
NULL, this );
|
||||
nullptr, this );
|
||||
|
||||
return combo;
|
||||
}
|
||||
@ -1530,7 +1532,7 @@ void drawBitmap( wxBitmap& aBitmap, wxColor aColor )
|
||||
}
|
||||
|
||||
p = rowStart;
|
||||
p.OffsetY(data, 1);
|
||||
p.OffsetY( data, 1 );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2009-2014 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
||||
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -64,6 +64,7 @@ public:
|
||||
int m_Id;
|
||||
int m_Count;
|
||||
};
|
||||
|
||||
WX_DECLARE_LIST( BOM_ENTRY, BOM_ENTRY_LIST );
|
||||
|
||||
WX_DEFINE_LIST( BOM_ENTRY_LIST )
|
||||
@ -97,7 +98,7 @@ void PCB_EDIT_FRAME::RecreateBOMFileFromBoard( wxCommandEvent& aEvent )
|
||||
|
||||
fp_bom = wxFopen( fn.GetFullPath(), wxT( "wt" ) );
|
||||
|
||||
if( fp_bom == NULL )
|
||||
if( fp_bom == nullptr )
|
||||
{
|
||||
msg.Printf( _( "Failed to create file '%s'." ), fn.GetFullPath() );
|
||||
DisplayError( this, msg );
|
||||
@ -169,7 +170,7 @@ void PCB_EDIT_FRAME::RecreateBOMFileFromBoard( wxCommandEvent& aEvent )
|
||||
|
||||
// We do not need this object, now: remove it from list and delete it
|
||||
list.DeleteObject( curEntry );
|
||||
delete (curEntry);
|
||||
delete curEntry;
|
||||
}
|
||||
|
||||
fclose( fp_bom );
|
||||
|
@ -2,7 +2,7 @@
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2007-2008 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||
* Copyright (C) 2004-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2004-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -231,7 +231,6 @@ SEARCH_RESULT GENERAL_COLLECTOR::Inspect( EDA_ITEM* testItem, void* testData )
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
switch( item->Type() )
|
||||
{
|
||||
case PCB_PAD_T:
|
||||
@ -243,8 +242,8 @@ SEARCH_RESULT GENERAL_COLLECTOR::Inspect( EDA_ITEM* testItem, void* testData )
|
||||
// for through pads: pads on Front or Back board sides must be visible
|
||||
pad = static_cast<PAD*>( item );
|
||||
|
||||
if( (pad->GetAttribute() != PAD_ATTRIB::SMD) &&
|
||||
(pad->GetAttribute() != PAD_ATTRIB::CONN) ) // a hole is present, so multiple layers
|
||||
if( ( pad->GetAttribute() != PAD_ATTRIB::SMD ) &&
|
||||
( pad->GetAttribute() != PAD_ATTRIB::CONN ) ) // a hole is present, so multiple layers
|
||||
{
|
||||
// proceed to the common tests below, but without the parent footprint test,
|
||||
// by leaving footprint==NULL, but having pad != null
|
||||
@ -265,6 +264,7 @@ SEARCH_RESULT GENERAL_COLLECTOR::Inspect( EDA_ITEM* testItem, void* testData )
|
||||
case PCB_ARC_T:
|
||||
if( m_Guide->IgnoreTracks() )
|
||||
goto exit;
|
||||
|
||||
break;
|
||||
|
||||
case PCB_FP_ZONE_T:
|
||||
@ -295,46 +295,50 @@ SEARCH_RESULT GENERAL_COLLECTOR::Inspect( EDA_ITEM* testItem, void* testData )
|
||||
break;
|
||||
|
||||
case PCB_FP_TEXT_T:
|
||||
{
|
||||
FP_TEXT *text = static_cast<FP_TEXT*>( item );
|
||||
|
||||
if( m_Guide->IgnoreHiddenFPText() && !text->IsVisible() )
|
||||
goto exit;
|
||||
|
||||
if( m_Guide->IgnoreFPTextOnBack() && IsBackLayer( text->GetLayer() ) )
|
||||
goto exit;
|
||||
|
||||
if( m_Guide->IgnoreFPTextOnFront() && IsFrontLayer( text->GetLayer() ) )
|
||||
goto exit;
|
||||
|
||||
/* The three text types have different criteria: reference
|
||||
* and value have their own ignore flags; user text instead
|
||||
* follows their layer visibility. Checking this here is
|
||||
* simpler than later (when layer visibility is checked for
|
||||
* other entities) */
|
||||
|
||||
switch( text->GetType() )
|
||||
{
|
||||
FP_TEXT *text = static_cast<FP_TEXT*>( item );
|
||||
if( m_Guide->IgnoreHiddenFPText() && !text->IsVisible() )
|
||||
case FP_TEXT::TEXT_is_REFERENCE:
|
||||
if( m_Guide->IgnoreFPReferences() )
|
||||
goto exit;
|
||||
|
||||
if( m_Guide->IgnoreFPTextOnBack() && IsBackLayer( text->GetLayer() ) )
|
||||
break;
|
||||
|
||||
case FP_TEXT::TEXT_is_VALUE:
|
||||
if( m_Guide->IgnoreFPValues() )
|
||||
goto exit;
|
||||
|
||||
if( m_Guide->IgnoreFPTextOnFront() && IsFrontLayer( text->GetLayer() ) )
|
||||
break;
|
||||
|
||||
case FP_TEXT::TEXT_is_DIVERS:
|
||||
if( !m_Guide->IsLayerVisible( text->GetLayer() )
|
||||
&& m_Guide->IgnoreNonVisibleLayers() )
|
||||
goto exit;
|
||||
|
||||
/* The three text types have different criteria: reference
|
||||
* and value have their own ignore flags; user text instead
|
||||
* follows their layer visibility. Checking this here is
|
||||
* simpler than later (when layer visibility is checked for
|
||||
* other entities) */
|
||||
|
||||
switch( text->GetType() )
|
||||
{
|
||||
case FP_TEXT::TEXT_is_REFERENCE:
|
||||
if( m_Guide->IgnoreFPReferences() )
|
||||
goto exit;
|
||||
break;
|
||||
|
||||
case FP_TEXT::TEXT_is_VALUE:
|
||||
if( m_Guide->IgnoreFPValues() )
|
||||
goto exit;
|
||||
break;
|
||||
|
||||
case FP_TEXT::TEXT_is_DIVERS:
|
||||
if( !m_Guide->IsLayerVisible( text->GetLayer() )
|
||||
&& m_Guide->IgnoreNonVisibleLayers() )
|
||||
goto exit;
|
||||
break;
|
||||
}
|
||||
|
||||
// Extract the footprint since it could be hidden
|
||||
footprint = static_cast<FOOTPRINT*>( item->GetParent() );
|
||||
break;
|
||||
}
|
||||
|
||||
// Extract the footprint since it could be hidden
|
||||
footprint = static_cast<FOOTPRINT*>( item->GetParent() );
|
||||
break;
|
||||
}
|
||||
|
||||
case PCB_FP_SHAPE_T:
|
||||
shape = static_cast<FP_SHAPE*>( item );
|
||||
@ -360,10 +364,10 @@ SEARCH_RESULT GENERAL_COLLECTOR::Inspect( EDA_ITEM* testItem, void* testData )
|
||||
|
||||
if( footprint ) // true from case PCB_PAD_T, PCB_FP_TEXT_T, or PCB_FOOTPRINT_T
|
||||
{
|
||||
if( m_Guide->IgnoreFootprintsOnBack() && ( footprint->GetLayer() == B_Cu) )
|
||||
if( m_Guide->IgnoreFootprintsOnBack() && ( footprint->GetLayer() == B_Cu ) )
|
||||
goto exit;
|
||||
|
||||
if( m_Guide->IgnoreFootprintsOnFront() && ( footprint->GetLayer() == F_Cu) )
|
||||
if( m_Guide->IgnoreFootprintsOnFront() && ( footprint->GetLayer() == F_Cu ) )
|
||||
goto exit;
|
||||
}
|
||||
|
||||
@ -579,7 +583,7 @@ void GENERAL_COLLECTOR::Collect( BOARD_ITEM* aItem, const KICAD_T aScanList[],
|
||||
// the Inspect() function.
|
||||
SetRefPos( aRefPos );
|
||||
|
||||
aItem->Visit( m_inspector, NULL, m_scanTypes );
|
||||
aItem->Visit( m_inspector, nullptr, m_scanTypes );
|
||||
|
||||
// record the length of the primary list before concatenating on to it.
|
||||
m_PrimaryLength = m_list.size();
|
||||
@ -606,7 +610,7 @@ void PCB_TYPE_COLLECTOR::Collect( BOARD_ITEM* aBoard, const KICAD_T aScanList[]
|
||||
{
|
||||
Empty(); // empty any existing collection
|
||||
|
||||
aBoard->Visit( m_inspector, NULL, aScanList );
|
||||
aBoard->Visit( m_inspector, nullptr, aScanList );
|
||||
}
|
||||
|
||||
|
||||
@ -625,5 +629,5 @@ void PCB_LAYER_COLLECTOR::Collect( BOARD_ITEM* aBoard, const KICAD_T aScanList[]
|
||||
{
|
||||
Empty();
|
||||
|
||||
aBoard->Visit( m_inspector, NULL, aScanList );
|
||||
aBoard->Visit( m_inspector, nullptr, aScanList );
|
||||
}
|
||||
|
@ -85,9 +85,9 @@ void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
|
||||
line[sizeof(line) - 1] = 0;
|
||||
|
||||
idcmd = strtok( line, " \n\r" );
|
||||
text = strtok( NULL, "\"\n\r" );
|
||||
text = strtok( nullptr, "\"\n\r" );
|
||||
|
||||
if( idcmd == NULL )
|
||||
if( idcmd == nullptr )
|
||||
return;
|
||||
|
||||
if( strcmp( idcmd, "$NET:" ) == 0 )
|
||||
@ -108,6 +108,7 @@ void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
|
||||
SetMsgPanel( items );
|
||||
}
|
||||
}
|
||||
|
||||
if( strcmp( idcmd, "$NETS:" ) == 0 )
|
||||
{
|
||||
if( !crossProbingSettings.auto_highlight )
|
||||
@ -148,10 +149,10 @@ void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
|
||||
{
|
||||
wxString pinName = FROM_UTF8( text );
|
||||
|
||||
text = strtok( NULL, " \n\r" );
|
||||
text = strtok( nullptr, " \n\r" );
|
||||
|
||||
if( text && strcmp( text, "$PART:" ) == 0 )
|
||||
text = strtok( NULL, "\"\n\r" );
|
||||
text = strtok( nullptr, "\"\n\r" );
|
||||
|
||||
modName = FROM_UTF8( text );
|
||||
|
||||
@ -163,9 +164,9 @@ void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
|
||||
if( pad )
|
||||
netcode = pad->GetNetCode();
|
||||
|
||||
if( footprint == NULL )
|
||||
if( footprint == nullptr )
|
||||
msg.Printf( _( "%s not found" ), modName );
|
||||
else if( pad == NULL )
|
||||
else if( pad == nullptr )
|
||||
msg.Printf( _( "%s pin %s not found" ), modName, pinName );
|
||||
else
|
||||
msg.Printf( _( "%s pin %s found" ), modName, pinName );
|
||||
@ -284,7 +285,8 @@ void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
|
||||
// The "fabs" on x ensures the right answer when the view is flipped
|
||||
screenSize.x = std::max( 10.0, fabs( screenSize.x ) );
|
||||
screenSize.y = std::max( 10.0, screenSize.y );
|
||||
double ratio = std::max( fabs( bbSize.x / screenSize.x ), fabs( bbSize.y / screenSize.y ) );
|
||||
double ratio = std::max( fabs( bbSize.x / screenSize.x ),
|
||||
fabs( bbSize.y / screenSize.y ) );
|
||||
|
||||
// Try not to zoom on every cross-probe; it gets very noisy
|
||||
if( crossProbingSettings.zoom_to_fit && ( ratio < 0.5 || ratio > 1.0 ) )
|
||||
@ -309,19 +311,23 @@ void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
|
||||
double currTextHeight = Millimeter2iu( DEFAULT_TEXT_SIZE );
|
||||
|
||||
double compRatio = bbSize.y / currTextHeight; // Ratio of component to text height
|
||||
double compRatioBent = 1.0; // This will end up as the scaling factor we apply to "ratio"
|
||||
|
||||
// This is similar to the original KiCad code that scaled the zoom to make sure components
|
||||
// were visible on screen. It's simply a ratio of screen size to component size, and its
|
||||
// job is to zoom in to make the component fullscreen. Earlier in the code the
|
||||
// component BBox is given a 20% margin to add some breathing room. We compare
|
||||
// the height of this enlarged component bbox to the default text height. If a component
|
||||
// will end up with the sides clipped, we adjust later to make sure it fits on screen.
|
||||
// This will end up as the scaling factor we apply to "ratio".
|
||||
double compRatioBent = 1.0;
|
||||
|
||||
// This is similar to the original KiCad code that scaled the zoom to make sure
|
||||
// components were visible on screen. It's simply a ratio of screen size to
|
||||
// component size, and its job is to zoom in to make the component fullscreen.
|
||||
// Earlier in the code the component BBox is given a 20% margin to add some
|
||||
// breathing room. We compare the height of this enlarged component bbox to the
|
||||
// default text height. If a component will end up with the sides clipped, we
|
||||
// adjust later to make sure it fits on screen.
|
||||
//
|
||||
// The "fabs" on x ensures the right answer when the view is flipped
|
||||
screenSize.x = std::max( 10.0, fabs( screenSize.x ) );
|
||||
screenSize.y = std::max( 10.0, screenSize.y );
|
||||
double ratio = std::max( -1.0, fabs( bbSize.y / screenSize.y ) );
|
||||
|
||||
// Original KiCad code for how much to scale the zoom
|
||||
double kicadRatio = std::max( fabs( bbSize.x / screenSize.x ),
|
||||
fabs( bbSize.y / screenSize.y ) );
|
||||
@ -369,19 +375,23 @@ void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
compRatioBent = lut.front().second; // Small component default
|
||||
}
|
||||
|
||||
// If the width of the part we're probing is bigger than what the screen width will be
|
||||
// after the zoom, then punt and use the KiCad zoom algorithm since it guarantees the
|
||||
// part's width will be encompassed within the screen. This will apply to parts that are
|
||||
// much wider than they are tall.
|
||||
// part's width will be encompassed within the screen. This will apply to parts that
|
||||
// are much wider than they are tall.
|
||||
|
||||
if( bbSize.x > screenSize.x * ratio * compRatioBent )
|
||||
{
|
||||
ratio = kicadRatio; // Use standard KiCad zoom algorithm for parts too wide to fit screen
|
||||
// Use standard KiCad zoom algorithm for parts too wide to fit screen/
|
||||
ratio = kicadRatio;
|
||||
compRatioBent = 1.0; // Reset so we don't modify the "KiCad" ratio
|
||||
wxLogTrace( "CROSS_PROBE_SCALE",
|
||||
"Part TOO WIDE for screen. Using normal KiCad zoom ratio: %1.5f", ratio );
|
||||
"Part TOO WIDE for screen. Using normal KiCad zoom ratio: %1.5f",
|
||||
ratio );
|
||||
}
|
||||
|
||||
// Now that "compRatioBent" holds our final scaling factor we apply it to the original
|
||||
@ -389,15 +399,18 @@ void PCB_EDIT_FRAME::ExecuteRemoteCommand( const char* cmdline )
|
||||
ratio *= compRatioBent;
|
||||
|
||||
bool alwaysZoom = false; // DEBUG - allows us to minimize zooming or not
|
||||
|
||||
// Try not to zoom on every cross-probe; it gets very noisy
|
||||
if( ( ratio < 0.5 || ratio > 1.0 ) || alwaysZoom )
|
||||
view->SetScale( view->GetScale() / ratio );
|
||||
#endif // ifndef DEFAULT_PCBNEW_CODE
|
||||
}
|
||||
|
||||
view->SetCenter( bbox.Centre() );
|
||||
}
|
||||
|
||||
view->UpdateAllLayersColor();
|
||||
|
||||
// Ensure the display is refreshed, because in some installs the refresh is done only
|
||||
// when the gal canvas has the focus, and that is not the case when crossprobing from
|
||||
// Eeschema:
|
||||
@ -419,36 +432,33 @@ std::string FormatProbeItem( BOARD_ITEM* aItem )
|
||||
return StrPrintf( "$PART: \"%s\"", TO_UTF8( footprint->GetReference() ) );
|
||||
|
||||
case PCB_PAD_T:
|
||||
{
|
||||
footprint = static_cast<FOOTPRINT*>( aItem->GetParent() );
|
||||
wxString pad = static_cast<PAD*>( aItem )->GetName();
|
||||
{
|
||||
footprint = static_cast<FOOTPRINT*>( aItem->GetParent() );
|
||||
wxString pad = static_cast<PAD*>( aItem )->GetName();
|
||||
|
||||
return StrPrintf( "$PART: \"%s\" $PAD: \"%s\"",
|
||||
TO_UTF8( footprint->GetReference() ),
|
||||
TO_UTF8( pad ) );
|
||||
}
|
||||
return StrPrintf( "$PART: \"%s\" $PAD: \"%s\"", TO_UTF8( footprint->GetReference() ),
|
||||
TO_UTF8( pad ) );
|
||||
}
|
||||
|
||||
case PCB_FP_TEXT_T:
|
||||
{
|
||||
footprint = static_cast<FOOTPRINT*>( aItem->GetParent() );
|
||||
{
|
||||
footprint = static_cast<FOOTPRINT*>( aItem->GetParent() );
|
||||
|
||||
FP_TEXT* text = static_cast<FP_TEXT*>( aItem );
|
||||
const char* text_key;
|
||||
FP_TEXT* text = static_cast<FP_TEXT*>( aItem );
|
||||
const char* text_key;
|
||||
|
||||
/* This can't be a switch since the break need to pull out
|
||||
* from the outer switch! */
|
||||
if( text->GetType() == FP_TEXT::TEXT_is_REFERENCE )
|
||||
text_key = "$REF:";
|
||||
else if( text->GetType() == FP_TEXT::TEXT_is_VALUE )
|
||||
text_key = "$VAL:";
|
||||
else
|
||||
break;
|
||||
/* This can't be a switch since the break need to pull out
|
||||
* from the outer switch! */
|
||||
if( text->GetType() == FP_TEXT::TEXT_is_REFERENCE )
|
||||
text_key = "$REF:";
|
||||
else if( text->GetType() == FP_TEXT::TEXT_is_VALUE )
|
||||
text_key = "$VAL:";
|
||||
else
|
||||
break;
|
||||
|
||||
return StrPrintf( "$PART: \"%s\" %s \"%s\"",
|
||||
TO_UTF8( footprint->GetReference() ),
|
||||
text_key,
|
||||
TO_UTF8( text->GetText() ) );
|
||||
}
|
||||
return StrPrintf( "$PART: \"%s\" %s \"%s\"", TO_UTF8( footprint->GetReference() ), text_key,
|
||||
TO_UTF8( text->GetText() ) );
|
||||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
@ -458,14 +468,6 @@ std::string FormatProbeItem( BOARD_ITEM* aItem )
|
||||
}
|
||||
|
||||
|
||||
/* Send a remote command to Eeschema via a socket,
|
||||
* aSyncItem = item to be located on schematic (footprint, pin or text)
|
||||
* Commands are
|
||||
* $PART: "reference" put cursor on component anchor
|
||||
* $PART: "reference" $PAD: "pad number" put cursor on the component pin
|
||||
* $PART: "reference" $REF: "reference" put cursor on the component ref
|
||||
* $PART: "reference" $VAL: "value" put cursor on the component value
|
||||
*/
|
||||
void PCB_EDIT_FRAME::SendMessageToEESCHEMA( BOARD_ITEM* aSyncItem )
|
||||
{
|
||||
std::string packet = FormatProbeItem( aSyncItem );
|
||||
@ -473,7 +475,9 @@ void PCB_EDIT_FRAME::SendMessageToEESCHEMA( BOARD_ITEM* aSyncItem )
|
||||
if( !packet.empty() )
|
||||
{
|
||||
if( Kiface().IsSingle() )
|
||||
{
|
||||
SendCommand( MSG_TO_SCH, packet );
|
||||
}
|
||||
else
|
||||
{
|
||||
// Typically ExpressMail is going to be s-expression packets, but since
|
||||
@ -492,7 +496,9 @@ void PCB_EDIT_FRAME::SendCrossProbeNetName( const wxString& aNetName )
|
||||
if( !packet.empty() )
|
||||
{
|
||||
if( Kiface().IsSingle() )
|
||||
{
|
||||
SendCommand( MSG_TO_SCH, packet );
|
||||
}
|
||||
else
|
||||
{
|
||||
// Typically ExpressMail is going to be s-expression packets, but since
|
||||
@ -539,8 +545,8 @@ void PCB_EDIT_FRAME::KiwayMailIn( KIWAY_EXPRESS& mail )
|
||||
|
||||
netlist.Format( "pcb_netlist", &sf, 0, CTL_OMIT_FILTERS );
|
||||
payload = sf.GetString();
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case MAIL_PCB_UPDATE_LINKS:
|
||||
try
|
||||
@ -564,6 +570,7 @@ void PCB_EDIT_FRAME::KiwayMailIn( KIWAY_EXPRESS& mail )
|
||||
assert( false ); // should never happen
|
||||
return;
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case MAIL_CROSS_PROBE:
|
||||
@ -596,8 +603,9 @@ void PCB_EDIT_FRAME::KiwayMailIn( KIWAY_EXPRESS& mail )
|
||||
|
||||
if( importFormat >= 0 )
|
||||
importFile( path, importFormat );
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
// many many others.
|
||||
default:
|
||||
|
@ -48,6 +48,7 @@
|
||||
|
||||
using std::placeholders::_1;
|
||||
|
||||
|
||||
DIALOG_BOARD_SETUP::DIALOG_BOARD_SETUP( PCB_EDIT_FRAME* aFrame ) :
|
||||
PAGED_DIALOG( aFrame, _( "Board Setup" ), false,
|
||||
_( "Import Settings from Another Board..." ) ),
|
||||
@ -88,6 +89,7 @@ DIALOG_BOARD_SETUP::DIALOG_BOARD_SETUP( PCB_EDIT_FRAME* aFrame ) :
|
||||
m_treebook->AddSubPage( m_layers, _( "Board Editor Layers" ) );
|
||||
m_layerSetupPage = 1;
|
||||
m_treebook->AddSubPage( m_physicalStackup, _( "Physical Stackup" ) );
|
||||
|
||||
// Change this value if m_physicalStackup is not the page 2 of m_treebook
|
||||
m_physicalStackupPage = 2; // The page number (from 0) to select the m_physicalStackup panel
|
||||
m_treebook->AddSubPage( m_boardFinish, _( "Board Finish" ) );
|
||||
@ -111,7 +113,8 @@ DIALOG_BOARD_SETUP::DIALOG_BOARD_SETUP( PCB_EDIT_FRAME* aFrame ) :
|
||||
|
||||
// Connect Events
|
||||
m_treebook->Connect( wxEVT_TREEBOOK_PAGE_CHANGED,
|
||||
wxBookCtrlEventHandler( DIALOG_BOARD_SETUP::OnPageChange ), NULL, this );
|
||||
wxBookCtrlEventHandler( DIALOG_BOARD_SETUP::OnPageChange ),
|
||||
nullptr, this );
|
||||
|
||||
finishDialogSettings();
|
||||
}
|
||||
@ -120,7 +123,8 @@ DIALOG_BOARD_SETUP::DIALOG_BOARD_SETUP( PCB_EDIT_FRAME* aFrame ) :
|
||||
DIALOG_BOARD_SETUP::~DIALOG_BOARD_SETUP()
|
||||
{
|
||||
m_treebook->Disconnect( wxEVT_TREEBOOK_PAGE_CHANGED,
|
||||
wxBookCtrlEventHandler( DIALOG_BOARD_SETUP::OnPageChange ), NULL, this );
|
||||
wxBookCtrlEventHandler( DIALOG_BOARD_SETUP::OnPageChange ),
|
||||
nullptr, this );
|
||||
}
|
||||
|
||||
|
||||
@ -160,7 +164,6 @@ void DIALOG_BOARD_SETUP::OnPageChange( wxBookCtrlEvent& event )
|
||||
}
|
||||
|
||||
|
||||
// Run Import Settings... action
|
||||
void DIALOG_BOARD_SETUP::OnAuxiliaryAction( wxCommandEvent& event )
|
||||
{
|
||||
DIALOG_IMPORT_SETTINGS importDlg( this, m_frame );
|
||||
|
@ -2,7 +2,7 @@
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2019 Alexander Shuklin, jasuramme@gmail.com
|
||||
* Copyright (C) 2019 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2019-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -45,8 +45,9 @@
|
||||
#define ROW_BOARD_HEIGHT 1
|
||||
#define ROW_BOARD_AREA 2
|
||||
|
||||
|
||||
/**
|
||||
* Struct containing the dialog last saved state
|
||||
* The dialog last saved state.
|
||||
*/
|
||||
struct DIALOG_BOARD_STATISTICS_SAVED_STATE
|
||||
{
|
||||
@ -69,6 +70,7 @@ struct DIALOG_BOARD_STATISTICS_SAVED_STATE
|
||||
// used to reinit last state after a project change
|
||||
};
|
||||
|
||||
|
||||
static DIALOG_BOARD_STATISTICS_SAVED_STATE s_savedDialogState;
|
||||
|
||||
DIALOG_BOARD_STATISTICS::DIALOG_BOARD_STATISTICS( PCB_EDIT_FRAME* aParentFrame ) :
|
||||
@ -81,7 +83,9 @@ DIALOG_BOARD_STATISTICS::DIALOG_BOARD_STATISTICS( PCB_EDIT_FRAME* aParentFrame )
|
||||
m_parentFrame = aParentFrame;
|
||||
|
||||
m_gridDrills->UseNativeColHeader();
|
||||
m_gridDrills->Connect( wxEVT_GRID_COL_SORT, wxGridEventHandler( DIALOG_BOARD_STATISTICS::drillGridSort ), NULL, this );
|
||||
m_gridDrills->Connect( wxEVT_GRID_COL_SORT,
|
||||
wxGridEventHandler( DIALOG_BOARD_STATISTICS::drillGridSort ),
|
||||
nullptr, this );
|
||||
|
||||
m_checkBoxExcludeComponentsNoPins->SetValue( s_savedDialogState.excludeNoPins );
|
||||
m_checkBoxSubtractHoles->SetValue( s_savedDialogState.subtractHoles );
|
||||
@ -103,6 +107,7 @@ DIALOG_BOARD_STATISTICS::DIALOG_BOARD_STATISTICS( PCB_EDIT_FRAME* aParentFrame )
|
||||
m_gridBoard->SetCellAlignment( 2, 0, wxALIGN_LEFT, wxALIGN_CENTRE );
|
||||
|
||||
wxGrid* grids[] = { m_gridComponents, m_gridPads, m_gridVias, m_gridBoard };
|
||||
|
||||
for( auto& grid : grids )
|
||||
{
|
||||
// Remove wxgrid's selection boxes
|
||||
@ -130,6 +135,7 @@ DIALOG_BOARD_STATISTICS::DIALOG_BOARD_STATISTICS( PCB_EDIT_FRAME* aParentFrame )
|
||||
m_sdbControlSizerCancel->SetLabel( _( "Close" ) );
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::refreshItemsTypes()
|
||||
{
|
||||
m_componentsTypes.clear();
|
||||
@ -167,6 +173,7 @@ void DIALOG_BOARD_STATISTICS::refreshItemsTypes()
|
||||
m_gridVias->AppendRows( appendRows );
|
||||
}
|
||||
|
||||
|
||||
bool DIALOG_BOARD_STATISTICS::TransferDataToWindow()
|
||||
{
|
||||
refreshItemsTypes();
|
||||
@ -178,6 +185,7 @@ bool DIALOG_BOARD_STATISTICS::TransferDataToWindow()
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::getDataFromPCB()
|
||||
{
|
||||
BOARD* board = m_parentFrame->GetBoard();
|
||||
@ -348,6 +356,7 @@ void DIALOG_BOARD_STATISTICS::getDataFromPCB()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::updateWidets()
|
||||
{
|
||||
int totalPads = 0;
|
||||
@ -356,8 +365,8 @@ void DIALOG_BOARD_STATISTICS::updateWidets()
|
||||
for( const auto& type : m_padsTypes )
|
||||
{
|
||||
m_gridPads->SetCellValue( currentRow, COL_LABEL, type.title );
|
||||
m_gridPads->SetCellValue(
|
||||
currentRow, COL_AMOUNT, wxString::Format( wxT( "%i " ), type.qty ) );
|
||||
m_gridPads->SetCellValue( currentRow, COL_AMOUNT,
|
||||
wxString::Format( wxT( "%i " ), type.qty ) );
|
||||
totalPads += type.qty;
|
||||
currentRow++;
|
||||
}
|
||||
@ -371,8 +380,7 @@ void DIALOG_BOARD_STATISTICS::updateWidets()
|
||||
for( const auto& type : m_viasTypes )
|
||||
{
|
||||
m_gridVias->SetCellValue( currentRow, COL_LABEL, type.title );
|
||||
m_gridVias->SetCellValue(
|
||||
currentRow, COL_AMOUNT, wxString::Format( "%i ", type.qty ) );
|
||||
m_gridVias->SetCellValue( currentRow, COL_AMOUNT, wxString::Format( "%i ", type.qty ) );
|
||||
totalVias += type.qty;
|
||||
currentRow++;
|
||||
}
|
||||
@ -416,7 +424,8 @@ void DIALOG_BOARD_STATISTICS::updateWidets()
|
||||
m_gridBoard->SetCellValue( ROW_BOARD_HEIGHT, COL_AMOUNT,
|
||||
MessageTextFromValue( GetUserUnits(), m_boardHeight ) + " " );
|
||||
m_gridBoard->SetCellValue( ROW_BOARD_AREA, COL_AMOUNT,
|
||||
MessageTextFromValue( GetUserUnits(), m_boardArea, true, EDA_DATA_TYPE::AREA ) );
|
||||
MessageTextFromValue( GetUserUnits(), m_boardArea, true,
|
||||
EDA_DATA_TYPE::AREA ) );
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -436,6 +445,7 @@ void DIALOG_BOARD_STATISTICS::updateWidets()
|
||||
adjustDrillGridColumns();
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::updateDrillGrid()
|
||||
{
|
||||
BOARD* board = m_parentFrame->GetBoard();
|
||||
@ -488,8 +498,10 @@ void DIALOG_BOARD_STATISTICS::updateDrillGrid()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::printGridToStringAsTable( wxGrid* aGrid, wxString& aStr,
|
||||
bool aUseRowLabels, bool aUseColLabels, bool aUseFirstColAsLabel )
|
||||
bool aUseRowLabels, bool aUseColLabels,
|
||||
bool aUseFirstColAsLabel )
|
||||
{
|
||||
std::vector<int> widths( aGrid->GetNumberCols(), 0 );
|
||||
int rowLabelsWidth = 0;
|
||||
@ -530,6 +542,7 @@ void DIALOG_BOARD_STATISTICS::printGridToStringAsTable( wxGrid* aGrid, wxString&
|
||||
tmp.Printf( " %*s |", widths[col], aGrid->GetColLabelValue( col ) );
|
||||
else
|
||||
tmp.Printf( " %*s |", widths[col], aGrid->GetCellValue( 0, col ) );
|
||||
|
||||
aStr << tmp;
|
||||
}
|
||||
|
||||
@ -572,6 +585,7 @@ void DIALOG_BOARD_STATISTICS::printGridToStringAsTable( wxGrid* aGrid, wxString&
|
||||
tmp.Printf( "|%-*s |", widths[0], aGrid->GetCellValue( row, 0 ) );
|
||||
else
|
||||
tmp.Printf( "|" );
|
||||
|
||||
aStr << tmp;
|
||||
|
||||
for( int col = firstCol; col < aGrid->GetNumberCols(); col++ )
|
||||
@ -579,10 +593,12 @@ void DIALOG_BOARD_STATISTICS::printGridToStringAsTable( wxGrid* aGrid, wxString&
|
||||
tmp.Printf( " %*s |", widths[col], aGrid->GetCellValue( row, col ) );
|
||||
aStr << tmp;
|
||||
}
|
||||
|
||||
aStr << "\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::adjustDrillGridColumns()
|
||||
{
|
||||
int newTotalWidth = m_gridDrills->GetClientSize().GetWidth();
|
||||
@ -605,7 +621,7 @@ void DIALOG_BOARD_STATISTICS::adjustDrillGridColumns()
|
||||
m_gridDrills->Refresh();
|
||||
}
|
||||
|
||||
// If any checkbox clicked, we have to refresh dialog data
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::checkboxClicked( wxCommandEvent& aEvent )
|
||||
{
|
||||
s_savedDialogState.excludeNoPins = m_checkBoxExcludeComponentsNoPins->GetValue();
|
||||
@ -617,6 +633,7 @@ void DIALOG_BOARD_STATISTICS::checkboxClicked( wxCommandEvent& aEvent )
|
||||
drillsPanel->Layout();
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::saveReportClicked( wxCommandEvent& aEvent )
|
||||
{
|
||||
FILE* outFile;
|
||||
@ -639,7 +656,7 @@ void DIALOG_BOARD_STATISTICS::saveReportClicked( wxCommandEvent& aEvent )
|
||||
|
||||
outFile = wxFopen( saveFileDialog.GetPath(), "wt" );
|
||||
|
||||
if( outFile == NULL )
|
||||
if( outFile == nullptr )
|
||||
{
|
||||
msg.Printf( _( "Failed to create file '%s'." ), saveFileDialog.GetPath() );
|
||||
DisplayErrorMessage( this, msg );
|
||||
@ -656,9 +673,12 @@ void DIALOG_BOARD_STATISTICS::saveReportClicked( wxCommandEvent& aEvent )
|
||||
|
||||
if( m_hasOutline )
|
||||
{
|
||||
msg << wxS( "- " ) << _( "Width" ) << wxS( ": " ) << MessageTextFromValue( GetUserUnits(), m_boardWidth ) << "\n";
|
||||
msg << wxS( "- " ) << _( "Height" ) << wxS( ": " )<< MessageTextFromValue( GetUserUnits(), m_boardHeight ) << "\n";
|
||||
msg << wxS( "- " ) << _( "Area" ) + wxS( ": " ) << MessageTextFromValue( GetUserUnits(), m_boardArea, true, EDA_DATA_TYPE::AREA );
|
||||
msg << wxS( "- " ) << _( "Width" ) << wxS( ": " ) <<
|
||||
MessageTextFromValue( GetUserUnits(), m_boardWidth ) << "\n";
|
||||
msg << wxS( "- " ) << _( "Height" ) << wxS( ": " ) <<
|
||||
MessageTextFromValue( GetUserUnits(), m_boardHeight ) << "\n";
|
||||
msg << wxS( "- " ) << _( "Area" ) + wxS( ": " ) <<
|
||||
MessageTextFromValue( GetUserUnits(), m_boardArea, true, EDA_DATA_TYPE::AREA );
|
||||
msg << "\n";
|
||||
}
|
||||
else
|
||||
@ -687,6 +707,7 @@ void DIALOG_BOARD_STATISTICS::saveReportClicked( wxCommandEvent& aEvent )
|
||||
wxString tmp;
|
||||
|
||||
widths.reserve( labels.size() );
|
||||
|
||||
for( const auto& label : labels )
|
||||
widths.push_back( label.size() );
|
||||
|
||||
@ -731,6 +752,7 @@ void DIALOG_BOARD_STATISTICS::saveReportClicked( wxCommandEvent& aEvent )
|
||||
fclose( outFile );
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_BOARD_STATISTICS::drillGridSize( wxSizeEvent& aEvent )
|
||||
{
|
||||
aEvent.Skip();
|
||||
@ -748,6 +770,7 @@ void DIALOG_BOARD_STATISTICS::drillGridSort( wxGridEvent& aEvent )
|
||||
updateDrillGrid();
|
||||
}
|
||||
|
||||
|
||||
DIALOG_BOARD_STATISTICS::~DIALOG_BOARD_STATISTICS()
|
||||
{
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2020-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -65,15 +65,17 @@ WX_HTML_REPORT_BOX* DIALOG_CONSTRAINTS_REPORTER::AddPage( const wxString& aTitle
|
||||
|
||||
WX_HTML_REPORT_BOX* reporter = new WX_HTML_REPORT_BOX( panel, wxID_ANY, wxDefaultPosition,
|
||||
wxDefaultSize,
|
||||
wxHW_SCROLLBAR_AUTO|wxBORDER_SIMPLE );
|
||||
wxHW_SCROLLBAR_AUTO | wxBORDER_SIMPLE );
|
||||
|
||||
sizer->Add( reporter, 1, wxEXPAND|wxALL, 5 );
|
||||
sizer->Add( reporter, 1, wxEXPAND | wxALL, 5 );
|
||||
panel->SetSizer( sizer );
|
||||
panel->Layout();
|
||||
m_notebook->AddPage( panel, aTitle );
|
||||
|
||||
reporter->SetUnits( m_frame->GetUserUnits() );
|
||||
reporter->Connect( wxEVT_COMMAND_HTML_LINK_CLICKED, wxHtmlLinkEventHandler( DIALOG_CONSTRAINTS_REPORTER::OnErrorLinkClicked ), NULL, this );
|
||||
reporter->Connect( wxEVT_COMMAND_HTML_LINK_CLICKED,
|
||||
wxHtmlLinkEventHandler( DIALOG_CONSTRAINTS_REPORTER::OnErrorLinkClicked ),
|
||||
nullptr, this );
|
||||
|
||||
return reporter;
|
||||
}
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2009-2016 Dick Hollenbeck, dick@softplc.com
|
||||
* Copyright (C) 2004-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2004-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -153,8 +153,6 @@ void DIALOG_DRC::initValues()
|
||||
}
|
||||
|
||||
|
||||
// PROGRESS_REPORTER calls
|
||||
|
||||
bool DIALOG_DRC::updateUI()
|
||||
{
|
||||
double cur = (double) m_progress.load() / m_maxProgress;
|
||||
@ -502,8 +500,9 @@ void DIALOG_DRC::OnDRCItemRClick( wxDataViewEvent& aEvent )
|
||||
static_cast<RC_TREE_MODEL*>( aEvent.GetModel() )->ValueChanged( node );
|
||||
modified = true;
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case 2:
|
||||
{
|
||||
@ -522,8 +521,9 @@ void DIALOG_DRC::OnDRCItemRClick( wxDataViewEvent& aEvent )
|
||||
|
||||
modified = true;
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case 3:
|
||||
{
|
||||
@ -531,8 +531,8 @@ void DIALOG_DRC::OnDRCItemRClick( wxDataViewEvent& aEvent )
|
||||
BOARD_INSPECTION_TOOL* inspectionTool = toolMgr->GetTool<BOARD_INSPECTION_TOOL>();
|
||||
|
||||
inspectionTool->InspectDRCError( node->m_RcItem );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case 4:
|
||||
bds().m_DRCSeverities[ rcItem->GetErrorCode() ] = RPT_SEVERITY_ERROR;
|
||||
@ -582,8 +582,8 @@ void DIALOG_DRC::OnDRCItemRClick( wxDataViewEvent& aEvent )
|
||||
// Rebuild model and view
|
||||
static_cast<RC_TREE_MODEL*>( aEvent.GetModel() )->SetProvider( m_markersProvider );
|
||||
modified = true;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case 7:
|
||||
m_frame->ShowBoardSetupDialog( _( "Violation Severity" ) );
|
||||
@ -786,7 +786,7 @@ bool DIALOG_DRC::writeReport( const wxString& aFullFileName )
|
||||
{
|
||||
FILE* fp = wxFopen( aFullFileName, wxT( "w" ) );
|
||||
|
||||
if( fp == NULL )
|
||||
if( fp == nullptr )
|
||||
return false;
|
||||
|
||||
std::map<KIID, EDA_ITEM*> itemMap;
|
||||
@ -959,7 +959,9 @@ void DIALOG_DRC::updateDisplayedCounts()
|
||||
m_Notebook->SetPageText( 1, msg );
|
||||
|
||||
if( m_footprintTestsRun )
|
||||
{
|
||||
msg.sprintf( m_footprintsTitleTemplate, numFootprints );
|
||||
}
|
||||
else
|
||||
{
|
||||
msg = m_footprintsTitleTemplate;
|
||||
|
@ -4,7 +4,7 @@
|
||||
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2015 Dick Hollenbeck, dick@softplc.com
|
||||
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
|
||||
* Copyright (C) 2004-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2004-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -49,15 +49,19 @@
|
||||
#include <fp_lib_table.h>
|
||||
|
||||
|
||||
int DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::m_page = 0; // remember the last open page during session
|
||||
// Remember the last open page during session.
|
||||
int DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::m_page = 0;
|
||||
|
||||
|
||||
DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR( FOOTPRINT_EDIT_FRAME* aParent,
|
||||
FOOTPRINT* aFootprint ) :
|
||||
DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR(
|
||||
FOOTPRINT_EDIT_FRAME* aParent,
|
||||
FOOTPRINT* aFootprint ) :
|
||||
DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR_BASE( aParent ),
|
||||
m_netClearance( aParent, m_NetClearanceLabel, m_NetClearanceCtrl, m_NetClearanceUnits ),
|
||||
m_solderMask( aParent, m_SolderMaskMarginLabel, m_SolderMaskMarginCtrl, m_SolderMaskMarginUnits ),
|
||||
m_solderPaste( aParent, m_SolderPasteMarginLabel, m_SolderPasteMarginCtrl, m_SolderPasteMarginUnits ),
|
||||
m_solderMask( aParent, m_SolderMaskMarginLabel, m_SolderMaskMarginCtrl,
|
||||
m_SolderMaskMarginUnits ),
|
||||
m_solderPaste( aParent, m_SolderPasteMarginLabel, m_SolderPasteMarginCtrl,
|
||||
m_SolderPasteMarginUnits ),
|
||||
m_inSelect( false )
|
||||
{
|
||||
m_frame = aParent;
|
||||
@ -89,6 +93,7 @@ DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR( FO
|
||||
m_itemsGrid->ShowHideColumns( m_frame->GetSettings()->m_FootprintTextShownColumns );
|
||||
|
||||
PCBNEW_SETTINGS* cfg = Pgm().GetSettingsManager().GetAppSettings<PCBNEW_SETTINGS>();
|
||||
|
||||
if( cfg->m_lastFootprint3dDir.IsEmpty() )
|
||||
{
|
||||
wxGetEnv( KICAD6_3DMODEL_DIR, &cfg->m_lastFootprint3dDir );
|
||||
@ -158,7 +163,9 @@ DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR( FO
|
||||
m_button3DShapeRemove->SetBitmap( KiBitmap( BITMAPS::small_trash ) );
|
||||
|
||||
// wxFormBuilder doesn't include this event...
|
||||
m_itemsGrid->Connect( wxEVT_GRID_CELL_CHANGING, wxGridEventHandler( DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::OnGridCellChanging ), NULL, this );
|
||||
m_itemsGrid->Connect( wxEVT_GRID_CELL_CHANGING,
|
||||
wxGridEventHandler( DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::OnGridCellChanging ),
|
||||
nullptr, this );
|
||||
|
||||
finishDialogSettings();
|
||||
}
|
||||
@ -172,7 +179,9 @@ DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::~DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR()
|
||||
// Prevents crash bug in wxGrid's d'tor
|
||||
m_itemsGrid->DestroyTable( m_texts );
|
||||
|
||||
m_itemsGrid->Disconnect( wxEVT_GRID_CELL_CHANGING, wxGridEventHandler( DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::OnGridCellChanging ), NULL, this );
|
||||
m_itemsGrid->Disconnect( wxEVT_GRID_CELL_CHANGING,
|
||||
wxGridEventHandler( DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::OnGridCellChanging ),
|
||||
nullptr, this );
|
||||
|
||||
// Delete the GRID_TRICKS.
|
||||
m_itemsGrid->PopEventHandler( true );
|
||||
@ -283,6 +292,7 @@ bool DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::TransferDataToWindow()
|
||||
|
||||
wxString default_path;
|
||||
wxGetEnv( KICAD6_3DMODEL_DIR, &default_path );
|
||||
|
||||
#ifdef __WINDOWS__
|
||||
default_path.Replace( wxT( "/" ), wxT( "\\" ) );
|
||||
#endif
|
||||
@ -396,7 +406,7 @@ void DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::On3DModelCellChanged( wxGridEvent& a
|
||||
filename.insert( 0, wxT( ":" ) );
|
||||
|
||||
#ifdef __WINDOWS__
|
||||
// In Kicad files, filenames and paths are stored using Unix notation
|
||||
// In KiCad files, filenames and paths are stored using Unix notation
|
||||
filename.Replace( wxT( "\\" ), wxT( "/" ) );
|
||||
#endif
|
||||
|
||||
@ -482,7 +492,7 @@ void DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::OnAdd3DModel( wxCommandEvent& )
|
||||
filename = alias + wxT( ":" ) + shortPath;
|
||||
|
||||
#ifdef __WINDOWS__
|
||||
// In Kicad files, filenames and paths are stored using Unix notation
|
||||
// In KiCad files, filenames and paths are stored using Unix notation
|
||||
model.m_Filename.Replace( "\\", "/" );
|
||||
#endif
|
||||
|
||||
@ -690,6 +700,7 @@ bool DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::TransferDataFromWindow()
|
||||
// A -50% margin ratio means no paste on a pad, the ratio must be >= -50%
|
||||
if( dtmp < -50.0 )
|
||||
dtmp = -50.0;
|
||||
|
||||
// A margin ratio is always <= 0
|
||||
// 0 means use full pad copper area
|
||||
if( dtmp > 0.0 )
|
||||
@ -832,7 +843,7 @@ void DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::OnUpdateUI( wxUpdateUIEvent& event )
|
||||
|
||||
if( m_itemsGrid->IsCellEditControlShown() )
|
||||
{
|
||||
// Currently: nonthing to do
|
||||
// Currently: nothing to do
|
||||
}
|
||||
|
||||
// Handle a delayed focus. The delay allows us to:
|
||||
|
@ -2,7 +2,7 @@
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2009-2016 Jean-Pierre Charras, jean-pierre.charras at wanadoo.fr
|
||||
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -33,6 +33,7 @@
|
||||
#include <tools/global_edit_tool.h>
|
||||
#include "dialog_global_edit_tracks_and_vias_base.h"
|
||||
|
||||
|
||||
// Columns of netclasses grid
|
||||
enum {
|
||||
GRID_NAME = 0,
|
||||
@ -133,7 +134,9 @@ DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS( PCB_EDIT
|
||||
m_netclassGrid->SetCellHighlightPenWidth( 0 );
|
||||
m_sdbSizerOK->SetDefault();
|
||||
|
||||
m_netFilter->Connect( NET_SELECTED, wxCommandEventHandler( DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::OnNetFilterSelect ), NULL, this );
|
||||
m_netFilter->Connect( NET_SELECTED,
|
||||
wxCommandEventHandler( DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::OnNetFilterSelect ),
|
||||
nullptr, this );
|
||||
|
||||
finishDialogSettings();
|
||||
}
|
||||
@ -151,7 +154,9 @@ DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::~DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS()
|
||||
g_layerFilter = m_layerFilter->GetLayerSelection();
|
||||
g_filterSelected = m_selectedItemsFilter->GetValue();
|
||||
|
||||
m_netFilter->Disconnect( NET_SELECTED, wxCommandEventHandler( DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::OnNetFilterSelect ), NULL, this );
|
||||
m_netFilter->Disconnect( NET_SELECTED,
|
||||
wxCommandEventHandler( DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::OnNetFilterSelect ),
|
||||
nullptr, this );
|
||||
|
||||
delete[] m_originalColWidths;
|
||||
}
|
||||
@ -210,6 +215,7 @@ void DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::buildNetclassesGrid()
|
||||
SET_NETCLASS_VALUE( 1, GRID_uVIADRILL, defaultNetclass->GetuViaDrill() );
|
||||
|
||||
int row = 2;
|
||||
|
||||
for( const auto& netclass : netclasses )
|
||||
{
|
||||
m_netclassGrid->SetCellValue( row, GRID_NAME, netclass.first );
|
||||
@ -237,7 +243,7 @@ bool DIALOG_GLOBAL_EDIT_TRACKS_AND_VIAS::TransferDataToWindow()
|
||||
else if( item )
|
||||
m_netclassFilter->SetStringSelection( item->GetNet()->GetNetClassName() );
|
||||
|
||||
if( g_filterByNet && m_brd->FindNet( g_netFilter ) != NULL )
|
||||
if( g_filterByNet && m_brd->FindNet( g_netFilter ) != nullptr )
|
||||
{
|
||||
m_netFilter->SetSelectedNet( g_netFilter );
|
||||
m_netFilterOpt->SetValue( true );
|
||||
|
@ -7,7 +7,7 @@
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -67,9 +67,10 @@ DIALOG_PAD_PRIMITIVES_PROPERTIES::DIALOG_PAD_PRIMITIVES_PROPERTIES( wxWindow* aP
|
||||
finishDialogSettings();
|
||||
}
|
||||
|
||||
|
||||
bool DIALOG_PAD_PRIMITIVES_PROPERTIES::TransferDataToWindow()
|
||||
{
|
||||
if( m_shape == NULL )
|
||||
if( m_shape == nullptr )
|
||||
return false;
|
||||
|
||||
m_thickness.SetValue( m_shape->GetWidth() );
|
||||
@ -169,6 +170,7 @@ bool DIALOG_PAD_PRIMITIVES_PROPERTIES::TransferDataToWindow()
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
bool DIALOG_PAD_PRIMITIVES_PROPERTIES::TransferDataFromWindow()
|
||||
{
|
||||
if( m_thickness.GetValue() == 0 && !m_filledCtrl->GetValue() )
|
||||
@ -201,6 +203,7 @@ bool DIALOG_PAD_PRIMITIVES_PROPERTIES::TransferDataFromWindow()
|
||||
// the start point in m_End
|
||||
m_shape->SetStart( wxPoint( m_endX.GetValue(), m_endY.GetValue() ) );
|
||||
m_shape->SetEnd( wxPoint( m_startX.GetValue(), m_startY.GetValue() ) );
|
||||
|
||||
// arc angle
|
||||
m_shape->SetAngle( m_radius.GetValue() );
|
||||
break;
|
||||
@ -249,7 +252,9 @@ DIALOG_PAD_PRIMITIVE_POLY_PROPS::DIALOG_PAD_PRIMITIVE_POLY_PROPS( wxWindow* aPar
|
||||
m_sdbSizerOK->SetDefault();
|
||||
GetSizer()->SetSizeHints( this );
|
||||
|
||||
m_gridCornersList->Connect( wxEVT_GRID_CELL_CHANGING, wxGridEventHandler( DIALOG_PAD_PRIMITIVE_POLY_PROPS::onCellChanging ), NULL, this );
|
||||
m_gridCornersList->Connect( wxEVT_GRID_CELL_CHANGING,
|
||||
wxGridEventHandler( DIALOG_PAD_PRIMITIVE_POLY_PROPS::onCellChanging ),
|
||||
nullptr, this );
|
||||
|
||||
// Now all widgets have the size fixed, call FinishDialogSettings
|
||||
finishDialogSettings();
|
||||
@ -258,13 +263,15 @@ DIALOG_PAD_PRIMITIVE_POLY_PROPS::DIALOG_PAD_PRIMITIVE_POLY_PROPS( wxWindow* aPar
|
||||
|
||||
DIALOG_PAD_PRIMITIVE_POLY_PROPS::~DIALOG_PAD_PRIMITIVE_POLY_PROPS()
|
||||
{
|
||||
m_gridCornersList->Disconnect( wxEVT_GRID_CELL_CHANGING, wxGridEventHandler( DIALOG_PAD_PRIMITIVE_POLY_PROPS::onCellChanging ), NULL, this );
|
||||
m_gridCornersList->Disconnect( wxEVT_GRID_CELL_CHANGING,
|
||||
wxGridEventHandler( DIALOG_PAD_PRIMITIVE_POLY_PROPS::onCellChanging ),
|
||||
nullptr, this );
|
||||
}
|
||||
|
||||
|
||||
bool DIALOG_PAD_PRIMITIVE_POLY_PROPS::TransferDataToWindow()
|
||||
{
|
||||
if( m_shape == NULL )
|
||||
if( m_shape == nullptr )
|
||||
return false;
|
||||
|
||||
m_thickness.SetValue( m_shape->GetWidth() );
|
||||
@ -285,6 +292,7 @@ bool DIALOG_PAD_PRIMITIVE_POLY_PROPS::TransferDataToWindow()
|
||||
|
||||
// enter others corner coordinates
|
||||
wxString msg;
|
||||
|
||||
for( unsigned row = 0; row < m_currPoints.size(); ++row )
|
||||
{
|
||||
// Row label is "Corner x"
|
||||
@ -321,7 +329,6 @@ bool DIALOG_PAD_PRIMITIVE_POLY_PROPS::Validate()
|
||||
}
|
||||
|
||||
|
||||
// test for a valid polygon (a not self intersectiong polygon)
|
||||
bool DIALOG_PAD_PRIMITIVE_POLY_PROPS::doValidate( bool aRemoveRedundantCorners )
|
||||
{
|
||||
if( !m_gridCornersList->CommitPendingChanges() )
|
||||
@ -413,6 +420,7 @@ void DIALOG_PAD_PRIMITIVE_POLY_PROPS::OnButtonAdd( wxCommandEvent& event )
|
||||
m_panelPoly->Refresh();
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_PAD_PRIMITIVE_POLY_PROPS::OnButtonDelete( wxCommandEvent& event )
|
||||
{
|
||||
if( !m_gridCornersList->CommitPendingChanges() )
|
||||
@ -442,12 +450,14 @@ void DIALOG_PAD_PRIMITIVE_POLY_PROPS::OnButtonDelete( wxCommandEvent& event )
|
||||
TransferDataToWindow();
|
||||
|
||||
m_gridCornersList->ForceRefresh();
|
||||
|
||||
// select the row previous to the last deleted row
|
||||
m_gridCornersList->SelectRow( std::max( 0, selections[ 0 ] - 1 ) );
|
||||
|
||||
m_panelPoly->Refresh();
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_PAD_PRIMITIVE_POLY_PROPS::onPaintPolyPanel( wxPaintEvent& event )
|
||||
{
|
||||
wxPaintDC dc( m_panelPoly );
|
||||
@ -476,8 +486,8 @@ void DIALOG_PAD_PRIMITIVE_POLY_PROPS::onPaintPolyPanel( wxPaintEvent& event )
|
||||
// Draw X and Y axis. This is particularly useful to show the
|
||||
// reference position of basic shape
|
||||
// Axis are drawn before the polygon to avoid masking segments on axis
|
||||
GRLine( NULL, &dc, -dc_size.x, 0, dc_size.x, 0, 0, LIGHTBLUE ); // X axis
|
||||
GRLine( NULL, &dc, 0, -dc_size.y, 0, dc_size.y, 0, LIGHTBLUE ); // Y axis
|
||||
GRLine( nullptr, &dc, -dc_size.x, 0, dc_size.x, 0, 0, LIGHTBLUE ); // X axis
|
||||
GRLine( nullptr, &dc, 0, -dc_size.y, 0, dc_size.y, 0, LIGHTBLUE ); // Y axis
|
||||
|
||||
// Draw polygon.
|
||||
// The selected edge(s) are shown in selectcolor, the others in normalcolor.
|
||||
@ -498,23 +508,27 @@ void DIALOG_PAD_PRIMITIVE_POLY_PROPS::onPaintPolyPanel( wxPaintEvent& event )
|
||||
if( jj >= m_currPoints.size() )
|
||||
jj = 0;
|
||||
|
||||
GRLine( NULL, &dc, m_currPoints[ii] * scale, m_currPoints[jj] * scale, m_thickness.GetValue() * scale, color );
|
||||
GRLine( nullptr, &dc, m_currPoints[ii] * scale, m_currPoints[jj] * scale,
|
||||
m_thickness.GetValue() * scale, color );
|
||||
}
|
||||
|
||||
event.Skip();
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_PAD_PRIMITIVE_POLY_PROPS::onPolyPanelResize( wxSizeEvent& event )
|
||||
{
|
||||
m_panelPoly->Refresh();
|
||||
event.Skip();
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_PAD_PRIMITIVE_POLY_PROPS::onGridSelect( wxGridRangeSelectEvent& event )
|
||||
{
|
||||
m_panelPoly->Refresh();
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_PAD_PRIMITIVE_POLY_PROPS::onCellChanging( wxGridEvent& event )
|
||||
{
|
||||
int row = event.GetRow();
|
||||
@ -535,8 +549,6 @@ void DIALOG_PAD_PRIMITIVE_POLY_PROPS::onCellChanging( wxGridEvent& event )
|
||||
}
|
||||
|
||||
|
||||
// A dialog to apply geometry transforms to a shape or set of shapes
|
||||
// (move, rotate around origin, scaling factor, duplication).
|
||||
DIALOG_PAD_PRIMITIVES_TRANSFORM::DIALOG_PAD_PRIMITIVES_TRANSFORM( wxWindow* aParent,
|
||||
PCB_BASE_FRAME* aFrame,
|
||||
std::vector<std::shared_ptr<PCB_SHAPE>>& aList,
|
||||
@ -597,8 +609,10 @@ void DIALOG_PAD_PRIMITIVES_TRANSFORM::Transform( std::vector<std::shared_ptr<PCB
|
||||
{
|
||||
std::shared_ptr<PCB_SHAPE> shape;
|
||||
|
||||
if( aList == NULL )
|
||||
if( aList == nullptr )
|
||||
{
|
||||
shape = m_list[idx];
|
||||
}
|
||||
else
|
||||
{
|
||||
aList->emplace_back( std::make_shared<PCB_SHAPE>( *m_list[idx] ) );
|
||||
|
@ -3,8 +3,8 @@
|
||||
*
|
||||
* Copyright (C) 2019 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2013 Dick Hollenbeck, dick@softplc.com
|
||||
* Copyright (C) 2008-2013 Wayne Stambaugh <stambaughw@verizon.net>
|
||||
* Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2008-2013 Wayne Stambaugh <stambaughw@gmail.com>
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -66,6 +66,7 @@ static PAD_SHAPE code_shape[] =
|
||||
PAD_SHAPE::CUSTOM // choice = PAD_SHAPE::CUSTOM_RECT_ANCHOR
|
||||
};
|
||||
|
||||
|
||||
// the ordered index of the pad shape wxChoice in dialog.
|
||||
// keep it consistent with code_shape[] and dialog strings
|
||||
enum CODE_CHOICE
|
||||
@ -81,6 +82,7 @@ enum CODE_CHOICE
|
||||
CHOICE_SHAPE_CUSTOM_RECT_ANCHOR
|
||||
};
|
||||
|
||||
|
||||
static PAD_ATTRIB code_type[] =
|
||||
{
|
||||
PAD_ATTRIB::PTH,
|
||||
@ -91,13 +93,15 @@ static PAD_ATTRIB code_type[] =
|
||||
// only on tech layers (usually only on paste layer
|
||||
};
|
||||
|
||||
// Thse define have the same value as the m_PadType wxChoice GetSelected() return value
|
||||
|
||||
// These define have the same value as the m_PadType wxChoice GetSelected() return value
|
||||
#define PTH_DLG_TYPE 0
|
||||
#define SMD_DLG_TYPE 1
|
||||
#define CONN_DLG_TYPE 2
|
||||
#define NPTH_DLG_TYPE 3
|
||||
#define APERTURE_DLG_TYPE 4
|
||||
|
||||
|
||||
void PCB_BASE_FRAME::ShowPadPropertiesDialog( PAD* aPad )
|
||||
{
|
||||
DIALOG_PAD_PROPERTIES dlg( this, aPad );
|
||||
@ -164,7 +168,7 @@ DIALOG_PAD_PROPERTIES::DIALOG_PAD_PROPERTIES( PCB_BASE_FRAME* aParent, PAD* aPad
|
||||
m_nonCopperWarningIcon->SetBitmap( KiBitmap( BITMAPS::dialog_warning ) );
|
||||
|
||||
m_padMaster = m_parent->GetDesignSettings().m_Pad_Master.get();
|
||||
m_dummyPad = new PAD( (FOOTPRINT*) NULL );
|
||||
m_dummyPad = new PAD( (FOOTPRINT*) nullptr );
|
||||
|
||||
if( aPad )
|
||||
{
|
||||
@ -209,7 +213,9 @@ DIALOG_PAD_PROPERTIES::DIALOG_PAD_PROPERTIES( PCB_BASE_FRAME* aParent, PAD* aPad
|
||||
m_sdbSizerOK->SetDefault();
|
||||
m_canUpdate = true;
|
||||
|
||||
m_PadNetSelector->Connect( NET_SELECTED, wxCommandEventHandler( DIALOG_PAD_PROPERTIES::OnValuesChanged ), NULL, this );
|
||||
m_PadNetSelector->Connect( NET_SELECTED,
|
||||
wxCommandEventHandler( DIALOG_PAD_PROPERTIES::OnValuesChanged ),
|
||||
nullptr, this );
|
||||
|
||||
// Now all widgets have the size fixed, call FinishDialogSettings
|
||||
finishDialogSettings();
|
||||
@ -221,14 +227,17 @@ DIALOG_PAD_PROPERTIES::DIALOG_PAD_PROPERTIES( PCB_BASE_FRAME* aParent, PAD* aPad
|
||||
|
||||
DIALOG_PAD_PROPERTIES::~DIALOG_PAD_PROPERTIES()
|
||||
{
|
||||
m_PadNetSelector->Disconnect( NET_SELECTED, wxCommandEventHandler( DIALOG_PAD_PROPERTIES::OnValuesChanged ), NULL, this );
|
||||
m_PadNetSelector->Disconnect( NET_SELECTED,
|
||||
wxCommandEventHandler( DIALOG_PAD_PROPERTIES::OnValuesChanged ),
|
||||
nullptr, this );
|
||||
|
||||
delete m_dummyPad;
|
||||
delete m_axisOrigin;
|
||||
}
|
||||
|
||||
|
||||
bool DIALOG_PAD_PROPERTIES::m_sketchPreview = false; // Stores the pad draw option during a session
|
||||
// Store the pad draw option during a session.
|
||||
bool DIALOG_PAD_PROPERTIES::m_sketchPreview = false;
|
||||
|
||||
|
||||
void DIALOG_PAD_PROPERTIES::OnInitDialog( wxInitDialogEvent& event )
|
||||
@ -308,6 +317,7 @@ void DIALOG_PAD_PROPERTIES::prepareCanvas()
|
||||
// gives a non null grid size (0.001mm) because GAL layer does not like a 0 size grid:
|
||||
double gridsize = 0.001 * IU_PER_MM;
|
||||
view->GetGAL()->SetGridSize( VECTOR2D( gridsize, gridsize ) );
|
||||
|
||||
// And do not show the grid:
|
||||
view->GetGAL()->SetGridVisibility( false );
|
||||
view->Add( m_dummyPad );
|
||||
@ -691,7 +701,8 @@ void DIALOG_PAD_PROPERTIES::displayPrimitivesList()
|
||||
for( wxString& s : bs_info )
|
||||
s.Empty();
|
||||
|
||||
bs_info[4] = _( "width" ) + wxS( " " )+ MessageTextFromValue( m_units, primitive->GetWidth() );
|
||||
bs_info[4] = _( "width" ) + wxS( " " )+ MessageTextFromValue( m_units,
|
||||
primitive->GetWidth() );
|
||||
|
||||
switch( primitive->GetShape() )
|
||||
{
|
||||
@ -710,7 +721,8 @@ void DIALOG_PAD_PROPERTIES::displayPrimitivesList()
|
||||
case PCB_SHAPE_TYPE::ARC: // Arc with rounded ends
|
||||
bs_info[0] = _( "Arc" );
|
||||
bs_info[1] = _( "center" ) + wxS( " " )+ formatCoord( m_units, primitive->GetCenter() );
|
||||
bs_info[2] = _( "start" ) + wxS( " " )+ formatCoord( m_units, primitive->GetArcStart() );
|
||||
bs_info[2] = _( "start" ) + wxS( " " )+ formatCoord( m_units,
|
||||
primitive->GetArcStart() );
|
||||
bs_info[3] = _( "angle" ) + wxS( " " )+ FormatAngle( primitive->GetAngle() );
|
||||
break;
|
||||
|
||||
@ -721,7 +733,8 @@ void DIALOG_PAD_PROPERTIES::displayPrimitivesList()
|
||||
bs_info[0] = _( "circle" );
|
||||
|
||||
bs_info[1] = formatCoord( m_units, primitive->GetStart() );
|
||||
bs_info[2] = _( "radius" ) + wxS( " " )+ MessageTextFromValue( m_units, primitive->GetRadius() );
|
||||
bs_info[2] = _( "radius" ) + wxS( " " )+ MessageTextFromValue( m_units,
|
||||
primitive->GetRadius() );
|
||||
break;
|
||||
|
||||
case PCB_SHAPE_TYPE::POLYGON: // polygon
|
||||
@ -747,6 +760,7 @@ void DIALOG_PAD_PROPERTIES::displayPrimitivesList()
|
||||
m_listCtrlPrimitives->SetColumnWidth( ii, wxLIST_AUTOSIZE );
|
||||
}
|
||||
|
||||
|
||||
void DIALOG_PAD_PROPERTIES::OnResize( wxSizeEvent& event )
|
||||
{
|
||||
redraw();
|
||||
@ -776,7 +790,6 @@ void DIALOG_PAD_PROPERTIES::onChangePadMode( wxCommandEvent& event )
|
||||
}
|
||||
|
||||
|
||||
|
||||
void DIALOG_PAD_PROPERTIES::OnPadShapeSelection( wxCommandEvent& event )
|
||||
{
|
||||
switch( m_PadShapeSelector->GetSelection() )
|
||||
@ -798,8 +811,9 @@ void DIALOG_PAD_PROPERTIES::OnPadShapeSelection( wxCommandEvent& event )
|
||||
// A reasonable default (from IPC-7351C)
|
||||
if( m_dummyPad->GetRoundRectRadiusRatio() == 0.0 )
|
||||
m_tcCornerSizeRatio->ChangeValue( "25" );
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case CHOICE_SHAPE_CHAMFERED_RECT:
|
||||
m_shapePropsBook->SetSelection( 3 );
|
||||
@ -820,8 +834,8 @@ void DIALOG_PAD_PROPERTIES::OnPadShapeSelection( wxCommandEvent& event )
|
||||
m_cbTopRight->SetValue( false );
|
||||
m_cbBottomLeft->SetValue( false );
|
||||
m_cbBottomRight->SetValue( false );
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
||||
case CHOICE_SHAPE_CHAMFERED_ROUNDED_RECT:
|
||||
m_shapePropsBook->SetSelection( 4 );
|
||||
@ -1197,7 +1211,6 @@ void DIALOG_PAD_PROPERTIES::OnSetCopperLayers( wxCommandEvent& event )
|
||||
}
|
||||
|
||||
|
||||
// Called when select/deselect a layer.
|
||||
void DIALOG_PAD_PROPERTIES::OnSetLayers( wxCommandEvent& event )
|
||||
{
|
||||
transferDataToPad( m_dummyPad );
|
||||
@ -1205,7 +1218,6 @@ void DIALOG_PAD_PROPERTIES::OnSetLayers( wxCommandEvent& event )
|
||||
}
|
||||
|
||||
|
||||
// test if all values are acceptable for the pad
|
||||
bool DIALOG_PAD_PROPERTIES::padValuesOK()
|
||||
{
|
||||
bool error = transferDataToPad( m_dummyPad );
|
||||
@ -1292,7 +1304,7 @@ bool DIALOG_PAD_PROPERTIES::padValuesOK()
|
||||
|
||||
// Some pads need a positive solder paste clearance (mainly for BGA with small pads)
|
||||
// However, a positive value can create issues if the resulting shape is too big.
|
||||
// (like a solder paste creating a solder paste area on a neighbour pad or on the solder mask)
|
||||
// (like a solder paste creating a solder paste area on a neighbor pad or on the solder mask)
|
||||
// So we could ask for user to confirm the choice
|
||||
// For now we just check for disappearing paste
|
||||
wxSize paste_size;
|
||||
@ -1541,6 +1553,7 @@ bool DIALOG_PAD_PROPERTIES::TransferDataFromWindow()
|
||||
return false;
|
||||
|
||||
transferDataToPad( m_padMaster );
|
||||
|
||||
// m_padMaster is a pattern: ensure there is no net for this pad:
|
||||
m_padMaster->SetNetCode( NETINFO_LIST::UNCONNECTED );
|
||||
|
||||
@ -2035,8 +2048,8 @@ void DIALOG_PAD_PROPERTIES::OnValuesChanged( wxCommandEvent& event )
|
||||
if( m_canUpdate )
|
||||
{
|
||||
transferDataToPad( m_dummyPad );
|
||||
// If the pad size has changed, update the displayed values
|
||||
// for rounded rect pads
|
||||
|
||||
// If the pad size has changed, update the displayed values for rounded rect pads.
|
||||
updateRoundRectCornerValues();
|
||||
|
||||
redraw();
|
||||
@ -2093,20 +2106,18 @@ void DIALOG_PAD_PROPERTIES::OnPrimitiveSelection( wxListEvent& event )
|
||||
}
|
||||
|
||||
|
||||
/// Called on a double click on the basic shapes list
|
||||
void DIALOG_PAD_PROPERTIES::onPrimitiveDClick( wxMouseEvent& event )
|
||||
{
|
||||
editPrimitive();
|
||||
}
|
||||
|
||||
|
||||
// Called on a click on basic shapes list panel button
|
||||
void DIALOG_PAD_PROPERTIES::onEditPrimitive( wxCommandEvent& event )
|
||||
{
|
||||
editPrimitive();
|
||||
}
|
||||
|
||||
// Called on a click on basic shapes list panel button
|
||||
|
||||
void DIALOG_PAD_PROPERTIES::onDeletePrimitive( wxCommandEvent& event )
|
||||
{
|
||||
long select = m_listCtrlPrimitives->GetFirstSelected();
|
||||
|
@ -280,7 +280,6 @@ void DIALOG_PRINT_PCBNEW::createLeftPanel()
|
||||
sizerLeft->Add( copperLabel, 0, wxRIGHT, 5 );
|
||||
sizerLeft->Add( m_listCopperLayers, 1, wxEXPAND | wxBOTTOM | wxRIGHT, 5 );
|
||||
|
||||
|
||||
// Technical layer list
|
||||
auto technicalLabel = new wxStaticText( sbLayersSizer->GetStaticBox(), wxID_ANY,
|
||||
_( "Technical layers:" ) );
|
||||
@ -290,22 +289,22 @@ void DIALOG_PRINT_PCBNEW::createLeftPanel()
|
||||
sizerRight->Add( technicalLabel, 0, wxLEFT, 5 );
|
||||
sizerRight->Add( m_listTechLayers, 1, wxEXPAND | wxBOTTOM | wxLEFT, 5 );
|
||||
|
||||
|
||||
// Layer list layout
|
||||
wxBoxSizer* bLayerListsSizer = new wxBoxSizer( wxHORIZONTAL );
|
||||
bLayerListsSizer->Add( sizerLeft, 1, wxEXPAND, 5 );
|
||||
bLayerListsSizer->Add( sizerRight, 1, wxEXPAND, 5 );
|
||||
|
||||
|
||||
// Select/Unselect all buttons
|
||||
m_buttonSelectAll = new wxButton( sbLayersSizer->GetStaticBox(), wxID_ANY, _( "Select all" ) );
|
||||
m_buttonDeselectAll = new wxButton( sbLayersSizer->GetStaticBox(), wxID_ANY,
|
||||
_( "Deselect all" ) );
|
||||
|
||||
m_buttonSelectAll->Connect( wxEVT_COMMAND_BUTTON_CLICKED,
|
||||
wxCommandEventHandler( DIALOG_PRINT_PCBNEW::onSelectAllClick ), NULL, this );
|
||||
wxCommandEventHandler( DIALOG_PRINT_PCBNEW::onSelectAllClick ),
|
||||
nullptr, this );
|
||||
m_buttonDeselectAll->Connect( wxEVT_COMMAND_BUTTON_CLICKED,
|
||||
wxCommandEventHandler( DIALOG_PRINT_PCBNEW::onDeselectAllClick ), NULL, this );
|
||||
wxCommandEventHandler( DIALOG_PRINT_PCBNEW::onDeselectAllClick ),
|
||||
nullptr, this );
|
||||
|
||||
wxBoxSizer* buttonSizer = new wxBoxSizer( wxHORIZONTAL );
|
||||
buttonSizer->Add( m_buttonSelectAll, 1, wxRIGHT | wxTOP | wxBOTTOM, 5 );
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* Copyright (C) 2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2014 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||
* Copyright (C) 1992-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -36,6 +36,7 @@
|
||||
#define LAYER_LIST_COLUMN_NAME 2
|
||||
#define LAYER_LIST_ROW_ALL_INNER_LAYERS 1
|
||||
|
||||
|
||||
class DIALOG_RULE_AREA_PROPERTIES : public DIALOG_RULE_AREA_PROPERTIES_BASE
|
||||
{
|
||||
public:
|
||||
@ -150,15 +151,21 @@ bool DIALOG_RULE_AREA_PROPERTIES::TransferDataFromWindow()
|
||||
|
||||
if( m_zonesettings.m_Layers.count() == 0 )
|
||||
{
|
||||
DisplayError( NULL, _( "No layers selected." ) );
|
||||
DisplayError( this, _( "No layers selected." ) );
|
||||
return false;
|
||||
}
|
||||
|
||||
switch( m_OutlineDisplayCtrl->GetSelection() )
|
||||
{
|
||||
case 0: m_zonesettings.m_ZoneBorderDisplayStyle = ZONE_BORDER_DISPLAY_STYLE::NO_HATCH; break;
|
||||
case 1: m_zonesettings.m_ZoneBorderDisplayStyle = ZONE_BORDER_DISPLAY_STYLE::DIAGONAL_EDGE; break;
|
||||
case 2: m_zonesettings.m_ZoneBorderDisplayStyle = ZONE_BORDER_DISPLAY_STYLE::DIAGONAL_FULL; break;
|
||||
case 0:
|
||||
m_zonesettings.m_ZoneBorderDisplayStyle = ZONE_BORDER_DISPLAY_STYLE::NO_HATCH;
|
||||
break;
|
||||
case 1:
|
||||
m_zonesettings.m_ZoneBorderDisplayStyle = ZONE_BORDER_DISPLAY_STYLE::DIAGONAL_EDGE;
|
||||
break;
|
||||
case 2:
|
||||
m_zonesettings.m_ZoneBorderDisplayStyle = ZONE_BORDER_DISPLAY_STYLE::DIAGONAL_FULL;
|
||||
break;
|
||||
}
|
||||
|
||||
auto cfg = m_parent->GetPcbNewSettings();
|
||||
|
@ -2,7 +2,7 @@
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2004-2018 Jean-Pierre Charras jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2010-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2010-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -38,6 +38,7 @@
|
||||
#include <math/util.h> // for KiROUND
|
||||
#include <scintilla_tricks.h>
|
||||
|
||||
|
||||
DIALOG_TEXT_PROPERTIES::DIALOG_TEXT_PROPERTIES( PCB_BASE_EDIT_FRAME* aParent, BOARD_ITEM* aItem ) :
|
||||
DIALOG_TEXT_PROPERTIES_BASE( aParent ),
|
||||
m_Parent( aParent ),
|
||||
@ -158,7 +159,8 @@ DIALOG_TEXT_PROPERTIES::DIALOG_TEXT_PROPERTIES( PCB_BASE_EDIT_FRAME* aParent, BO
|
||||
|
||||
// wxTextCtrls fail to generate wxEVT_CHAR events when the wxTE_MULTILINE flag is set,
|
||||
// so we have to listen to wxEVT_CHAR_HOOK events instead.
|
||||
Connect( wxEVT_CHAR_HOOK, wxKeyEventHandler( DIALOG_TEXT_PROPERTIES::OnCharHook ), NULL, this );
|
||||
Connect( wxEVT_CHAR_HOOK, wxKeyEventHandler( DIALOG_TEXT_PROPERTIES::OnCharHook ),
|
||||
nullptr, this );
|
||||
|
||||
finishDialogSettings();
|
||||
}
|
||||
@ -166,13 +168,13 @@ DIALOG_TEXT_PROPERTIES::DIALOG_TEXT_PROPERTIES( PCB_BASE_EDIT_FRAME* aParent, BO
|
||||
|
||||
DIALOG_TEXT_PROPERTIES::~DIALOG_TEXT_PROPERTIES()
|
||||
{
|
||||
Disconnect( wxEVT_CHAR_HOOK, wxKeyEventHandler( DIALOG_TEXT_PROPERTIES::OnCharHook ), NULL, this );
|
||||
Disconnect( wxEVT_CHAR_HOOK, wxKeyEventHandler( DIALOG_TEXT_PROPERTIES::OnCharHook ),
|
||||
nullptr, this );
|
||||
|
||||
delete m_scintillaTricks;
|
||||
}
|
||||
|
||||
|
||||
// Launch the text properties dialog in quasi modal mode.
|
||||
void PCB_BASE_EDIT_FRAME::ShowTextPropertiesDialog( BOARD_ITEM* aText )
|
||||
{
|
||||
DIALOG_TEXT_PROPERTIES dlg( this, aText );
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2020 KiCad Developers, see change_log.txt for contributors.
|
||||
* Copyright (C) 2020-2021 KiCad Developers, see change_log.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -57,19 +57,14 @@ void DRC_RULES_PARSER::reportError( const wxString& aMessage )
|
||||
|
||||
if( m_reporter )
|
||||
{
|
||||
wxString msg = wxString::Format( _( "ERROR: <a href='%d:%d'>%s</a>%s" ),
|
||||
CurLineNumber(),
|
||||
CurOffset(),
|
||||
first,
|
||||
rest );
|
||||
wxString msg = wxString::Format( _( "ERROR: <a href='%d:%d'>%s</a>%s" ), CurLineNumber(),
|
||||
CurOffset(), first, rest );
|
||||
|
||||
m_reporter->Report( msg, RPT_SEVERITY_ERROR );
|
||||
}
|
||||
else
|
||||
{
|
||||
wxString msg = wxString::Format( _( "ERROR: %s%s" ),
|
||||
first,
|
||||
rest );
|
||||
wxString msg = wxString::Format( _( "ERROR: %s%s" ), first, rest );
|
||||
|
||||
THROW_PARSE_ERROR( msg, CurSource(), CurLine(), CurLineNumber(), CurOffset() );
|
||||
}
|
||||
@ -128,7 +123,7 @@ void DRC_RULES_PARSER::Parse( std::vector<DRC_RULE*>& aRules, REPORTER* aReporte
|
||||
|
||||
if( (int) token == DSN_NUMBER )
|
||||
{
|
||||
m_requiredVersion = (int)strtol( CurText(), NULL, 10 );
|
||||
m_requiredVersion = (int)strtol( CurText(), nullptr, 10 );
|
||||
m_tooRecent = ( m_requiredVersion > DRC_RULE_FILE_VERSION );
|
||||
token = NextTok();
|
||||
}
|
||||
@ -158,8 +153,7 @@ void DRC_RULES_PARSER::Parse( std::vector<DRC_RULE*>& aRules, REPORTER* aReporte
|
||||
break;
|
||||
|
||||
default:
|
||||
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ),
|
||||
FromUTF8(),
|
||||
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
|
||||
"'rule', 'version'" );
|
||||
reportError( msg );
|
||||
parseUnknown();
|
||||
@ -220,8 +214,7 @@ DRC_RULE* DRC_RULES_PARSER::parseDRC_RULE()
|
||||
|
||||
if( (int) NextTok() != DSN_RIGHT )
|
||||
{
|
||||
reportError( wxString::Format( _( "Unrecognized item '%s'." ),
|
||||
FromUTF8() ) );
|
||||
reportError( wxString::Format( _( "Unrecognized item '%s'." ), FromUTF8() ) );
|
||||
parseUnknown();
|
||||
}
|
||||
|
||||
@ -237,8 +230,7 @@ DRC_RULE* DRC_RULES_PARSER::parseDRC_RULE()
|
||||
return rule;
|
||||
|
||||
default:
|
||||
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ),
|
||||
FromUTF8(),
|
||||
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
|
||||
"'constraint', 'condition', 'disallow'" );
|
||||
reportError( msg );
|
||||
parseUnknown();
|
||||
@ -264,10 +256,10 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
|
||||
if( (int) token == DSN_RIGHT || token == T_EOF )
|
||||
{
|
||||
msg.Printf( _( "Missing constraint type.| Expected %s." ),
|
||||
"'clearance', 'hole_clearance', 'edge_clearance', 'hole', 'hole_to_hole', "
|
||||
"'courtyard_clearance', 'silk_clearance', 'track_width', 'annular_width', "
|
||||
"'disallow', 'length', 'skew', 'via_count', 'diff_pair_gap' or "
|
||||
"'diff_pair_uncoupled'" );
|
||||
"'clearance', 'hole_clearance', 'edge_clearance', 'hole', 'hole_to_hole', "
|
||||
"'courtyard_clearance', 'silk_clearance', 'track_width', 'annular_width', "
|
||||
"'disallow', 'length', 'skew', 'via_count', 'diff_pair_gap' or "
|
||||
"'diff_pair_uncoupled'" );
|
||||
reportError( msg );
|
||||
return;
|
||||
}
|
||||
@ -290,8 +282,7 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
|
||||
case T_diff_pair_gap: constraint.m_Type = DIFF_PAIR_GAP_CONSTRAINT; break;
|
||||
case T_diff_pair_uncoupled: constraint.m_Type = DIFF_PAIR_MAX_UNCOUPLED_CONSTRAINT; break;
|
||||
default:
|
||||
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ),
|
||||
FromUTF8(),
|
||||
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
|
||||
"'clearance', 'hole_clearance', 'edge_clearance', 'hole', hole_to_hole',"
|
||||
"'courtyard_clearance', 'silk_clearance', 'track_width', 'annular_width', "
|
||||
"'disallow', 'length', 'skew', 'diff_pair_gap' or 'diff_pair_uncoupled'." );
|
||||
@ -323,8 +314,7 @@ void DRC_RULES_PARSER::parseConstraint( DRC_RULE* aRule )
|
||||
return;
|
||||
|
||||
default:
|
||||
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ),
|
||||
FromUTF8(),
|
||||
msg.Printf( _( "Unrecognized item '%s'.| Expected %s." ), FromUTF8(),
|
||||
"'track', 'via', 'micro_via', 'buried_via', 'pad', 'zone', 'text', "
|
||||
"'graphic', 'hole' or 'footprint'." );
|
||||
reportError( msg );
|
||||
@ -441,18 +431,13 @@ void DRC_RULES_PARSER::parseValueWithUnits( const wxString& aExpr, int& aResult
|
||||
if( m_reporter )
|
||||
{
|
||||
wxString msg = wxString::Format( _( "ERROR: <a href='%d:%d'>%s</a>%s" ),
|
||||
CurLineNumber(),
|
||||
CurOffset() + aOffset,
|
||||
first,
|
||||
rest );
|
||||
CurLineNumber(), CurOffset() + aOffset, first, rest );
|
||||
|
||||
m_reporter->Report( msg, RPT_SEVERITY_ERROR );
|
||||
}
|
||||
else
|
||||
{
|
||||
wxString msg = wxString::Format( _( "ERROR: %s%s" ),
|
||||
first,
|
||||
rest );
|
||||
wxString msg = wxString::Format( _( "ERROR: %s%s" ), first, rest );
|
||||
|
||||
THROW_PARSE_ERROR( msg, CurSource(), CurLine(), CurLineNumber(),
|
||||
CurOffset() + aOffset );
|
||||
@ -508,8 +493,7 @@ LSET DRC_RULES_PARSER::parseLayer()
|
||||
|
||||
if( (int) NextTok() != DSN_RIGHT )
|
||||
{
|
||||
reportError( wxString::Format( _( "Unrecognized item '%s'." ),
|
||||
FromUTF8() ) );
|
||||
reportError( wxString::Format( _( "Unrecognized item '%s'." ), FromUTF8() ) );
|
||||
parseUnknown();
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -37,7 +37,7 @@ bool RecreateCmpFile( BOARD * aBrd, const wxString& aFullCmpFileName )
|
||||
{
|
||||
FILE* cmpFile = wxFopen( aFullCmpFileName, wxT( "wt" ) );
|
||||
|
||||
if( cmpFile == NULL )
|
||||
if( cmpFile == nullptr )
|
||||
return false;
|
||||
|
||||
fprintf( cmpFile, "Cmp-Mod V01 Created by PcbNew date = %s\n", TO_UTF8( DateAndTime() ) );
|
||||
|
@ -6,6 +6,7 @@
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2013 Cirilo Bernardo
|
||||
* Copyright (C) 2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@ -48,16 +49,17 @@
|
||||
#endif
|
||||
#include <convert_to_biu.h> // to define Millimeter2iu(x)
|
||||
|
||||
|
||||
// assumed default graphical line thickness: == 0.1mm
|
||||
#define LINE_WIDTH (Millimeter2iu( 0.1 ))
|
||||
|
||||
|
||||
static FILENAME_RESOLVER* resolver;
|
||||
|
||||
|
||||
/**
|
||||
* Function idf_export_outline
|
||||
* retrieves line segment information from the edge layer and compiles
|
||||
* the data into a form which can be output as an IDFv3 compliant
|
||||
* BOARD_OUTLINE section.
|
||||
* Retrieve line segment information from the edge layer and compiles the data into a form
|
||||
* which can be output as an IDFv3 compliant #BOARD_OUTLINE section.
|
||||
*/
|
||||
static void idf_export_outline( BOARD* aPcb, IDF3_BOARD& aIDFBoard )
|
||||
{
|
||||
@ -67,7 +69,7 @@ static void idf_export_outline( BOARD* aPcb, IDF3_BOARD& aIDFBoard )
|
||||
IDF_POINT sp, ep; // start and end points from KiCad item
|
||||
|
||||
std::list< IDF_SEGMENT* > lines; // IDF intermediate form of KiCad graphical item
|
||||
IDF_OUTLINE* outline = NULL; // graphical items forming an outline or cutout
|
||||
IDF_OUTLINE* outline = nullptr; // graphical items forming an outline or cutout
|
||||
|
||||
// NOTE: IMPLEMENTATION
|
||||
// If/when component cutouts are allowed, we must implement them separately. Cutouts
|
||||
@ -88,86 +90,90 @@ static void idf_export_outline( BOARD* aPcb, IDF3_BOARD& aIDFBoard )
|
||||
switch( graphic->GetShape() )
|
||||
{
|
||||
case PCB_SHAPE_TYPE::SEGMENT:
|
||||
{
|
||||
if( ( graphic->GetStart().x == graphic->GetEnd().x )
|
||||
&& ( graphic->GetStart().y == graphic->GetEnd().y ) )
|
||||
{
|
||||
if( ( graphic->GetStart().x == graphic->GetEnd().x )
|
||||
&& ( graphic->GetStart().y == graphic->GetEnd().y ) )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
sp.x = graphic->GetStart().x * scale + offX;
|
||||
sp.y = -graphic->GetStart().y * scale + offY;
|
||||
ep.x = graphic->GetEnd().x * scale + offX;
|
||||
ep.y = -graphic->GetEnd().y * scale + offY;
|
||||
IDF_SEGMENT* seg = new IDF_SEGMENT( sp, ep );
|
||||
|
||||
if( seg )
|
||||
lines.push_back( seg );
|
||||
break;
|
||||
}
|
||||
|
||||
sp.x = graphic->GetStart().x * scale + offX;
|
||||
sp.y = -graphic->GetStart().y * scale + offY;
|
||||
ep.x = graphic->GetEnd().x * scale + offX;
|
||||
ep.y = -graphic->GetEnd().y * scale + offY;
|
||||
IDF_SEGMENT* seg = new IDF_SEGMENT( sp, ep );
|
||||
|
||||
if( seg )
|
||||
lines.push_back( seg );
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case PCB_SHAPE_TYPE::RECT:
|
||||
{
|
||||
if( ( graphic->GetStart().x == graphic->GetEnd().x )
|
||||
&& ( graphic->GetStart().y == graphic->GetEnd().y ) )
|
||||
{
|
||||
if( ( graphic->GetStart().x == graphic->GetEnd().x )
|
||||
&& ( graphic->GetStart().y == graphic->GetEnd().y ) )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
double top = graphic->GetStart().y * scale + offY;
|
||||
double left = graphic->GetStart().x * scale + offX;
|
||||
double bottom = graphic->GetEnd().y * scale + offY;
|
||||
double right = graphic->GetEnd().x * scale + offX;
|
||||
|
||||
IDF_POINT corners[4];
|
||||
corners[0] = IDF_POINT( left, top );
|
||||
corners[1] = IDF_POINT( right, top );
|
||||
corners[2] = IDF_POINT( right, bottom );
|
||||
corners[3] = IDF_POINT( left, bottom );
|
||||
|
||||
lines.push_back( new IDF_SEGMENT( corners[0], corners[1] ) );
|
||||
lines.push_back( new IDF_SEGMENT( corners[1], corners[2] ) );
|
||||
lines.push_back( new IDF_SEGMENT( corners[2], corners[3] ) );
|
||||
lines.push_back( new IDF_SEGMENT( corners[3], corners[0] ) );
|
||||
break;
|
||||
}
|
||||
|
||||
double top = graphic->GetStart().y * scale + offY;
|
||||
double left = graphic->GetStart().x * scale + offX;
|
||||
double bottom = graphic->GetEnd().y * scale + offY;
|
||||
double right = graphic->GetEnd().x * scale + offX;
|
||||
|
||||
IDF_POINT corners[4];
|
||||
corners[0] = IDF_POINT( left, top );
|
||||
corners[1] = IDF_POINT( right, top );
|
||||
corners[2] = IDF_POINT( right, bottom );
|
||||
corners[3] = IDF_POINT( left, bottom );
|
||||
|
||||
lines.push_back( new IDF_SEGMENT( corners[0], corners[1] ) );
|
||||
lines.push_back( new IDF_SEGMENT( corners[1], corners[2] ) );
|
||||
lines.push_back( new IDF_SEGMENT( corners[2], corners[3] ) );
|
||||
lines.push_back( new IDF_SEGMENT( corners[3], corners[0] ) );
|
||||
break;
|
||||
}
|
||||
|
||||
case PCB_SHAPE_TYPE::ARC:
|
||||
{
|
||||
if( ( graphic->GetCenter().x == graphic->GetArcStart().x )
|
||||
&& ( graphic->GetCenter().y == graphic->GetArcStart().y ) )
|
||||
{
|
||||
if( ( graphic->GetCenter().x == graphic->GetArcStart().x )
|
||||
&& ( graphic->GetCenter().y == graphic->GetArcStart().y ) )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
sp.x = graphic->GetCenter().x * scale + offX;
|
||||
sp.y = -graphic->GetCenter().y * scale + offY;
|
||||
ep.x = graphic->GetArcStart().x * scale + offX;
|
||||
ep.y = -graphic->GetArcStart().y * scale + offY;
|
||||
IDF_SEGMENT* seg = new IDF_SEGMENT( sp, ep, -graphic->GetAngle() / 10.0, true );
|
||||
|
||||
if( seg )
|
||||
lines.push_back( seg );
|
||||
break;
|
||||
}
|
||||
|
||||
sp.x = graphic->GetCenter().x * scale + offX;
|
||||
sp.y = -graphic->GetCenter().y * scale + offY;
|
||||
ep.x = graphic->GetArcStart().x * scale + offX;
|
||||
ep.y = -graphic->GetArcStart().y * scale + offY;
|
||||
IDF_SEGMENT* seg = new IDF_SEGMENT( sp, ep, -graphic->GetAngle() / 10.0, true );
|
||||
|
||||
if( seg )
|
||||
lines.push_back( seg );
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case PCB_SHAPE_TYPE::CIRCLE:
|
||||
{
|
||||
if( graphic->GetRadius() == 0 )
|
||||
break;
|
||||
{
|
||||
if( graphic->GetRadius() == 0 )
|
||||
break;
|
||||
|
||||
sp.x = graphic->GetCenter().x * scale + offX;
|
||||
sp.y = -graphic->GetCenter().y * scale + offY;
|
||||
ep.x = sp.x - graphic->GetRadius() * scale;
|
||||
ep.y = sp.y;
|
||||
// Circles must always have an angle of +360 deg. to appease
|
||||
// quirky MCAD implementations of IDF.
|
||||
IDF_SEGMENT* seg = new IDF_SEGMENT( sp, ep, 360.0, true );
|
||||
sp.x = graphic->GetCenter().x * scale + offX;
|
||||
sp.y = -graphic->GetCenter().y * scale + offY;
|
||||
ep.x = sp.x - graphic->GetRadius() * scale;
|
||||
ep.y = sp.y;
|
||||
|
||||
// Circles must always have an angle of +360 deg. to appease
|
||||
// quirky MCAD implementations of IDF.
|
||||
IDF_SEGMENT* seg = new IDF_SEGMENT( sp, ep, 360.0, true );
|
||||
|
||||
if( seg )
|
||||
lines.push_back( seg );
|
||||
|
||||
if( seg )
|
||||
lines.push_back( seg );
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
@ -191,7 +197,7 @@ static void idf_export_outline( BOARD* aPcb, IDF3_BOARD& aIDFBoard )
|
||||
goto UseBoundingBox;
|
||||
|
||||
aIDFBoard.AddBoardOutline( outline );
|
||||
outline = NULL;
|
||||
outline = nullptr;
|
||||
|
||||
// get all cutouts and write them out
|
||||
while( !lines.empty() )
|
||||
@ -208,7 +214,7 @@ static void idf_export_outline( BOARD* aPcb, IDF3_BOARD& aIDFBoard )
|
||||
}
|
||||
|
||||
aIDFBoard.AddBoardOutline( outline );
|
||||
outline = NULL;
|
||||
outline = nullptr;
|
||||
}
|
||||
|
||||
return;
|
||||
@ -275,11 +281,9 @@ UseBoundingBox:
|
||||
|
||||
|
||||
/**
|
||||
* Function idf_export_footprint
|
||||
* retrieves information from all board footprints, adds drill holes to
|
||||
* the DRILLED_HOLES or BOARD_OUTLINE section as appropriate,
|
||||
* compiles data for the PLACEMENT section and compiles data for
|
||||
* the library ELECTRICAL section.
|
||||
* Retrieve information from all board footprints, adds drill holes to the DRILLED_HOLES or
|
||||
* BOARD_OUTLINE section as appropriate, Compiles data for the PLACEMENT section and compiles
|
||||
* data for the library ELECTRICAL section.
|
||||
*/
|
||||
static void idf_export_footprint( BOARD* aPcb, FOOTPRINT* aFootprint, IDF3_BOARD& aIDFBoard )
|
||||
{
|
||||
@ -407,7 +411,7 @@ static void idf_export_footprint( BOARD* aPcb, FOOTPRINT* aFootprint, IDF3_BOARD
|
||||
// add any valid models to the library item list
|
||||
std::string refdes;
|
||||
|
||||
IDF3_COMPONENT* comp = NULL;
|
||||
IDF3_COMPONENT* comp = nullptr;
|
||||
|
||||
auto sM = aFootprint->Models().begin();
|
||||
auto eM = aFootprint->Models().end();
|
||||
@ -474,14 +478,14 @@ static void idf_export_footprint( BOARD* aPcb, FOOTPRINT* aFootprint, IDF3_BOARD
|
||||
while( rotz <= -360.0 ) rotz += 360.0;
|
||||
}
|
||||
|
||||
if( comp == NULL )
|
||||
if( comp == nullptr )
|
||||
comp = aIDFBoard.FindComponent( refdes );
|
||||
|
||||
if( comp == NULL )
|
||||
if( comp == nullptr )
|
||||
{
|
||||
comp = new IDF3_COMPONENT( &aIDFBoard );
|
||||
|
||||
if( comp == NULL )
|
||||
if( comp == nullptr )
|
||||
throw( std::runtime_error( aIDFBoard.GetError() ) );
|
||||
|
||||
comp->SetRefDes( refdes );
|
||||
@ -570,7 +574,6 @@ static void idf_export_footprint( BOARD* aPcb, FOOTPRINT* aFootprint, IDF3_BOARD
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// create the local data ...
|
||||
IDF3_COMP_OUTLINE_DATA* data = new IDF3_COMP_OUTLINE_DATA( comp, outline );
|
||||
|
||||
@ -582,9 +585,8 @@ static void idf_export_footprint( BOARD* aPcb, FOOTPRINT* aFootprint, IDF3_BOARD
|
||||
|
||||
|
||||
/**
|
||||
* Function Export_IDF3
|
||||
* generates IDFv3 compliant board (*.emn) and library (*.emp)
|
||||
* files representing the user's PCB design.
|
||||
* Generate IDFv3 compliant board (*.emn) and library (*.emp) files representing the user's
|
||||
* PCB design.
|
||||
*/
|
||||
bool PCB_EDIT_FRAME::Export_IDF3( BOARD* aPcb, const wxString& aFullFileName,
|
||||
bool aUseThou, double aXRef, double aYRef )
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user