2018-05-14 17:34:18 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2024-02-02 14:20:36 +00:00
|
|
|
* Copyright (C) 2018-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-05-14 17:34:18 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2020-12-17 16:43:46 +00:00
|
|
|
#include <dialogs/panel_common_settings.h>
|
2019-03-22 21:15:26 +00:00
|
|
|
|
2021-03-09 22:47:24 +00:00
|
|
|
#include <advanced_config.h>
|
2018-05-14 17:34:18 +00:00
|
|
|
#include <bitmaps.h>
|
2019-03-22 21:15:26 +00:00
|
|
|
#include <dialog_shim.h>
|
2023-09-23 03:17:53 +00:00
|
|
|
#include <dpi_scaling_common.h>
|
2021-09-14 22:45:14 +00:00
|
|
|
#include <kiface_base.h>
|
2022-02-07 18:26:43 +00:00
|
|
|
#include <kiplatform/ui.h>
|
2019-03-22 21:15:26 +00:00
|
|
|
#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>
|
2021-09-16 22:45:28 +00:00
|
|
|
#include <widgets/stepped_slider.h>
|
2022-12-13 20:47:28 +00:00
|
|
|
#include <widgets/std_bitmap_button.h>
|
2021-06-03 01:19:20 +00:00
|
|
|
#include <wx/filedlg.h>
|
|
|
|
|
2021-09-16 22:45:28 +00:00
|
|
|
/*
|
|
|
|
* What follows is a whole lot of ugly to handle various platform GUI deficiences with respect
|
|
|
|
* to light/dark mode, DPI scaling, and other foibles.
|
|
|
|
*
|
|
|
|
* Ugly as it all is, it does improve our usability on various platforms.
|
|
|
|
*/
|
2019-03-22 21:15:26 +00:00
|
|
|
|
2023-05-10 17:13:52 +00:00
|
|
|
PANEL_COMMON_SETTINGS::PANEL_COMMON_SETTINGS( wxWindow* aParent )
|
2023-10-21 19:30:56 +00:00
|
|
|
: PANEL_COMMON_SETTINGS_BASE( aParent )
|
2018-05-14 17:34:18 +00:00
|
|
|
{
|
2021-09-16 22:45:28 +00:00
|
|
|
/*
|
|
|
|
* Cairo canvas doesn't work on Mac, so no need for fallback anti-aliasing options
|
|
|
|
*/
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
m_antialiasingFallback->Show( false );
|
|
|
|
m_antialiasingFallbackLabel->Show( false );
|
|
|
|
#endif
|
|
|
|
|
2023-10-21 18:56:19 +00:00
|
|
|
m_textEditorBtn->SetBitmap( KiBitmapBundle( BITMAPS::small_folder ) );
|
|
|
|
m_pdfViewerBtn->SetBitmap( KiBitmapBundle( BITMAPS::small_folder ) );
|
2021-09-16 22:45:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Automatic dark mode detection works fine on Mac, so no need for the explicit options.
|
|
|
|
*/
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
m_stIconTheme->Show( false );
|
|
|
|
m_rbIconThemeLight->Show( false );
|
|
|
|
m_rbIconThemeDark->Show( false );
|
|
|
|
m_rbIconThemeAuto->Show( false );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
2021-12-09 23:36:44 +00:00
|
|
|
* Automatic canvas scaling works fine on all supported platforms, so manual scaling is disabled
|
2021-09-16 22:45:28 +00:00
|
|
|
*/
|
2021-12-09 23:36:44 +00:00
|
|
|
if( ADVANCED_CFG::GetCfg().m_AllowManualCanvasScale )
|
|
|
|
{
|
|
|
|
static constexpr int dpi_scaling_precision = 1;
|
|
|
|
static constexpr double dpi_scaling_increment = 0.5;
|
|
|
|
|
|
|
|
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." ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_staticTextCanvasScale->Show( false );
|
|
|
|
m_canvasScaleCtrl->Show( false );
|
|
|
|
m_canvasScaleCtrl = nullptr;
|
|
|
|
m_canvasScaleAuto->Show( false );
|
|
|
|
}
|
2020-09-20 11:57:55 +00:00
|
|
|
|
2022-02-07 18:26:43 +00:00
|
|
|
// Hide the option of icons in menus for platforms that do not support them
|
|
|
|
m_checkBoxIconsInMenus->Show( KIPLATFORM::UI::AllowIconsInMenus() );
|
|
|
|
|
2021-09-16 22:45:28 +00:00
|
|
|
m_scaleFonts->Show( false );
|
|
|
|
m_fontScalingHelp->Show( false );
|
2021-09-16 17:29:29 +00:00
|
|
|
|
2021-09-16 22:45:28 +00:00
|
|
|
if( m_canvasScaleCtrl )
|
|
|
|
{
|
|
|
|
m_canvasScaleCtrl->Connect( wxEVT_COMMAND_TEXT_UPDATED,
|
|
|
|
wxCommandEventHandler( PANEL_COMMON_SETTINGS::OnCanvasScaleChange ),
|
|
|
|
nullptr, this );
|
|
|
|
}
|
2022-12-14 15:10:25 +00:00
|
|
|
|
|
|
|
wxSize minSize = m_highContrastCtrl->GetMinSize();
|
|
|
|
int minWidth = m_highContrastCtrl->GetTextExtent( wxT( "XXX.XXX" ) ).GetWidth();
|
|
|
|
|
|
|
|
m_highContrastCtrl->SetMinSize( wxSize( minWidth, minSize.GetHeight() ) );
|
2019-07-25 16:48:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PANEL_COMMON_SETTINGS::~PANEL_COMMON_SETTINGS()
|
|
|
|
{
|
2021-09-16 22:45:28 +00:00
|
|
|
if( m_canvasScaleCtrl )
|
|
|
|
{
|
|
|
|
m_canvasScaleCtrl->Disconnect( wxEVT_COMMAND_TEXT_UPDATED,
|
|
|
|
wxCommandEventHandler( PANEL_COMMON_SETTINGS::OnCanvasScaleChange ),
|
|
|
|
nullptr, 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-07-21 23:13:43 +00:00
|
|
|
applySettingsToPanel( *commonSettings );
|
2019-07-25 16:48:11 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
// TODO(JE) Move these into COMMON_SETTINGS probably
|
2021-09-19 13:45:27 +00:00
|
|
|
m_textEditorPath->SetValue( Pgm().GetTextEditor( false ) );
|
2018-05-14 17:34:18 +00:00
|
|
|
m_defaultPDFViewer->SetValue( Pgm().UseSystemPdfBrowser() );
|
|
|
|
m_otherPDFViewer->SetValue( !Pgm().UseSystemPdfBrowser() );
|
|
|
|
m_PDFViewerPath->SetValue( Pgm().GetPdfBrowserName() );
|
2021-12-30 16:36:01 +00:00
|
|
|
setPdfViewerPathState();
|
2018-05-14 17:34:18 +00:00
|
|
|
|
|
|
|
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();
|
2020-08-09 10:41:45 +00:00
|
|
|
commonSettings->m_System.clear_3d_cache_interval = m_Clear3DCacheFilesOlder->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
|
|
|
|
2021-09-16 22:45:28 +00:00
|
|
|
if( m_canvasScaleCtrl )
|
2019-03-22 21:15:26 +00:00
|
|
|
{
|
2023-09-23 03:17:53 +00:00
|
|
|
DPI_SCALING_COMMON dpi( commonSettings, this );
|
2019-03-22 21:15:26 +00:00
|
|
|
dpi.SetDpiConfig( m_canvasScaleAuto->GetValue(), m_canvasScaleCtrl->GetValue() );
|
|
|
|
}
|
|
|
|
|
2021-03-09 22:47:24 +00:00
|
|
|
if( m_rbIconThemeLight->GetValue() )
|
|
|
|
commonSettings->m_Appearance.icon_theme = ICON_THEME::LIGHT;
|
|
|
|
else if( m_rbIconThemeDark->GetValue() )
|
|
|
|
commonSettings->m_Appearance.icon_theme = ICON_THEME::DARK;
|
|
|
|
else if( m_rbIconThemeAuto->GetValue() )
|
|
|
|
commonSettings->m_Appearance.icon_theme = ICON_THEME::AUTO;
|
|
|
|
|
2023-10-22 00:41:02 +00:00
|
|
|
if( m_rbIconSizeSmall->GetValue() )
|
|
|
|
commonSettings->m_Appearance.toolbar_icon_size = 16;
|
|
|
|
else if( m_rbIconSizeNormal->GetValue() )
|
|
|
|
commonSettings->m_Appearance.toolbar_icon_size = 24;
|
|
|
|
else if( m_rbIconSizeLarge->GetValue() )
|
|
|
|
commonSettings->m_Appearance.toolbar_icon_size = 32;
|
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
commonSettings->m_Appearance.use_icons_in_menus = m_checkBoxIconsInMenus->GetValue();
|
2021-09-16 17:29:29 +00:00
|
|
|
commonSettings->m_Appearance.apply_icon_scale_to_fonts = m_scaleFonts->GetValue();
|
2020-01-13 01:44:19 +00:00
|
|
|
|
2022-08-21 12:39:55 +00:00
|
|
|
commonSettings->m_Appearance.show_scrollbars = m_showScrollbars->GetValue();
|
|
|
|
|
2021-11-05 23:35:10 +00:00
|
|
|
double dimmingPercent = 80;
|
|
|
|
m_highContrastCtrl->GetValue().ToDouble( &dimmingPercent );
|
|
|
|
commonSettings->m_Appearance.hicontrast_dimming_factor = dimmingPercent / 100.0f;
|
|
|
|
|
2022-09-30 18:32:06 +00:00
|
|
|
commonSettings->m_Input.focus_follow_sch_pcb = m_focusFollowSchPcb->GetValue();
|
2023-05-31 02:06:49 +00:00
|
|
|
commonSettings->m_Input.hotkey_feedback = m_hotkeyFeedback->GetValue();
|
2022-09-30 18:32:06 +00:00
|
|
|
commonSettings->m_Input.immediate_actions = !m_NonImmediateActions->GetValue();
|
|
|
|
commonSettings->m_Input.warp_mouse_on_move = m_warpMouseOnMove->GetValue();
|
2018-05-14 17:34:18 +00:00
|
|
|
|
2022-09-30 18:32:06 +00:00
|
|
|
commonSettings->m_Backup.enabled = m_cbBackupEnabled->GetValue();
|
|
|
|
commonSettings->m_Backup.backup_on_autosave = m_cbBackupAutosave->GetValue();
|
|
|
|
commonSettings->m_Backup.limit_total_files = m_backupLimitTotalFiles->GetValue();
|
|
|
|
commonSettings->m_Backup.limit_daily_files = m_backupLimitDailyFiles->GetValue();
|
|
|
|
commonSettings->m_Backup.min_interval = m_backupMinInterval->GetValue() * 60;
|
|
|
|
commonSettings->m_Backup.limit_total_size = m_backupLimitTotalSize->GetValue() * 1024 * 1024;
|
2020-07-03 13:40:31 +00:00
|
|
|
|
2020-08-24 02:01:14 +00:00
|
|
|
commonSettings->m_Session.remember_open_files = m_cbRememberOpenFiles->GetValue();
|
|
|
|
|
2021-09-19 13:45:27 +00:00
|
|
|
Pgm().SetTextEditor( m_textEditorPath->GetValue());
|
2018-05-14 17:34:18 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-07-21 23:13:43 +00:00
|
|
|
void PANEL_COMMON_SETTINGS::ResetPanel()
|
|
|
|
{
|
|
|
|
COMMON_SETTINGS defaultSettings;
|
|
|
|
|
|
|
|
defaultSettings.ResetToDefaults();
|
|
|
|
|
|
|
|
applySettingsToPanel( defaultSettings );
|
|
|
|
|
|
|
|
// TODO(JE) Move these into COMMON_SETTINGS probably
|
2021-09-19 13:45:27 +00:00
|
|
|
m_textEditorPath->SetValue( defaultSettings.m_System.text_editor );
|
2020-07-21 23:13:43 +00:00
|
|
|
m_defaultPDFViewer->SetValue( defaultSettings.m_System.use_system_pdf_viewer );
|
|
|
|
m_otherPDFViewer->SetValue( !defaultSettings.m_System.use_system_pdf_viewer );
|
|
|
|
m_PDFViewerPath->SetValue( defaultSettings.m_System.pdf_viewer_name );
|
2021-12-30 16:36:01 +00:00
|
|
|
setPdfViewerPathState();
|
2020-07-21 23:13:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PANEL_COMMON_SETTINGS::applySettingsToPanel( COMMON_SETTINGS& aSettings )
|
|
|
|
{
|
|
|
|
int timevalue = aSettings.m_System.autosave_interval;
|
|
|
|
wxString msg;
|
|
|
|
|
|
|
|
msg << timevalue / 60;
|
|
|
|
m_SaveTime->SetValue( msg );
|
|
|
|
|
|
|
|
m_fileHistorySize->SetValue( aSettings.m_System.file_history_size );
|
|
|
|
|
|
|
|
m_antialiasing->SetSelection( aSettings.m_Graphics.opengl_aa_mode );
|
|
|
|
m_antialiasingFallback->SetSelection( aSettings.m_Graphics.cairo_aa_mode );
|
|
|
|
|
2020-08-09 10:41:45 +00:00
|
|
|
m_Clear3DCacheFilesOlder->SetValue( aSettings.m_System.clear_3d_cache_interval );
|
|
|
|
|
2021-09-16 22:45:28 +00:00
|
|
|
if( m_canvasScaleCtrl )
|
2020-07-21 23:13:43 +00:00
|
|
|
{
|
2023-09-23 03:17:53 +00:00
|
|
|
const DPI_SCALING_COMMON dpi( &aSettings, this );
|
2020-07-21 23:13:43 +00:00
|
|
|
m_canvasScaleCtrl->SetValue( dpi.GetScaleFactor() );
|
|
|
|
m_canvasScaleAuto->SetValue( dpi.GetCanvasIsAutoScaled() );
|
|
|
|
}
|
|
|
|
|
2021-03-09 22:47:24 +00:00
|
|
|
switch( aSettings.m_Appearance.icon_theme )
|
|
|
|
{
|
|
|
|
case ICON_THEME::LIGHT: m_rbIconThemeLight->SetValue( true ); break;
|
|
|
|
case ICON_THEME::DARK: m_rbIconThemeDark->SetValue( true ); break;
|
|
|
|
case ICON_THEME::AUTO: m_rbIconThemeAuto->SetValue( true ); break;
|
|
|
|
}
|
|
|
|
|
2023-10-22 00:41:02 +00:00
|
|
|
switch( aSettings.m_Appearance.toolbar_icon_size )
|
|
|
|
{
|
|
|
|
case 16: m_rbIconSizeSmall->SetValue( true ); break;
|
|
|
|
case 24: m_rbIconSizeNormal->SetValue( true ); break;
|
|
|
|
case 32: m_rbIconSizeLarge->SetValue( true ); break;
|
|
|
|
}
|
|
|
|
|
2020-07-21 23:13:43 +00:00
|
|
|
m_checkBoxIconsInMenus->SetValue( aSettings.m_Appearance.use_icons_in_menus );
|
2021-09-16 17:29:29 +00:00
|
|
|
m_scaleFonts->SetValue( aSettings.m_Appearance.apply_icon_scale_to_fonts );
|
2020-07-21 23:13:43 +00:00
|
|
|
|
2021-11-05 23:35:10 +00:00
|
|
|
double dimmingPercent = aSettings.m_Appearance.hicontrast_dimming_factor * 100.0f;
|
|
|
|
m_highContrastCtrl->SetValue( wxString::Format( "%.0f", dimmingPercent ) );
|
|
|
|
|
2022-09-30 18:32:06 +00:00
|
|
|
m_focusFollowSchPcb->SetValue( aSettings.m_Input.focus_follow_sch_pcb );
|
2023-05-31 02:06:49 +00:00
|
|
|
m_hotkeyFeedback->SetValue( aSettings.m_Input.hotkey_feedback );
|
2020-07-21 23:13:43 +00:00
|
|
|
m_warpMouseOnMove->SetValue( aSettings.m_Input.warp_mouse_on_move );
|
|
|
|
m_NonImmediateActions->SetValue( !aSettings.m_Input.immediate_actions );
|
|
|
|
|
2020-08-24 02:01:14 +00:00
|
|
|
m_cbRememberOpenFiles->SetValue( aSettings.m_Session.remember_open_files );
|
|
|
|
|
2020-07-21 23:13:43 +00:00
|
|
|
m_cbBackupEnabled->SetValue( aSettings.m_Backup.enabled );
|
|
|
|
m_cbBackupAutosave->SetValue( aSettings.m_Backup.backup_on_autosave );
|
|
|
|
m_backupLimitTotalFiles->SetValue( aSettings.m_Backup.limit_total_files );
|
|
|
|
m_backupLimitDailyFiles->SetValue( aSettings.m_Backup.limit_daily_files );
|
|
|
|
m_backupMinInterval->SetValue( aSettings.m_Backup.min_interval / 60 );
|
|
|
|
m_backupLimitTotalSize->SetValue( aSettings.m_Backup.limit_total_size / ( 1024 * 1024 ) );
|
2022-08-21 12:39:55 +00:00
|
|
|
|
|
|
|
m_showScrollbars->SetValue( aSettings.m_Appearance.show_scrollbars );
|
2020-07-21 23:13:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-22 21:15:26 +00:00
|
|
|
void PANEL_COMMON_SETTINGS::OnCanvasScaleChange( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
m_canvasScaleAuto->SetValue( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PANEL_COMMON_SETTINGS::OnCanvasScaleAuto( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
const bool automatic = m_canvasScaleAuto->GetValue();
|
|
|
|
|
2021-09-16 22:45:28 +00:00
|
|
|
if( automatic && m_canvasScaleCtrl )
|
2019-03-22 21:15:26 +00:00
|
|
|
{
|
|
|
|
// set the scale to the auto value, without consulting the config
|
2023-09-23 03:17:53 +00:00
|
|
|
DPI_SCALING_COMMON dpi( nullptr, this );
|
2019-03-22 21:15:26 +00:00
|
|
|
|
|
|
|
// 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() );
|
|
|
|
|
2021-09-19 13:45:27 +00:00
|
|
|
// If we have a new editor name request it to be copied to m_text_editor and saved
|
2018-05-14 17:34:18 +00:00
|
|
|
// 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();
|
|
|
|
|
2024-02-02 14:20:36 +00:00
|
|
|
wxWindow* topLevelParent = wxGetTopLevelParent( this );
|
|
|
|
|
|
|
|
wxFileDialog dlg( topLevelParent, _( "Select Preferred PDF Viewer" ), 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
|
|
|
|
|
|
|
|
2021-12-30 16:36:01 +00:00
|
|
|
void PANEL_COMMON_SETTINGS::OnRadioButtonPdfViewer( wxCommandEvent& event )
|
2018-11-22 16:11:49 +00:00
|
|
|
{
|
2021-12-30 16:36:01 +00:00
|
|
|
setPdfViewerPathState();
|
2018-11-22 16:11:49 +00:00
|
|
|
}
|
2021-12-30 16:36:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PANEL_COMMON_SETTINGS::setPdfViewerPathState()
|
|
|
|
{
|
|
|
|
m_PDFViewerPath->Enable( m_otherPDFViewer->GetValue() );
|
|
|
|
m_pdfViewerBtn->Enable( m_otherPDFViewer->GetValue() );
|
2022-02-07 18:26:43 +00:00
|
|
|
}
|