KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
dialog_pcm.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) 2021 Andrew Lutsenko, anlutsenko at gmail dot com
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21// kicad_curl_easy.h **must be** included before any wxWidgets header to avoid conflicts
22// at least on Windows/msys2
24
25#include "bitmaps.h"
27#include "dialog_pcm.h"
28#include <eda_base_frame.h>
29#include "grid_tricks.h"
30#include "ki_exception.h"
31#include "pcm_task_manager.h"
32#include "pgm_base.h"
35#include "thread"
36#include "widgets/wx_grid.h"
37
38#include <fstream>
39#include <launch_ext.h>
40#include <sstream>
41#include <vector>
42#include <wx/filedlg.h>
43#include <wx/msgdlg.h>
44
45
46#define GRID_CELL_MARGIN 4
47
48// Notes: These strings are static, so wxGetTranslation must be called to display the
49// transalted text
50static std::vector<std::pair<PCM_PACKAGE_TYPE, wxString>> PACKAGE_TYPE_LIST = {
51 { PT_PLUGIN, _( "Plugins (%d)" ) },
52 { PT_FAB, _( "Fabrication plugins (%d)" ) },
53 { PT_LIBRARY, _( "Libraries (%d)" ) },
54 { PT_COLORTHEME, _( "Color themes (%d)" ) },
55};
56
57
58DIALOG_PCM::DIALOG_PCM( EDA_BASE_FRAME* parent, std::shared_ptr<PLUGIN_CONTENT_MANAGER> pcm ) :
59 DIALOG_PCM_BASE( parent ),
60 m_parentFrame( parent ),
61 m_pcm( pcm )
62{
63 // correct the min size from wxfb with fromdip
64 SetMinSize( FromDIP( GetMinSize() ) );
65
66 SetDoubleBuffered( true );
67
68 m_defaultBitmap = KiBitmap( BITMAPS::icon_pcm );
69
70 m_pcm->SetDialogWindow( this );
71 m_pcm->StopBackgroundUpdate();
72
73 m_gridPendingActions->PushEventHandler( new GRID_TRICKS( m_gridPendingActions ) );
74
75 m_discardActionButton->SetBitmap( KiBitmapBundle( BITMAPS::small_trash ) );
76 m_panelPending->Layout();
77
78 m_actionCallback = [this]( const PACKAGE_VIEW_DATA& aData, PCM_PACKAGE_ACTION aAction,
79 const wxString& aVersion )
80 {
81 if( aAction == PPA_UPDATE && m_pcm->IsPackagePinned( aData.package.identifier ) )
82 {
83 if( wxMessageBox( wxString::Format( _( "Are you sure you want to update pinned package "
84 "from version %s to %s?" ),
85 aData.current_version, aVersion ),
86 _( "Confirm update" ), wxICON_QUESTION | wxYES_NO, this )
87 == wxNO )
88 {
89 return;
90 }
91 }
92
93 m_gridPendingActions->Freeze();
94
95 PCM_PACKAGE_STATE new_state;
96
97 m_gridPendingActions->AppendRows();
98 int row = m_gridPendingActions->GetNumberRows() - 1;
99
100 m_gridPendingActions->SetCellValue( row, PENDING_COL_NAME, aData.package.name );
102
103 switch( aAction )
104 {
105 default:
106 case PPA_INSTALL:
107 m_gridPendingActions->SetCellValue( row, PENDING_COL_ACTION, _( "Install" ) );
108 m_gridPendingActions->SetCellValue( row, PENDING_COL_VERSION, aVersion );
109 new_state = PPS_PENDING_INSTALL;
110 break;
111
112 case PPA_UPDATE:
113 m_gridPendingActions->SetCellValue( row, PENDING_COL_ACTION, _( "Update" ) );
114 m_gridPendingActions->SetCellValue(
116 wxString::Format( wxT( "%s \u279C %s" ), aData.current_version, aVersion ) );
117 new_state = PPS_PENDING_UPDATE;
118 break;
119
120 case PPA_UNINSTALL:
121 m_gridPendingActions->SetCellValue( row, PENDING_COL_ACTION, _( "Uninstall" ) );
122 m_gridPendingActions->SetCellValue(
124 m_pcm->GetInstalledPackageVersion( aData.package.identifier ) );
125 new_state = PPS_PENDING_UNINSTALL;
126 break;
127 }
128
129 m_pendingActions.emplace_back( aAction, aData.repository_id, aData.package, aVersion );
130
131 m_gridPendingActions->Thaw();
132
134
135 updatePackageState( aData.package.identifier, new_state );
136 };
137
139 [this]( const wxString& aPackageId, const PCM_PACKAGE_STATE aState, const bool aPinned )
140 {
141 m_pcm->SetPinned( aPackageId, aPinned );
142
143 updatePackageState( aPackageId, aState );
144 };
145
148 m_panelInstalledHolder->GetSizer()->Add( m_installedPanel, 1, wxEXPAND );
149 m_panelInstalledHolder->Layout();
150
151 for( const std::pair<PCM_PACKAGE_TYPE, wxString>& entry : PACKAGE_TYPE_LIST )
152 {
155 wxString label = wxGetTranslation( entry.second );
156 m_contentNotebook->AddPage( panel, wxString::Format( label, 0 ) );
157 m_repositoryContentPanels.insert( { entry.first, panel } );
158 }
159
160 m_dialogNotebook->SetPageText( 0, wxString::Format( _( "Repository (%d)" ), 0 ) );
161
164
165 m_dialogNotebook->SetSelection( 0 );
166
167 SetupStandardButtons( { { wxID_OK, _( "Close" ) },
168 { wxID_APPLY, _( "Apply Pending Changes" ) },
169 { wxID_CANCEL, _( "Discard Pending Changes" ) } } );
170
171 Bind( wxEVT_CLOSE_WINDOW, &DIALOG_PCM::OnCloseWindow, this );
172 m_sdbSizer1Cancel->Bind( wxEVT_UPDATE_UI, &DIALOG_PCM::OnUpdateEventButtons, this );
173 m_sdbSizer1Apply->Bind( wxEVT_UPDATE_UI, &DIALOG_PCM::OnUpdateEventButtons, this );
174
176
177 for( int col = 0; col < m_gridPendingActions->GetNumberCols(); col++ )
178 {
179 const wxString& heading = m_gridPendingActions->GetColLabelValue( col );
180 int headingWidth = GetTextExtent( heading ).x + 2 * GRID_CELL_MARGIN;
181
182 // Set the minimal width to the column label size.
183 m_gridPendingActions->SetColMinimalWidth( col, headingWidth );
184 }
185
186 // fix sizers now widgets are set.
188}
189
190
192{
193 Unbind( wxEVT_CLOSE_WINDOW, &DIALOG_PCM::OnCloseWindow, this );
194 m_sdbSizer1Cancel->Unbind( wxEVT_UPDATE_UI, &DIALOG_PCM::OnUpdateEventButtons, this );
195 m_sdbSizer1Apply->Unbind( wxEVT_UPDATE_UI, &DIALOG_PCM::OnUpdateEventButtons, this );
196
197 m_pcm->SaveInstalledPackages();
198 m_pcm->SetDialogWindow( nullptr );
199 m_pcm->RunBackgroundUpdate();
200
201 m_gridPendingActions->PopEventHandler( true );
202}
203
204
205void DIALOG_PCM::OnUpdateEventButtons( wxUpdateUIEvent& event )
206{
207 event.Enable( !m_pendingActions.empty() );
208}
209
210
211void DIALOG_PCM::OnCloseClicked( wxCommandEvent& event )
212{
213 if( m_pendingActions.size() == 0
214 || wxMessageBox( _( "Are you sure you want to close the package manager "
215 "and discard pending changes?" ),
216 _( "Plugin and Content Manager" ), wxICON_QUESTION | wxYES_NO, this )
217 == wxYES )
218 {
219 EndModal( wxID_OK );
220 }
221}
222
223
224void DIALOG_PCM::OnCloseWindow( wxCloseEvent& aEvent )
225{
226 wxCommandEvent dummy;
227
229}
230
231
232void DIALOG_PCM::OnManageRepositoriesClicked( wxCommandEvent& event )
233{
235
236 std::vector<std::pair<wxString, wxString>> dialog_data;
237 std::vector<std::tuple<wxString, wxString, wxString>> repo_list = m_pcm->GetRepositoryList();
238
239 for( const std::tuple<wxString, wxString, wxString>& repo : repo_list )
240 dialog_data.push_back( std::make_pair( std::get<1>( repo ), std::get<2>( repo ) ) );
241
242 dialog->SetData( dialog_data );
243
244 if( dialog->ShowModal() == wxID_SAVE )
245 {
246 dialog_data = dialog->GetData();
247 m_pcm->SetRepositoryList( dialog_data );
248
250 KICAD_SETTINGS* cfg = mgr.GetAppSettings<KICAD_SETTINGS>( "kicad" );
251
252 cfg->m_PcmRepositories = std::move( dialog_data );
253
255 }
256
257 dialog->Destroy();
258}
259
260
262{
263 std::vector<std::tuple<wxString, wxString, wxString>> repositories = m_pcm->GetRepositoryList();
264
265 m_choiceRepository->Clear();
266
267 for( const std::tuple<wxString, wxString, wxString>& entry : repositories )
268 {
269 m_choiceRepository->Append( std::get<1>( entry ),
270 new wxStringClientData( std::get<0>( entry ) ) );
271 }
272
273 if( repositories.size() > 0 )
274 {
275 m_choiceRepository->SetSelection( 0 );
276 m_selectedRepositoryId = std::get<0>( repositories[0] );
278 }
279 else
280 {
282 }
283}
284
285
286void DIALOG_PCM::OnRefreshClicked( wxCommandEvent& event )
287{
288 m_pcm->DiscardRepositoryCache( m_selectedRepositoryId );
290}
291
292
293void DIALOG_PCM::OnInstallFromFileClicked( wxCommandEvent& event )
294{
295 wxFileDialog open_file_dialog( this, _( "Install Package" ), wxEmptyString, wxEmptyString,
296 wxT( "Zip files (*.zip)|*.zip" ),
297 wxFD_OPEN | wxFD_FILE_MUST_EXIST );
298
299 if( open_file_dialog.ShowModal() == wxID_CANCEL )
300 return;
301
302 PCM_TASK_MANAGER task_manager( m_pcm );
303 task_manager.InstallFromFile( this, open_file_dialog.GetPath() );
304
305 m_changed_package_types.merge( task_manager.GetChangedPackageTypes() );
306
308
309 if( !m_selectedRepositoryId.IsEmpty() )
311}
312
313
314void DIALOG_PCM::OnRepositoryChoice( wxCommandEvent& event )
315{
316 wxStringClientData* data = static_cast<wxStringClientData*>(
317 m_choiceRepository->GetClientObject( m_choiceRepository->GetSelection() ) );
318
319 m_selectedRepositoryId = data->GetData();
320
322}
323
324
325void DIALOG_PCM::setRepositoryData( const wxString& aRepositoryId )
326{
327 m_dialogNotebook->Freeze();
328
329 if( m_pcm->CacheRepository( aRepositoryId ) )
330 {
331 for( const auto& [ packageType, packagesView ] : m_repositoryContentPanels )
332 packagesView->ClearData();
333
334 m_packageBitmaps = m_pcm->GetRepositoryPackageBitmaps( aRepositoryId );
335
336 const std::vector<PCM_PACKAGE> packages = m_pcm->GetRepositoryPackages( aRepositoryId );
337
338 std::unordered_map<PCM_PACKAGE_TYPE, std::vector<PACKAGE_VIEW_DATA>> data;
339
340 for( const PCM_PACKAGE& pkg : packages )
341 {
342 PACKAGE_VIEW_DATA package_data( pkg );
343
344 if( m_packageBitmaps.count( package_data.package.identifier ) > 0 )
345 package_data.bitmap = &m_packageBitmaps.at( package_data.package.identifier );
346 else
347 package_data.bitmap = &m_defaultBitmap;
348
349 package_data.state = m_pcm->GetPackageState( aRepositoryId, pkg.identifier );
350
351 if( package_data.state == PPS_INSTALLED || package_data.state == PPS_UPDATE_AVAILABLE )
352 {
353 package_data.current_version = m_pcm->GetInstalledPackageVersion( pkg.identifier );
354 package_data.pinned = m_pcm->IsPackagePinned( pkg.identifier );
355 }
356
357 if( package_data.state == PPS_UPDATE_AVAILABLE )
358 package_data.update_version = m_pcm->GetPackageUpdateVersion( pkg );
359
360
361 for( const PENDING_ACTION& action : m_pendingActions )
362 {
363 if( action.package.identifier != pkg.identifier )
364 continue;
365
366 switch( action.action )
367 {
368 case PPA_INSTALL: package_data.state = PPS_PENDING_INSTALL; break;
369 case PPA_UPDATE: package_data.state = PPS_PENDING_UPDATE; break;
370 case PPA_UNINSTALL: package_data.state = PPS_PENDING_UNINSTALL; break;
371 }
372
373 break;
374 }
375
376 package_data.repository_id = aRepositoryId;
377 package_data.repository_name = m_choiceRepository->GetStringSelection();
378
379 // Fabrication plugins are displayed in a different tab although they are still plugins
380 PCM_PACKAGE_TYPE type = pkg.category == PC_FAB ? PT_FAB : pkg.type;
381
382 data[type].emplace_back( package_data );
383 }
384
385 for( size_t i = 0; i < PACKAGE_TYPE_LIST.size(); i++ )
386 {
387 PCM_PACKAGE_TYPE type = PACKAGE_TYPE_LIST[i].first;
388 const wxString& label = PACKAGE_TYPE_LIST[i].second;
389 m_repositoryContentPanels[type]->SetData( data[type] );
390 m_contentNotebook->SetPageText( i, wxString::Format( wxGetTranslation( label ),
391 (int) data[type].size() ) );
392 }
393
394 m_dialogNotebook->SetPageText( 0, wxString::Format( _( "Repository (%d)" ),
395 (int) packages.size() ) );
396 }
397
398 m_dialogNotebook->Thaw();
399}
400
401
403{
404 m_gridPendingActions->ClearSelection();
405 m_gridPendingActions->SelectRow( event.GetRow() );
406}
407
408
410{
411 m_dialogNotebook->SetPageText( 2, wxString::Format( _( "Pending (%d)" ),
412 (int) m_pendingActions.size() ) );
413
414 for( int col = 0; col < m_gridPendingActions->GetNumberCols(); col++ )
415 {
416 // Set the width to see the full contents
418 }
419}
420
421
423{
425
426 const std::vector<PCM_INSTALLATION_ENTRY> installed = m_pcm->GetInstalledPackages();
427 std::vector<PACKAGE_VIEW_DATA> package_list;
428
429 m_installedBitmaps = m_pcm->GetInstalledPackageBitmaps();
430
431 for( const PCM_INSTALLATION_ENTRY& entry : installed )
432 {
433 PACKAGE_VIEW_DATA package_data( entry );
434
435 if( m_installedBitmaps.count( package_data.package.identifier ) > 0 )
436 package_data.bitmap = &m_installedBitmaps.at( package_data.package.identifier );
437 else
438 package_data.bitmap = &m_defaultBitmap;
439
440 package_data.state = m_pcm->GetPackageState( entry.repository_id,
441 entry.package.identifier );
442
443 if( package_data.state == PPS_UPDATE_AVAILABLE )
444 package_data.update_version = m_pcm->GetPackageUpdateVersion( entry.package );
445
446 package_list.emplace_back( package_data );
447 }
448
449 m_installedPanel->SetData( package_list );
450
451 m_dialogNotebook->SetPageText( 1, wxString::Format( _( "Installed (%d)" ),
452 (int) package_list.size() ) );
453}
454
455
456void DIALOG_PCM::OnApplyChangesClicked( wxCommandEvent& event )
457{
458 if( m_pendingActions.size() == 0 )
459 return;
460
461 m_sdbSizer1OK->Disable();
462 m_sdbSizer1Apply->Disable();
463 m_sdbSizer1Cancel->Disable();
464
465 PCM_TASK_MANAGER task_manager( m_pcm );
466
467 for( const PENDING_ACTION& action : m_pendingActions )
468 {
469 if( action.action == PPA_UNINSTALL )
470 {
471 task_manager.Uninstall( action.package );
472 }
473 else
474 {
475 bool isUpdate = action.action == PPA_UPDATE;
476 task_manager.DownloadAndInstall( action.package, action.version, action.repository_id,
477 isUpdate );
478 }
479 }
480
481 task_manager.RunQueue( this );
482
483 m_changed_package_types.merge( task_manager.GetChangedPackageTypes() );
484
485 m_sdbSizer1OK->Enable();
486 m_sdbSizer1Apply->Enable();
487 m_sdbSizer1Cancel->Enable();
488
490 wxCommandEvent dummy;
492
493 if( !m_selectedRepositoryId.IsEmpty() )
495}
496
497
498void DIALOG_PCM::OnDiscardChangesClicked( wxCommandEvent& event )
499{
500 m_gridPendingActions->Freeze();
501
502 for( int i = m_pendingActions.size() - 1; i >= 0; i-- )
503 discardAction( i );
504
506 m_gridPendingActions->Thaw();
507}
508
509
510void DIALOG_PCM::OnDiscardActionClicked( wxCommandEvent& event )
511{
512 wxArrayInt rows = m_gridPendingActions->GetSelectedRows();
513
514 std::sort( rows.begin(), rows.end(),
515 []( const int& a, const int& b )
516 {
517 return a > b;
518 } );
519
520 m_gridPendingActions->Freeze();
521
522 for( int row : rows )
523 discardAction( row );
524
526 m_gridPendingActions->Thaw();
527}
528
529
531{
532 m_gridPendingActions->DeleteRows( aIndex );
533
534 PENDING_ACTION action = m_pendingActions[aIndex];
535
536 PCM_PACKAGE_STATE state = m_pcm->GetPackageState( action.repository_id,
537 action.package.identifier );
538
539 updatePackageState( action.package.identifier, state );
540
541 m_pendingActions.erase( m_pendingActions.begin() + aIndex );
542}
543
544
545void DIALOG_PCM::updatePackageState( const wxString& aPackageId, const PCM_PACKAGE_STATE aState )
546{
547 bool pinned = m_pcm->IsPackagePinned( aPackageId );
548
549 m_installedPanel->SetPackageState( aPackageId, aState, pinned );
550
551 for( const auto& [ packageType, packagesView ] : m_repositoryContentPanels )
552 packagesView->SetPackageState( aPackageId, aState, pinned );
553}
554
555
556void DIALOG_PCM::OnOpenPackageDirClicked( wxCommandEvent& event )
557{
558 LaunchExternal( m_pcm->Get3rdPartyPath() );
559}
wxBitmap KiBitmap(BITMAPS aBitmap, int aHeightTag)
Construct a wxBitmap from an image identifier Returns the image from the active theme if the image ha...
Definition: bitmap.cpp:104
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Definition: bitmap.cpp:110
Implementing DIALOG_MANAGE_REPOSITORIES_BASE.
std::vector< std::pair< wxString, wxString > > GetData()
void SetData(const std::vector< std::pair< wxString, wxString > > &aData)
Class DIALOG_PCM_BASE.
wxChoice * m_choiceRepository
wxNotebook * m_contentNotebook
WX_GRID * m_gridPendingActions
wxButton * m_sdbSizer1OK
wxButton * m_sdbSizer1Cancel
wxBitmapButton * m_discardActionButton
wxNotebook * m_dialogNotebook
wxButton * m_sdbSizer1Apply
wxPanel * m_panelInstalledHolder
wxPanel * m_panelPending
ActionCallback m_actionCallback
Definition: dialog_pcm.h:111
void OnDiscardChangesClicked(wxCommandEvent &event) override
Switches to another repository.
Definition: dialog_pcm.cpp:498
std::unordered_map< wxString, wxBitmap > m_installedBitmaps
Definition: dialog_pcm.h:117
std::unordered_map< wxString, wxBitmap > m_packageBitmaps
Definition: dialog_pcm.h:116
void OnManageRepositoriesClicked(wxCommandEvent &event) override
Discards current repo cache, fetches it anew and displays.
Definition: dialog_pcm.cpp:232
void updatePackageState(const wxString &aPackageId, const PCM_PACKAGE_STATE aState)
Discards specified pending action.
Definition: dialog_pcm.cpp:545
void OnApplyChangesClicked(wxCommandEvent &event) override
Discards all pending changes.
Definition: dialog_pcm.cpp:456
void OnDiscardActionClicked(wxCommandEvent &event) override
Handles modification of the buttons' status.
Definition: dialog_pcm.cpp:510
void OnUpdateEventButtons(wxUpdateUIEvent &event)
Returns types of packages that were installed/uninstalled.
Definition: dialog_pcm.cpp:205
std::unordered_map< PCM_PACKAGE_TYPE, PANEL_PACKAGES_VIEW * > m_repositoryContentPanels
Definition: dialog_pcm.h:114
void OnOpenPackageDirClicked(wxCommandEvent &event) override
Enqueues current pending actions in PCM_TASK_MANAGER and runs the queue.
Definition: dialog_pcm.cpp:556
PinCallback m_pinCallback
Definition: dialog_pcm.h:112
std::unordered_set< PCM_PACKAGE_TYPE > m_changed_package_types
Definition: dialog_pcm.h:119
DIALOG_PCM(EDA_BASE_FRAME *parent, std::shared_ptr< PLUGIN_CONTENT_MANAGER > pcm)
Constructor.
Definition: dialog_pcm.cpp:58
void updatePendingActionsTab()
Gets installed packages list from PCM and displays it on installed tab.
Definition: dialog_pcm.cpp:409
std::vector< PENDING_ACTION > m_pendingActions
Definition: dialog_pcm.h:135
void setRepositoryListFromPcm()
Updates pending actions tab caption and content-fits the grid.
Definition: dialog_pcm.cpp:261
void OnInstallFromFileClicked(wxCommandEvent &event) override
Opens local directory where packages are installed in file manager.
Definition: dialog_pcm.cpp:293
@ PENDING_COL_NAME
Definition: dialog_pcm.h:140
@ PENDING_COL_REPOSITORY
Definition: dialog_pcm.h:142
@ PENDING_COL_VERSION
Definition: dialog_pcm.h:141
@ PENDING_COL_ACTION
Definition: dialog_pcm.h:139
void OnCloseWindow(wxCloseEvent &aEvent)
Opens repository management dialog, saves changes to PCM.
Definition: dialog_pcm.cpp:224
std::shared_ptr< PLUGIN_CONTENT_MANAGER > m_pcm
Definition: dialog_pcm.h:110
void OnRepositoryChoice(wxCommandEvent &event) override
Selects the whole row in the grid if a cell is clicked.
Definition: dialog_pcm.cpp:314
wxString m_selectedRepositoryId
Definition: dialog_pcm.h:115
PANEL_PACKAGES_VIEW * m_installedPanel
Definition: dialog_pcm.h:113
void setInstalledPackages()
Reflects new state of the package in all panels where it is displayed.
Definition: dialog_pcm.cpp:422
void OnPendingActionsCellClicked(wxGridEvent &event) override
Discards selected pending actions.
Definition: dialog_pcm.cpp:402
void setRepositoryData(const wxString &aRepositoryId)
Gets package data from PCM and displays it on repository tab.
Definition: dialog_pcm.cpp:325
void discardAction(int aIndex)
Definition: dialog_pcm.cpp:530
wxBitmap m_defaultBitmap
Definition: dialog_pcm.h:118
void OnRefreshClicked(wxCommandEvent &event) override
Opens file selection dialog and installs selected package archive.
Definition: dialog_pcm.cpp:286
void OnCloseClicked(wxCommandEvent &event) override
Definition: dialog_pcm.cpp:211
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...
int ShowModal() override
The base frame for deriving all KiCad main window classes.
Add mouse and command handling (such as cut, copy, and paste) to a WX_GRID instance.
Definition: grid_tricks.h:61
std::vector< std::pair< wxString, wxString > > m_PcmRepositories
void ClearData()
Selects full row of the clicked cell.
void SetData(const std::vector< PACKAGE_VIEW_DATA > &aPackageData)
Recreates package panels and displays data.
void SetPackageState(const wxString &aPackageId, const PCM_PACKAGE_STATE aState, const bool aPinned)
Set the state of package.
Helper class that handles package (un)installation.
std::unordered_set< PCM_PACKAGE_TYPE > & GetChangedPackageTypes()
PCM_TASK_MANAGER::STATUS DownloadAndInstall(const PCM_PACKAGE &aPackage, const wxString &aVersion, const wxString &aRepositoryId, const bool isUpdate)
Enqueue package download and installation.
void RunQueue(wxWindow *aParent)
Run queue of pending actions.
PCM_TASK_MANAGER::STATUS Uninstall(const PCM_PACKAGE &aPackage)
Enqueue package uninstallation.
PCM_TASK_MANAGER::STATUS InstallFromFile(wxWindow *aParent, const wxString &aFilePath)
Installs package from an archive file on disk.
virtual SETTINGS_MANAGER & GetSettingsManager() const
Definition: pgm_base.h:125
T * GetAppSettings(const wxString &aFilename)
Return a handle to the a given settings by type.
int GetVisibleWidth(int aCol, bool aHeader=true, bool aContents=true, bool aKeep=false)
Calculate the specified column based on the actual size of the text on screen.
Definition: wx_grid.cpp:776
#define GRID_CELL_MARGIN
static std::vector< std::pair< PCM_PACKAGE_TYPE, wxString > > PACKAGE_TYPE_LIST
Definition: dialog_pcm.cpp:50
#define _(s)
Base window classes and related definitions.
bool LaunchExternal(const wxString &aPath)
Launches the given file or folder in the host OS.
Definition: launch_ext.cpp:25
PCM_PACKAGE_STATE
Definition: pcm.h:58
@ PPS_INSTALLED
Definition: pcm.h:61
@ PPS_PENDING_UPDATE
Definition: pcm.h:65
@ PPS_UPDATE_AVAILABLE
Definition: pcm.h:64
@ PPS_PENDING_UNINSTALL
Definition: pcm.h:63
@ PPS_PENDING_INSTALL
Definition: pcm.h:62
PCM_PACKAGE_ACTION
Definition: pcm.h:71
@ PPA_UNINSTALL
Definition: pcm.h:73
@ PPA_UPDATE
Definition: pcm.h:74
@ PPA_INSTALL
Definition: pcm.h:72
@ PC_FAB
Definition: pcm_data.h:55
PCM_PACKAGE_TYPE
< Supported package types
Definition: pcm_data.h:42
@ PT_COLORTHEME
Definition: pcm_data.h:47
@ PT_PLUGIN
Definition: pcm_data.h:44
@ PT_LIBRARY
Definition: pcm_data.h:46
@ PT_FAB
Definition: pcm_data.h:45
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
std::vector< FAB_LAYER_COLOR > dummy
< Collection of data relevant to the package display panel Callback for (un)install button
Definition: panel_package.h:31
wxString update_version
Definition: panel_package.h:39
wxString repository_id
Definition: panel_package.h:36
wxString current_version
Definition: panel_package.h:38
const PCM_PACKAGE package
Definition: panel_package.h:32
wxString repository_name
Definition: panel_package.h:37
wxBitmap * bitmap
Definition: panel_package.h:33
PCM_PACKAGE_STATE state
Definition: panel_package.h:34
Definition: pcm_data.h:157
Repository reference to a resource.
Definition: pcm_data.h:113
wxString identifier
Definition: pcm_data.h:117
wxString name
Definition: pcm_data.h:114