86 lines
3.1 KiB
C++
86 lines
3.1 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2021 Jean-Pierre Charras jp.charras at wanadoo.fr
|
|
* Copyright (C) 1992-2021 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <gerbview.h>
|
|
#include <gerbview_frame.h>
|
|
#include <gerbview_settings.h>
|
|
|
|
#include "panel_gerbview_excellon_settings.h"
|
|
#include <widgets/paged_dialog.h>
|
|
|
|
|
|
PANEL_GERBVIEW_EXCELLON_SETTINGS::PANEL_GERBVIEW_EXCELLON_SETTINGS(
|
|
GERBVIEW_FRAME *aFrame, wxWindow* aWindow ) :
|
|
PANEL_GERBVIEW_EXCELLON_SETTINGS_BASE( aWindow, wxID_ANY ),
|
|
m_Parent( aFrame )
|
|
{
|
|
}
|
|
|
|
|
|
bool PANEL_GERBVIEW_EXCELLON_SETTINGS::TransferDataToWindow( )
|
|
{
|
|
GERBVIEW_SETTINGS* config = static_cast<GERBVIEW_SETTINGS*>( m_Parent->config() );
|
|
EXCELLON_DEFAULTS curr_settings;
|
|
config->GetExcellonDefaults( curr_settings );
|
|
|
|
applySettingsToPanel( curr_settings );
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool PANEL_GERBVIEW_EXCELLON_SETTINGS::TransferDataFromWindow()
|
|
{
|
|
GERBVIEW_SETTINGS* config = static_cast<GERBVIEW_SETTINGS*>( m_Parent->config() );
|
|
|
|
config->m_ExcellonDefaults.m_UnitsMM = m_rbUnits->GetSelection() != 0;
|
|
config->m_ExcellonDefaults.m_LeadingZero = m_rbZeroFormat->GetSelection();
|
|
// The first value of these param is 2, not 0
|
|
#define FIRST_VALUE 2
|
|
config->m_ExcellonDefaults.m_MmIntegerLen = m_choiceIntegerMM->GetSelection()+FIRST_VALUE;
|
|
config->m_ExcellonDefaults.m_MmMantissaLen = m_choiceMantissaMM->GetSelection()+FIRST_VALUE;
|
|
config->m_ExcellonDefaults.m_InchIntegerLen = m_choiceIntegerInch->GetSelection()+FIRST_VALUE;
|
|
config->m_ExcellonDefaults.m_InchMantissaLen = m_choiceMantissaInch->GetSelection()+FIRST_VALUE;
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
void PANEL_GERBVIEW_EXCELLON_SETTINGS::ResetPanel()
|
|
{
|
|
EXCELLON_DEFAULTS defaults;
|
|
applySettingsToPanel( defaults );
|
|
}
|
|
|
|
|
|
void PANEL_GERBVIEW_EXCELLON_SETTINGS::applySettingsToPanel( const EXCELLON_DEFAULTS& aSettings )
|
|
{
|
|
m_rbUnits->SetSelection( aSettings.m_UnitsMM ? 1 : 0 );
|
|
m_rbZeroFormat->SetSelection( aSettings.m_LeadingZero );
|
|
|
|
// The first value of these param is 2, not 0
|
|
#define FIRST_VALUE 2
|
|
m_choiceIntegerMM->SetSelection( aSettings.m_MmIntegerLen-FIRST_VALUE );
|
|
m_choiceMantissaMM->SetSelection( aSettings.m_MmMantissaLen-FIRST_VALUE );
|
|
m_choiceIntegerInch->SetSelection( aSettings.m_InchIntegerLen-FIRST_VALUE );
|
|
m_choiceMantissaInch->SetSelection( aSettings.m_InchMantissaLen-FIRST_VALUE );
|
|
}
|
|
|