KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_config_equfiles.cpp
Go to the documentation of this file.
1
5/*
6 * This program source code file is part of KiCad, a free EDA CAD application.
7 *
8 * Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
9 * Copyright (C) 1992-2018 KiCad Developers, see AUTHORS.txt for contributors.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, you may find one here:
23 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
24 * or you may search the http://www.gnu.org website for the version 2 license,
25 * or you may write to the Free Software Foundation, Inc.,
26 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
27 */
28
29#include <pgm_base.h>
30#include <confirm.h>
31#include <gestfich.h>
32#include <id.h>
33#include <project.h> // For PROJECT_VAR_NAME definition
34#include <fp_lib_table.h> // For KICAD7_FOOTPRINT_DIR definition
35
36#include <cvpcb_mainframe.h>
41
42#include <wx/filedlg.h>
43
44
47{
48 m_Parent = aParent;
49
50 PROJECT& prj = Prj();
51 SetTitle( wxString::Format( _( "Project file: '%s'" ), prj.GetProjectFullName() ) );
52
53 Init( );
54
56
57 GetSizer()->SetSizeHints( this );
58 Center();
59}
60
61
63{
64 m_ListChanged = false;
65
67
68 if( !project.m_EquivalenceFiles.empty() )
69 {
70 wxArrayString arr;
71
72 for( const auto& entry : project.m_EquivalenceFiles )
73 arr.Add( entry );
74
75 m_ListEquiv->InsertItems( arr, 0 );
76 }
77
78 if( getEnvVarCount() < 2 )
79 m_gridEnvVars->AppendRows(2 - getEnvVarCount() );
80
81 wxString evValue;
82 int row = 0;
83
84 m_gridEnvVars->SetCellValue( row++, 0, PROJECT_VAR_NAME );
86
87 for( row = 0; row < getEnvVarCount(); row++ )
88 {
89 if( wxGetEnv( m_gridEnvVars->GetCellValue( row, 0 ), &evValue ) )
90 m_gridEnvVars->SetCellValue( row, 1, evValue );
91 }
92
93 m_gridEnvVars->AutoSizeColumns();
94}
95
96
97void DIALOG_CONFIG_EQUFILES::OnEditEquFile( wxCommandEvent& event )
98{
99 wxString editorname = Pgm().GetTextEditor();
100
101 if( editorname.IsEmpty() )
102 {
103 wxMessageBox( _( "No text editor selected in KiCad. Please choose one." ) );
104 return;
105 }
106
107 wxArrayInt selections;
108 m_ListEquiv->GetSelections( selections );
109
110 for( unsigned ii = 0; ii < selections.GetCount(); ii++ )
111 {
112 ExecuteFile( editorname, wxExpandEnvVars( m_ListEquiv->GetString( selections[ii] ) ) );
113 m_ListChanged = true;
114 }
115}
116
117
118void DIALOG_CONFIG_EQUFILES::OnOkClick( wxCommandEvent& event )
119{
120 // Save new equ file list if the files list was modified
121 if( m_ListChanged )
122 {
124
125 // Recreate equ list
126 project.m_EquivalenceFiles.clear();
127
128 for( unsigned ii = 0; ii < m_ListEquiv->GetCount(); ii++ )
129 project.m_EquivalenceFiles.emplace_back( m_ListEquiv->GetString( ii ) );
130
131 Pgm().GetSettingsManager().SaveProject();
132 }
133
134 EndModal( wxID_OK );
135}
136
137
138void DIALOG_CONFIG_EQUFILES::OnCloseWindow( wxCloseEvent& event )
139{
140 EndModal( wxID_CANCEL );
141}
142
143
144void DIALOG_CONFIG_EQUFILES::OnButtonMoveUp( wxCommandEvent& event )
145{
146 wxArrayInt selections;
147
148 m_ListEquiv->GetSelections( selections );
149
150 if ( selections.GetCount() <= 0 ) // No selection.
151 return;
152
153 if( selections[0] == 0 ) // The first lib is selected. cannot move up it
154 return;
155
156 wxArrayString libnames = m_ListEquiv->GetStrings();
157
158 for( size_t ii = 0; ii < selections.GetCount(); ii++ )
159 {
160 int jj = selections[ii];
161 std::swap( libnames[jj], libnames[jj-1] );
162 }
163
164 m_ListEquiv->Set( libnames );
165
166 // Reselect previously selected names
167 for( size_t ii = 0; ii < selections.GetCount(); ii++ )
168 {
169 int jj = selections[ii];
170 m_ListEquiv->SetSelection( jj-1 );
171 }
172
173 m_ListChanged = true;
174}
175
176
177void DIALOG_CONFIG_EQUFILES::OnButtonMoveDown( wxCommandEvent& event )
178{
179 wxArrayInt selections;
180 m_ListEquiv->GetSelections( selections );
181
182 if ( selections.GetCount() <= 0 ) // No selection.
183 return;
184
185 // The last lib is selected. cannot move down it
186 if( selections.Last() == int( m_ListEquiv->GetCount()-1 ) )
187 return;
188
189 wxArrayString libnames = m_ListEquiv->GetStrings();
190
191 for( int ii = selections.GetCount()-1; ii >= 0; ii-- )
192 {
193 int jj = selections[ii];
194 std::swap( libnames[jj], libnames[jj+1] );
195 }
196
197 m_ListEquiv->Set( libnames );
198
199 // Reselect previously selected names
200 for( size_t ii = 0; ii < selections.GetCount(); ii++ )
201 {
202 int jj = selections[ii];
203 m_ListEquiv->SetSelection( jj+1 );
204 }
205
206 m_ListChanged = true;
207}
208
209
210/* Remove a library to the library list.
211 * The real list (g_LibName_List) is not changed, so the change can be canceled
212 */
213void DIALOG_CONFIG_EQUFILES::OnRemoveFiles( wxCommandEvent& event )
214{
215 wxArrayInt selections;
216 m_ListEquiv->GetSelections( selections );
217
218 std::sort( selections.begin(), selections.end() );
219
220 for( int ii = selections.GetCount()-1; ii >= 0; ii-- )
221 {
222 m_ListEquiv->Delete( selections[ii] );
223 m_ListChanged = true;
224 }
225}
226
227
228void DIALOG_CONFIG_EQUFILES::OnAddFiles( wxCommandEvent& event )
229{
230 wxString equFilename;
231 wxFileName fn;
232
233 wxListBox* list = m_ListEquiv;
234
235 // Get a default path to open the file dialog:
236 wxString libpath;
237 wxArrayInt selectedRows = m_gridEnvVars->GetSelectedRows();
238
239 int row = selectedRows.GetCount() ? selectedRows[0] :
240 m_gridEnvVars->GetGridCursorRow();
241
242 libpath = m_gridEnvVars->GetCellValue( wxGridCellCoords( row, 1 ) );
243
244 wxFileDialog FilesDialog( this, _( "Footprint Association File" ), libpath,
245 wxEmptyString, EquFileWildcard(),
246 wxFD_DEFAULT_STYLE | wxFD_MULTIPLE );
247
248 if( FilesDialog.ShowModal() != wxID_OK )
249 return;
250
251 wxArrayString Filenames;
252 FilesDialog.GetPaths( Filenames );
253
254 for( unsigned jj = 0; jj < Filenames.GetCount(); jj++ )
255 {
256 fn = Filenames[jj];
257 equFilename.Empty();
258
259 if( isPathRelativeAllowed() ) // try to use relative path
260 {
261 for( row = 0; row < getEnvVarCount(); row++ )
262 {
263 libpath = m_gridEnvVars->GetCellValue( wxGridCellCoords( row, 1 ) );
264
265 if( fn.MakeRelativeTo( libpath ) )
266 {
267 equFilename.Printf( wxT( "${%s}%c%s" ),
268 m_gridEnvVars->GetCellValue( wxGridCellCoords( row, 0 ) ),
269 fn.GetPathSeparator(), fn.GetFullPath() );
270 break;
271 }
272 }
273 }
274
275 if( equFilename.IsEmpty() )
276 equFilename = Filenames[jj];
277
278 // Add or insert new library name, if not already in list
279 if( list->FindString( equFilename, fn.IsCaseSensitive() ) == wxNOT_FOUND )
280 {
281 m_ListChanged = true;
282 equFilename.Replace( wxT( "\\" ), wxT( "/" ) ); // Use unix separators only.
283 list->Append( equFilename );
284 }
285 else
286 {
287 wxString msg;
288 msg.Printf( _( "File '%s' already exists in list." ), equFilename.GetData() );
289 DisplayError( this, msg );
290 }
291 }
292}
The CvPcb application main window.
Class DIALOG_CONFIG_EQUFILES_BASE.
void OnCloseWindow(wxCloseEvent &event) override
void OnOkClick(wxCommandEvent &event) override
void OnButtonMoveDown(wxCommandEvent &event) override
void OnAddFiles(wxCommandEvent &event) override
DIALOG_CONFIG_EQUFILES(CVPCB_MAINFRAME *parent)
void OnEditEquFile(wxCommandEvent &event) override
void OnRemoveFiles(wxCommandEvent &event) override
void OnButtonMoveUp(wxCommandEvent &event) override
void SetupStandardButtons(std::map< int, wxString > aLabels={})
static const wxString GlobalPathEnvVariableName()
Return the name of the environment variable used to hold the directory of locally installed "KiCad sp...
PROJECT & Prj() const
Return a reference to the PROJECT associated with this KIWAY.
The backing store for a PROJECT, in JSON format.
Definition: project_file.h:65
Container for project specific data.
Definition: project.h:64
virtual const wxString GetProjectFullName() const
Return the full path and name of the project.
Definition: project.cpp:120
virtual PROJECT_FILE & GetProjectFile() const
Definition: project.h:149
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
Definition: confirm.cpp:283
This file is part of the common library.
#define _(s)
int ExecuteFile(const wxString &aEditorName, const wxString &aFileName, wxProcess *aCallback)
Call the executable file aEditorName with the parameter aFileName.
Definition: gestfich.cpp:117
wxString EquFileWildcard()
see class PGM_BASE
#define PROJECT_VAR_NAME
A variable name whose value holds the current project directory.
Definition: project.h:39
KIWAY Kiway & Pgm(), KFCTL_STANDALONE
The global Program "get" accessor.
Definition: single_top.cpp:115
Definition of file extensions used in Kicad.