177 lines
4.4 KiB
C++
177 lines
4.4 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2020 Jon Evans <jon@craftyjon.com>
|
|
* Copyright (C) 2020-2022 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 <bitmaps.h>
|
|
#include <dialogs/dialog_migrate_settings.h>
|
|
#include <settings/settings_manager.h>
|
|
#include <widgets/std_bitmap_button.h>
|
|
|
|
#include <wx/dirdlg.h>
|
|
|
|
|
|
DIALOG_MIGRATE_SETTINGS::DIALOG_MIGRATE_SETTINGS( SETTINGS_MANAGER* aManager ) :
|
|
DIALOG_MIGRATE_SETTINGS_BASE( nullptr ), m_manager( aManager )
|
|
{
|
|
SetMinSize( FromDIP( GetMinSize() ) );
|
|
m_standardButtonsCancel->SetLabel( _( "Quit KiCad" ) );
|
|
|
|
m_btnCustomPath->SetBitmap( KiBitmapBundle( BITMAPS::small_folder ) );
|
|
|
|
// Disabled for now. See https://gitlab.com/kicad/code/kicad/-/issues/9826
|
|
m_cbCopyLibraryTables->Hide();
|
|
|
|
SetupStandardButtons();
|
|
|
|
GetSizer()->SetSizeHints( this );
|
|
Centre();
|
|
}
|
|
|
|
|
|
DIALOG_MIGRATE_SETTINGS::~DIALOG_MIGRATE_SETTINGS()
|
|
{
|
|
}
|
|
|
|
|
|
bool DIALOG_MIGRATE_SETTINGS::TransferDataToWindow()
|
|
{
|
|
if( !wxDialog::TransferDataToWindow() )
|
|
return false;
|
|
|
|
wxString str;
|
|
str.Printf( _( "Welcome to KiCad %s!" ), SETTINGS_MANAGER::GetSettingsVersion() );
|
|
m_lblWelcome->SetLabelText( str );
|
|
|
|
std::vector<wxString> paths;
|
|
|
|
m_btnUseDefaults->SetValue( true );
|
|
|
|
if( !m_manager->GetPreviousVersionPaths( &paths ) )
|
|
{
|
|
m_btnPrevVer->SetLabelText( _( "Import settings from a previous version (none found)" ) );
|
|
}
|
|
else
|
|
{
|
|
m_cbPath->Clear();
|
|
|
|
for( const auto& path : paths )
|
|
m_cbPath->Append( path );
|
|
|
|
m_cbPath->SetSelection( 0 );
|
|
}
|
|
|
|
// SetValue does not fire the "OnRadioButton" event, so have to fabricate this
|
|
wxCommandEvent dummy;
|
|
OnDefaultSelected( dummy );
|
|
|
|
Fit();
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool DIALOG_MIGRATE_SETTINGS::TransferDataFromWindow()
|
|
{
|
|
if( !wxDialog::TransferDataFromWindow() )
|
|
return false;
|
|
|
|
if( m_btnPrevVer->GetValue() )
|
|
{
|
|
m_manager->SetMigrateLibraryTables( false );
|
|
|
|
// Round-trip through a wxFileName object to remove any trailing separators
|
|
wxFileName path( m_cbPath->GetValue(), wxEmptyString );
|
|
m_manager->SetMigrationSource( path.GetPath() );
|
|
}
|
|
else
|
|
{
|
|
m_manager->SetMigrateLibraryTables( false );
|
|
m_manager->SetMigrationSource( wxEmptyString );
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
void DIALOG_MIGRATE_SETTINGS::OnPrevVerSelected( wxCommandEvent& event )
|
|
{
|
|
m_standardButtons->GetAffirmativeButton()->Enable();
|
|
m_cbPath->Enable();
|
|
m_btnCustomPath->Enable();
|
|
m_cbCopyLibraryTables->Enable();
|
|
validatePath();
|
|
}
|
|
|
|
|
|
void DIALOG_MIGRATE_SETTINGS::OnPathChanged( wxCommandEvent& event )
|
|
{
|
|
validatePath();
|
|
}
|
|
|
|
|
|
void DIALOG_MIGRATE_SETTINGS::OnPathDefocused( wxFocusEvent& event )
|
|
{
|
|
validatePath();
|
|
}
|
|
|
|
|
|
void DIALOG_MIGRATE_SETTINGS::OnChoosePath( wxCommandEvent& event )
|
|
{
|
|
wxDirDialog dlg( nullptr, _( "Select Settings Path" ), m_cbPath->GetValue(),
|
|
wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST );
|
|
|
|
if( dlg.ShowModal() == wxID_OK )
|
|
{
|
|
m_cbPath->SetValue( dlg.GetPath() );
|
|
validatePath();
|
|
}
|
|
}
|
|
|
|
|
|
void DIALOG_MIGRATE_SETTINGS::OnDefaultSelected( wxCommandEvent& event )
|
|
{
|
|
m_standardButtons->GetAffirmativeButton()->Enable();
|
|
m_cbPath->Disable();
|
|
m_btnCustomPath->Disable();
|
|
m_cbCopyLibraryTables->Disable();
|
|
showPathError( false );
|
|
}
|
|
|
|
|
|
bool DIALOG_MIGRATE_SETTINGS::validatePath()
|
|
{
|
|
wxString path = m_cbPath->GetValue();
|
|
bool valid = m_manager->IsSettingsPathValid( path );
|
|
|
|
showPathError( !valid );
|
|
m_standardButtons->GetAffirmativeButton()->Enable( valid && !path.IsEmpty() );
|
|
|
|
return valid;
|
|
}
|
|
|
|
|
|
void DIALOG_MIGRATE_SETTINGS::showPathError( bool aShow )
|
|
{
|
|
m_lblPathError->Show( aShow );
|
|
Layout();
|
|
Fit();
|
|
}
|