2020-03-10 18:46:57 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2020 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 <sch_edit_frame.h>
|
2020-04-04 20:32:14 +00:00
|
|
|
#include <sch_painter.h>
|
2020-10-08 17:04:53 +00:00
|
|
|
#include <eeschema_settings.h>
|
|
|
|
#include <kiface_i.h>
|
2020-03-10 18:46:57 +00:00
|
|
|
#include <panel_setup_formatting.h>
|
|
|
|
#include <sch_junction.h>
|
2020-05-23 15:50:08 +00:00
|
|
|
#include <schematic.h>
|
2020-05-20 03:34:55 +00:00
|
|
|
#include <schematic_settings.h>
|
|
|
|
|
2020-03-10 18:46:57 +00:00
|
|
|
|
|
|
|
PANEL_SETUP_FORMATTING::PANEL_SETUP_FORMATTING( wxWindow* aWindow, SCH_EDIT_FRAME* aFrame ) :
|
|
|
|
PANEL_SETUP_FORMATTING_BASE( aWindow ),
|
|
|
|
m_frame( aFrame ),
|
2020-03-13 09:53:44 +00:00
|
|
|
m_textSize( aFrame, m_textSizeLabel, m_textSizeCtrl, m_textSizeUnits, true ),
|
2020-04-04 20:32:14 +00:00
|
|
|
m_lineWidth( aFrame, m_lineWidthLabel, m_lineWidthCtrl, m_lineWidthUnits, true ),
|
2020-11-10 13:50:16 +00:00
|
|
|
m_pinSymbolSize( aFrame, m_pinSymbolSizeLabel, m_pinSymbolSizeCtrl, m_pinSymbolSizeUnits,
|
|
|
|
true )
|
2020-03-10 18:46:57 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PANEL_SETUP_FORMATTING::TransferDataToWindow()
|
|
|
|
{
|
2020-05-23 15:50:08 +00:00
|
|
|
SCHEMATIC_SETTINGS& settings = m_frame->Schematic().Settings();
|
|
|
|
|
2020-03-10 18:46:57 +00:00
|
|
|
// Reference style one of: "A" ".A" "-A" "_A" ".1" "-1" "_1"
|
|
|
|
int refStyleSelection;
|
|
|
|
|
|
|
|
switch( LIB_PART::GetSubpartIdSeparator() )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0: refStyleSelection = 0; break;
|
|
|
|
case '.': refStyleSelection = LIB_PART::GetSubpartFirstId() == '1' ? 4 : 1; break;
|
|
|
|
case '-': refStyleSelection = LIB_PART::GetSubpartFirstId() == '1' ? 5 : 2; break;
|
|
|
|
case '_': refStyleSelection = LIB_PART::GetSubpartFirstId() == '1' ? 6 : 3; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_choiceSeparatorRefId->SetSelection( refStyleSelection );
|
|
|
|
|
2020-10-02 22:04:16 +00:00
|
|
|
m_textSize.SetUnits( EDA_UNITS::MILS );
|
|
|
|
m_lineWidth.SetUnits( EDA_UNITS::MILS );
|
|
|
|
m_pinSymbolSize.SetUnits( EDA_UNITS::MILS );
|
2020-03-10 18:46:57 +00:00
|
|
|
|
2020-05-23 15:50:08 +00:00
|
|
|
m_textSize.SetValue( settings.m_DefaultTextSize );
|
|
|
|
m_lineWidth.SetValue( settings.m_DefaultLineWidth );
|
|
|
|
m_pinSymbolSize.SetValue( settings.m_PinSymbolSize );
|
2020-10-08 17:04:53 +00:00
|
|
|
m_choiceJunctionDotSize->SetSelection( settings.m_JunctionSizeChoice );
|
2020-03-10 18:46:57 +00:00
|
|
|
|
2020-11-17 16:02:47 +00:00
|
|
|
m_showIntersheetsReferences->SetValue( settings.m_IntersheetRefsShow );
|
|
|
|
m_radioFormatStandard->SetValue( !settings.m_IntersheetRefsFormatShort );
|
|
|
|
m_radioFormatAbbreviated->SetValue( settings.m_IntersheetRefsFormatShort );
|
|
|
|
m_prefixCtrl->ChangeValue( settings.m_IntersheetRefsPrefix );
|
|
|
|
m_suffixCtrl->ChangeValue( settings.m_IntersheetRefsSuffix );
|
2020-08-31 14:11:54 +00:00
|
|
|
|
2020-05-23 15:50:08 +00:00
|
|
|
wxString offsetRatio = wxString::Format( "%f", settings.m_TextOffsetRatio * 100.0 );
|
2020-04-14 12:25:00 +00:00
|
|
|
m_textOffsetRatioCtrl->SetValue( offsetRatio );
|
2020-03-17 12:49:49 +00:00
|
|
|
|
2020-03-10 18:46:57 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PANEL_SETUP_FORMATTING::TransferDataFromWindow()
|
|
|
|
{
|
2020-05-23 15:50:08 +00:00
|
|
|
SCHEMATIC_SETTINGS& settings = m_frame->Schematic().Settings();
|
|
|
|
|
2020-03-10 18:46:57 +00:00
|
|
|
// Reference style one of: "A" ".A" "-A" "_A" ".1" "-1" "_1"
|
|
|
|
int firstRefId, refSeparator;
|
|
|
|
|
|
|
|
switch( m_choiceSeparatorRefId->GetSelection() )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0: firstRefId = 'A'; refSeparator = 0; break;
|
|
|
|
case 1: firstRefId = 'A'; refSeparator = '.'; break;
|
|
|
|
case 2: firstRefId = 'A'; refSeparator = '-'; break;
|
|
|
|
case 3: firstRefId = 'A'; refSeparator = '_'; break;
|
|
|
|
case 4: firstRefId = '1'; refSeparator = '.'; break;
|
|
|
|
case 5: firstRefId = '1'; refSeparator = '-'; break;
|
|
|
|
case 6: firstRefId = '1'; refSeparator = '_'; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( refSeparator != LIB_PART::GetSubpartIdSeparator() ||
|
|
|
|
firstRefId != LIB_PART::GetSubpartFirstId() )
|
|
|
|
{
|
|
|
|
LIB_PART::SetSubpartIdNotation( refSeparator, firstRefId );
|
|
|
|
}
|
|
|
|
|
2020-05-23 15:50:08 +00:00
|
|
|
settings.m_DefaultTextSize = (int) m_textSize.GetValue();
|
|
|
|
settings.m_DefaultLineWidth = (int) m_lineWidth.GetValue();
|
|
|
|
settings.m_PinSymbolSize = (int) m_pinSymbolSize.GetValue();
|
2020-11-10 13:50:16 +00:00
|
|
|
|
2020-10-08 17:04:53 +00:00
|
|
|
// Get the current working size in case of problem with wxChoice widget results
|
|
|
|
int currJunctionDotSize = settings.m_JunctionSize;
|
|
|
|
// See if user has made a junction dot size selection
|
|
|
|
int currDotSizeIndex = m_choiceJunctionDotSize->GetSelection();
|
|
|
|
|
|
|
|
if( currDotSizeIndex != wxNOT_FOUND )
|
|
|
|
{
|
|
|
|
EESCHEMA_SETTINGS* projSettings =
|
|
|
|
dynamic_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() );
|
|
|
|
|
2020-11-10 13:50:16 +00:00
|
|
|
wxCHECK( projSettings, false );
|
|
|
|
|
2020-10-08 17:04:53 +00:00
|
|
|
if( currDotSizeIndex )
|
|
|
|
{
|
|
|
|
// Junction dots are scaled value of default line width
|
|
|
|
currJunctionDotSize =
|
|
|
|
settings.m_DefaultLineWidth
|
|
|
|
* projSettings->m_Drawing.junction_size_mult_list[currDotSizeIndex];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Don't set to zero or else it's set to min of 10 mils in "sch_painter.cpp"
|
|
|
|
currJunctionDotSize = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
settings.m_JunctionSizeChoice = currDotSizeIndex; // Store to set pulldown next time
|
|
|
|
}
|
2020-11-10 13:50:16 +00:00
|
|
|
|
2020-10-08 17:04:53 +00:00
|
|
|
settings.m_JunctionSize = currJunctionDotSize;
|
2020-05-20 03:34:55 +00:00
|
|
|
|
2020-11-17 16:02:47 +00:00
|
|
|
settings.m_IntersheetRefsShow = m_showIntersheetsReferences->GetValue();
|
|
|
|
settings.m_IntersheetRefsFormatShort = !m_radioFormatStandard->GetValue();
|
|
|
|
settings.m_IntersheetRefsPrefix = m_prefixCtrl->GetValue();
|
|
|
|
settings.m_IntersheetRefsSuffix = m_suffixCtrl->GetValue();
|
2020-08-31 14:11:54 +00:00
|
|
|
|
2020-03-17 12:49:49 +00:00
|
|
|
double dtmp = 0.0;
|
|
|
|
wxString msg = m_textOffsetRatioCtrl->GetValue();
|
|
|
|
msg.ToDouble( &dtmp );
|
2020-05-23 15:50:08 +00:00
|
|
|
settings.m_TextOffsetRatio = dtmp / 100.0;
|
|
|
|
|
|
|
|
m_frame->GetRenderSettings()->SetDefaultPenWidth( settings.m_DefaultLineWidth );
|
|
|
|
m_frame->GetRenderSettings()->m_TextOffsetRatio = settings.m_TextOffsetRatio;
|
|
|
|
m_frame->GetRenderSettings()->m_PinSymbolSize = settings.m_PinSymbolSize;
|
|
|
|
m_frame->GetRenderSettings()->m_JunctionSize = settings.m_JunctionSize;
|
2020-04-14 12:25:00 +00:00
|
|
|
|
2020-03-10 18:46:57 +00:00
|
|
|
m_frame->GetCanvas()->GetView()->MarkDirty();
|
|
|
|
m_frame->GetCanvas()->GetView()->UpdateAllItems( KIGFX::REPAINT );
|
|
|
|
m_frame->GetCanvas()->Refresh();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-08 02:19:46 +00:00
|
|
|
void PANEL_SETUP_FORMATTING::ImportSettingsFrom( SCHEMATIC_SETTINGS& aSettings )
|
|
|
|
{
|
|
|
|
m_textSize.SetValue( aSettings.m_DefaultTextSize );
|
|
|
|
m_lineWidth.SetValue( aSettings.m_DefaultLineWidth );
|
|
|
|
m_pinSymbolSize.SetValue( aSettings.m_PinSymbolSize );
|
|
|
|
|
2020-11-17 16:02:47 +00:00
|
|
|
m_showIntersheetsReferences->SetValue( aSettings.m_IntersheetRefsShow );
|
|
|
|
m_radioFormatStandard->SetValue( aSettings.m_IntersheetRefsFormatShort );
|
|
|
|
m_radioFormatAbbreviated->SetValue( !aSettings.m_IntersheetRefsFormatShort );
|
|
|
|
m_prefixCtrl->ChangeValue( aSettings.m_IntersheetRefsPrefix );
|
|
|
|
m_suffixCtrl->ChangeValue( aSettings.m_IntersheetRefsSuffix );
|
2020-08-31 14:11:54 +00:00
|
|
|
|
2020-06-08 02:19:46 +00:00
|
|
|
wxString offsetRatio = wxString::Format( "%f", aSettings.m_TextOffsetRatio * 100.0 );
|
|
|
|
m_textOffsetRatioCtrl->SetValue( offsetRatio );
|
|
|
|
}
|