103 lines
3.8 KiB
C++
103 lines
3.8 KiB
C++
/*
|
|
* 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) 2014-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 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 <3d_enums.h>
|
|
#include <pgm_base.h>
|
|
#include <settings/settings_manager.h>
|
|
#include <eda_3d_viewer_settings.h>
|
|
#include "panel_3D_display_options.h"
|
|
|
|
|
|
PANEL_3D_DISPLAY_OPTIONS::PANEL_3D_DISPLAY_OPTIONS( wxWindow* aParent ) :
|
|
PANEL_3D_DISPLAY_OPTIONS_BASE( aParent )
|
|
{
|
|
}
|
|
|
|
|
|
void PANEL_3D_DISPLAY_OPTIONS::OnCheckEnableAnimation( wxCommandEvent& event )
|
|
{
|
|
m_staticAnimationSpeed->Enable( m_checkBoxEnableAnimation->GetValue() );
|
|
m_sliderAnimationSpeed->Enable( m_checkBoxEnableAnimation->GetValue() );
|
|
}
|
|
|
|
|
|
void PANEL_3D_DISPLAY_OPTIONS::loadViewSettings( EDA_3D_VIEWER_SETTINGS* aCfg )
|
|
{
|
|
// Check/uncheck checkboxes
|
|
m_checkBoxAreas->SetValue( aCfg->m_Render.show_zones );
|
|
|
|
m_checkBoxSubtractMaskFromSilk->SetValue( aCfg->m_Render.subtract_mask_from_silk );
|
|
m_checkBoxClipSilkOnViaAnnulus->SetValue( aCfg->m_Render.clip_silk_on_via_annuli );
|
|
m_checkBoxRenderPlatedPadsAsPlated->SetValue( aCfg->m_Render.differentiate_plated_copper );
|
|
|
|
m_materialProperties->SetSelection( static_cast<int>( aCfg->m_Render.material_mode ) );
|
|
|
|
// Camera Options
|
|
m_checkBoxEnableAnimation->SetValue( aCfg->m_Camera.animation_enabled );
|
|
m_sliderAnimationSpeed->SetValue( aCfg->m_Camera.moving_speed_multiplier );
|
|
m_staticAnimationSpeed->Enable( aCfg->m_Camera.animation_enabled );
|
|
m_sliderAnimationSpeed->Enable( aCfg->m_Camera.animation_enabled );
|
|
m_spinCtrlRotationAngle->SetValue( aCfg->m_Camera.rotation_increment );
|
|
}
|
|
|
|
|
|
bool PANEL_3D_DISPLAY_OPTIONS::TransferDataToWindow()
|
|
{
|
|
EDA_3D_VIEWER_SETTINGS* cfg = Pgm().GetSettingsManager().GetAppSettings<EDA_3D_VIEWER_SETTINGS>();
|
|
|
|
loadViewSettings( cfg );
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool PANEL_3D_DISPLAY_OPTIONS::TransferDataFromWindow()
|
|
{
|
|
EDA_3D_VIEWER_SETTINGS* cfg = Pgm().GetSettingsManager().GetAppSettings<EDA_3D_VIEWER_SETTINGS>();
|
|
|
|
// Set visibility of items
|
|
cfg->m_Render.show_zones = m_checkBoxAreas->GetValue();
|
|
cfg->m_Render.subtract_mask_from_silk = m_checkBoxSubtractMaskFromSilk->GetValue();
|
|
cfg->m_Render.clip_silk_on_via_annuli = m_checkBoxClipSilkOnViaAnnulus->GetValue();
|
|
cfg->m_Render.differentiate_plated_copper = m_checkBoxRenderPlatedPadsAsPlated->GetValue();
|
|
|
|
cfg->m_Render.material_mode = static_cast<MATERIAL_MODE>( m_materialProperties->GetSelection() );
|
|
|
|
// Camera Options
|
|
cfg->m_Camera.animation_enabled = m_checkBoxEnableAnimation->GetValue();
|
|
cfg->m_Camera.moving_speed_multiplier = m_sliderAnimationSpeed->GetValue();
|
|
cfg->m_Camera.rotation_increment = m_spinCtrlRotationAngle->GetValue();
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
void PANEL_3D_DISPLAY_OPTIONS::ResetPanel()
|
|
{
|
|
EDA_3D_VIEWER_SETTINGS cfg;
|
|
cfg.Load(); // Loading without a file will init to defaults
|
|
|
|
loadViewSettings( &cfg );
|
|
}
|