mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
The pressure relief valve was not useful for common work patterns as it forced the recalculation on many common actions such as bus expansion. This caused it to actually feel slower than with the pressure relief valve off. For most schematics, realtime is now fast enough to not need the valve and for those that are extremely complex, removing the valve helps this run more predictably
577 lines
20 KiB
C++
577 lines
20 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2019-2022 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
|
|
*/
|
|
|
|
#include <connection_graph.h>
|
|
#include <dialog_global_edit_text_and_graphics_base.h>
|
|
#include <string_utils.h>
|
|
#include <sch_symbol.h>
|
|
#include <sch_connection.h>
|
|
#include <sch_edit_frame.h>
|
|
#include <sch_shape.h>
|
|
#include <sch_line.h>
|
|
#include <sch_junction.h>
|
|
#include <sch_sheet.h>
|
|
#include <sch_sheet_pin.h>
|
|
#include <schematic.h>
|
|
#include <advanced_config.h>
|
|
#include <tool/tool_manager.h>
|
|
#include <tools/ee_selection_tool.h>
|
|
#include <tools/sch_edit_tool.h>
|
|
#include <widgets/unit_binder.h>
|
|
#include <widgets/font_choice.h>
|
|
|
|
static bool g_modifyReferences;
|
|
static bool g_modifyValues;
|
|
static bool g_modifyOtherFields;
|
|
static bool g_modifyWires;
|
|
static bool g_modifyBuses;
|
|
static bool g_modifyGlobalLabels;
|
|
static bool g_modifyHierLabels;
|
|
static bool g_modifySheetTitles;
|
|
static bool g_modifyOtherSheetFields;
|
|
static bool g_modifySheetPins;
|
|
static bool g_modifySheetBorders;
|
|
static bool g_modifySchTextAndGraphics;
|
|
|
|
static bool g_filterByFieldname;
|
|
static wxString g_fieldnameFilter;
|
|
static bool g_filterByReference;
|
|
static wxString g_referenceFilter;
|
|
static bool g_filterBySymbol;
|
|
static wxString g_symbolFilter;
|
|
static bool g_filterByType;
|
|
static bool g_typeFilterIsPower;
|
|
static bool g_filterByNet;
|
|
static wxString g_netFilter;
|
|
static bool g_filterSelected;
|
|
|
|
|
|
#define DEFAULT_STYLE _( "Default" )
|
|
|
|
class DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS : public DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS_BASE
|
|
{
|
|
SCH_EDIT_FRAME* m_parent;
|
|
EE_SELECTION m_selection;
|
|
|
|
UNIT_BINDER m_textSize;
|
|
UNIT_BINDER m_lineWidth;
|
|
UNIT_BINDER m_junctionSize;
|
|
|
|
bool m_appendUndo;
|
|
|
|
public:
|
|
DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS( SCH_EDIT_FRAME* parent );
|
|
~DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS() override;
|
|
|
|
protected:
|
|
void OnReferenceFilterText( wxCommandEvent& event ) override
|
|
{
|
|
m_referenceFilterOpt->SetValue( true );
|
|
}
|
|
void OnSymbolFilterText( wxCommandEvent& event ) override
|
|
{
|
|
m_symbolFilterOpt->SetValue( true );
|
|
}
|
|
void OnFieldNameFilterText( wxCommandEvent& event ) override
|
|
{
|
|
m_fieldnameFilterOpt->SetValue( true );
|
|
}
|
|
void OnNetFilterText( wxCommandEvent& event ) override
|
|
{
|
|
m_netFilterOpt->SetValue( true );
|
|
}
|
|
|
|
bool TransferDataToWindow() override;
|
|
bool TransferDataFromWindow() override;
|
|
|
|
void visitItem( const SCH_SHEET_PATH& aSheetPath, SCH_ITEM* aItem );
|
|
void processItem( const SCH_SHEET_PATH& aSheetPath, SCH_ITEM* aItem );
|
|
};
|
|
|
|
|
|
DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS( SCH_EDIT_FRAME* parent ) :
|
|
DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS_BASE( parent ),
|
|
m_textSize( parent, m_textSizeLabel, m_textSizeCtrl, m_textSizeUnits, true ),
|
|
m_lineWidth( parent, m_lineWidthLabel, m_LineWidthCtrl, m_lineWidthUnits, true ),
|
|
m_junctionSize( parent, m_dotSizeLabel, m_dotSizeCtrl, m_dotSizeUnits, true )
|
|
{
|
|
m_parent = parent;
|
|
m_appendUndo = false;
|
|
|
|
m_lineStyle->Append( DEFAULT_STYLE );
|
|
m_lineStyle->Append( INDETERMINATE_ACTION );
|
|
|
|
m_textColorSwatch->SetSwatchColor( COLOR4D::UNSPECIFIED, false );
|
|
m_textColorSwatch->SetDefaultColor( COLOR4D::UNSPECIFIED );
|
|
m_colorSwatch->SetSwatchColor( COLOR4D::UNSPECIFIED, false );
|
|
m_colorSwatch->SetDefaultColor( COLOR4D::UNSPECIFIED );
|
|
m_fillColorSwatch->SetSwatchColor( COLOR4D::UNSPECIFIED, false );
|
|
m_fillColorSwatch->SetDefaultColor( COLOR4D::UNSPECIFIED );
|
|
m_dotColorSwatch->SetSwatchColor( COLOR4D::UNSPECIFIED, false );
|
|
m_dotColorSwatch->SetDefaultColor( COLOR4D::UNSPECIFIED );
|
|
|
|
SetupStandardButtons();
|
|
|
|
finishDialogSettings();
|
|
}
|
|
|
|
|
|
DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::~DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS()
|
|
{
|
|
g_modifyReferences = m_references->GetValue();
|
|
g_modifyValues = m_values->GetValue();
|
|
g_modifyOtherFields = m_otherFields->GetValue();
|
|
g_modifyWires = m_wires->GetValue();
|
|
g_modifyBuses = m_buses->GetValue();
|
|
g_modifyGlobalLabels = m_globalLabels->GetValue();
|
|
g_modifyHierLabels = m_hierLabels->GetValue();
|
|
g_modifySheetTitles = m_sheetTitles->GetValue();
|
|
g_modifyOtherSheetFields = m_sheetFields->GetValue();
|
|
g_modifySheetPins = m_sheetPins->GetValue();
|
|
g_modifySheetBorders = m_sheetBorders->GetValue();
|
|
g_modifySchTextAndGraphics = m_schTextAndGraphics->GetValue();
|
|
|
|
g_filterByFieldname = m_fieldnameFilterOpt->GetValue();
|
|
g_fieldnameFilter = m_fieldnameFilter->GetValue();
|
|
g_filterByReference = m_referenceFilterOpt->GetValue();
|
|
g_referenceFilter = m_referenceFilter->GetValue();
|
|
g_filterBySymbol = m_symbolFilterOpt->GetValue();
|
|
g_symbolFilter = m_symbolFilter->GetValue();
|
|
g_filterByType = m_typeFilterOpt->GetValue();
|
|
g_typeFilterIsPower = m_typeFilter->GetSelection() == 1;
|
|
g_filterByNet = m_netFilterOpt->GetValue();
|
|
g_netFilter = m_netFilter->GetValue();
|
|
g_filterSelected = m_selectedFilterOpt->GetValue();
|
|
}
|
|
|
|
|
|
bool DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::TransferDataToWindow()
|
|
{
|
|
EE_SELECTION_TOOL* selectionTool = m_parent->GetToolManager()->GetTool<EE_SELECTION_TOOL>();
|
|
m_selection = selectionTool->GetSelection();
|
|
|
|
m_references->SetValue( g_modifyReferences );
|
|
m_values->SetValue( g_modifyValues );
|
|
m_otherFields->SetValue( g_modifyOtherFields );
|
|
m_wires->SetValue( g_modifyWires );
|
|
m_buses->SetValue( g_modifyBuses );
|
|
m_globalLabels->SetValue( g_modifyGlobalLabels );
|
|
m_hierLabels->SetValue( g_modifyHierLabels );
|
|
m_sheetTitles->SetValue( g_modifySheetTitles );
|
|
m_sheetFields->SetValue( g_modifyOtherSheetFields );
|
|
m_sheetPins->SetValue( g_modifySheetPins );
|
|
m_sheetBorders->SetValue( g_modifySheetBorders );
|
|
m_schTextAndGraphics->SetValue( g_modifySchTextAndGraphics );
|
|
|
|
// SetValue() generates events, ChangeValue() does not
|
|
m_fieldnameFilter->ChangeValue( g_fieldnameFilter );
|
|
m_fieldnameFilterOpt->SetValue( g_filterByFieldname );
|
|
m_referenceFilter->ChangeValue( g_referenceFilter );
|
|
m_referenceFilterOpt->SetValue( g_filterByReference );
|
|
m_symbolFilter->ChangeValue( g_symbolFilter );
|
|
m_symbolFilterOpt->SetValue( g_filterBySymbol );
|
|
m_typeFilter->SetSelection( g_typeFilterIsPower ? 1 : 0 );
|
|
m_typeFilterOpt->SetValue( g_filterByType );
|
|
m_selectedFilterOpt->SetValue( g_filterSelected );
|
|
|
|
if( g_filterByNet && !g_netFilter.IsEmpty() )
|
|
{
|
|
m_netFilter->SetValue( g_netFilter );
|
|
m_netFilterOpt->SetValue( true );
|
|
}
|
|
else if( m_parent->GetHighlightedConnection() )
|
|
{
|
|
m_netFilter->SetValue( m_parent->GetHighlightedConnection()->Name() );
|
|
}
|
|
else if( m_selection.GetSize() )
|
|
{
|
|
SCH_ITEM* sch_item = (SCH_ITEM*) m_selection.Front();
|
|
SCH_CONNECTION* connection = sch_item->Connection();
|
|
|
|
if( connection )
|
|
m_netFilter->SetValue( connection->Name() );
|
|
}
|
|
|
|
m_netFilterOpt->SetValue( g_filterByNet );
|
|
|
|
m_fontCtrl->Append( INDETERMINATE_ACTION );
|
|
m_fontCtrl->SetStringSelection( INDETERMINATE_ACTION );
|
|
|
|
m_textSize.SetValue( INDETERMINATE_ACTION );
|
|
m_orientation->SetStringSelection( INDETERMINATE_ACTION );
|
|
m_hAlign->SetStringSelection( INDETERMINATE_ACTION );
|
|
m_vAlign->SetStringSelection( INDETERMINATE_ACTION );
|
|
m_italic->Set3StateValue( wxCHK_UNDETERMINED );
|
|
m_bold->Set3StateValue( wxCHK_UNDETERMINED );
|
|
m_visible->Set3StateValue( wxCHK_UNDETERMINED );
|
|
m_showFieldNames->Set3StateValue( wxCHK_UNDETERMINED );
|
|
m_lineWidth.SetValue( INDETERMINATE_ACTION );
|
|
m_lineStyle->SetStringSelection( INDETERMINATE_ACTION );
|
|
m_junctionSize.SetValue( INDETERMINATE_ACTION );
|
|
m_setColor->SetValue( false );
|
|
m_setFillColor->SetValue( false );
|
|
m_setDotColor->SetValue( false );
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
void DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::processItem( const SCH_SHEET_PATH& aSheetPath,
|
|
SCH_ITEM* aItem )
|
|
{
|
|
if( m_selectedFilterOpt->GetValue() )
|
|
{
|
|
if( !aItem->IsSelected() && ( !aItem->GetParent() || !aItem->GetParent()->IsSelected() ) )
|
|
return;
|
|
}
|
|
|
|
m_parent->SaveCopyInUndoList( aSheetPath.LastScreen(), aItem, UNDO_REDO::CHANGED, m_appendUndo,
|
|
false );
|
|
m_appendUndo = true;
|
|
|
|
if( EDA_TEXT* eda_text = dynamic_cast<EDA_TEXT*>( aItem ) )
|
|
{
|
|
if( !m_textSize.IsIndeterminate() )
|
|
eda_text->SetTextSize( wxSize( m_textSize.GetValue(), m_textSize.GetValue() ) );
|
|
|
|
if( m_setTextColor->GetValue() )
|
|
eda_text->SetTextColor( m_textColorSwatch->GetSwatchColor() );
|
|
|
|
if( m_hAlign->GetStringSelection() != INDETERMINATE_ACTION )
|
|
{
|
|
GR_TEXT_H_ALIGN_T hAlign = EDA_TEXT::MapHorizJustify( m_hAlign->GetSelection() - 1 );
|
|
SCH_SYMBOL* parentSymbol = dynamic_cast<SCH_SYMBOL*>( aItem->GetParent() );
|
|
|
|
if( parentSymbol && parentSymbol->GetTransform().x1 < 0 )
|
|
{
|
|
if( hAlign == GR_TEXT_H_ALIGN_LEFT )
|
|
hAlign = GR_TEXT_H_ALIGN_RIGHT;
|
|
else if( hAlign == GR_TEXT_H_ALIGN_RIGHT )
|
|
hAlign = GR_TEXT_H_ALIGN_LEFT;
|
|
}
|
|
|
|
eda_text->SetHorizJustify( hAlign );
|
|
}
|
|
|
|
if( m_vAlign->GetStringSelection() != INDETERMINATE_ACTION )
|
|
{
|
|
GR_TEXT_V_ALIGN_T vAlign = EDA_TEXT::MapVertJustify( m_vAlign->GetSelection() - 1 );
|
|
SCH_SYMBOL* parentSymbol = dynamic_cast<SCH_SYMBOL*>( aItem->GetParent() );
|
|
|
|
if( parentSymbol && parentSymbol->GetTransform().y1 < 0 )
|
|
{
|
|
if( vAlign == GR_TEXT_V_ALIGN_TOP )
|
|
vAlign = GR_TEXT_V_ALIGN_BOTTOM;
|
|
else if( vAlign == GR_TEXT_V_ALIGN_BOTTOM )
|
|
vAlign = GR_TEXT_V_ALIGN_TOP;
|
|
}
|
|
|
|
eda_text->SetVertJustify( vAlign );
|
|
}
|
|
|
|
if( m_visible->Get3StateValue() != wxCHK_UNDETERMINED )
|
|
eda_text->SetVisible( m_visible->GetValue() );
|
|
|
|
if( m_italic->Get3StateValue() != wxCHK_UNDETERMINED )
|
|
eda_text->SetItalic( m_italic->GetValue() );
|
|
|
|
if( m_bold->Get3StateValue() != wxCHK_UNDETERMINED )
|
|
eda_text->SetBold( m_bold->GetValue() );
|
|
|
|
// Must come after bold & italic
|
|
if( m_fontCtrl->GetStringSelection() != INDETERMINATE_ACTION )
|
|
{
|
|
eda_text->SetFont( m_fontCtrl->GetFontSelection( eda_text->IsBold(),
|
|
eda_text->IsItalic() ) );
|
|
}
|
|
else if( m_italic->Get3StateValue() != wxCHK_UNDETERMINED
|
|
|| m_bold->Get3StateValue() != wxCHK_UNDETERMINED )
|
|
{
|
|
if( !eda_text->GetFontName().IsEmpty() )
|
|
{
|
|
eda_text->SetFont( KIFONT::FONT::GetFont( eda_text->GetFontName(),
|
|
eda_text->IsBold(),
|
|
eda_text->IsItalic() ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
if( SCH_TEXT* sch_text = dynamic_cast<SCH_TEXT*>( aItem ) )
|
|
{
|
|
if( m_orientation->GetStringSelection() != INDETERMINATE_ACTION )
|
|
sch_text->SetTextSpinStyle( (TEXT_SPIN_STYLE::SPIN) m_orientation->GetSelection() );
|
|
}
|
|
|
|
if( SCH_FIELD* sch_field = dynamic_cast<SCH_FIELD*>( aItem ) )
|
|
{
|
|
if( m_showFieldNames->Get3StateValue() != wxCHK_UNDETERMINED )
|
|
sch_field->SetNameShown( m_showFieldNames->GetValue() );
|
|
}
|
|
|
|
if( aItem->HasLineStroke() )
|
|
{
|
|
STROKE_PARAMS stroke = aItem->GetStroke();
|
|
|
|
if( !m_lineWidth.IsIndeterminate() )
|
|
stroke.SetWidth( m_lineWidth.GetValue() );
|
|
|
|
if( m_lineStyle->GetStringSelection() != INDETERMINATE_ACTION )
|
|
{
|
|
if( m_lineStyle->GetStringSelection() == DEFAULT_STYLE )
|
|
stroke.SetPlotStyle( PLOT_DASH_TYPE::DEFAULT );
|
|
else
|
|
stroke.SetPlotStyle( (PLOT_DASH_TYPE) m_lineStyle->GetSelection() );
|
|
}
|
|
|
|
if( m_setColor->GetValue() )
|
|
stroke.SetColor( m_colorSwatch->GetSwatchColor() );
|
|
|
|
aItem->SetStroke( stroke );
|
|
}
|
|
|
|
if( SCH_SHAPE* shape = dynamic_cast<SCH_SHAPE*>( aItem ) )
|
|
{
|
|
if( m_setFillColor->GetValue() )
|
|
{
|
|
shape->SetFillColor( m_fillColorSwatch->GetSwatchColor() );
|
|
|
|
if( m_fillColorSwatch->GetSwatchColor() == COLOR4D::UNSPECIFIED )
|
|
shape->SetFillMode( FILL_T::NO_FILL );
|
|
else
|
|
shape->SetFillMode( FILL_T::FILLED_WITH_COLOR );
|
|
}
|
|
}
|
|
|
|
if( SCH_JUNCTION* junction = dynamic_cast<SCH_JUNCTION*>( aItem ) )
|
|
{
|
|
if( !m_junctionSize.IsIndeterminate() )
|
|
junction->SetDiameter( m_junctionSize.GetValue() );
|
|
|
|
if( m_setDotColor->GetValue() )
|
|
junction->SetColor( m_dotColorSwatch->GetSwatchColor() );
|
|
}
|
|
}
|
|
|
|
void DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::visitItem( const SCH_SHEET_PATH& aSheetPath,
|
|
SCH_ITEM* aItem )
|
|
{
|
|
if( m_netFilterOpt->GetValue() && !m_netFilter->GetValue().IsEmpty() )
|
|
{
|
|
SCH_CONNECTION* connection = aItem->Connection( &aSheetPath );
|
|
|
|
if( !connection )
|
|
return;
|
|
|
|
if( !WildCompareString( m_netFilter->GetValue(), connection->Name(), false ) )
|
|
return;
|
|
}
|
|
|
|
if( m_referenceFilterOpt->GetValue() && !m_referenceFilter->GetValue().IsEmpty() )
|
|
{
|
|
if( aItem->Type() == SCH_SYMBOL_T )
|
|
{
|
|
wxString ref = static_cast<SCH_SYMBOL*>( aItem )->GetRef( &aSheetPath );
|
|
|
|
if( !WildCompareString( m_referenceFilter->GetValue(), ref, false ) )
|
|
return;
|
|
}
|
|
}
|
|
|
|
if( m_symbolFilterOpt->GetValue() && !m_symbolFilter->GetValue().IsEmpty() )
|
|
{
|
|
if( aItem->Type() == SCH_SYMBOL_T )
|
|
{
|
|
wxString id = UnescapeString( static_cast<SCH_SYMBOL*>( aItem )->GetLibId().Format() );
|
|
|
|
if( !WildCompareString( m_symbolFilter->GetValue(), id, false ) )
|
|
return;
|
|
}
|
|
}
|
|
|
|
if( m_typeFilterOpt->GetValue() )
|
|
{
|
|
if( aItem->Type() == SCH_SYMBOL_T )
|
|
{
|
|
bool isPower = static_cast<SCH_SYMBOL*>( aItem )->GetLibSymbolRef()->IsPower();
|
|
|
|
if( isPower != ( m_typeFilter->GetSelection() == 1 ) )
|
|
return;
|
|
}
|
|
}
|
|
|
|
if( aItem->Type() == SCH_SYMBOL_T )
|
|
{
|
|
SCH_SYMBOL* symbol = (SCH_SYMBOL*) aItem;
|
|
|
|
if( m_references->GetValue() )
|
|
processItem( aSheetPath, symbol->GetField( REFERENCE_FIELD ) );
|
|
|
|
if( m_values->GetValue() )
|
|
processItem( aSheetPath, symbol->GetField( VALUE_FIELD ) );
|
|
|
|
if( m_otherFields->GetValue() )
|
|
{
|
|
for( int i = 2; i < symbol->GetFieldCount(); ++i )
|
|
{
|
|
SCH_FIELD& field = symbol->GetFields()[i];
|
|
const wxString& fieldName = field.GetName();
|
|
|
|
if( !m_fieldnameFilterOpt->GetValue() || m_fieldnameFilter->GetValue().IsEmpty()
|
|
|| WildCompareString( m_fieldnameFilter->GetValue(), fieldName, false ) )
|
|
{
|
|
processItem( aSheetPath, &field );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if( aItem->Type() == SCH_SHEET_T )
|
|
{
|
|
SCH_SHEET* sheet = static_cast<SCH_SHEET*>( aItem );
|
|
|
|
if( m_sheetTitles->GetValue() )
|
|
processItem( aSheetPath, &sheet->GetFields()[SHEETNAME] );
|
|
|
|
if( m_sheetFields->GetValue() )
|
|
{
|
|
for( SCH_FIELD& field : sheet->GetFields() )
|
|
{
|
|
if( field.GetId() == SHEETNAME )
|
|
continue;
|
|
|
|
const wxString& fieldName = field.GetName();
|
|
|
|
if( !m_fieldnameFilterOpt->GetValue() || m_fieldnameFilter->GetValue().IsEmpty()
|
|
|| WildCompareString( m_fieldnameFilter->GetValue(), fieldName, false ) )
|
|
{
|
|
processItem( aSheetPath, &field );
|
|
}
|
|
}
|
|
}
|
|
|
|
if( m_sheetBorders->GetValue() )
|
|
{
|
|
if( !m_lineWidth.IsIndeterminate() )
|
|
sheet->SetBorderWidth( m_lineWidth.GetValue() );
|
|
|
|
if( m_setColor->GetValue() )
|
|
sheet->SetBorderColor( m_colorSwatch->GetSwatchColor() );
|
|
|
|
if( m_setFillColor->GetValue() )
|
|
sheet->SetBackgroundColor( m_fillColorSwatch->GetSwatchColor() );
|
|
}
|
|
|
|
if( m_sheetPins->GetValue() )
|
|
{
|
|
for( SCH_SHEET_PIN* pin : sheet->GetPins() )
|
|
processItem( aSheetPath, pin );
|
|
}
|
|
}
|
|
else if( aItem->Type() == SCH_JUNCTION_T )
|
|
{
|
|
SCH_JUNCTION* junction = static_cast<SCH_JUNCTION*>( aItem );
|
|
|
|
for( SCH_ITEM* item : junction->ConnectedItems( aSheetPath ) )
|
|
{
|
|
if( item->GetLayer() == LAYER_BUS && m_buses->GetValue() )
|
|
{
|
|
processItem( aSheetPath, aItem );
|
|
break;
|
|
}
|
|
else if( item->GetLayer() == LAYER_WIRE && m_wires->GetValue() )
|
|
{
|
|
processItem( aSheetPath, aItem );
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else if( m_wires->GetValue() && aItem->IsType( { SCH_ITEM_LOCATE_WIRE_T,
|
|
SCH_LABEL_LOCATE_WIRE_T } ) )
|
|
{
|
|
processItem( aSheetPath, aItem );
|
|
}
|
|
else if( m_buses->GetValue() && aItem->IsType( { SCH_ITEM_LOCATE_BUS_T,
|
|
SCH_LABEL_LOCATE_BUS_T } ) )
|
|
{
|
|
processItem( aSheetPath, aItem );
|
|
}
|
|
else if( m_globalLabels->GetValue() && aItem->Type() == SCH_GLOBAL_LABEL_T )
|
|
{
|
|
processItem( aSheetPath, aItem );
|
|
}
|
|
else if( m_hierLabels->GetValue() && aItem->Type() == SCH_HIER_LABEL_T )
|
|
{
|
|
processItem( aSheetPath, aItem );
|
|
}
|
|
else if( m_schTextAndGraphics->GetValue() && aItem->IsType( { SCH_TEXT_T, SCH_TEXTBOX_T,
|
|
SCH_ITEM_LOCATE_GRAPHIC_LINE_T,
|
|
SCH_SHAPE_T } ) )
|
|
{
|
|
processItem( aSheetPath, aItem );
|
|
}
|
|
}
|
|
|
|
|
|
bool DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::TransferDataFromWindow()
|
|
{
|
|
if( !m_textSize.Validate( 1.0, 10000.0, EDA_UNITS::MILS ) ) // 1 mil .. 10 inches
|
|
return false;
|
|
|
|
SCH_SHEET_PATH currentSheet = m_parent->GetCurrentSheet();
|
|
m_appendUndo = false;
|
|
|
|
// Go through sheets
|
|
for( const SCH_SHEET_PATH& sheetPath : m_parent->Schematic().GetSheets() )
|
|
{
|
|
SCH_SCREEN* screen = sheetPath.LastScreen();
|
|
|
|
if( screen )
|
|
{
|
|
m_parent->SetCurrentSheet( sheetPath );
|
|
|
|
for( SCH_ITEM* item : screen->Items() )
|
|
visitItem( sheetPath, item );
|
|
}
|
|
}
|
|
|
|
if( m_appendUndo )
|
|
{
|
|
m_parent->OnModify();
|
|
m_parent->HardRedraw();
|
|
}
|
|
|
|
// Reset the view to where we left the user
|
|
m_parent->SetCurrentSheet( currentSheet );
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
int SCH_EDIT_TOOL::GlobalEdit( const TOOL_EVENT& aEvent )
|
|
{
|
|
DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS dlg( m_frame );
|
|
dlg.ShowModal();
|
|
return 0;
|
|
}
|
|
|
|
|