2018-05-14 17:34:18 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 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
|
|
|
|
*/
|
|
|
|
|
2019-03-22 21:15:26 +00:00
|
|
|
#include "panel_common_settings.h"
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
#include <bitmap_types.h>
|
|
|
|
#include <bitmaps.h>
|
2019-03-22 21:15:26 +00:00
|
|
|
#include <dialog_shim.h>
|
|
|
|
#include <dpi_scaling.h>
|
|
|
|
#include <kiface_i.h>
|
|
|
|
#include <pgm_base.h>
|
2019-05-25 18:58:28 +00:00
|
|
|
#include <id.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <settings/common_settings.h>
|
|
|
|
#include <settings/settings_manager.h>
|
2019-03-22 21:15:26 +00:00
|
|
|
|
|
|
|
static constexpr int dpi_scaling_precision = 1;
|
|
|
|
static constexpr double dpi_scaling_increment = 0.5;
|
|
|
|
|
|
|
|
|
|
|
|
PANEL_COMMON_SETTINGS::PANEL_COMMON_SETTINGS( DIALOG_SHIM* aDialog, wxWindow* aParent )
|
|
|
|
: PANEL_COMMON_SETTINGS_BASE( aParent ),
|
|
|
|
m_dialog( aDialog ),
|
|
|
|
m_last_scale( -1 )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
2019-03-22 21:15:26 +00:00
|
|
|
m_canvasScaleCtrl->SetRange(
|
|
|
|
DPI_SCALING::GetMinScaleFactor(), DPI_SCALING::GetMaxScaleFactor() );
|
|
|
|
m_canvasScaleCtrl->SetDigits( dpi_scaling_precision );
|
|
|
|
m_canvasScaleCtrl->SetIncrement( dpi_scaling_increment );
|
|
|
|
m_canvasScaleCtrl->SetValue( DPI_SCALING::GetDefaultScaleFactor() );
|
|
|
|
|
|
|
|
m_canvasScaleCtrl->SetToolTip(
|
|
|
|
_( "Set the scale for the canvas."
|
|
|
|
"\n\n"
|
|
|
|
"On high-DPI displays on some platforms, KiCad cannot determine the "
|
|
|
|
"scaling factor. In this case you may need to set this to a value to "
|
|
|
|
"match your system's DPI scaling. 2.0 is a common value. "
|
|
|
|
"\n\n"
|
|
|
|
"If this does not match the system DPI scaling, the canvas will "
|
|
|
|
"not match the window size and cursor position." ) );
|
|
|
|
|
|
|
|
m_canvasScaleAuto->SetToolTip(
|
|
|
|
_( "Use an automatic value for the canvas scale."
|
|
|
|
"\n\n"
|
|
|
|
"On some platforms, the automatic value is incorrect and should be "
|
|
|
|
"set manually." ) );
|
|
|
|
|
|
|
|
m_iconScaleSlider->SetStep( 25 );
|
2018-05-14 17:34:18 +00:00
|
|
|
|
|
|
|
m_textEditorBtn->SetBitmap( KiBitmap( folder_xpm ) );
|
|
|
|
m_pdfViewerBtn->SetBitmap( KiBitmap( folder_xpm ) );
|
2019-07-25 16:48:11 +00:00
|
|
|
|
|
|
|
m_canvasScaleCtrl->Connect( wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler( PANEL_COMMON_SETTINGS::OnCanvasScaleChange ), NULL, this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PANEL_COMMON_SETTINGS::~PANEL_COMMON_SETTINGS()
|
|
|
|
{
|
|
|
|
m_canvasScaleCtrl->Disconnect( wxEVT_COMMAND_TEXT_UPDATED, wxCommandEventHandler( PANEL_COMMON_SETTINGS::OnCanvasScaleChange ), NULL, this );
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PANEL_COMMON_SETTINGS::TransferDataToWindow()
|
|
|
|
{
|
2020-01-13 01:44:19 +00:00
|
|
|
COMMON_SETTINGS* commonSettings = Pgm().GetCommonSettings();
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
int timevalue = commonSettings->m_System.autosave_interval;
|
2018-05-14 17:34:18 +00:00
|
|
|
wxString msg;
|
|
|
|
|
|
|
|
msg << timevalue / 60;
|
|
|
|
m_SaveTime->SetValue( msg );
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_fileHistorySize->SetValue( commonSettings->m_System.file_history_size );
|
2018-08-06 01:36:56 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_antialiasing->SetSelection( commonSettings->m_Graphics.opengl_aa_mode );
|
|
|
|
m_antialiasingFallback->SetSelection( commonSettings->m_Graphics.cairo_aa_mode );
|
2018-09-04 00:00:17 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
int icon_scale_fourths = commonSettings->m_Appearance.icon_scale;
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2019-03-22 21:15:26 +00:00
|
|
|
if( icon_scale_fourths <= 0 )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
2019-03-22 21:15:26 +00:00
|
|
|
m_iconScaleAuto->SetValue( true );
|
|
|
|
m_iconScaleSlider->SetValue( 25 * KiIconScale( GetParent() ) );
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-03-22 21:15:26 +00:00
|
|
|
m_iconScaleAuto->SetValue( false );
|
|
|
|
m_iconScaleSlider->SetValue( icon_scale_fourths * 25 );
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
const DPI_SCALING dpi( commonSettings, this );
|
|
|
|
m_canvasScaleCtrl->SetValue( dpi.GetScaleFactor() );
|
|
|
|
m_canvasScaleAuto->SetValue( dpi.GetCanvasIsAutoScaled() );
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_checkBoxIconsInMenus->SetValue( commonSettings->m_Appearance.use_icons_in_menus );
|
|
|
|
m_ZoomCenterOpt->SetValue( commonSettings->m_Input.center_on_zoom );
|
|
|
|
m_MousewheelPANOpt->SetValue( commonSettings->m_Input.mousewheel_pan );
|
|
|
|
m_AutoPANOpt->SetValue( commonSettings->m_Input.auto_pan );
|
2019-08-15 11:52:38 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_PreferSelectToDrag->SetValue( commonSettings->m_Input.prefer_select_to_drag );
|
|
|
|
m_warpMouseOnMove->SetValue( commonSettings->m_Input.warp_mouse_on_move );
|
|
|
|
m_NonImmediateActions->SetValue( !commonSettings->m_Input.immediate_actions );
|
2019-07-25 16:48:11 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
// TODO(JE) Move these into COMMON_SETTINGS probably
|
2018-05-14 17:34:18 +00:00
|
|
|
m_textEditorPath->SetValue( Pgm().GetEditorName( false ) );
|
|
|
|
m_defaultPDFViewer->SetValue( Pgm().UseSystemPdfBrowser() );
|
|
|
|
m_otherPDFViewer->SetValue( !Pgm().UseSystemPdfBrowser() );
|
|
|
|
m_PDFViewerPath->SetValue( Pgm().GetPdfBrowserName() );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PANEL_COMMON_SETTINGS::TransferDataFromWindow()
|
|
|
|
{
|
2020-01-13 01:44:19 +00:00
|
|
|
COMMON_SETTINGS* commonSettings = Pgm().GetCommonSettings();
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
commonSettings->m_System.autosave_interval = m_SaveTime->GetValue() * 60;
|
|
|
|
commonSettings->m_System.file_history_size = m_fileHistorySize->GetValue();
|
2018-08-06 01:36:56 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
commonSettings->m_Graphics.opengl_aa_mode = m_antialiasing->GetSelection();
|
|
|
|
commonSettings->m_Graphics.cairo_aa_mode = m_antialiasingFallback->GetSelection();
|
2018-01-04 12:13:00 +00:00
|
|
|
|
2019-03-22 21:15:26 +00:00
|
|
|
const int scale_fourths = m_iconScaleAuto->GetValue() ? -1 : m_iconScaleSlider->GetValue() / 25;
|
2020-01-13 01:44:19 +00:00
|
|
|
commonSettings->m_Appearance.icon_scale = scale_fourths;
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2019-03-22 21:15:26 +00:00
|
|
|
{
|
|
|
|
DPI_SCALING dpi( commonSettings, this );
|
|
|
|
dpi.SetDpiConfig( m_canvasScaleAuto->GetValue(), m_canvasScaleCtrl->GetValue() );
|
|
|
|
}
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
commonSettings->m_Appearance.use_icons_in_menus = m_checkBoxIconsInMenus->GetValue();
|
|
|
|
|
|
|
|
commonSettings->m_Input.auto_pan = m_AutoPANOpt->GetValue();
|
|
|
|
commonSettings->m_Input.center_on_zoom = m_ZoomCenterOpt->GetValue();
|
|
|
|
commonSettings->m_Input.immediate_actions = !m_NonImmediateActions->GetValue();
|
|
|
|
commonSettings->m_Input.mousewheel_pan = m_MousewheelPANOpt->GetValue();
|
|
|
|
commonSettings->m_Input.prefer_select_to_drag = m_PreferSelectToDrag->GetValue();
|
|
|
|
commonSettings->m_Input.warp_mouse_on_move = m_warpMouseOnMove->GetValue();
|
2018-05-14 17:34:18 +00:00
|
|
|
|
|
|
|
Pgm().SetEditorName( m_textEditorPath->GetValue() );
|
|
|
|
|
|
|
|
Pgm().SetPdfBrowserName( m_PDFViewerPath->GetValue() );
|
|
|
|
Pgm().ForceSystemPdfBrowser( m_defaultPDFViewer->GetValue() );
|
|
|
|
Pgm().WritePdfBrowserInfos();
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
Pgm().GetSettingsManager().Save( commonSettings );
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PANEL_COMMON_SETTINGS::OnScaleSlider( wxScrollEvent& aEvent )
|
|
|
|
{
|
2019-03-22 21:15:26 +00:00
|
|
|
m_iconScaleAuto->SetValue( false );
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-22 21:15:26 +00:00
|
|
|
void PANEL_COMMON_SETTINGS::OnIconScaleAuto( wxCommandEvent& aEvent )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
2019-03-22 21:15:26 +00:00
|
|
|
if( m_iconScaleAuto->GetValue() )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
2019-03-22 21:15:26 +00:00
|
|
|
m_last_scale = m_iconScaleAuto->GetValue();
|
|
|
|
m_iconScaleSlider->SetValue( 25 * KiIconScale( GetParent() ) );
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( m_last_scale >= 0 )
|
2019-03-22 21:15:26 +00:00
|
|
|
m_iconScaleSlider->SetValue( m_last_scale );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PANEL_COMMON_SETTINGS::OnCanvasScaleChange( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
m_canvasScaleAuto->SetValue( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PANEL_COMMON_SETTINGS::OnCanvasScaleAuto( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
const bool automatic = m_canvasScaleAuto->GetValue();
|
|
|
|
|
|
|
|
if( automatic )
|
|
|
|
{
|
|
|
|
// set the scale to the auto value, without consulting the config
|
|
|
|
DPI_SCALING dpi( nullptr, this );
|
|
|
|
|
|
|
|
// update the field (no events sent)
|
|
|
|
m_canvasScaleCtrl->SetValue( dpi.GetScaleFactor() );
|
2018-05-14 17:34:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PANEL_COMMON_SETTINGS::OnTextEditorClick( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
// Ask the user to select a new editor, but suggest the current one as the default.
|
|
|
|
wxString editorname = Pgm().AskUserForPreferredEditor( m_textEditorPath->GetValue() );
|
|
|
|
|
|
|
|
// If we have a new editor name request it to be copied to m_editor_name and saved
|
|
|
|
// to the preferences file. If the user cancelled the dialog then the previous
|
|
|
|
// value will be retained.
|
|
|
|
if( !editorname.IsEmpty() )
|
|
|
|
m_textEditorPath->SetValue( editorname );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PANEL_COMMON_SETTINGS::OnPDFViewerClick( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
wxString mask( wxT( "*" ) );
|
|
|
|
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
mask += wxT( ".exe" );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
wxString wildcard = _( "Executable files (" ) + mask + wxT( ")|" ) + mask;
|
|
|
|
|
|
|
|
Pgm().ReadPdfBrowserInfos();
|
|
|
|
wxFileName fn = Pgm().GetPdfBrowserName();
|
|
|
|
|
2018-07-15 23:15:48 +00:00
|
|
|
wxFileDialog dlg( this, _( "Select Preferred PDF Browser" ), fn.GetPath(), fn.GetFullPath(),
|
|
|
|
wildcard, wxFD_OPEN | wxFD_FILE_MUST_EXIST );
|
2018-05-14 17:34:18 +00:00
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_otherPDFViewer->SetValue( true );
|
|
|
|
m_PDFViewerPath->SetValue( dlg.GetPath() );
|
|
|
|
}
|
2018-11-22 16:11:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PANEL_COMMON_SETTINGS::onUpdateUIPdfPath( wxUpdateUIEvent& event )
|
|
|
|
{
|
|
|
|
bool enabled = m_otherPDFViewer->GetValue();
|
|
|
|
m_PDFViewerPath->Enable( enabled );
|
|
|
|
m_pdfViewerBtn->Enable( enabled );
|
|
|
|
}
|
|
|
|
|