KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_pcbnew_action_plugins.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 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#include <api/api_plugin.h>
22#include <bitmaps.h>
24#include <grid_tricks.h>
25#include <kiface_base.h>
26#include <kiplatform/ui.h>
28#include <paths.h>
29#include <pcb_edit_frame.h>
30#include <pcbnew_settings.h>
31#include <pgm_base.h>
32#include <reporter.h>
36#include <launch_ext.h>
37#include <widgets/kistatusbar.h>
40#include <widgets/wx_grid.h>
43#include <wx/app.h>
44
45
46#define GRID_CELL_MARGIN 4
47
48enum
49{
51};
52
54{
55public:
57 GRID_TRICKS( aGrid )
58 {}
59
60protected:
61 void showPopupMenu( wxMenu& menu, wxGridEvent& aEvent ) override;
62 void doPopupSelection( wxCommandEvent& event ) override;
63};
64
65
66void PLUGINS_GRID_TRICKS::showPopupMenu( wxMenu& menu, wxGridEvent& aEvent )
67{
68 const int clickedRow = aEvent.GetRow();
69
70 if( clickedRow >= 0 )
71 {
72 m_grid->SetGridCursor( clickedRow, m_grid->GetGridCursorCol() );
73 m_grid->ClearSelection();
74 m_grid->SelectRow( clickedRow );
75
76#ifdef KICAD_IPC_API
77 API_PLUGIN_MANAGER& mgr = Pgm().GetPluginManager();
78 wxString id = m_grid->GetCellValue( clickedRow,
80
81 if( std::optional<const PLUGIN_ACTION*> action = mgr.GetAction( id );
82 action && ( *action )->plugin.Runtime().type == PLUGIN_RUNTIME_TYPE::PYTHON )
83 {
84 menu.Append( MYID_RECREATE_ENV, _( "Recreate Plugin Environment" ), _( "Recreate Plugin Environment" ) );
85 menu.AppendSeparator();
86 }
87#endif
88 }
89
90 GRID_TRICKS::showPopupMenu( menu, aEvent );
91}
92
93
94void PLUGINS_GRID_TRICKS::doPopupSelection( wxCommandEvent& event )
95{
96 if( event.GetId() == MYID_RECREATE_ENV )
97 {
98#ifdef KICAD_IPC_API
99 API_PLUGIN_MANAGER& mgr = Pgm().GetPluginManager();
100 wxString id = m_grid->GetCellValue( m_grid->GetGridCursorRow(),
102
103 if( std::optional<const PLUGIN_ACTION*> action = mgr.GetAction( id );
104 action && ( *action )->plugin.Runtime().type == PLUGIN_RUNTIME_TYPE::PYTHON )
105 {
106 mgr.RecreatePluginEnvironment( ( *action )->plugin.Identifier() );
107 }
108#endif
109 }
110 else
111 {
113 }
114}
115
116
136
137
145
146
148{
149 m_grid->Enable();
151
152 if( m_allowErrorDialog && m_errorDialog->m_Reporter->HasMessage() )
153 {
154 m_errorDialog->m_Reporter->Flush();
155 m_allowErrorDialog = false;
156 m_errorDialog->ShowModal();
157 }
158
159 aEvt.Skip();
160}
161
162
164{
165 SelectRow( event.GetRow() );
166}
167
168
170{
171 m_grid->ClearSelection();
172 m_grid->SelectRow( aRow );
173}
174
175
177{
178 m_grid->OnMoveRowUp(
179 [&]( int row )
180 {
181 SwapRows( row, row - 1 );
182 } );
183}
184
185
187{
188 m_grid->OnMoveRowDown(
189 [&]( int row )
190 {
191 SwapRows( row, row + 1 );
192 } );
193}
194
195
196void PANEL_PCBNEW_ACTION_PLUGINS::SwapRows( int aRowA, int aRowB )
197{
198 m_grid->Freeze();
199
200 m_grid->SwapRows( aRowA, aRowB );
201
202 // Swap icon column renderers
203 auto cellRenderer = m_grid->GetCellRenderer( aRowA, COLUMN_ACTION_NAME );
204 m_grid->SetCellRenderer( aRowA, COLUMN_ACTION_NAME, m_grid->GetCellRenderer( aRowB, COLUMN_ACTION_NAME ) );
205 m_grid->SetCellRenderer( aRowB, COLUMN_ACTION_NAME, cellRenderer );
206
207 m_grid->Thaw();
208}
209
210
212{
213 API_PLUGIN_MANAGER& mgr = Pgm().GetPluginManager();
214 m_errorDialog->m_Reporter->Clear();
215 auto reporter = std::make_shared<REDIRECT_REPORTER>( m_errorDialog->m_Reporter );
216 m_allowErrorDialog = true;
217 mgr.ReloadPlugins( std::nullopt, reporter );
218 m_grid->Disable();
219}
220
221
223{
224 PCBNEW_SETTINGS* settings = dynamic_cast<PCBNEW_SETTINGS*>( Kiface().KifaceSettings() );
225 wxASSERT( settings );
226
227#ifdef KICAD_IPC_API
228 API_PLUGIN_MANAGER& mgr = Pgm().GetPluginManager();
229
230 if( settings )
231 {
232 settings->m_Plugins.actions.clear();
233
234 for( int ii = 0; ii < m_grid->GetNumberRows(); ii++ )
235 {
236 wxString id = m_grid->GetCellValue( ii, COLUMN_SETTINGS_IDENTIFIER );
237
238 if( mgr.GetAction( id ) != std::nullopt )
239 {
240 settings->m_Plugins.actions.emplace_back( std::make_pair(
241 id, m_grid->GetCellValue( ii, COLUMN_VISIBLE ) == wxT( "1" ) ) );
242 }
243 }
244 }
245#endif
246
247 return true;
248}
249
250
252{
253 m_grid->Freeze();
254
255 m_grid->ClearRows();
256
257 const std::vector<const PLUGIN_ACTION*>& orderedPlugins = PCB_EDIT_FRAME::GetOrderedPluginActions();
258 m_grid->AppendRows( orderedPlugins.size() );
259
261 wxSize iconSize( size, size );
262
263 for( size_t row = 0; row < orderedPlugins.size(); row++ )
264 {
265#ifdef KICAD_IPC_API
266 const PLUGIN_ACTION* action = orderedPlugins[row];
267
268 const wxBitmapBundle& icon = KIPLATFORM::UI::IsDarkTheme() && action->icon_dark.IsOk() ? action->icon_dark
269 : action->icon_light;
270
271 // Icon
272 m_grid->SetCellRenderer( row, COLUMN_ACTION_NAME, new GRID_CELL_ICON_TEXT_RENDERER(
273 icon.IsOk() ? icon : m_genericIcon, iconSize ) );
274 m_grid->SetCellValue( row, COLUMN_ACTION_NAME, action->name );
275 m_grid->SetCellValue( row, COLUMN_SETTINGS_IDENTIFIER, action->identifier );
276
277 // Toolbar button checkbox
278 m_grid->SetCellRenderer( row, COLUMN_VISIBLE, new wxGridCellBoolRenderer() );
279 m_grid->SetCellAlignment( row, COLUMN_VISIBLE, wxALIGN_CENTER, wxALIGN_CENTER );
280
282
283 m_grid->SetCellValue( row, COLUMN_VISIBLE, show ? wxT( "1" ) : wxEmptyString );
284
285 m_grid->SetCellValue( row, COLUMN_PLUGIN_NAME, action->plugin.Name() );
286 m_grid->SetCellValue( row, COLUMN_DESCRIPTION, action->description );
287#endif
288 }
289
290 for( int col = 0; col < m_grid->GetNumberCols(); col++ )
291 {
292 const wxString& heading = m_grid->GetColLabelValue( col );
293 int headingWidth = GetTextExtent( heading ).x + 2 * GRID_CELL_MARGIN;
294
295 // Set the minimal width to the column label size.
296 m_grid->SetColMinimalWidth( col, headingWidth );
297 // Set the width to see the full contents
298 m_grid->SetColSize( col, m_grid->GetVisibleWidth( col ) );
299 }
300
301 m_grid->AutoSizeRows();
302 m_grid->AutoSizeColumns();
304
305 m_grid->Thaw();
306
307 // Show errors button should be disabled if there are no errors.
308 wxString trace;
309
310 if( trace.empty() )
311 {
312 m_showErrorsButton->Disable();
313 m_showErrorsButton->Hide();
314 }
315 else
316 {
317 m_showErrorsButton->Enable();
318 m_showErrorsButton->Show();
319 }
320
321 return true;
322}
323
324
326{
327 wxString dir( PATHS::GetUserPluginsPath() );
328 LaunchExternal( dir );
329}
330
331
333{
334 wxString trace;
335
336 // Now display the filtered trace in our dialog
337 // (a simple wxMessageBox is really not suitable for long messages)
338 DIALOG_FOOTPRINT_WIZARD_LOG logWindow( wxGetTopLevelParent( this ) );
339 logWindow.m_Message->SetValue( trace );
340 logWindow.ShowModal();
341}
const KICOMMON_API wxEventTypeTag< wxCommandEvent > EDA_EVT_PLUGIN_AVAILABILITY_CHANGED
Notifies other parts of KiCad when plugin availability changes.
KIFACE_BASE & Kiface()
Global KIFACE_BASE "get" accessor.
wxBitmapBundle KiBitmapBundle(BITMAPS aBitmap, int aMinHeight)
Definition bitmap.cpp:110
Responsible for loading plugin definitions for API-based plugins (ones that do not run inside KiCad i...
void ReloadPlugins(std::optional< wxString > aDirectoryToScan=std::nullopt, std::shared_ptr< REPORTER > aReporter=nullptr)
Clears the loaded plugins and actions and re-scans the filesystem to register new ones.
void RecreatePluginEnvironment(const wxString &aIdentifier)
std::optional< const PLUGIN_ACTION * > GetAction(const wxString &aIdentifier)
const wxString & Name() const
APPEARANCE m_Appearance
Class DIALOG_FOOTPRINT_WIZARD_LOG.
Class DIALOG_HTML_REPORTER.
int ShowModal() override
GRID_TRICKS(WX_GRID *aGrid)
virtual void doPopupSelection(wxCommandEvent &event)
virtual void showPopupMenu(wxMenu &menu, wxGridEvent &aEvent)
WX_GRID * m_grid
I don't own the grid, but he owns me.
APP_SETTINGS_BASE * KifaceSettings() const
Definition kiface_base.h:95
PANEL_PCBNEW_ACTION_PLUGINS_BASE(wxWindow *parent, wxWindowID id=wxID_ANY, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxSize(-1,-1), long style=wxTAB_TRAVERSAL, const wxString &name=wxEmptyString)
void onPluginAvailabilityChanged(wxCommandEvent &aEvt)
void OnShowErrorsButtonClick(wxCommandEvent &event) override
Shows plugin import errors.
void OnMoveUpButtonClick(wxCommandEvent &event) override
Moves plugin up in the grid.
void OnGridCellClick(wxGridEvent &event) override
Selects a whole row.
void OnMoveDownButtonClick(wxCommandEvent &event) override
Moves plugin down in the grid.
void OnOpenDirectoryButtonClick(wxCommandEvent &event) override
Opens user's action plugin directory.
void OnReloadButtonClick(wxCommandEvent &event) override
Reloads plugins and updates grid.
static wxString GetUserPluginsPath()
Gets the user path for plugins.
Definition paths.cpp:49
static bool GetPluginActionButtonVisible(const wxString &aPluginPath, bool aPluginDefault)
Return true if button visibility action plugin setting was set to true or it is unset and plugin defa...
static std::vector< const PLUGIN_ACTION * > GetOrderedPluginActions()
Return ordered list of plugins in sequence in which they should appear on toolbar or in settings.
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition pgm_base.cpp:541
void showPopupMenu(wxMenu &menu, wxGridEvent &aEvent) override
void doPopupSelection(wxCommandEvent &event) override
#define GRID_CELL_MARGIN
#define _(s)
@ GRIDTRICKS_FIRST_CLIENT_ID
Definition grid_tricks.h:48
bool LaunchExternal(const wxString &aPath)
Launches the given file or folder in the host OS.
bool IsDarkTheme()
Determine if the desktop interface is currently using a dark theme or a light theme.
Definition wxgtk/ui.cpp:49
PGM_BASE & Pgm()
The global program "get" accessor.
see class PGM_BASE
std::vector< std::pair< wxString, bool > > actions
Ordered list of plugin actions mapped to whether or not they are shown in the toolbar.
An action performed by a plugin via the IPC API.
Definition api_plugin.h:72
wxBitmapBundle icon_light
Definition api_plugin.h:84
const API_PLUGIN & plugin
Definition api_plugin.h:87
wxString name
Definition api_plugin.h:78
wxString description
Definition api_plugin.h:79
wxString identifier
Definition api_plugin.h:77
wxBitmapBundle icon_dark
Definition api_plugin.h:85