Centralize text size clamping.
Also introduces alg::clamp to improve readability of std::max( min, std::max( value, max ) ) Fixes https://gitlab.com/kicad/code/kicad/-/issues/14876
This commit is contained in:
parent
1aff03eadb
commit
5875f89531
|
@ -269,7 +269,7 @@ void BOARD_ADAPTER::createTrack( const PCB_TRACK* aTrack, CONTAINER_2D_BASE* aDs
|
|||
else
|
||||
{
|
||||
circlesegcount = KiROUND( arcsegcount * 360.0 / std::abs( arc_angle.AsDegrees() ) );
|
||||
circlesegcount = std::max( 1, std::min( circlesegcount, 128 ) );
|
||||
circlesegcount = alg::clamp( 1, circlesegcount, 128 );
|
||||
}
|
||||
|
||||
transformArcToSegments( VECTOR2I( center.x, center.y ), arc->GetStart(), arc_angle,
|
||||
|
|
|
@ -389,7 +389,7 @@ void EDA_DRAW_FRAME::OnUpdateSelectGrid( wxUpdateUIEvent& aEvent )
|
|||
wxCHECK( config(), /* void */ );
|
||||
|
||||
int idx = config()->m_Window.grid.last_size_idx;
|
||||
idx = std::max( 0, std::min( idx, (int) m_gridSelectBox->GetCount() - 1 ) );
|
||||
idx = alg::clamp( 0, idx, (int) m_gridSelectBox->GetCount() - 1 );
|
||||
|
||||
if( idx != m_gridSelectBox->GetSelection() )
|
||||
m_gridSelectBox->SetSelection( idx );
|
||||
|
|
|
@ -42,6 +42,7 @@
|
|||
#include <string_utils.h> // for UnescapeString
|
||||
#include <math/util.h> // for KiROUND
|
||||
#include <math/vector2d.h>
|
||||
#include <core/kicad_algo.h>
|
||||
#include <richio.h>
|
||||
#include <render_settings.h>
|
||||
#include <trigo.h> // for RotatePoint
|
||||
|
@ -52,7 +53,6 @@
|
|||
#include <font/outline_font.h>
|
||||
#include <geometry/shape_poly_set.h>
|
||||
#include <properties/property_validators.h>
|
||||
#include <pcbnew.h> // Text limits are in here for some reason
|
||||
|
||||
#include <wx/debug.h> // for wxASSERT
|
||||
#include <wx/string.h>
|
||||
|
@ -358,7 +358,11 @@ void EDA_TEXT::SetLineSpacing( double aLineSpacing )
|
|||
|
||||
void EDA_TEXT::SetTextSize( const VECTOR2I& aNewSize )
|
||||
{
|
||||
m_attributes.m_Size = aNewSize;
|
||||
int min = m_IuScale.get().MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int max = m_IuScale.get().MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
|
||||
m_attributes.m_Size = VECTOR2I( alg::clamp( min, aNewSize.x, max ),
|
||||
alg::clamp( min, aNewSize.y, max ) );
|
||||
ClearRenderCache();
|
||||
m_bounding_box_cache_valid = false;
|
||||
}
|
||||
|
@ -366,7 +370,10 @@ void EDA_TEXT::SetTextSize( const VECTOR2I& aNewSize )
|
|||
|
||||
void EDA_TEXT::SetTextWidth( int aWidth )
|
||||
{
|
||||
m_attributes.m_Size.x = aWidth;
|
||||
int min = m_IuScale.get().MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int max = m_IuScale.get().MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
|
||||
m_attributes.m_Size.x = alg::clamp( min, aWidth, max );
|
||||
ClearRenderCache();
|
||||
m_bounding_box_cache_valid = false;
|
||||
}
|
||||
|
@ -374,7 +381,10 @@ void EDA_TEXT::SetTextWidth( int aWidth )
|
|||
|
||||
void EDA_TEXT::SetTextHeight( int aHeight )
|
||||
{
|
||||
m_attributes.m_Size.y = aHeight;
|
||||
int min = m_IuScale.get().MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int max = m_IuScale.get().MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
|
||||
m_attributes.m_Size.y = alg::clamp( min, aHeight, max );
|
||||
ClearRenderCache();
|
||||
m_bounding_box_cache_valid = false;
|
||||
}
|
||||
|
@ -1073,17 +1083,13 @@ static struct EDA_TEXT_DESC
|
|||
&EDA_TEXT::SetTextWidth,
|
||||
&EDA_TEXT::GetTextWidth,
|
||||
PROPERTY_DISPLAY::PT_SIZE ),
|
||||
textProps )
|
||||
.SetValidator( PROPERTY_VALIDATORS::RangeIntValidator<TEXTS_MIN_SIZE,
|
||||
TEXTS_MAX_SIZE> );
|
||||
textProps );
|
||||
|
||||
propMgr.AddProperty( new PROPERTY<EDA_TEXT, int>( _HKI( "Height" ),
|
||||
&EDA_TEXT::SetTextHeight,
|
||||
&EDA_TEXT::GetTextHeight,
|
||||
PROPERTY_DISPLAY::PT_SIZE ),
|
||||
textProps )
|
||||
.SetValidator( PROPERTY_VALIDATORS::RangeIntValidator<TEXTS_MIN_SIZE,
|
||||
TEXTS_MAX_SIZE> );
|
||||
textProps );
|
||||
|
||||
propMgr.AddProperty( new PROPERTY_ENUM<EDA_TEXT,
|
||||
GR_TEXT_H_ALIGN_T>( _HKI( "Horizontal Justification" ),
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include <i18n_utility.h>
|
||||
#include <wx/crt.h>
|
||||
#include <math/util.h>
|
||||
#include <core/kicad_algo.h>
|
||||
|
||||
using namespace KIGFX;
|
||||
|
||||
|
@ -575,10 +576,10 @@ EDA_COLOR_T COLOR4D::FindNearestLegacyColor( int aR, int aG, int aB )
|
|||
|
||||
COLOR4D& COLOR4D::FromCSSRGBA( int aRed, int aGreen, int aBlue, double aAlpha )
|
||||
{
|
||||
r = std::max( 0, std::min( 255, aRed ) ) / 255.0;
|
||||
g = std::max( 0, std::min( 255, aGreen ) ) / 255.0;
|
||||
b = std::max( 0, std::min( 255, aBlue ) ) / 255.0;
|
||||
a = std::max( 0.0, std::min( 1.0, aAlpha ) );
|
||||
r = alg::clamp( 0, aRed, 255 ) / 255.0;
|
||||
g = alg::clamp( 0, aGreen, 255 ) / 255.0;
|
||||
b = alg::clamp( 0, aBlue, 255 ) / 255.0;
|
||||
a = alg::clamp( 0.0, aAlpha, 1.0 );
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
|
|
@ -2,7 +2,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) 2020-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2020-2023 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
|
||||
|
@ -424,7 +424,7 @@ void HPGL_PLOTTER::Circle( const VECTOR2I& aCenter, int aDiameter, FILL_T aFill,
|
|||
double const target_chord_length = m_arcTargetChordLength;
|
||||
EDA_ANGLE chord_angle = ANGLE_360 * target_chord_length / circumf;
|
||||
|
||||
chord_angle = std::max( m_arcMinChordDegrees, std::min( chord_angle, ANGLE_45 ) );
|
||||
chord_angle = std::clamp( m_arcMinChordDegrees, chord_angle, ANGLE_45 );
|
||||
|
||||
if( aFill == FILL_T::FILLED_SHAPE )
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2014-2016 CERN
|
||||
* Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2020-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
@ -33,6 +33,7 @@
|
|||
#include <gal/graphics_abstraction_layer.h>
|
||||
#include <id.h>
|
||||
#include <math/vector2wx.h>
|
||||
#include <core/kicad_algo.h>
|
||||
#include <kiface_base.h>
|
||||
#include <settings/app_settings.h>
|
||||
#include <tool/actions.h>
|
||||
|
@ -457,7 +458,7 @@ int COMMON_TOOLS::GridPreset( int idx )
|
|||
{
|
||||
int& currentGrid = m_toolMgr->GetSettings()->m_Window.grid.last_size_idx;
|
||||
|
||||
currentGrid = std::max( 0, std::min( idx, (int) m_grids.size() - 1 ) );
|
||||
currentGrid = alg::clamp( 0, idx, (int) m_grids.size() - 1 );
|
||||
|
||||
return OnGridChanged();
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include <dialog_sim_format_value.h>
|
||||
#include <sim/spice_value.h>
|
||||
#include <core/kicad_algo.h>
|
||||
|
||||
|
||||
DIALOG_SIM_FORMAT_VALUE::DIALOG_SIM_FORMAT_VALUE( wxWindow* aParent, SPICE_VALUE_FORMAT* aFormat ) :
|
||||
|
@ -88,7 +89,7 @@ DIALOG_SIM_FORMAT_VALUE::DIALOG_SIM_FORMAT_VALUE( wxWindow* aParent, SPICE_VALUE
|
|||
|
||||
bool DIALOG_SIM_FORMAT_VALUE::TransferDataFromWindow()
|
||||
{
|
||||
m_format->Precision = std::max( 1, std::min( m_precisionCtrl->GetValue(), 9 ) );
|
||||
m_format->Precision = alg::clamp( 1, m_precisionCtrl->GetValue(), 9 );
|
||||
|
||||
if( m_rangeCtrl->GetSelection() == 0 )
|
||||
m_format->Range = wxS( "~" ) + m_units;
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2016 CERN
|
||||
* Copyright (C) 2016-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
@ -23,7 +24,8 @@
|
|||
*/
|
||||
|
||||
#include "spice_value.h"
|
||||
#include "math/util.h"
|
||||
#include <math/util.h>
|
||||
#include <core/kicad_algo.h>
|
||||
|
||||
#include <stdexcept>
|
||||
#include <cmath>
|
||||
|
@ -47,7 +49,7 @@ void SPICE_VALUE_FORMAT::FromString( const wxString& aString )
|
|||
|
||||
wxString SPICE_VALUE_FORMAT::ToString() const
|
||||
{
|
||||
return wxString::Format( wxS( "%d%s" ), std::max( 0, std::min( Precision, 9 ) ), Range );
|
||||
return wxString::Format( wxS( "%d%s" ), alg::clamp( 0, Precision, 9 ), Range );
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -38,6 +38,11 @@ class SHAPE_COMPOUND;
|
|||
class SHAPE_POLY_SET;
|
||||
|
||||
|
||||
// These are only here for algorithmic safety, not to tell the user what to do
|
||||
#define TEXT_MIN_SIZE_MILS 1 ///< Minimum text size in mils
|
||||
#define TEXT_MAX_SIZE_MILS 10000 ///< Maximum text size in mils (10 inches)
|
||||
|
||||
|
||||
namespace KIGFX
|
||||
{
|
||||
class RENDER_SETTINGS;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2017-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2017-2023 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
|
||||
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include <math/vector2d.h>
|
||||
#include <algorithm>
|
||||
#include <core/kicad_algo.h>
|
||||
|
||||
namespace KIGFX {
|
||||
namespace PREVIEW {
|
||||
|
@ -170,7 +171,7 @@ private:
|
|||
m_step += aForward ? 1 : -1;
|
||||
|
||||
// clamp to allowed values
|
||||
m_step = std::min( std::max( m_step, 0 ), getMaxStep() );
|
||||
m_step = alg::clamp( 0, m_step, getMaxStep() );
|
||||
}
|
||||
|
||||
///< Has the geometry changed such that a client should redraw?
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2019 CERN
|
||||
* Copyright (C) 2019-2021 KiCad Developers, see AUTHORS.TXT for contributors.
|
||||
* Copyright (C) 2019-2023 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
|
||||
|
@ -200,6 +200,13 @@ bool signbit( T v )
|
|||
}
|
||||
|
||||
|
||||
template <typename T>
|
||||
T clamp( T min, T value, T max )
|
||||
{
|
||||
return std::max( min, std::min( value, max ) );
|
||||
}
|
||||
|
||||
|
||||
} // namespace alg
|
||||
|
||||
#endif /* INCLUDE_CORE_KICAD_ALGO_H_ */
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||
* Copyright (C) 2012-2022 Kicad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2012-2023 Kicad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2013 CERN
|
||||
* @author Tomasz Wlostowski <tomasz.wlostowski@cern.ch>
|
||||
*
|
||||
|
@ -33,6 +33,7 @@
|
|||
|
||||
#include <math/vector2d.h>
|
||||
#include <geometry/eda_angle.h>
|
||||
#include <core/kicad_algo.h>
|
||||
#include <trigo.h>
|
||||
|
||||
/**
|
||||
|
@ -785,8 +786,8 @@ public:
|
|||
me.Normalize(); // ensure size is >= 0
|
||||
|
||||
// Determine closest point to the circle centre within this rect
|
||||
coord_type nx = std::max( me.GetLeft(), std::min( aPoint.x, me.GetRight() ) );
|
||||
coord_type ny = std::max( me.GetTop(), std::min( aPoint.y, me.GetBottom() ) );
|
||||
coord_type nx = alg::clamp( me.GetLeft(), aPoint.x, me.GetRight() );
|
||||
coord_type ny = alg::clamp( me.GetTop(), aPoint.y, me.GetBottom() );
|
||||
|
||||
return Vec( nx, ny );
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@gmail.com>
|
||||
*
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2023 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
|
||||
|
@ -26,7 +26,6 @@
|
|||
*/
|
||||
|
||||
#include <confirm.h>
|
||||
#include <pcbnew.h>
|
||||
#include <pcb_edit_frame.h>
|
||||
#include <widgets/msgpanel.h>
|
||||
#include <board.h>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2023 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,7 +33,6 @@
|
|||
#include <settings/parameters.h>
|
||||
#include <project/project_file.h>
|
||||
#include <advanced_config.h>
|
||||
#include <pcbnew.h>
|
||||
|
||||
const int bdsSchemaVersion = 2;
|
||||
|
||||
|
@ -593,21 +592,26 @@ BOARD_DESIGN_SETTINGS::BOARD_DESIGN_SETTINGS( JSON_SETTINGS* aParent, const std:
|
|||
},
|
||||
{} ) );
|
||||
|
||||
int minTextSize = pcbIUScale.MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int maxTextSize = pcbIUScale.MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
int minStroke = 1;
|
||||
int maxStroke = pcbIUScale.mmToIU( 100 );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.silk_line_width",
|
||||
&m_LineThickness[LAYER_CLASS_SILK], pcbIUScale.mmToIU( DEFAULT_SILK_LINE_WIDTH ),
|
||||
pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ), pcbIUScale.MM_PER_IU ) );
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.silk_text_size_v",
|
||||
&m_TextSize[LAYER_CLASS_SILK].y, pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_SIZE ),
|
||||
TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.silk_text_size_h",
|
||||
&m_TextSize[LAYER_CLASS_SILK].x, pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_SIZE ),
|
||||
TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.silk_text_thickness",
|
||||
&m_TextThickness[LAYER_CLASS_SILK], pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_WIDTH ), 1,
|
||||
TEXTS_MAX_WIDTH, pcbIUScale.MM_PER_IU ) );
|
||||
&m_TextThickness[LAYER_CLASS_SILK], pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_WIDTH ),
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<bool>( "defaults.silk_text_italic",
|
||||
&m_TextItalic[LAYER_CLASS_SILK], false ) );
|
||||
|
@ -617,19 +621,19 @@ BOARD_DESIGN_SETTINGS::BOARD_DESIGN_SETTINGS( JSON_SETTINGS* aParent, const std:
|
|||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.copper_line_width",
|
||||
&m_LineThickness[LAYER_CLASS_COPPER], pcbIUScale.mmToIU( DEFAULT_COPPER_LINE_WIDTH ),
|
||||
pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ), pcbIUScale.MM_PER_IU ) );
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.copper_text_size_v",
|
||||
&m_TextSize[LAYER_CLASS_COPPER].y, pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_SIZE ),
|
||||
TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.copper_text_size_h",
|
||||
&m_TextSize[LAYER_CLASS_COPPER].x, pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_SIZE ),
|
||||
TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.copper_text_thickness",
|
||||
&m_TextThickness[LAYER_CLASS_COPPER], pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_WIDTH ),
|
||||
pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ), pcbIUScale.MM_PER_IU ) );
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<bool>( "defaults.copper_text_italic",
|
||||
&m_TextItalic[LAYER_CLASS_COPPER], false ) );
|
||||
|
@ -639,27 +643,27 @@ BOARD_DESIGN_SETTINGS::BOARD_DESIGN_SETTINGS( JSON_SETTINGS* aParent, const std:
|
|||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.board_outline_line_width",
|
||||
&m_LineThickness[LAYER_CLASS_EDGES], pcbIUScale.mmToIU( DEFAULT_EDGE_WIDTH ),
|
||||
pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ), pcbIUScale.MM_PER_IU ) );
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.courtyard_line_width",
|
||||
&m_LineThickness[LAYER_CLASS_COURTYARD], pcbIUScale.mmToIU( DEFAULT_COURTYARD_WIDTH ),
|
||||
pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ), pcbIUScale.MM_PER_IU ) );
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.fab_line_width",
|
||||
&m_LineThickness[LAYER_CLASS_FAB], pcbIUScale.mmToIU( DEFAULT_LINE_WIDTH ),
|
||||
pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ), pcbIUScale.MM_PER_IU ) );
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.fab_text_size_v",
|
||||
&m_TextSize[LAYER_CLASS_FAB].y, pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ),
|
||||
TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.fab_text_size_h",
|
||||
&m_TextSize[LAYER_CLASS_FAB].x, pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ),
|
||||
TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.fab_text_thickness",
|
||||
&m_TextThickness[LAYER_CLASS_FAB], pcbIUScale.mmToIU( DEFAULT_TEXT_WIDTH ),
|
||||
pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ), pcbIUScale.MM_PER_IU ) );
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<bool>( "defaults.fab_text_italic",
|
||||
&m_TextItalic[LAYER_CLASS_FAB], false ) );
|
||||
|
@ -669,19 +673,19 @@ BOARD_DESIGN_SETTINGS::BOARD_DESIGN_SETTINGS( JSON_SETTINGS* aParent, const std:
|
|||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.other_line_width",
|
||||
&m_LineThickness[LAYER_CLASS_OTHERS], pcbIUScale.mmToIU( DEFAULT_LINE_WIDTH ),
|
||||
pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ), pcbIUScale.MM_PER_IU ) );
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.other_text_size_v",
|
||||
&m_TextSize[LAYER_CLASS_OTHERS].y, pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), TEXTS_MIN_SIZE,
|
||||
TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
&m_TextSize[LAYER_CLASS_OTHERS].y, pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ),
|
||||
minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.other_text_size_h",
|
||||
&m_TextSize[LAYER_CLASS_OTHERS].x, pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), TEXTS_MIN_SIZE,
|
||||
TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
&m_TextSize[LAYER_CLASS_OTHERS].x, pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ),
|
||||
minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "defaults.other_text_thickness",
|
||||
&m_TextThickness[LAYER_CLASS_OTHERS], pcbIUScale.mmToIU( DEFAULT_TEXT_WIDTH ),
|
||||
pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ), pcbIUScale.MM_PER_IU ) );
|
||||
minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<bool>( "defaults.other_text_italic",
|
||||
&m_TextItalic[LAYER_CLASS_OTHERS], false ) );
|
||||
|
|
|
@ -193,8 +193,7 @@ void DIALOG_DRC::OnActivateDlg( wxActivateEvent& aEvent )
|
|||
|
||||
bool DIALOG_DRC::updateUI()
|
||||
{
|
||||
double cur = (double) m_progress.load() / m_maxProgress;
|
||||
cur = std::max( 0.0, std::min( cur, 1.0 ) );
|
||||
double cur = alg::clamp( 0.0, (double) m_progress.load() / m_maxProgress, 1.0 );
|
||||
|
||||
m_gauge->SetValue( KiROUND( cur * 1000.0 ) );
|
||||
wxSafeYield( this );
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
#include <pcb_edit_frame.h>
|
||||
#include <pcbnew_settings.h>
|
||||
#include <pgm_base.h>
|
||||
#include <pcbnew.h>
|
||||
#include <kiplatform/ui.h>
|
||||
#include <widgets/grid_text_button_helpers.h>
|
||||
#include <widgets/text_ctrl_eval.h>
|
||||
|
@ -367,11 +366,14 @@ bool DIALOG_FOOTPRINT_PROPERTIES::Validate()
|
|||
}
|
||||
}
|
||||
|
||||
int minSize = pcbIUScale.MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int maxSize = pcbIUScale.MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
int width = m_frame->ValueFromString( m_itemsGrid->GetCellValue( i, FPT_WIDTH ) );
|
||||
int height = m_frame->ValueFromString( m_itemsGrid->GetCellValue( i, FPT_HEIGHT ) );
|
||||
|
||||
if( width < TEXTS_MIN_SIZE )
|
||||
if( width < minSize )
|
||||
{
|
||||
wxString min = m_frame->StringFromValue( TEXTS_MIN_SIZE, true );
|
||||
wxString min = m_frame->StringFromValue( minSize, true );
|
||||
|
||||
m_itemsGrid->SetCellValue( i, FPT_WIDTH, min );
|
||||
|
||||
|
@ -382,9 +384,9 @@ bool DIALOG_FOOTPRINT_PROPERTIES::Validate()
|
|||
|
||||
return false;
|
||||
}
|
||||
else if( width > TEXTS_MAX_SIZE )
|
||||
else if( width > maxSize )
|
||||
{
|
||||
wxString max = m_frame->StringFromValue( TEXTS_MAX_SIZE, true );
|
||||
wxString max = m_frame->StringFromValue( maxSize, true );
|
||||
|
||||
m_itemsGrid->SetCellValue( i, FPT_WIDTH, max );
|
||||
|
||||
|
@ -396,11 +398,9 @@ bool DIALOG_FOOTPRINT_PROPERTIES::Validate()
|
|||
return false;
|
||||
}
|
||||
|
||||
int height = m_frame->ValueFromString( m_itemsGrid->GetCellValue( i, FPT_HEIGHT ) );
|
||||
|
||||
if( height < TEXTS_MIN_SIZE )
|
||||
if( height < minSize )
|
||||
{
|
||||
wxString min = m_frame->StringFromValue( TEXTS_MIN_SIZE, true );
|
||||
wxString min = m_frame->StringFromValue( minSize, true );
|
||||
|
||||
m_itemsGrid->SetCellValue( i, FPT_HEIGHT, min );
|
||||
|
||||
|
@ -411,9 +411,9 @@ bool DIALOG_FOOTPRINT_PROPERTIES::Validate()
|
|||
|
||||
return false;
|
||||
}
|
||||
else if( height > TEXTS_MAX_SIZE )
|
||||
else if( height > maxSize )
|
||||
{
|
||||
wxString max = m_frame->StringFromValue( TEXTS_MAX_SIZE, true );
|
||||
wxString max = m_frame->StringFromValue( maxSize, true );
|
||||
|
||||
m_itemsGrid->SetCellValue( i, FPT_HEIGHT, max );
|
||||
|
||||
|
|
|
@ -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-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2004-2023 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
|
||||
|
@ -44,7 +44,6 @@
|
|||
#include "3d_rendering/opengl/3d_model.h"
|
||||
#include "filename_resolver.h"
|
||||
#include <pgm_base.h>
|
||||
#include <pcbnew.h>
|
||||
#include "dialogs/panel_preview_3d_model.h"
|
||||
#include "dialogs/3d_cache_dialogs.h"
|
||||
#include <settings/settings_manager.h>
|
||||
|
@ -420,24 +419,27 @@ bool DIALOG_FOOTPRINT_PROPERTIES_FP_EDITOR::Validate()
|
|||
return false;
|
||||
}
|
||||
|
||||
if( text.GetTextWidth() < TEXTS_MIN_SIZE || text.GetTextWidth() > TEXTS_MAX_SIZE )
|
||||
int minSize = pcbIUScale.MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int maxSize = pcbIUScale.MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
|
||||
if( text.GetTextWidth() < minSize || text.GetTextWidth() > maxSize )
|
||||
{
|
||||
m_delayedFocusGrid = m_itemsGrid;
|
||||
m_delayedErrorMessage = wxString::Format( _( "The text width must be between %s and %s." ),
|
||||
m_frame->StringFromValue( TEXTS_MIN_SIZE, true ),
|
||||
m_frame->StringFromValue( TEXTS_MAX_SIZE, true ) );
|
||||
m_frame->StringFromValue( minSize, true ),
|
||||
m_frame->StringFromValue( maxSize, true ) );
|
||||
m_delayedFocusColumn = FPT_WIDTH;
|
||||
m_delayedFocusRow = i;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
if( text.GetTextHeight() < TEXTS_MIN_SIZE || text.GetTextHeight() > TEXTS_MAX_SIZE )
|
||||
if( text.GetTextHeight() < minSize || text.GetTextHeight() > maxSize )
|
||||
{
|
||||
m_delayedFocusGrid = m_itemsGrid;
|
||||
m_delayedErrorMessage = wxString::Format( _( "The text height must be between %s and %s." ),
|
||||
m_frame->StringFromValue( TEXTS_MIN_SIZE, true ),
|
||||
m_frame->StringFromValue( TEXTS_MAX_SIZE, true ) );
|
||||
m_frame->StringFromValue( minSize, true ),
|
||||
m_frame->StringFromValue( maxSize, true ) );
|
||||
m_delayedFocusColumn = FPT_HEIGHT;
|
||||
m_delayedFocusRow = i;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2012 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2023 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
|
||||
|
@ -27,7 +27,6 @@
|
|||
#include <pcb_edit_frame.h>
|
||||
#include <footprint_edit_frame.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
#include <pcbnew.h>
|
||||
#include <board.h>
|
||||
#include <board_design_settings.h>
|
||||
#include <footprint.h>
|
||||
|
@ -497,8 +496,11 @@ void DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::visitItem( BOARD_COMMIT& aCommit, BOA
|
|||
|
||||
bool DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::TransferDataFromWindow()
|
||||
{
|
||||
if( !m_textWidth.Validate( TEXTS_MIN_SIZE, TEXTS_MAX_SIZE )
|
||||
|| !m_textHeight.Validate( TEXTS_MIN_SIZE, TEXTS_MAX_SIZE ) )
|
||||
int minTextSize = pcbIUScale.MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int maxTextSize = pcbIUScale.MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
|
||||
if( !m_textWidth.Validate( minTextSize, maxTextSize )
|
||||
|| !m_textHeight.Validate( minTextSize, maxTextSize ) )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
#include <board.h>
|
||||
#include <footprint.h>
|
||||
#include <pcb_text.h>
|
||||
#include <pcbnew.h>
|
||||
#include <project.h>
|
||||
#include <pcb_edit_frame.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
|
@ -365,11 +364,11 @@ bool DIALOG_TEXT_PROPERTIES::TransferDataFromWindow()
|
|||
if( !DIALOG_TEXT_PROPERTIES_BASE::TransferDataFromWindow() )
|
||||
return false;
|
||||
|
||||
if( !m_textWidth.Validate( TEXTS_MIN_SIZE, TEXTS_MAX_SIZE )
|
||||
|| !m_textHeight.Validate( TEXTS_MIN_SIZE, TEXTS_MAX_SIZE ) )
|
||||
{
|
||||
int minSize = pcbIUScale.MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int maxSize = pcbIUScale.MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
|
||||
if( !m_textWidth.Validate( minSize, maxSize ) || !m_textHeight.Validate( minSize, maxSize ) )
|
||||
return false;
|
||||
}
|
||||
|
||||
BOARD_COMMIT commit( m_frame );
|
||||
commit.Modify( m_item );
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
#include <board.h>
|
||||
#include <footprint.h>
|
||||
#include <pcb_textbox.h>
|
||||
#include <pcbnew.h>
|
||||
#include <project.h>
|
||||
#include <pcb_edit_frame.h>
|
||||
#include <pcb_layer_box_selector.h>
|
||||
|
@ -284,11 +283,11 @@ bool DIALOG_TEXTBOX_PROPERTIES::TransferDataFromWindow()
|
|||
if( !DIALOG_TEXTBOX_PROPERTIES_BASE::TransferDataFromWindow() )
|
||||
return false;
|
||||
|
||||
if( !m_textWidth.Validate( TEXTS_MIN_SIZE, TEXTS_MAX_SIZE )
|
||||
|| !m_textHeight.Validate( TEXTS_MIN_SIZE, TEXTS_MAX_SIZE ) )
|
||||
{
|
||||
int minSize = pcbIUScale.MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int maxSize = pcbIUScale.MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
|
||||
if( !m_textWidth.Validate( minSize, maxSize ) || !m_textHeight.Validate( minSize, maxSize ) )
|
||||
return false;
|
||||
}
|
||||
|
||||
BOARD_COMMIT commit( m_frame );
|
||||
commit.Modify( m_textBox );
|
||||
|
|
|
@ -27,7 +27,6 @@
|
|||
#include <confirm.h>
|
||||
#include <core/arraydim.h>
|
||||
#include <core/kicad_algo.h>
|
||||
#include <pcbnew.h>
|
||||
#include <pcb_edit_frame.h>
|
||||
#include <board.h>
|
||||
#include <collectors.h>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2011-2013 Lorenzo Marcantonio <l.marcantonio@logossrl.com>
|
||||
* Copyright (C) 2004-2022 KiCad Developers, see change_log.txt for contributors.
|
||||
* Copyright (C) 2004-2023 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
|
||||
|
@ -36,7 +36,6 @@
|
|||
#include <macros.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <locale_io.h>
|
||||
#include <pcbnew.h>
|
||||
#include <board.h>
|
||||
#include <board_design_settings.h>
|
||||
#include <footprint.h>
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
|
||||
#include <board.h>
|
||||
|
||||
#include <pcbnew.h>
|
||||
#include <pcbplot.h>
|
||||
#include <gendrill_file_writer_base.h>
|
||||
#include <pcb_painter.h>
|
||||
|
|
|
@ -43,14 +43,12 @@
|
|||
#include <footprint_info_impl.h>
|
||||
#include <footprint_tree_pane.h>
|
||||
#include <fp_lib_table.h>
|
||||
#include <plugins/kicad/pcb_plugin.h>
|
||||
#include <kiface_base.h>
|
||||
#include <kiplatform/app.h>
|
||||
#include <kiway.h>
|
||||
#include <macros.h>
|
||||
#include <pcb_draw_panel_gal.h>
|
||||
#include <pcb_edit_frame.h>
|
||||
#include <pcbnew.h>
|
||||
#include <pcbnew_id.h>
|
||||
#include <pgm_base.h>
|
||||
#include <project.h>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2020 Jon Evans <jon@craftyjon.com>
|
||||
* Copyright (C) 2020-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 2020-2023 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 as published by the
|
||||
|
@ -22,15 +22,14 @@
|
|||
#include <footprint_editor_settings.h>
|
||||
#include <layer_ids.h>
|
||||
#include <pgm_base.h>
|
||||
#include <eda_text.h>
|
||||
#include <settings/common_settings.h>
|
||||
#include <settings/json_settings_internals.h>
|
||||
#include <settings/parameters.h>
|
||||
#include <settings/settings_manager.h>
|
||||
#include <wx/config.h>
|
||||
#include <base_units.h>
|
||||
#include <widgets/ui_common.h>
|
||||
#include <wx/log.h>
|
||||
#include <pcbnew.h>
|
||||
|
||||
|
||||
///! Update the schema version whenever a migration is required
|
||||
|
@ -161,95 +160,91 @@ FOOTPRINT_EDITOR_SETTINGS::FOOTPRINT_EDITOR_SETTINGS() :
|
|||
{ "${REFERENCE}", true, F_Fab }
|
||||
} ) ) );
|
||||
|
||||
int minTextSize = pcbIUScale.MilsToIU( TEXT_MIN_SIZE_MILS );
|
||||
int maxTextSize = pcbIUScale.MilsToIU( TEXT_MAX_SIZE_MILS );
|
||||
int minStroke = 1;
|
||||
int maxStroke = pcbIUScale.mmToIU( 100 );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.silk_line_width",
|
||||
&m_DesignSettings.m_LineThickness[ LAYER_CLASS_SILK ],
|
||||
pcbIUScale.mmToIU( DEFAULT_SILK_LINE_WIDTH ), pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 100.0 ),
|
||||
pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_SILK_LINE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.silk_text_size_h",
|
||||
&m_DesignSettings.m_TextSize[ LAYER_CLASS_SILK ].x,
|
||||
pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_SIZE ), TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.silk_text_size_v",
|
||||
&m_DesignSettings.m_TextSize[ LAYER_CLASS_SILK ].y,
|
||||
pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_SIZE ), TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.silk_text_thickness",
|
||||
&m_DesignSettings.m_TextThickness[ LAYER_CLASS_SILK ],
|
||||
pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_WIDTH ), 1, TEXTS_MAX_WIDTH, pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_SILK_TEXT_WIDTH ), 1, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<bool>( "design_settings.silk_text_italic",
|
||||
&m_DesignSettings.m_TextItalic[ LAYER_CLASS_SILK ], false ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.copper_line_width",
|
||||
&m_DesignSettings.m_LineThickness[ LAYER_CLASS_COPPER ],
|
||||
pcbIUScale.mmToIU( DEFAULT_COPPER_LINE_WIDTH ), pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ),
|
||||
pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_COPPER_LINE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.copper_text_size_h",
|
||||
&m_DesignSettings.m_TextSize[ LAYER_CLASS_COPPER ].x,
|
||||
pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_SIZE ), TEXTS_MIN_SIZE, TEXTS_MAX_SIZE,
|
||||
pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.copper_text_size_v",
|
||||
&m_DesignSettings.m_TextSize[ LAYER_CLASS_COPPER ].y,
|
||||
pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_SIZE ), TEXTS_MIN_SIZE, TEXTS_MAX_SIZE,
|
||||
pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.copper_text_thickness",
|
||||
&m_DesignSettings.m_TextThickness[ LAYER_CLASS_COPPER ],
|
||||
pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_WIDTH ), pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ),
|
||||
pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_COPPER_TEXT_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<bool>( "design_settings.copper_text_italic",
|
||||
&m_DesignSettings.m_TextItalic[ LAYER_CLASS_COPPER ], false ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.edge_line_width",
|
||||
&m_DesignSettings.m_LineThickness[ LAYER_CLASS_EDGES ],
|
||||
pcbIUScale.mmToIU( DEFAULT_EDGE_WIDTH ), pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ),
|
||||
pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_EDGE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.courtyard_line_width",
|
||||
&m_DesignSettings.m_LineThickness[ LAYER_CLASS_COURTYARD ],
|
||||
pcbIUScale.mmToIU( DEFAULT_COURTYARD_WIDTH ), pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ),
|
||||
pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_COURTYARD_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.fab_line_width",
|
||||
&m_DesignSettings.m_LineThickness[ LAYER_CLASS_FAB ],
|
||||
pcbIUScale.mmToIU( DEFAULT_LINE_WIDTH ), pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ),
|
||||
pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_LINE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.fab_text_size_h",
|
||||
&m_DesignSettings.m_TextSize[ LAYER_CLASS_FAB ].x,
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.fab_text_size_v",
|
||||
&m_DesignSettings.m_TextSize[ LAYER_CLASS_FAB ].y,
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.fab_text_thickness",
|
||||
&m_DesignSettings.m_TextThickness[ LAYER_CLASS_FAB ],
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_WIDTH ), 1, TEXTS_MAX_WIDTH, pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_WIDTH ), 1, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<bool>( "design_settings.fab_text_italic",
|
||||
&m_DesignSettings.m_TextItalic[ LAYER_CLASS_FAB ], false ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.others_line_width",
|
||||
&m_DesignSettings.m_LineThickness[ LAYER_CLASS_OTHERS ],
|
||||
pcbIUScale.mmToIU( DEFAULT_LINE_WIDTH ), pcbIUScale.mmToIU( 0.01 ), pcbIUScale.mmToIU( 5.0 ),
|
||||
pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_LINE_WIDTH ), minStroke, maxStroke, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.others_text_size_h",
|
||||
&m_DesignSettings.m_TextSize[ LAYER_CLASS_OTHERS ].x,
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.others_text_size_v",
|
||||
&m_DesignSettings.m_TextSize[ LAYER_CLASS_OTHERS ].y,
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), TEXTS_MIN_SIZE, TEXTS_MAX_SIZE, pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_SIZE ), minTextSize, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "design_settings.others_text_thickness",
|
||||
&m_DesignSettings.m_TextThickness[ LAYER_CLASS_OTHERS ],
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_WIDTH ), 1, TEXTS_MAX_WIDTH, pcbIUScale.MM_PER_IU ) );
|
||||
pcbIUScale.mmToIU( DEFAULT_TEXT_WIDTH ), 1, maxTextSize, pcbIUScale.MM_PER_IU ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<bool>( "design_settings.others_text_italic",
|
||||
&m_DesignSettings.m_TextItalic[ LAYER_CLASS_OTHERS ], false ) );
|
||||
|
|
|
@ -258,7 +258,7 @@ FOOTPRINT_PREVIEW_PANEL* FOOTPRINT_PREVIEW_PANEL::New( KIWAY* aKiway, wxWindow*
|
|||
panel->GetGAL()->SetGridVisibility( gridCfg.show );
|
||||
|
||||
//Bounds checking cannot include number of elements as an index!
|
||||
int gridIdx = std::max( 0, std::min( gridCfg.last_size_idx, (int) gridCfg.sizes.size() - 1 ) );
|
||||
int gridIdx = alg::clamp( 0, gridCfg.last_size_idx, (int) gridCfg.sizes.size() - 1 );
|
||||
double gridSize = EDA_UNIT_UTILS::UI::DoubleValueFromString( pcbIUScale, EDA_UNITS::MILS,
|
||||
gridCfg.sizes[ gridIdx ] );
|
||||
panel->GetGAL()->SetGridSize( VECTOR2D( gridSize, gridSize ) );
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#include <pcb_edit_frame.h>
|
||||
#include <board.h>
|
||||
#include <footprint.h>
|
||||
#include <pcbnew.h>
|
||||
#include <pcbnew_id.h>
|
||||
#include <wildcards_and_files_ext.h>
|
||||
#include <dialogs/dialog_footprint_wizard_list.h>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2007-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 1992-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2023 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
|
||||
|
@ -35,7 +35,6 @@
|
|||
#include <board.h>
|
||||
#include <board_design_settings.h>
|
||||
|
||||
#include <pcbnew.h>
|
||||
#include <footprint_edit_frame.h>
|
||||
#include <widgets/appearance_controls.h>
|
||||
|
||||
|
|
|
@ -36,7 +36,6 @@
|
|||
#include <pcb_shape.h>
|
||||
#include <microwave/microwave_tool.h>
|
||||
#include <pad.h>
|
||||
#include <pcbnew.h>
|
||||
#include <math/util.h> // for KiROUND
|
||||
|
||||
#include <wx/button.h>
|
||||
|
|
|
@ -343,7 +343,7 @@ void PAD::SetRoundRectCornerRadius( double aRadius )
|
|||
|
||||
void PAD::SetRoundRectRadiusRatio( double aRadiusScale )
|
||||
{
|
||||
m_roundedCornerScale = std::max( 0.0, std::min( aRadiusScale, 0.5 ) );
|
||||
m_roundedCornerScale = alg::clamp( 0.0, aRadiusScale, 0.5 );
|
||||
|
||||
SetDirty();
|
||||
}
|
||||
|
@ -351,7 +351,7 @@ void PAD::SetRoundRectRadiusRatio( double aRadiusScale )
|
|||
|
||||
void PAD::SetChamferRectRatio( double aChamferScale )
|
||||
{
|
||||
m_chamferScale = std::max( 0.0, std::min( aChamferScale, 0.5 ) );
|
||||
m_chamferScale = alg::clamp( 0.0, aChamferScale, 0.5 );
|
||||
|
||||
SetDirty();
|
||||
}
|
||||
|
|
|
@ -278,8 +278,8 @@ bool PAD::GetBestAnchorPosition( VECTOR2I& aPos )
|
|||
stepsX = minSteps * (double) bbox.GetWidth() / (double )(bbox.GetHeight() + 1);
|
||||
}
|
||||
|
||||
stepsX = std::max(minSteps, std::min( maxSteps, stepsX ) );
|
||||
stepsY = std::max(minSteps, std::min( maxSteps, stepsY ) );
|
||||
stepsX = alg::clamp( minSteps, maxSteps, stepsX );
|
||||
stepsY = alg::clamp( minSteps, maxSteps, stepsY );
|
||||
|
||||
VECTOR2I center = bbox.Centre();
|
||||
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
/*
|
||||
* This program source code file is part of KiCad, a free EDA CAD application.
|
||||
*
|
||||
* Copyright (C) 2007-2014 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 1992-2019 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
|
||||
* 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
|
||||
*/
|
||||
|
||||
#ifndef PCBNEW_H
|
||||
#define PCBNEW_H
|
||||
|
||||
#include <eda_units.h> // to define pcbIUScale.MilsToIU() conversion function
|
||||
|
||||
// These are only here for algorithmic safety, not to tell the user what to do
|
||||
#define TEXTS_MIN_SIZE pcbIUScale.MilsToIU( 1 ) ///< Minimum text size in internal units (1 mil)
|
||||
#define TEXTS_MAX_SIZE pcbIUScale.MilsToIU( 10000 ) ///< Maximum text size in internal units (10 inches)
|
||||
#define TEXTS_MAX_WIDTH pcbIUScale.MilsToIU( 10000 ) ///< Maximum text width in internal units (10 inches)
|
||||
|
||||
|
||||
#endif // PCBNEW_H
|
|
@ -3402,7 +3402,7 @@ PCB_DIMENSION_BASE* PCB_PARSER::parseDIMENSION( BOARD_ITEM* aParent )
|
|||
if( dim->Type() == PCB_DIM_ORTHOGONAL_T )
|
||||
{
|
||||
PCB_DIM_ORTHOGONAL* ortho = static_cast<PCB_DIM_ORTHOGONAL*>( dim.get() );
|
||||
orientation = std::max( 0, std::min( 1, orientation ) );
|
||||
orientation = alg::clamp( 0, orientation, 1 );
|
||||
ortho->SetOrientation( static_cast<PCB_DIM_ORTHOGONAL::DIR>( orientation ) );
|
||||
}
|
||||
|
||||
|
@ -3442,7 +3442,7 @@ PCB_DIMENSION_BASE* PCB_PARSER::parseDIMENSION( BOARD_ITEM* aParent )
|
|||
case T_units_format:
|
||||
{
|
||||
int format = parseInt( "dimension units format" );
|
||||
format = std::max( 0, std::min( 3, format ) );
|
||||
format = alg::clamp( 0, format, 3 );
|
||||
dim->SetUnitsFormat( static_cast<DIM_UNITS_FORMAT>( format ) );
|
||||
NeedRIGHT();
|
||||
break;
|
||||
|
@ -3529,7 +3529,7 @@ PCB_DIMENSION_BASE* PCB_PARSER::parseDIMENSION( BOARD_ITEM* aParent )
|
|||
PCB_DIM_LEADER* leader = static_cast<PCB_DIM_LEADER*>( dim.get() );
|
||||
|
||||
int textFrame = parseInt( "text frame mode" );
|
||||
textFrame = std::max( 0, std::min( 3, textFrame ) );
|
||||
textFrame = alg::clamp( 0, textFrame, 3 );
|
||||
leader->SetTextBorder( static_cast<DIM_TEXT_BORDER>( textFrame ));
|
||||
NeedRIGHT();
|
||||
break;
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
||||
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
||||
* Copyright (C) 1992-2023 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
|
||||
|
@ -25,7 +25,6 @@
|
|||
|
||||
#include <zone_settings.h>
|
||||
|
||||
#include <pcbnew.h>
|
||||
#include <pcb_base_frame.h>
|
||||
#include <board.h>
|
||||
#include <settings/color_settings.h>
|
||||
|
|
Loading…
Reference in New Issue