KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_sch_import_settings.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#include <bitmaps.h>
25#include <sch_edit_frame.h>
27#include <confirm.h>
29#include <wx/filedlg.h>
30#include <kiplatform/ui.h>
31
33
34
35
38 m_frame( aFrame )
39{
41
42 SetupStandardButtons( { { wxID_OK, _( "Import Settings" ) } } );
43
45}
46
47
49{
50 wxFileName fn = m_frame->Schematic().Root().GetFileName();
52
53 wxFileDialog dlg( this, _( "Import Settings From" ), fn.GetPath(), fn.GetFullName(),
54 FILEEXT::ProjectFileWildcard(), wxFD_OPEN | wxFD_FILE_MUST_EXIST );
55
57
58 if( dlg.ShowModal() == wxID_OK )
59 m_filePathCtrl->SetValue( dlg.GetPath() );
60}
61
62
64{
65 if( !wxFileExists( m_filePathCtrl->GetValue() ) )
66 {
67 DisplayError( this, wxString::Format( _( "File not found." ) ) );
68 m_filePathCtrl->SetFocus();
69 return false;
70 }
71
72 return true;
73}
74
75
76void DIALOG_SCH_IMPORT_SETTINGS::OnSelectAll( wxCommandEvent& event )
77{
78 m_FormattingOpt->SetValue( true );
79 m_FieldNameTemplatesOpt->SetValue( true );
80 m_PinMapOpt->SetValue( true );
81 m_SeveritiesOpt->SetValue( true );
82 m_NetClassesOpt->SetValue( true );
83 m_BomPresetsOpt->SetValue( true );
84 m_BomFmtPresetsOpt->SetValue( true );
85 m_BusAliasesOpt->SetValue( true );
86 m_TextVarsOpt->SetValue( true );
87}
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Definition bitmap.cpp:110
DIALOG_SCH_IMPORT_SETTINGS_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxString &title=_("Import Settings"), const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER)
void OnSelectAll(wxCommandEvent &event) override
void OnBrowseClicked(wxCommandEvent &event) override
DIALOG_SCH_IMPORT_SETTINGS(wxWindow *aParent, SCH_EDIT_FRAME *aFrame)
void SetupStandardButtons(std::map< int, wxString > aLabels={})
void finishDialogSettings()
In all dialogs, we must call the same functions to fix minimal dlg size, the default position and per...
Schematic editor (Eeschema) main window.
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
Definition confirm.cpp:177
This file is part of the common library.
#define _(s)
static const std::string ProjectFileExtension
static wxString ProjectFileWildcard()
void AllowNetworkFileSystems(wxDialog *aDialog)
Configure a file dialog to show network and virtual file systems.
Definition wxgtk/ui.cpp:717
Definition of file extensions used in Kicad.