2018-04-28 15:22:25 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2020-05-04 14:01:25 +00:00
|
|
|
* Copyright (C) 2019-2020 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-04-28 15:22:25 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <board_design_settings.h>
|
2021-01-26 11:41:47 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <convert_to_biu.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <math/util.h>
|
2021-01-26 11:41:47 +00:00
|
|
|
#include <panel_setup_constraints.h>
|
|
|
|
#include <panel_setup_constraints_base.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2021-01-26 11:41:47 +00:00
|
|
|
#include <widgets/paged_dialog.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <wx/treebook.h>
|
2020-04-25 13:20:54 +00:00
|
|
|
#include <bitmaps.h>
|
|
|
|
|
2018-04-28 15:22:25 +00:00
|
|
|
|
2021-01-26 11:41:47 +00:00
|
|
|
PANEL_SETUP_CONSTRAINTS::PANEL_SETUP_CONSTRAINTS( PAGED_DIALOG* aParent, PCB_EDIT_FRAME* aFrame ) :
|
|
|
|
PANEL_SETUP_CONSTRAINTS_BASE( aParent->GetTreebook() ),
|
2020-05-04 21:05:30 +00:00
|
|
|
m_minClearance( aFrame, m_clearanceTitle, m_clearanceCtrl, m_clearanceUnits, true ),
|
2018-11-29 18:59:38 +00:00
|
|
|
m_trackMinWidth( aFrame, m_TrackMinWidthTitle, m_TrackMinWidthCtrl, m_TrackMinWidthUnits, true ),
|
2020-05-11 19:39:30 +00:00
|
|
|
m_viaMinAnnulus( aFrame, m_ViaMinAnnulusTitle, m_ViaMinAnnulusCtrl, m_ViaMinAnnulusUnits, true ),
|
2018-11-29 18:59:38 +00:00
|
|
|
m_viaMinSize( aFrame, m_ViaMinTitle, m_SetViasMinSizeCtrl, m_ViaMinUnits, true ),
|
2020-05-04 21:05:30 +00:00
|
|
|
m_throughHoleMin( aFrame, m_MinDrillTitle, m_MinDrillCtrl, m_MinDrillUnits, true ),
|
2018-11-29 18:59:38 +00:00
|
|
|
m_uviaMinSize( aFrame, m_uviaMinSizeLabel, m_uviaMinSizeCtrl, m_uviaMinSizeUnits, true ),
|
|
|
|
m_uviaMinDrill( aFrame, m_uviaMinDrillLabel, m_uviaMinDrillCtrl, m_uviaMinDrillUnits, true ),
|
2019-04-05 16:10:59 +00:00
|
|
|
m_holeToHoleMin( aFrame, m_HoleToHoleTitle, m_SetHoleToHoleCtrl, m_HoleToHoleUnits, true ),
|
2020-11-29 22:01:40 +00:00
|
|
|
m_holeClearance( aFrame, m_HoleClearanceLabel, m_HoleClearanceCtrl, m_HoleClearanceUnits, true ),
|
2019-05-22 14:47:38 +00:00
|
|
|
m_edgeClearance( aFrame, m_EdgeClearanceLabel, m_EdgeClearanceCtrl, m_EdgeClearanceUnits, true ),
|
2020-10-12 13:10:50 +00:00
|
|
|
m_silkClearance( aFrame, m_silkClearanceLabel, m_silkClearanceCtrl, m_silkClearanceUnits, true ),
|
2019-05-22 14:47:38 +00:00
|
|
|
m_maxError( aFrame, m_maxErrorTitle, m_maxErrorCtrl, m_maxErrorUnits, true )
|
2018-04-28 15:22:25 +00:00
|
|
|
{
|
|
|
|
m_Frame = aFrame;
|
|
|
|
m_BrdSettings = &m_Frame->GetBoard()->GetDesignSettings();
|
2021-01-26 11:23:23 +00:00
|
|
|
|
|
|
|
wxFont infoFont = wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT );
|
|
|
|
infoFont.SetSymbolicSize( wxFONTSIZE_SMALL );
|
|
|
|
m_stCircleToPolyWarning->SetFont( infoFont );
|
2018-04-28 15:22:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-26 11:41:47 +00:00
|
|
|
bool PANEL_SETUP_CONSTRAINTS::TransferDataToWindow()
|
2018-04-28 15:22:25 +00:00
|
|
|
{
|
2021-01-26 11:23:23 +00:00
|
|
|
wxString msg;
|
|
|
|
msg.Printf( m_stCircleToPolyWarning->GetLabel(),
|
|
|
|
StringFromValue( m_Frame->GetUserUnits(), ARC_HIGH_DEF, true ) );
|
|
|
|
m_stCircleToPolyWarning->SetLabel( msg );
|
2020-08-13 08:01:23 +00:00
|
|
|
|
2018-04-28 15:22:25 +00:00
|
|
|
m_OptAllowBlindBuriedVias->SetValue( m_BrdSettings->m_BlindBuriedViaAllowed );
|
|
|
|
m_OptAllowMicroVias->SetValue( m_BrdSettings->m_MicroViasAllowed );
|
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
m_maxError.SetValue( m_BrdSettings->m_MaxError );
|
2018-04-28 15:22:25 +00:00
|
|
|
|
2020-09-17 13:14:45 +00:00
|
|
|
m_rbOutlinePolygonFastest->SetValue( m_BrdSettings->m_ZoneFillVersion == 6 );
|
|
|
|
m_rbOutlinePolygonBestQ->SetValue( m_BrdSettings->m_ZoneFillVersion == 5 );
|
2020-08-30 14:18:35 +00:00
|
|
|
m_allowExternalFilletsOpt->SetValue( m_BrdSettings->m_ZoneKeepExternalFillets );
|
2018-04-28 15:22:25 +00:00
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
m_minClearance.SetValue( m_BrdSettings->m_MinClearance );
|
|
|
|
m_trackMinWidth.SetValue( m_BrdSettings->m_TrackMinWidth );
|
2020-05-11 19:39:30 +00:00
|
|
|
m_viaMinAnnulus.SetValue( m_BrdSettings->m_ViasMinAnnulus );
|
2020-05-04 21:05:30 +00:00
|
|
|
m_viaMinSize.SetValue(m_BrdSettings->m_ViasMinSize );
|
2020-11-29 22:01:40 +00:00
|
|
|
m_holeClearance.SetValue( m_BrdSettings->m_HoleClearance );
|
2019-04-05 16:10:59 +00:00
|
|
|
m_edgeClearance.SetValue( m_BrdSettings->m_CopperEdgeClearance );
|
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
m_throughHoleMin.SetValue( m_BrdSettings->m_MinThroughDrill );
|
|
|
|
m_holeToHoleMin.SetValue( m_BrdSettings->m_HoleToHoleMin );
|
2019-05-22 14:47:38 +00:00
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
m_uviaMinSize.SetValue( m_BrdSettings->m_MicroViasMinSize );
|
|
|
|
m_uviaMinDrill.SetValue( m_BrdSettings->m_MicroViasMinDrill );
|
2019-06-04 07:23:12 +00:00
|
|
|
|
2020-10-12 13:10:50 +00:00
|
|
|
m_silkClearance.SetValue( m_BrdSettings->m_SilkClearance );
|
|
|
|
|
2018-04-28 15:22:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-26 11:41:47 +00:00
|
|
|
bool PANEL_SETUP_CONSTRAINTS::TransferDataFromWindow()
|
2018-04-28 15:22:25 +00:00
|
|
|
{
|
2020-06-14 15:08:47 +00:00
|
|
|
if( !m_minClearance.Validate( 0, 10, EDA_UNITS::INCHES ) )
|
2020-05-04 21:05:30 +00:00
|
|
|
return false;
|
2018-04-28 15:22:25 +00:00
|
|
|
|
2020-06-14 15:08:47 +00:00
|
|
|
if( !m_trackMinWidth.Validate( 0, 10, EDA_UNITS::INCHES ) )
|
2020-05-04 21:05:30 +00:00
|
|
|
return false;
|
2018-04-28 15:22:25 +00:00
|
|
|
|
2020-06-14 15:08:47 +00:00
|
|
|
if( !m_viaMinAnnulus.Validate( 0, 10, EDA_UNITS::INCHES ) )
|
2020-05-11 19:39:30 +00:00
|
|
|
return false;
|
|
|
|
|
2020-06-14 15:08:47 +00:00
|
|
|
if( !m_viaMinSize.Validate( 0, 10, EDA_UNITS::INCHES ) )
|
2020-05-04 21:05:30 +00:00
|
|
|
return false;
|
2018-04-28 15:22:25 +00:00
|
|
|
|
2020-11-29 22:01:40 +00:00
|
|
|
if( !m_holeClearance.Validate( 0, 10, EDA_UNITS::INCHES ) )
|
|
|
|
return false;
|
|
|
|
|
2020-06-14 15:08:47 +00:00
|
|
|
if( !m_edgeClearance.Validate( 0, 10, EDA_UNITS::INCHES ) )
|
2020-05-04 21:05:30 +00:00
|
|
|
return false;
|
2018-04-28 15:22:25 +00:00
|
|
|
|
2020-10-02 22:04:16 +00:00
|
|
|
if( !m_throughHoleMin.Validate( 2, 1000, EDA_UNITS::MILS ) ) // #107 to 1 inch
|
2020-05-04 21:05:30 +00:00
|
|
|
return false;
|
2018-04-28 15:22:25 +00:00
|
|
|
|
2020-06-14 15:08:47 +00:00
|
|
|
if( !m_holeToHoleMin.Validate( 0, 10, EDA_UNITS::INCHES ) )
|
2020-05-04 21:05:30 +00:00
|
|
|
return false;
|
|
|
|
|
2020-10-13 22:05:15 +00:00
|
|
|
// These are all stored in project file, not board, so no need for OnModify()
|
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
m_BrdSettings->m_BlindBuriedViaAllowed = m_OptAllowBlindBuriedVias->GetValue();
|
|
|
|
m_BrdSettings->m_MicroViasAllowed = m_OptAllowMicroVias->GetValue();
|
2019-04-05 16:10:59 +00:00
|
|
|
|
2019-05-22 14:47:38 +00:00
|
|
|
m_BrdSettings->m_MaxError = Clamp<int>( IU_PER_MM * MINIMUM_ERROR_SIZE_MM,
|
2020-10-13 22:05:15 +00:00
|
|
|
m_maxError.GetValue(),
|
|
|
|
IU_PER_MM * MAXIMUM_ERROR_SIZE_MM );
|
2019-05-22 14:47:38 +00:00
|
|
|
|
2020-09-17 13:14:45 +00:00
|
|
|
m_BrdSettings->m_ZoneFillVersion = m_rbOutlinePolygonFastest->GetValue() ? 6 : 5;
|
2020-08-30 14:18:35 +00:00
|
|
|
m_BrdSettings->m_ZoneKeepExternalFillets = m_allowExternalFilletsOpt->GetValue();
|
2019-06-04 07:23:12 +00:00
|
|
|
|
2020-05-04 21:05:30 +00:00
|
|
|
m_BrdSettings->m_MinClearance = m_minClearance.GetValue();
|
|
|
|
m_BrdSettings->m_TrackMinWidth = m_trackMinWidth.GetValue();
|
2020-05-11 19:39:30 +00:00
|
|
|
m_BrdSettings->m_ViasMinAnnulus = m_viaMinAnnulus.GetValue();
|
2020-05-04 21:05:30 +00:00
|
|
|
m_BrdSettings->m_ViasMinSize = m_viaMinSize.GetValue();
|
2020-11-29 22:01:40 +00:00
|
|
|
m_BrdSettings->m_HoleClearance = m_holeClearance.GetValue();
|
2020-05-04 21:05:30 +00:00
|
|
|
m_BrdSettings->SetCopperEdgeClearance( m_edgeClearance.GetValue() );
|
|
|
|
|
|
|
|
m_BrdSettings->m_MinThroughDrill = m_throughHoleMin.GetValue();
|
|
|
|
m_BrdSettings->SetMinHoleSeparation( m_holeToHoleMin.GetValue() );
|
|
|
|
|
|
|
|
m_BrdSettings->m_MicroViasMinSize = m_uviaMinSize.GetValue();
|
|
|
|
m_BrdSettings->m_MicroViasMinDrill = m_uviaMinDrill.GetValue();
|
|
|
|
|
2020-10-12 13:10:50 +00:00
|
|
|
m_BrdSettings->m_SilkClearance = m_silkClearance.GetValue();
|
|
|
|
|
2018-04-28 15:22:25 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-26 11:41:47 +00:00
|
|
|
bool PANEL_SETUP_CONSTRAINTS::Show( bool aShow )
|
2020-05-04 14:01:25 +00:00
|
|
|
{
|
|
|
|
bool retVal = wxPanel::Show( aShow );
|
|
|
|
|
2020-05-08 18:10:47 +00:00
|
|
|
if( aShow )
|
|
|
|
{
|
|
|
|
// These *should* work in the constructor, and indeed they do if this panel is the
|
|
|
|
// first displayed. However, on OSX 3.0.5 (at least), if another panel is displayed
|
|
|
|
// first then the icons will be blank unless they're set here.
|
|
|
|
m_bitmapZoneFillOpt->SetBitmap( KiBitmap( show_zone_xpm ) );
|
2020-08-30 14:18:35 +00:00
|
|
|
m_filletBitmap->SetBitmap( KiBitmap( zone_fillet_xpm ) );
|
2020-05-08 18:10:47 +00:00
|
|
|
m_bitmapClearance->SetBitmap( KiBitmap( ps_diff_pair_gap_xpm ) );
|
|
|
|
m_bitmapMinTrackWidth->SetBitmap( KiBitmap( width_track_xpm ) );
|
2020-05-11 19:39:30 +00:00
|
|
|
m_bitmapMinViaAnnulus->SetBitmap( KiBitmap( via_annulus_xpm ) );
|
2020-05-08 18:10:47 +00:00
|
|
|
m_bitmapMinViaDiameter->SetBitmap( KiBitmap( via_diameter_xpm ) );
|
|
|
|
m_bitmapMinViaDrill->SetBitmap( KiBitmap( via_hole_diameter_xpm ) );
|
|
|
|
m_bitmapMinuViaDiameter->SetBitmap( KiBitmap( via_diameter_xpm ) );
|
|
|
|
m_bitmapMinuViaDrill->SetBitmap( KiBitmap( via_hole_diameter_xpm ) );
|
2021-01-11 22:17:37 +00:00
|
|
|
m_bitmapHoleClearance->SetBitmap( KiBitmap( hole_to_copper_clearance_xpm ) );
|
2020-05-08 18:10:47 +00:00
|
|
|
m_bitmapMinHoleClearance->SetBitmap( KiBitmap( hole_to_hole_clearance_xpm ) );
|
|
|
|
m_bitmapEdgeClearance->SetBitmap( KiBitmap( edge_to_copper_clearance_xpm ) );
|
|
|
|
m_bitmapBlindBuried->SetBitmap( KiBitmap( via_buried_xpm ) );
|
|
|
|
m_bitmap_uVia->SetBitmap( KiBitmap( via_microvia_xpm ) );
|
2020-05-23 07:48:05 +00:00
|
|
|
|
|
|
|
Layout();
|
2020-05-08 18:10:47 +00:00
|
|
|
}
|
2020-05-04 14:01:25 +00:00
|
|
|
|
|
|
|
return retVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-26 11:41:47 +00:00
|
|
|
void PANEL_SETUP_CONSTRAINTS::ImportSettingsFrom( BOARD* aBoard )
|
2018-04-28 15:22:25 +00:00
|
|
|
{
|
|
|
|
BOARD_DESIGN_SETTINGS* savedSettings = m_BrdSettings;
|
|
|
|
|
|
|
|
m_BrdSettings = &aBoard->GetDesignSettings();
|
|
|
|
TransferDataToWindow();
|
|
|
|
|
|
|
|
m_BrdSettings = savedSettings;
|
2019-05-22 14:47:38 +00:00
|
|
|
}
|
2019-06-04 07:23:12 +00:00
|
|
|
|
|
|
|
|
2021-01-26 11:41:47 +00:00
|
|
|
void PANEL_SETUP_CONSTRAINTS::onChangeOutlineOpt( wxCommandEvent& event )
|
2019-06-04 07:23:12 +00:00
|
|
|
{
|
|
|
|
wxObject* item =event.GetEventObject();
|
|
|
|
|
2020-05-23 11:59:31 +00:00
|
|
|
if( item == m_rbOutlinePolygonBestQ )
|
|
|
|
m_rbOutlinePolygonFastest->SetValue( not m_rbOutlinePolygonBestQ->GetValue() );
|
2019-06-04 07:23:12 +00:00
|
|
|
else
|
2020-05-23 11:59:31 +00:00
|
|
|
m_rbOutlinePolygonBestQ->SetValue( not m_rbOutlinePolygonFastest->GetValue() );
|
2019-06-04 07:23:12 +00:00
|
|
|
}
|