93 lines
2.9 KiB
C++
93 lines
2.9 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* 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 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 <bitmaps.h>
|
|
#include <sch_edit_frame.h>
|
|
#include <wildcards_and_files_ext.h>
|
|
#include <confirm.h>
|
|
#include <schematic.h>
|
|
#include <widgets/std_bitmap_button.h>
|
|
#include <wx/filedlg.h>
|
|
|
|
#include <dialog_sch_import_settings.h>
|
|
|
|
|
|
wxString DIALOG_SCH_IMPORT_SETTINGS::m_filePath; // remember for session
|
|
|
|
|
|
DIALOG_SCH_IMPORT_SETTINGS::DIALOG_SCH_IMPORT_SETTINGS( wxWindow* aParent, SCH_EDIT_FRAME* aFrame ) :
|
|
DIALOG_SCH_IMPORT_SETTINGS_BASE( aParent ),
|
|
m_frame( aFrame )
|
|
{
|
|
m_browseButton->SetBitmap( KiBitmapBundle( BITMAPS::small_folder ) );
|
|
|
|
SetupStandardButtons( { { wxID_OK, _( "Import Settings" ) } } );
|
|
}
|
|
|
|
|
|
bool DIALOG_SCH_IMPORT_SETTINGS::TransferDataToWindow()
|
|
{
|
|
m_filePathCtrl->SetValue( m_filePath );
|
|
return true;
|
|
}
|
|
|
|
|
|
void DIALOG_SCH_IMPORT_SETTINGS::OnBrowseClicked( wxCommandEvent& event )
|
|
{
|
|
wxFileName fn = m_frame->Schematic().Root().GetFileName();
|
|
fn.SetExt( FILEEXT::ProjectFileExtension );
|
|
|
|
wxFileDialog dlg( this, _( "Import Settings From" ), fn.GetPath(), fn.GetFullName(),
|
|
FILEEXT::ProjectFileWildcard(),
|
|
wxFD_OPEN | wxFD_FILE_MUST_EXIST | wxFD_CHANGE_DIR );
|
|
|
|
if( dlg.ShowModal() == wxID_OK )
|
|
m_filePathCtrl->SetValue( dlg.GetPath() );
|
|
}
|
|
|
|
|
|
bool DIALOG_SCH_IMPORT_SETTINGS::TransferDataFromWindow()
|
|
{
|
|
if( !wxFileExists( m_filePathCtrl->GetValue() ) )
|
|
{
|
|
DisplayError( this, wxString::Format( _( "File not found." ) ) );
|
|
m_filePathCtrl->SetFocus();
|
|
return false;
|
|
}
|
|
|
|
m_filePath = m_filePathCtrl->GetValue();
|
|
return true;
|
|
}
|
|
|
|
|
|
void DIALOG_SCH_IMPORT_SETTINGS::OnSelectAll( wxCommandEvent& event )
|
|
{
|
|
m_FormattingOpt->SetValue( true );
|
|
m_FieldNameTemplatesOpt->SetValue( true );
|
|
m_PinMapOpt->SetValue( true );
|
|
m_SeveritiesOpt->SetValue( true );
|
|
m_NetClassesOpt->SetValue( true );
|
|
m_BomPresetsOpt->SetValue( true );
|
|
m_BomFmtPresetsOpt->SetValue( true );
|
|
}
|