2011-09-23 13:57:12 +00:00
|
|
|
/**
|
2014-10-06 01:18:24 +00:00
|
|
|
* @file dialog_non_copper_zones_properties.cpp
|
2011-09-23 13:57:12 +00:00
|
|
|
*/
|
2014-07-15 16:53:13 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2018-02-18 09:09:13 +00:00
|
|
|
* Copyright (C) 2019 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2014-07-15 16:53:13 +00:00
|
|
|
* Copyright (C) 2014 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2019-03-04 16:34:04 +00:00
|
|
|
* Copyright (C) 1992-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-07-15 16:53:13 +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
|
|
|
|
*/
|
2008-09-26 19:51:36 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
#include <kiface_i.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <pcbnew_settings.h>
|
2018-05-25 14:56:04 +00:00
|
|
|
#include <widgets/unit_binder.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <zones.h>
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_non_copper_zones_properties_base.h>
|
2008-09-26 19:51:36 +00:00
|
|
|
|
|
|
|
|
2014-07-15 16:53:13 +00:00
|
|
|
class DIALOG_NON_COPPER_ZONES_EDITOR : public DIALOG_NONCOPPER_ZONES_PROPERTIES_BASE
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
|
|
|
private:
|
2014-07-15 16:53:13 +00:00
|
|
|
PCB_BASE_FRAME* m_parent;
|
2012-02-06 05:44:19 +00:00
|
|
|
ZONE_SETTINGS* m_ptr;
|
2012-07-13 18:55:29 +00:00
|
|
|
ZONE_SETTINGS m_settings; // working copy of zone settings
|
2018-05-25 14:56:04 +00:00
|
|
|
UNIT_BINDER m_minWidth;
|
2018-02-18 09:09:13 +00:00
|
|
|
UNIT_BINDER m_gridStyleRotation;
|
|
|
|
UNIT_BINDER m_gridStyleThickness;
|
|
|
|
UNIT_BINDER m_gridStyleGap;
|
2019-04-30 11:16:29 +00:00
|
|
|
int m_cornerSmoothingType;
|
|
|
|
UNIT_BINDER m_cornerRadius;
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
bool TransferDataFromWindow() override;
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2018-02-18 09:09:13 +00:00
|
|
|
void OnStyleSelection( wxCommandEvent& event ) override;
|
2018-05-25 14:56:04 +00:00
|
|
|
void OnLayerSelection( wxDataViewEvent& event ) override;
|
2019-04-30 11:16:29 +00:00
|
|
|
void OnUpdateUI( wxUpdateUIEvent& ) override;
|
2014-07-15 16:53:13 +00:00
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
public:
|
|
|
|
DIALOG_NON_COPPER_ZONES_EDITOR( PCB_BASE_FRAME* aParent, ZONE_SETTINGS* aSettings );
|
2008-09-26 19:51:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
int InvokeNonCopperZonesEditor( PCB_BASE_FRAME* aParent, ZONE_SETTINGS* aSettings )
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
2018-05-25 14:56:04 +00:00
|
|
|
DIALOG_NON_COPPER_ZONES_EDITOR dlg( aParent, aSettings );
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2021-02-20 13:06:12 +00:00
|
|
|
return dlg.ShowQuasiModal();
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
|
|
|
|
2018-02-18 09:09:13 +00:00
|
|
|
#define MIN_THICKNESS 10*IU_PER_MILS
|
2009-05-01 16:46:56 +00:00
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
DIALOG_NON_COPPER_ZONES_EDITOR::DIALOG_NON_COPPER_ZONES_EDITOR( PCB_BASE_FRAME* aParent,
|
2012-03-17 14:39:27 +00:00
|
|
|
ZONE_SETTINGS* aSettings ) :
|
2018-05-25 14:56:04 +00:00
|
|
|
DIALOG_NONCOPPER_ZONES_PROPERTIES_BASE( aParent ),
|
2021-03-12 15:12:49 +00:00
|
|
|
m_minWidth( aParent, m_MinWidthLabel, m_MinWidthCtrl, m_MinWidthUnits ),
|
|
|
|
m_gridStyleRotation( aParent, m_staticTextGrindOrient, m_tcGridStyleOrientation, m_staticTextRotUnits ),
|
|
|
|
m_gridStyleThickness( aParent, m_staticTextStyleThickness, m_tcGridStyleThickness, m_GridStyleThicknessUnits),
|
|
|
|
m_gridStyleGap( aParent, m_staticTextGridGap, m_tcGridStyleGap, m_GridStyleGapUnits ),
|
2019-04-30 11:16:29 +00:00
|
|
|
m_cornerSmoothingType( ZONE_SETTINGS::SMOOTHING_UNDEFINED ),
|
2021-03-12 15:12:49 +00:00
|
|
|
m_cornerRadius( aParent, m_cornerRadiusLabel, m_cornerRadiusCtrl, m_cornerRadiusUnits )
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
2014-07-15 16:53:13 +00:00
|
|
|
m_parent = aParent;
|
2012-02-06 05:44:19 +00:00
|
|
|
|
|
|
|
m_ptr = aSettings;
|
|
|
|
m_settings = *aSettings;
|
2018-05-25 14:56:04 +00:00
|
|
|
m_settings.SetupLayersList( m_layers, m_parent, false );
|
2018-07-21 13:42:32 +00:00
|
|
|
|
2019-03-04 12:06:19 +00:00
|
|
|
m_sdbSizerButtonsOK->SetDefault();
|
|
|
|
|
2020-11-16 11:16:44 +00:00
|
|
|
finishDialogSettings();
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-30 11:16:29 +00:00
|
|
|
void DIALOG_NON_COPPER_ZONES_EDITOR::OnUpdateUI( wxUpdateUIEvent& )
|
|
|
|
{
|
|
|
|
if( m_cornerSmoothingType != m_cornerSmoothingChoice->GetSelection() )
|
|
|
|
{
|
|
|
|
m_cornerSmoothingType = m_cornerSmoothingChoice->GetSelection();
|
|
|
|
|
|
|
|
if( m_cornerSmoothingChoice->GetSelection() == ZONE_SETTINGS::SMOOTHING_CHAMFER )
|
|
|
|
m_cornerRadiusLabel->SetLabel( _( "Chamfer distance:" ) );
|
|
|
|
else
|
|
|
|
m_cornerRadiusLabel->SetLabel( _( "Fillet radius:" ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_cornerRadiusCtrl->Enable(m_cornerSmoothingType > ZONE_SETTINGS::SMOOTHING_NONE );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
bool DIALOG_NON_COPPER_ZONES_EDITOR::TransferDataToWindow()
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
2019-04-30 11:16:29 +00:00
|
|
|
m_cornerSmoothingChoice->SetSelection( m_settings.GetCornerSmoothingType() );
|
|
|
|
m_cornerRadius.SetValue( m_settings.GetCornerRadius() );
|
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
m_minWidth.SetValue( m_settings.m_ZoneMinThickness );
|
|
|
|
m_ConstrainOpt->SetValue( m_settings.m_Zone_45_Only );
|
2021-05-06 21:49:07 +00:00
|
|
|
m_cbLocked->SetValue( m_settings.m_Locked );
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2020-08-07 14:04:34 +00:00
|
|
|
switch( m_settings.m_ZoneBorderDisplayStyle )
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
2020-08-07 14:04:34 +00:00
|
|
|
case ZONE_BORDER_DISPLAY_STYLE::NO_HATCH: m_OutlineDisplayCtrl->SetSelection( 0 ); break;
|
|
|
|
case ZONE_BORDER_DISPLAY_STYLE::DIAGONAL_EDGE: m_OutlineDisplayCtrl->SetSelection( 1 ); break;
|
|
|
|
case ZONE_BORDER_DISPLAY_STYLE::DIAGONAL_FULL: m_OutlineDisplayCtrl->SetSelection( 2 ); break;
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
|
|
|
|
2020-08-07 14:04:34 +00:00
|
|
|
SetInitialFocus( m_OutlineDisplayCtrl );
|
2019-03-04 16:34:04 +00:00
|
|
|
|
2018-02-18 09:09:13 +00:00
|
|
|
switch( m_settings.m_FillMode )
|
|
|
|
{
|
2020-08-07 14:04:34 +00:00
|
|
|
case ZONE_FILL_MODE::HATCH_PATTERN: m_GridStyleCtrl->SetSelection( 1 ); break;
|
|
|
|
default: m_GridStyleCtrl->SetSelection( 0 ); break;
|
2018-02-18 09:09:13 +00:00
|
|
|
}
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
m_gridStyleRotation.SetUnits( EDA_UNITS::DEGREES );
|
2020-08-07 14:04:34 +00:00
|
|
|
m_gridStyleRotation.SetValue( m_settings.m_HatchOrientation * 10 ); // IU is decidegree
|
2018-02-18 09:09:13 +00:00
|
|
|
|
|
|
|
// Gives a reasonable value to grid style parameters, if currently there are no defined
|
|
|
|
// parameters for grid pattern thickness and gap (if the value is 0)
|
|
|
|
// the grid pattern thickness default value is (arbitrary) m_ZoneMinThickness * 4
|
|
|
|
// or 1mm
|
|
|
|
// the grid pattern gap default value is (arbitrary) m_ZoneMinThickness * 6
|
|
|
|
// or 1.5 mm
|
2020-08-07 14:04:34 +00:00
|
|
|
int bestvalue = m_settings.m_HatchThickness;
|
2018-02-18 09:09:13 +00:00
|
|
|
|
2020-08-07 14:04:34 +00:00
|
|
|
if( bestvalue <= 0 ) // No defined value for m_hatchThickness
|
2018-02-18 09:09:13 +00:00
|
|
|
bestvalue = std::max( m_settings.m_ZoneMinThickness * 4, Millimeter2iu( 1.0 ) );
|
|
|
|
|
|
|
|
m_gridStyleThickness.SetValue( std::max( bestvalue, m_settings.m_ZoneMinThickness ) );
|
|
|
|
|
2020-08-07 14:04:34 +00:00
|
|
|
bestvalue = m_settings.m_HatchGap;
|
2018-02-18 09:09:13 +00:00
|
|
|
|
2020-08-07 14:04:34 +00:00
|
|
|
if( bestvalue <= 0 ) // No defined value for m_hatchGap
|
2018-02-18 09:09:13 +00:00
|
|
|
bestvalue = std::max( m_settings.m_ZoneMinThickness * 6, Millimeter2iu( 1.5 ) );
|
|
|
|
|
|
|
|
m_gridStyleGap.SetValue( std::max( bestvalue, m_settings.m_ZoneMinThickness ) );
|
|
|
|
|
2020-08-07 14:04:34 +00:00
|
|
|
m_spinCtrlSmoothLevel->SetValue( m_settings.m_HatchSmoothingLevel );
|
|
|
|
m_spinCtrlSmoothValue->SetValue( m_settings.m_HatchSmoothingValue );
|
2018-02-18 09:09:13 +00:00
|
|
|
|
|
|
|
// Enable/Disable some widgets
|
|
|
|
wxCommandEvent event;
|
|
|
|
OnStyleSelection( event );
|
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-07-15 16:53:13 +00:00
|
|
|
|
|
|
|
|
2018-02-18 09:09:13 +00:00
|
|
|
void DIALOG_NON_COPPER_ZONES_EDITOR::OnStyleSelection( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
bool enable = m_GridStyleCtrl->GetSelection() >= 1;
|
|
|
|
m_tcGridStyleThickness->Enable( enable );
|
|
|
|
m_tcGridStyleGap->Enable( enable );
|
|
|
|
m_tcGridStyleOrientation->Enable( enable );
|
|
|
|
m_spinCtrlSmoothLevel->Enable( enable );
|
|
|
|
m_spinCtrlSmoothValue->Enable( enable );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
void DIALOG_NON_COPPER_ZONES_EDITOR::OnLayerSelection( wxDataViewEvent& event )
|
|
|
|
{
|
|
|
|
if( event.GetColumn() != 0 )
|
|
|
|
return;
|
2014-06-24 16:17:18 +00:00
|
|
|
|
2020-06-24 02:19:08 +00:00
|
|
|
int row = m_layers->ItemToRow( event.GetItem() );
|
|
|
|
bool val = m_layers->GetToggleValue( row, 0 );
|
2014-09-25 07:07:17 +00:00
|
|
|
|
2020-06-24 02:19:08 +00:00
|
|
|
wxVariant layerID;
|
|
|
|
m_layers->GetValue( layerID, row, 2 );
|
|
|
|
m_settings.m_Layers.set( ToLAYER_ID( layerID.GetInteger() ), val );
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
bool DIALOG_NON_COPPER_ZONES_EDITOR::TransferDataFromWindow()
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
2019-04-30 11:16:29 +00:00
|
|
|
m_settings.SetCornerSmoothingType( m_cornerSmoothingChoice->GetSelection() );
|
|
|
|
|
|
|
|
m_settings.SetCornerRadius( m_settings.GetCornerSmoothingType() == ZONE_SETTINGS::SMOOTHING_NONE
|
|
|
|
? 0 : m_cornerRadius.GetValue() );
|
|
|
|
|
2018-02-18 09:09:13 +00:00
|
|
|
if( !m_gridStyleRotation.Validate( -1800, 1800 ) )
|
|
|
|
return false;
|
2009-05-01 16:46:56 +00:00
|
|
|
|
2018-02-18 09:09:13 +00:00
|
|
|
m_settings.m_ZoneMinThickness = m_minWidth.GetValue();
|
2009-05-01 16:46:56 +00:00
|
|
|
|
2020-08-07 14:04:34 +00:00
|
|
|
switch( m_OutlineDisplayCtrl->GetSelection() )
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
2020-08-07 14:04:34 +00:00
|
|
|
case 0: m_settings.m_ZoneBorderDisplayStyle = ZONE_BORDER_DISPLAY_STYLE::NO_HATCH; break;
|
|
|
|
case 1: m_settings.m_ZoneBorderDisplayStyle = ZONE_BORDER_DISPLAY_STYLE::DIAGONAL_EDGE; break;
|
|
|
|
case 2: m_settings.m_ZoneBorderDisplayStyle = ZONE_BORDER_DISPLAY_STYLE::DIAGONAL_FULL; break;
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
|
|
|
|
2018-02-18 09:09:13 +00:00
|
|
|
if( m_GridStyleCtrl->GetSelection() > 0 )
|
2019-12-20 14:11:39 +00:00
|
|
|
m_settings.m_FillMode = ZONE_FILL_MODE::HATCH_PATTERN;
|
2018-02-18 09:09:13 +00:00
|
|
|
else
|
2019-12-20 14:11:39 +00:00
|
|
|
m_settings.m_FillMode = ZONE_FILL_MODE::POLYGONS;
|
2018-02-18 09:09:13 +00:00
|
|
|
|
|
|
|
|
2019-12-20 14:11:39 +00:00
|
|
|
if( m_settings.m_FillMode == ZONE_FILL_MODE::HATCH_PATTERN )
|
2018-02-18 09:09:13 +00:00
|
|
|
{
|
|
|
|
int minThickness = m_minWidth.GetValue();
|
|
|
|
|
|
|
|
if( !m_gridStyleThickness.Validate( minThickness, INT_MAX ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if( !m_gridStyleGap.Validate( minThickness, INT_MAX ) )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-07 14:04:34 +00:00
|
|
|
m_settings.m_HatchOrientation = m_gridStyleRotation.GetValue() / 10.0; // value is returned in deci-degree
|
|
|
|
m_settings.m_HatchThickness = m_gridStyleThickness.GetValue();
|
|
|
|
m_settings.m_HatchGap = m_gridStyleGap.GetValue();
|
|
|
|
m_settings.m_HatchSmoothingLevel = m_spinCtrlSmoothLevel->GetValue();
|
|
|
|
m_settings.m_HatchSmoothingValue = m_spinCtrlSmoothValue->GetValue();
|
2018-02-18 09:09:13 +00:00
|
|
|
|
2020-05-06 01:43:37 +00:00
|
|
|
auto cfg = m_parent->GetPcbNewSettings();
|
2020-08-07 14:04:34 +00:00
|
|
|
cfg->m_Zones.hatching_style = static_cast<int>( m_settings.m_ZoneBorderDisplayStyle );
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
m_settings.m_Zone_45_Only = m_ConstrainOpt->GetValue();
|
2021-05-06 21:49:07 +00:00
|
|
|
m_settings.m_Locked = m_cbLocked->GetValue();
|
2008-09-26 19:51:36 +00:00
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
// Get the layer selection for this zone
|
2018-05-25 14:56:04 +00:00
|
|
|
int layer = -1;
|
2018-07-04 12:28:48 +00:00
|
|
|
for( int ii = 0; ii < m_layers->GetItemCount(); ++ii )
|
2008-09-26 19:51:36 +00:00
|
|
|
{
|
2018-07-04 12:28:48 +00:00
|
|
|
if( m_layers->GetToggleValue( (unsigned) ii, 0 ) )
|
2018-05-25 14:56:04 +00:00
|
|
|
{
|
|
|
|
layer = ii;
|
|
|
|
break;
|
|
|
|
}
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
2011-09-07 19:41:04 +00:00
|
|
|
|
2018-05-25 14:56:04 +00:00
|
|
|
if( layer < 0 )
|
|
|
|
{
|
|
|
|
DisplayError( this, _( "No layer selected." ) );
|
|
|
|
return false;
|
|
|
|
}
|
2012-02-06 05:44:19 +00:00
|
|
|
|
|
|
|
*m_ptr = m_settings;
|
2018-05-25 14:56:04 +00:00
|
|
|
return true;
|
2008-09-26 19:51:36 +00:00
|
|
|
}
|
2012-02-06 05:44:19 +00:00
|
|
|
|
2014-07-15 16:53:13 +00:00
|
|
|
|