KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_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 (C) 2018-2022 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 <pcb_edit_frame.h>
26#include <board.h>
28#include <confirm.h>
30#include <wx/filedlg.h>
31
33
34
35wxString DIALOG_IMPORT_SETTINGS::m_filePath; // remember for session
36
37
40 m_frame( aFrame )
41{
42 wxSize sizeNeeded;
43
44 m_browseButton->SetBitmap( KiBitmapBundle( BITMAPS::small_folder ) );
45
46 // Make sure "Select All" button is big enough to hold "Deselect All"
47 m_selectAllButton->SetLabel( _( "Deselect All" ) ); // Change the text temporarily
48 sizeNeeded = m_selectAllButton->GetBestSize(); // Get control to tell us the width required
49 m_selectAllButton->SetLabel( _( "Select All" ) ); // Restore "Select All" as default text
50 sizeNeeded.y = m_selectAllButton->GetSize().y; // Keep the height unchanged
51 m_selectAllButton->SetMinSize( sizeNeeded ); // Set control to the required size
52
53 SetupStandardButtons( { { wxID_OK, _( "Import Settings" ) } } );
54
55 // Disable "Import Settings" button until user selects at least one import option
56 m_sdbSizer1OK->Enable( false );
57
58 m_buttonsSizer->Layout();
59
60 m_showSelectAllOnBtn = true; // Store state to toggle message/usage of "Select All" button
61}
62
63
64void DIALOG_IMPORT_SETTINGS::OnCheckboxClicked( wxCommandEvent& event )
65{
66 bool importButtonEnabled = UpdateImportSettingsButton();
67
68 // If clicking this checkbox clears the last of the import selection checkboxes,
69 // then make sure the "Select All" button is actually going to select all.
70
71 if( !importButtonEnabled )
72 {
75 }
76}
77
78
80{
81 // Enable "Import Settings" button if at least one import option is selected
82 bool buttonEnableState = ( m_LayersOpt->IsChecked() || m_MaskAndPasteOpt->IsChecked()
83 || m_ConstraintsOpt->IsChecked() || m_NetclassesOpt->IsChecked()
84 || m_SeveritiesOpt->IsChecked() || m_TextAndGraphicsOpt->IsChecked()
85 || m_FormattingOpt->IsChecked() || m_TracksAndViasOpt->IsChecked()
86 || m_TuningPatternsOpt->IsChecked() || m_CustomRulesOpt->IsChecked() );
87
88 m_sdbSizer1OK->Enable( buttonEnableState );
89
90 return buttonEnableState;
91}
92
93
95{
96 // Update message on button
98 m_selectAllButton->SetLabel( _( "Select All" ) );
99 else
100 m_selectAllButton->SetLabel( _( "Deselect All" ) );
101}
102
103
105{
106 m_filePathCtrl->SetValue( m_filePath );
107 return true;
108}
109
110
111void DIALOG_IMPORT_SETTINGS::OnBrowseClicked( wxCommandEvent& event )
112{
113 wxFileName fn = m_frame->GetBoard()->GetFileName();
114
115 wxFileDialog dlg( this, _( "Import Settings From" ), fn.GetPath(), fn.GetFullName(),
117 wxFD_OPEN | wxFD_FILE_MUST_EXIST | wxFD_CHANGE_DIR );
118
119 if( dlg.ShowModal() == wxID_OK )
120 m_filePathCtrl->SetValue( dlg.GetPath() );
121}
122
123
125{
126 if( !wxFileExists( m_filePathCtrl->GetValue() ) )
127 {
128 DisplayError( this, wxString::Format( _( "File not found." ) ) );
129 m_filePathCtrl->SetFocus();
130 return false;
131 }
132
133 m_filePath = m_filePathCtrl->GetValue();
134 return true;
135}
136
137
138void DIALOG_IMPORT_SETTINGS::OnSelectAll( wxCommandEvent& event )
139{
140 // Select or deselect all options based on internal flag
152
153 // Ensure "Import Settings" button state is enabled as appropriate
155
156 // Toggle whether button selects or deselects all.
159}
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap)
Definition: bitmap.cpp:110
const wxString & GetFileName() const
Definition: board.h:318
Class DIALOG_IMPORT_SETTINGS_BASE.
void OnSelectAll(wxCommandEvent &event) override
bool UpdateImportSettingsButton()
Enable or disable the "Import Settings" button.
DIALOG_IMPORT_SETTINGS(wxWindow *aParent, PCB_EDIT_FRAME *aFrame)
void OnCheckboxClicked(wxCommandEvent &event) override
void OnBrowseClicked(wxCommandEvent &event) override
void UpdateSelectAllButton()
Update "Select All" button label as appropriate.
bool m_showSelectAllOnBtn
Store state used to toggle button between "Select All" and "Deselect All".
void SetupStandardButtons(std::map< int, wxString > aLabels={})
BOARD * GetBoard() const
The main frame for Pcbnew.
void SetBitmap(const wxBitmapBundle &aBmp)
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
Definition: confirm.cpp:280
This file is part of the common library.
#define _(s)
static wxString PcbFileWildcard()
Definition of file extensions used in Kicad.