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 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 <pcb_edit_frame.h>
26#include <board.h>
28#include <confirm.h>
30#include <wx/filedlg.h>
31#include <kiplatform/ui.h>
32
34
35
36wxString DIALOG_IMPORT_SETTINGS::m_filePath; // remember for session
37
38
41 m_frame( aFrame )
42{
43 wxSize sizeNeeded;
44
46
47 // Make sure "Select All" button is big enough to hold "Deselect All"
48 m_selectAllButton->SetLabel( _( "Deselect All" ) ); // Change the text temporarily
49 sizeNeeded = m_selectAllButton->GetBestSize(); // Get control to tell us the width required
50 m_selectAllButton->SetLabel( _( "Select All" ) ); // Restore "Select All" as default text
51 sizeNeeded.y = m_selectAllButton->GetSize().y; // Keep the height unchanged
52 m_selectAllButton->SetMinSize( sizeNeeded ); // Set control to the required size
53
54 SetupStandardButtons( { { wxID_OK, _( "Import Settings" ) } } );
55
56 // Disable "Import Settings" button until user selects at least one import option
57 m_sdbSizer1OK->Enable( false );
58
59 m_buttonsSizer->Layout();
60
61 m_showSelectAllOnBtn = true; // Store state to toggle message/usage of "Select All" button
62}
63
64
65void DIALOG_IMPORT_SETTINGS::OnCheckboxClicked( wxCommandEvent& event )
66{
67 bool importButtonEnabled = UpdateImportSettingsButton();
68
69 // If clicking this checkbox clears the last of the import selection checkboxes,
70 // then make sure the "Select All" button is actually going to select all.
71
72 if( !importButtonEnabled )
73 {
76 }
77}
78
79
81{
82 // Enable "Import Settings" button if at least one import option is selected
83 bool buttonEnableState =
84 ( m_LayersOpt->IsChecked() || m_MaskAndPasteOpt->IsChecked() || m_ConstraintsOpt->IsChecked()
85 || m_NetclassesOpt->IsChecked() || m_SeveritiesOpt->IsChecked() || m_TextAndGraphicsOpt->IsChecked()
86 || m_FormattingOpt->IsChecked() || m_TracksAndViasOpt->IsChecked() || m_TuningPatternsOpt->IsChecked()
87 || m_CustomRulesOpt->IsChecked() || m_ComponentClassesOpt->IsChecked() || m_TuningProfilesOpt->IsChecked()
88 || m_TeardropsOpt->IsChecked() );
89
90 m_sdbSizer1OK->Enable( buttonEnableState );
91
92 return buttonEnableState;
93}
94
95
97{
98 // Update message on button
100 m_selectAllButton->SetLabel( _( "Select All" ) );
101 else
102 m_selectAllButton->SetLabel( _( "Deselect All" ) );
103}
104
105
107{
108 m_filePathCtrl->SetValue( m_filePath );
109 return true;
110}
111
112
113void DIALOG_IMPORT_SETTINGS::OnBrowseClicked( wxCommandEvent& event )
114{
115 wxFileName fn = m_frame->GetBoard()->GetFileName();
116
117 wxFileDialog dlg( this, _( "Import Settings From" ), fn.GetPath(), fn.GetFullName(),
119 wxFD_OPEN | wxFD_FILE_MUST_EXIST );
120
122
123 if( dlg.ShowModal() == wxID_OK )
124 m_filePathCtrl->SetValue( dlg.GetPath() );
125}
126
127
129{
130 if( !wxFileExists( m_filePathCtrl->GetValue() ) )
131 {
132 DisplayError( this, wxString::Format( _( "File not found." ) ) );
133 m_filePathCtrl->SetFocus();
134 return false;
135 }
136
137 m_filePath = m_filePathCtrl->GetValue();
138 return true;
139}
140
141
142void DIALOG_IMPORT_SETTINGS::OnSelectAll( wxCommandEvent& event )
143{
144 // Select or deselect all options based on internal flag
158
159 // Ensure "Import Settings" button state is enabled as appropriate
161
162 // Toggle whether button selects or deselects all.
165}
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Definition bitmap.cpp:110
DIALOG_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
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={})
The main frame for Pcbnew.
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 wxString PcbFileWildcard()
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.