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
18 * along with this program. If not, see <https://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#include <algorithm>
46
47
48#define GRID_CELL_MARGIN 4
49
50enum
51{
53};
54
56{
57public:
59 GRID_TRICKS( aGrid )
60 {}
61
62protected:
63 void showPopupMenu( wxMenu& menu, wxGridEvent& aEvent ) override;
64 void doPopupSelection( wxCommandEvent& event ) override;
65};
66
67
68void PLUGINS_GRID_TRICKS::showPopupMenu( wxMenu& menu, wxGridEvent& aEvent )
69{
70 const int clickedRow = aEvent.GetRow();
71
72 if( clickedRow >= 0 )
73 {
74 m_grid->SetGridCursor( clickedRow, m_grid->GetGridCursorCol() );
75 m_grid->ClearSelection();
76 m_grid->SelectRow( clickedRow );
77
79 wxString id = m_grid->GetCellValue( clickedRow,
81
82 if( std::optional<const PLUGIN_ACTION*> action = mgr.GetAction( id );
83 action && ( *action )->plugin.Runtime().type == PLUGIN_RUNTIME_TYPE::PYTHON )
84 {
85 menu.Append( MYID_RECREATE_ENV, _( "Recreate Plugin Environment" ), _( "Recreate Plugin Environment" ) );
86 menu.AppendSeparator();
87 }
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 {
99 wxString id = m_grid->GetCellValue( m_grid->GetGridCursorRow(),
101
102 if( std::optional<const PLUGIN_ACTION*> action = mgr.GetAction( id );
103 action && ( *action )->plugin.Runtime().type == PLUGIN_RUNTIME_TYPE::PYTHON )
104 {
105 mgr.RecreatePluginEnvironment( ( *action )->plugin.Identifier() );
106 }
107 }
108 else
109 {
111 }
112}
113
114
117{
119 m_grid->PushEventHandler( new PLUGINS_GRID_TRICKS( m_grid ) );
120 m_grid->SetUseNativeColLabels();
121
122 // Pin best size before TransferDataToWindow grows columns past the screen (#24408).
123 m_grid->OverrideMinSize( 1.0, 1.0 );
124
130
131 m_errorDialog = new DIALOG_HTML_REPORTER( aParent );
132 m_allowErrorDialog = false;
133
136}
137
138
146
147
149{
150 m_grid->Enable();
152
153 if( m_allowErrorDialog && m_errorDialog->m_Reporter->HasMessage() )
154 {
155 m_errorDialog->m_Reporter->Flush();
156 m_allowErrorDialog = false;
157 m_errorDialog->ShowModal();
158 }
159
160 aEvt.Skip();
161}
162
163
165{
166 SelectRow( event.GetRow() );
167}
168
169
171{
172 m_grid->ClearSelection();
173 m_grid->SelectRow( aRow );
174}
175
176
178{
179 m_grid->OnMoveRowUp(
180 [&]( int row )
181 {
182 SwapRows( row, row - 1 );
183 } );
184}
185
186
188{
189 m_grid->OnMoveRowDown(
190 [&]( int row )
191 {
192 SwapRows( row, row + 1 );
193 } );
194}
195
196
197void PANEL_PCBNEW_ACTION_PLUGINS::SwapRows( int aRowA, int aRowB )
198{
199 m_grid->Freeze();
200
201 m_grid->SwapRows( aRowA, aRowB );
202
203 // Swap icon column renderers
204 auto cellRenderer = m_grid->GetCellRenderer( aRowA, COLUMN_ACTION_NAME );
205 m_grid->SetCellRenderer( aRowA, COLUMN_ACTION_NAME, m_grid->GetCellRenderer( aRowB, COLUMN_ACTION_NAME ) );
206 m_grid->SetCellRenderer( aRowB, COLUMN_ACTION_NAME, cellRenderer );
207
208 m_grid->Thaw();
209}
210
211
213{
215 m_errorDialog->m_Reporter->Clear();
216 auto reporter = std::make_shared<REDIRECT_REPORTER>( m_errorDialog->m_Reporter );
217 m_allowErrorDialog = true;
218 mgr.ReloadPlugins( std::nullopt, reporter );
219 m_grid->Disable();
220}
221
222
224{
225 PCBNEW_SETTINGS* settings = dynamic_cast<PCBNEW_SETTINGS*>( Kiface().KifaceSettings() );
226 wxASSERT( settings );
227
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
246 return true;
247}
248
249
251{
252 m_grid->Freeze();
253
254 m_grid->ClearRows();
255
256 const std::vector<const PLUGIN_ACTION*>& orderedPlugins = PCB_EDIT_FRAME::GetOrderedPluginActions();
257 m_grid->AppendRows( orderedPlugins.size() );
258
260 wxSize iconSize( size, size );
261
262 for( size_t row = 0; row < orderedPlugins.size(); row++ )
263 {
264 const PLUGIN_ACTION* action = orderedPlugins[row];
265
266 const wxBitmapBundle& icon = KIPLATFORM::UI::IsDarkTheme() && action->icon_dark.IsOk() ? action->icon_dark
267 : action->icon_light;
268
269 // Icon
270 m_grid->SetCellRenderer( row, COLUMN_ACTION_NAME, new GRID_CELL_ICON_TEXT_RENDERER(
271 icon.IsOk() ? icon : m_genericIcon, iconSize ) );
272 m_grid->SetCellValue( row, COLUMN_ACTION_NAME, action->name );
273 m_grid->SetCellValue( row, COLUMN_SETTINGS_IDENTIFIER, action->identifier );
274
275 // Toolbar button checkbox
276 m_grid->SetCellRenderer( row, COLUMN_VISIBLE, new wxGridCellBoolRenderer() );
277 m_grid->SetCellAlignment( row, COLUMN_VISIBLE, wxALIGN_CENTER, wxALIGN_CENTER );
278
280
281 m_grid->SetCellValue( row, COLUMN_VISIBLE, show ? wxT( "1" ) : wxEmptyString );
282
283 m_grid->SetCellValue( row, COLUMN_PLUGIN_NAME, action->plugin.Name() );
284 m_grid->SetCellValue( row, COLUMN_DESCRIPTION, action->description );
285 }
286
287 const int colMaxWidth = FromDIP( 400 );
288
289 for( int col = 0; col < m_grid->GetNumberCols(); col++ )
290 {
291 const wxString& heading = m_grid->GetColLabelValue( col );
292 int headingWidth = GetTextExtent( heading ).x + 2 * GRID_CELL_MARGIN;
293
294 m_grid->SetColMinimalWidth( col, headingWidth );
295 int width = std::min( m_grid->GetVisibleWidth( col ), colMaxWidth );
296 m_grid->SetColSize( col, std::max( headingWidth, width ) );
297 }
298
299 m_grid->AutoSizeRows();
300 // AutoSizeColumns() would re-expand columns to full content width (setAsMin=true) and undo
301 // the cap above (#24408).
303
304 m_grid->Thaw();
305
306 // Show errors button should be disabled if there are no errors.
307 wxString trace;
308
309 if( trace.empty() )
310 {
311 m_showErrorsButton->Disable();
312 m_showErrorsButton->Hide();
313 }
314 else
315 {
316 m_showErrorsButton->Enable();
317 m_showErrorsButton->Show();
318 }
319
320 return true;
321}
322
323
325{
326 wxString dir( PATHS::GetUserPluginsPath() );
327 LaunchExternal( dir );
328}
329
330
332{
333 wxString trace;
334
335 // Now display the filtered trace in our dialog
336 // (a simple wxMessageBox is really not suitable for long messages)
337 DIALOG_FOOTPRINT_WIZARD_LOG logWindow( wxGetTopLevelParent( this ) );
338 logWindow.m_Message->SetValue( trace );
339 logWindow.ShowModal();
340}
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:106
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:91
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:528
virtual API_PLUGIN_MANAGER & GetPluginManager() const
Definition pgm_base.h:140
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:44
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:50
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
IbisParser parser & reporter