2011-10-18 19:59:19 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2017-06-05 16:14:37 +00:00
|
|
|
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2012-06-08 09:56:42 +00:00
|
|
|
* Copyright (C) 2012 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2017-09-20 16:55:19 +00:00
|
|
|
* Copyright (C) 2012 Wayne Stambaugh <stambaughw@gmail.com>
|
2024-04-25 22:53:39 +00:00
|
|
|
* Copyright (C) 1992-2024 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-18 19:59:19 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2021-03-28 12:37:54 +00:00
|
|
|
#include <advanced_config.h>
|
2021-03-07 20:31:19 +00:00
|
|
|
#include <bitmaps.h>
|
2022-12-28 22:03:03 +00:00
|
|
|
#include <file_history.h>
|
2021-09-14 22:45:14 +00:00
|
|
|
#include <kiface_base.h>
|
2020-03-08 15:55:14 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
|
|
|
#include <pcbnew_id.h>
|
2021-04-23 20:13:03 +00:00
|
|
|
#include <python_scripting.h>
|
2021-06-06 17:26:26 +00:00
|
|
|
#include <tool/action_manager.h>
|
2019-05-14 19:21:10 +00:00
|
|
|
#include <tool/actions.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2019-05-15 22:49:48 +00:00
|
|
|
#include <tools/pcb_actions.h>
|
2020-12-16 13:31:32 +00:00
|
|
|
#include <tools/pcb_selection_tool.h>
|
2020-06-06 17:42:04 +00:00
|
|
|
#include <widgets/wx_menubar.h>
|
2016-03-11 16:40:24 +00:00
|
|
|
|
2010-06-30 11:15:34 +00:00
|
|
|
|
2022-12-16 21:37:32 +00:00
|
|
|
void PCB_EDIT_FRAME::doReCreateMenuBar()
|
2010-01-17 20:25:10 +00:00
|
|
|
{
|
2020-12-16 13:31:32 +00:00
|
|
|
PCB_SELECTION_TOOL* selTool = m_toolManager->GetTool<PCB_SELECTION_TOOL>();
|
2018-04-07 13:13:38 +00:00
|
|
|
// wxWidgets handles the Mac Application menu behind the scenes, but that means
|
|
|
|
// we always have to start from scratch with a new wxMenuBar.
|
2020-06-06 17:42:04 +00:00
|
|
|
wxMenuBar* oldMenuBar = GetMenuBar();
|
|
|
|
WX_MENUBAR* menuBar = new WX_MENUBAR();
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Recreate all menus:
|
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
//-- File menu -----------------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* fileMenu = new ACTION_MENU( false, selTool );
|
2020-02-25 15:46:56 +00:00
|
|
|
static ACTION_MENU* openRecentMenu;
|
2019-05-26 15:36:40 +00:00
|
|
|
|
|
|
|
if( Kiface().IsSingle() ) // not when under a project mgr
|
|
|
|
{
|
2020-05-16 21:47:01 +00:00
|
|
|
FILE_HISTORY& fileHistory = GetFileHistory();
|
2019-11-23 16:54:48 +00:00
|
|
|
|
|
|
|
// Create the menu if it does not exist. Adding a file to/from the history
|
|
|
|
// will automatically refresh the menu.
|
|
|
|
if( !openRecentMenu )
|
|
|
|
{
|
2021-03-27 19:16:58 +00:00
|
|
|
openRecentMenu = new ACTION_MENU( false, selTool );
|
2021-03-08 02:59:07 +00:00
|
|
|
openRecentMenu->SetIcon( BITMAPS::recent );
|
2020-02-25 15:46:56 +00:00
|
|
|
|
|
|
|
fileHistory.UseMenu( openRecentMenu );
|
|
|
|
fileHistory.AddFilesToMenu();
|
2019-11-23 16:54:48 +00:00
|
|
|
}
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2022-04-11 07:11:26 +00:00
|
|
|
// Ensure the title is up to date after changing language
|
|
|
|
openRecentMenu->SetTitle( _( "Open Recent" ) );
|
2022-04-11 16:11:17 +00:00
|
|
|
fileHistory.UpdateClearText( openRecentMenu, _( "Clear Recent Files" ) );
|
2022-04-11 07:11:26 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->Add( ACTIONS::doNew );
|
|
|
|
fileMenu->Add( ACTIONS::open );
|
|
|
|
|
2022-04-11 22:59:51 +00:00
|
|
|
wxMenuItem* item = fileMenu->Add( openRecentMenu->Clone() );
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
// Add the file menu condition here since it needs the item ID for the submenu
|
|
|
|
ACTION_CONDITIONS cond;
|
|
|
|
cond.Enable( FILE_HISTORY::FileHistoryNotEmpty( fileHistory ) );
|
|
|
|
RegisterUIUpdateHandler( item->GetId(), cond );
|
2019-05-26 15:36:40 +00:00
|
|
|
}
|
|
|
|
|
2022-09-14 10:29:15 +00:00
|
|
|
fileMenu->Add( PCB_ACTIONS::appendBoard );
|
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->Add( ACTIONS::save );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
|
|
|
// Save as menu:
|
|
|
|
// under a project mgr we do not want to modify the board filename
|
|
|
|
// to keep consistency with the project mgr which expects files names same as prj name
|
|
|
|
// for main files
|
|
|
|
if( Kiface().IsSingle() )
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->Add( ACTIONS::saveAs );
|
2019-05-26 15:36:40 +00:00
|
|
|
else
|
2022-04-24 16:38:34 +00:00
|
|
|
fileMenu->Add( ACTIONS::saveCopy );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2022-04-17 17:14:50 +00:00
|
|
|
fileMenu->Add( ACTIONS::revert );
|
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
fileMenu->Add( _( "Resc&ue" ),
|
2021-02-18 15:49:35 +00:00
|
|
|
_( "Clear board and get last rescue file automatically saved by PCB editor" ),
|
2020-08-13 23:09:17 +00:00
|
|
|
ID_MENU_RECOVER_BOARD_AUTOSAVE,
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::rescue );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
// Import submenu
|
2021-03-27 19:16:58 +00:00
|
|
|
ACTION_MENU* submenuImport = new ACTION_MENU( false, selTool );
|
2019-05-26 15:36:40 +00:00
|
|
|
submenuImport->SetTitle( _( "Import" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
submenuImport->SetIcon( BITMAPS::import );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2021-03-27 18:47:48 +00:00
|
|
|
submenuImport->Add( PCB_ACTIONS::importNetlist, ACTION_MENU::NORMAL, _( "Netlist..." ) );
|
|
|
|
submenuImport->Add( PCB_ACTIONS::importSpecctraSession, ACTION_MENU::NORMAL, _( "Specctra Session..." ) );
|
2021-03-27 19:04:16 +00:00
|
|
|
submenuImport->Add( PCB_ACTIONS::placeImportedGraphics, ACTION_MENU::NORMAL, _( "Graphics..." ) );
|
2022-11-19 11:50:40 +00:00
|
|
|
submenuImport->Add( _( "Non-KiCad Board File..." ),
|
|
|
|
_( "Import board file from other applications" ),
|
|
|
|
ID_IMPORT_NON_KICAD_BOARD, BITMAPS::import_brd_file );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->AppendSeparator();
|
2022-04-11 02:33:43 +00:00
|
|
|
fileMenu->Add( submenuImport );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
// Export submenu
|
2021-03-27 19:16:58 +00:00
|
|
|
ACTION_MENU* submenuExport = new ACTION_MENU( false, selTool );
|
2019-05-26 15:36:40 +00:00
|
|
|
submenuExport->SetTitle( _( "Export" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
submenuExport->SetIcon( BITMAPS::export_file );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2021-03-27 18:47:48 +00:00
|
|
|
submenuExport->Add( PCB_ACTIONS::exportSpecctraDSN, ACTION_MENU::NORMAL, _( "Specctra DSN..." ) );
|
2019-05-29 10:58:57 +00:00
|
|
|
submenuExport->Add( _( "GenCAD..." ), _( "Export GenCAD board representation" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
ID_GEN_EXPORT_FILE_GENCADFORMAT, BITMAPS::post_gencad );
|
2019-05-26 15:36:40 +00:00
|
|
|
submenuExport->Add( _( "VRML..." ), _( "Export VRML 3D board representation" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
ID_GEN_EXPORT_FILE_VRML, BITMAPS::export3d );
|
2019-05-26 15:36:40 +00:00
|
|
|
submenuExport->Add( _( "IDFv3..." ), _( "Export IDF 3D board representation" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
ID_GEN_EXPORT_FILE_IDF3, BITMAPS::export_idf );
|
2024-05-19 01:28:43 +00:00
|
|
|
submenuExport->Add( _( "STEP / GLB / BREP / XAO..." ),
|
|
|
|
_( "Export STEP / GLB / BREP / XAO 3D board representation" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
ID_GEN_EXPORT_FILE_STEP, BITMAPS::export_step );
|
2019-05-26 15:36:40 +00:00
|
|
|
submenuExport->Add( _( "SVG..." ), _( "Export SVG board representation" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
ID_GEN_PLOT_SVG, BITMAPS::export_svg );
|
2019-05-26 15:36:40 +00:00
|
|
|
submenuExport->Add( _( "Footprint Association (.cmp) File..." ),
|
|
|
|
_( "Export footprint association file (*.cmp) for schematic back annotation" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
ID_PCB_GEN_CMP_FILE, BITMAPS::export_cmp );
|
2022-02-04 22:44:59 +00:00
|
|
|
submenuExport->Add( _( "Hyperlynx..." ), wxEmptyString,
|
2021-03-08 02:59:07 +00:00
|
|
|
ID_GEN_EXPORT_FILE_HYPERLYNX, BITMAPS::export_step );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2021-03-29 13:04:41 +00:00
|
|
|
if( ADVANCED_CFG::GetCfg().m_ShowPcbnewExportNetlist && m_exportNetlistAction )
|
|
|
|
submenuExport->Add( *m_exportNetlistAction );
|
2021-03-28 12:37:54 +00:00
|
|
|
|
2020-11-09 16:45:36 +00:00
|
|
|
submenuExport->AppendSeparator();
|
2021-03-27 18:47:48 +00:00
|
|
|
submenuExport->Add( _( "Footprints to Library..." ),
|
2020-11-09 16:45:36 +00:00
|
|
|
_( "Add footprints used on board to an existing footprint library\n"
|
|
|
|
"(does not remove other footprints from this library)" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
ID_MENU_EXPORT_FOOTPRINTS_TO_LIBRARY, BITMAPS::library_archive );
|
2020-11-09 16:45:36 +00:00
|
|
|
|
2021-03-27 18:47:48 +00:00
|
|
|
submenuExport->Add( _( "Footprints to New Library..." ),
|
2020-11-09 16:45:36 +00:00
|
|
|
_( "Create a new footprint library containing the footprints used on board\n"
|
|
|
|
"(if the library already exists it will be replaced)" ),
|
2021-03-08 02:59:07 +00:00
|
|
|
ID_MENU_EXPORT_FOOTPRINTS_TO_NEW_LIBRARY, BITMAPS::library_archive_as );
|
2020-11-09 16:45:36 +00:00
|
|
|
|
2022-04-11 02:33:43 +00:00
|
|
|
fileMenu->Add( submenuExport );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
// Fabrication Outputs submenu
|
2021-03-27 19:16:58 +00:00
|
|
|
ACTION_MENU* submenuFabOutputs = new ACTION_MENU( false, selTool );
|
2019-05-26 15:36:40 +00:00
|
|
|
submenuFabOutputs->SetTitle( _( "Fabrication Outputs" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
submenuFabOutputs->SetIcon( BITMAPS::fabrication );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2019-06-04 20:59:59 +00:00
|
|
|
submenuFabOutputs->Add( PCB_ACTIONS::generateGerbers );
|
|
|
|
submenuFabOutputs->Add( PCB_ACTIONS::generateDrillFiles );
|
2023-12-01 19:08:46 +00:00
|
|
|
submenuFabOutputs->Add( PCB_ACTIONS::generateIPC2581File );
|
2019-06-04 20:59:59 +00:00
|
|
|
submenuFabOutputs->Add( PCB_ACTIONS::generatePosFile );
|
|
|
|
submenuFabOutputs->Add( PCB_ACTIONS::generateReportFile );
|
|
|
|
submenuFabOutputs->Add( PCB_ACTIONS::generateD356File );
|
|
|
|
submenuFabOutputs->Add( PCB_ACTIONS::generateBOM );
|
2022-04-11 02:33:43 +00:00
|
|
|
fileMenu->Add( submenuFabOutputs );
|
2019-06-04 20:59:59 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
fileMenu->Add( PCB_ACTIONS::boardSetup );
|
2020-03-08 15:55:14 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
fileMenu->Add( ACTIONS::pageSettings );
|
|
|
|
fileMenu->Add( ACTIONS::print );
|
|
|
|
fileMenu->Add( ACTIONS::plot );
|
2019-05-26 15:36:40 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->AppendSeparator();
|
2021-02-18 15:49:35 +00:00
|
|
|
fileMenu->AddQuitOrClose( &Kiface(), _( "PCB Editor" ) );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
//-- Edit menu -----------------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* editMenu = new ACTION_MENU( false, selTool );
|
|
|
|
|
|
|
|
editMenu->Add( ACTIONS::undo );
|
|
|
|
editMenu->Add( ACTIONS::redo );
|
|
|
|
|
|
|
|
editMenu->AppendSeparator();
|
|
|
|
editMenu->Add( ACTIONS::cut );
|
|
|
|
editMenu->Add( ACTIONS::copy );
|
|
|
|
editMenu->Add( ACTIONS::paste );
|
2021-05-01 22:44:22 +00:00
|
|
|
editMenu->Add( ACTIONS::pasteSpecial );
|
2020-08-13 23:09:17 +00:00
|
|
|
editMenu->Add( ACTIONS::doDelete );
|
|
|
|
|
2020-08-19 22:15:44 +00:00
|
|
|
editMenu->AppendSeparator();
|
|
|
|
editMenu->Add( ACTIONS::selectAll );
|
2023-09-06 23:44:39 +00:00
|
|
|
editMenu->Add( ACTIONS::unselectAll );
|
2020-08-19 22:15:44 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
editMenu->AppendSeparator();
|
|
|
|
editMenu->Add( ACTIONS::find );
|
|
|
|
|
|
|
|
editMenu->AppendSeparator();
|
|
|
|
editMenu->Add( PCB_ACTIONS::editTracksAndVias );
|
|
|
|
editMenu->Add( PCB_ACTIONS::editTextAndGraphics );
|
2023-05-12 21:03:54 +00:00
|
|
|
editMenu->Add( PCB_ACTIONS::editTeardrops );
|
2020-08-13 23:09:17 +00:00
|
|
|
editMenu->Add( PCB_ACTIONS::changeFootprints );
|
|
|
|
editMenu->Add( PCB_ACTIONS::swapLayers );
|
2024-02-27 23:50:44 +00:00
|
|
|
editMenu->Add( ACTIONS::gridOrigin );
|
2020-08-13 23:09:17 +00:00
|
|
|
|
|
|
|
editMenu->AppendSeparator();
|
|
|
|
editMenu->Add( PCB_ACTIONS::zoneFillAll );
|
|
|
|
editMenu->Add( PCB_ACTIONS::zoneUnfillAll );
|
2023-10-19 00:31:01 +00:00
|
|
|
editMenu->Add( PCB_ACTIONS::regenerateAllTuning );
|
2020-08-13 23:09:17 +00:00
|
|
|
|
|
|
|
editMenu->AppendSeparator();
|
|
|
|
editMenu->Add( ACTIONS::deleteTool );
|
|
|
|
editMenu->Add( PCB_ACTIONS::globalDeletions );
|
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
//----- View menu -----------------------------------------------------------
|
2019-06-02 11:57:29 +00:00
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* viewMenu = new ACTION_MENU( false, selTool );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
2023-01-22 01:04:17 +00:00
|
|
|
viewMenu->Add( ACTIONS::showFootprintBrowser );
|
2020-08-13 23:09:17 +00:00
|
|
|
viewMenu->Add( ACTIONS::show3DViewer );
|
|
|
|
|
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
viewMenu->Add( ACTIONS::zoomInCenter );
|
|
|
|
viewMenu->Add( ACTIONS::zoomOutCenter );
|
|
|
|
viewMenu->Add( ACTIONS::zoomFitScreen );
|
2020-09-25 07:31:56 +00:00
|
|
|
viewMenu->Add( ACTIONS::zoomFitObjects );
|
2020-08-13 23:09:17 +00:00
|
|
|
viewMenu->Add( ACTIONS::zoomTool );
|
|
|
|
viewMenu->Add( ACTIONS::zoomRedraw );
|
|
|
|
|
|
|
|
viewMenu->AppendSeparator();
|
2019-05-14 19:21:10 +00:00
|
|
|
// Drawing Mode Submenu
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* drawingModeSubMenu = new ACTION_MENU( false, selTool );
|
2019-05-14 19:21:10 +00:00
|
|
|
drawingModeSubMenu->SetTitle( _( "&Drawing Mode" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
drawingModeSubMenu->SetIcon( BITMAPS::add_zone );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
2021-07-26 17:56:11 +00:00
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::zoneDisplayFilled, ACTION_MENU::CHECK );
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::zoneDisplayOutline, ACTION_MENU::CHECK );
|
|
|
|
|
|
|
|
if( ADVANCED_CFG::GetCfg().m_ExtraZoneDisplayModes )
|
|
|
|
{
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::zoneDisplayFractured, ACTION_MENU::CHECK );
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::zoneDisplayTriangulated, ACTION_MENU::CHECK );
|
|
|
|
}
|
2019-05-14 19:21:10 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
drawingModeSubMenu->AppendSeparator();
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::padDisplayMode, ACTION_MENU::CHECK );
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::viaDisplayMode, ACTION_MENU::CHECK );
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::trackDisplayMode, ACTION_MENU::CHECK );
|
2019-12-15 12:56:26 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
drawingModeSubMenu->AppendSeparator();
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::graphicsOutlines, ACTION_MENU::CHECK );
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::textOutlines, ACTION_MENU::CHECK );
|
2019-12-15 12:56:26 +00:00
|
|
|
|
2022-04-11 02:33:43 +00:00
|
|
|
viewMenu->Add( drawingModeSubMenu );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
|
|
|
// Contrast Mode Submenu
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* contrastModeSubMenu = new ACTION_MENU( false, selTool );
|
2019-05-14 19:21:10 +00:00
|
|
|
contrastModeSubMenu->SetTitle( _( "&Contrast Mode" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
contrastModeSubMenu->SetIcon( BITMAPS::contrast_mode );
|
2019-05-15 22:49:48 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
contrastModeSubMenu->Add( ACTIONS::highContrastMode, ACTION_MENU::CHECK );
|
|
|
|
contrastModeSubMenu->Add( PCB_ACTIONS::layerAlphaDec );
|
|
|
|
contrastModeSubMenu->Add( PCB_ACTIONS::layerAlphaInc );
|
2022-04-11 02:33:43 +00:00
|
|
|
viewMenu->Add( contrastModeSubMenu );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
viewMenu->Add( PCB_ACTIONS::flipBoard, ACTION_MENU::CHECK );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
2023-01-22 01:04:17 +00:00
|
|
|
viewMenu->AppendSeparator();
|
2023-09-03 12:29:06 +00:00
|
|
|
viewMenu->Add( ACTIONS::showProperties, ACTION_MENU::CHECK );
|
|
|
|
viewMenu->Add( PCB_ACTIONS::showSearch, ACTION_MENU::CHECK );
|
2023-01-22 01:04:17 +00:00
|
|
|
viewMenu->Add( PCB_ACTIONS::showLayersManager, ACTION_MENU::CHECK );
|
2024-03-04 23:00:26 +00:00
|
|
|
viewMenu->Add( PCB_ACTIONS::showNetInspector, ACTION_MENU::CHECK );
|
2023-01-22 01:04:17 +00:00
|
|
|
|
2019-05-14 19:21:10 +00:00
|
|
|
#ifdef __APPLE__
|
2020-08-13 23:09:17 +00:00
|
|
|
viewMenu->AppendSeparator();
|
2019-05-14 19:21:10 +00:00
|
|
|
#endif
|
2018-02-18 14:21:23 +00:00
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
//-- Place Menu ----------------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* placeMenu = new ACTION_MENU( false, selTool );
|
2019-05-29 10:58:57 +00:00
|
|
|
|
2021-01-25 13:58:30 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::placeFootprint );
|
2020-08-13 23:09:17 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::drawVia );
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drawZone );
|
2020-09-21 23:32:07 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::drawRuleArea );
|
2021-05-11 16:06:15 +00:00
|
|
|
|
|
|
|
ACTION_MENU* muwaveSubmenu = new ACTION_MENU( false, selTool );
|
|
|
|
muwaveSubmenu->SetTitle( _( "Add Microwave Shape" ) );
|
|
|
|
muwaveSubmenu->SetIcon( BITMAPS::mw_add_line );
|
|
|
|
muwaveSubmenu->Add( PCB_ACTIONS::microwaveCreateLine );
|
|
|
|
muwaveSubmenu->Add( PCB_ACTIONS::microwaveCreateGap );
|
|
|
|
muwaveSubmenu->Add( PCB_ACTIONS::microwaveCreateStub );
|
|
|
|
muwaveSubmenu->Add( PCB_ACTIONS::microwaveCreateStubArc );
|
|
|
|
muwaveSubmenu->Add( PCB_ACTIONS::microwaveCreateFunctionShape );
|
2022-04-11 02:33:43 +00:00
|
|
|
placeMenu->Add( muwaveSubmenu );
|
2021-05-11 16:06:15 +00:00
|
|
|
|
|
|
|
placeMenu->AppendSeparator();
|
2020-12-13 12:00:40 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::drawLine );
|
2020-08-13 23:09:17 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::drawArc );
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drawRectangle );
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drawCircle );
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drawPolygon );
|
2023-10-23 17:23:24 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::placeReferenceImage );
|
2021-12-04 23:52:00 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::placeText );
|
2022-01-30 10:52:52 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::drawTextBox );
|
2024-01-15 17:29:55 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::drawTable );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
placeMenu->AppendSeparator();
|
2023-11-20 12:23:16 +00:00
|
|
|
ACTION_MENU* dimensionSubmenu = new ACTION_MENU( false, selTool );
|
|
|
|
dimensionSubmenu->SetTitle( _( "Add Dimension" ) );
|
|
|
|
dimensionSubmenu->SetIcon( BITMAPS::add_aligned_dimension );
|
|
|
|
dimensionSubmenu->Add( PCB_ACTIONS::drawAlignedDimension );
|
|
|
|
dimensionSubmenu->Add( PCB_ACTIONS::drawOrthogonalDimension );
|
|
|
|
dimensionSubmenu->Add( PCB_ACTIONS::drawCenterDimension );
|
|
|
|
dimensionSubmenu->Add( PCB_ACTIONS::drawRadialDimension );
|
|
|
|
dimensionSubmenu->Add( PCB_ACTIONS::drawLeader );
|
|
|
|
placeMenu->Add( dimensionSubmenu );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
placeMenu->AppendSeparator();
|
2021-03-13 20:19:46 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::placeCharacteristics );
|
|
|
|
placeMenu->Add( PCB_ACTIONS::placeStackup );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
placeMenu->AppendSeparator();
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drillOrigin );
|
2023-11-20 12:23:16 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::drillResetOrigin );
|
2020-08-13 23:09:17 +00:00
|
|
|
placeMenu->Add( ACTIONS::gridSetOrigin );
|
2023-02-11 18:19:13 +00:00
|
|
|
placeMenu->Add( ACTIONS::gridResetOrigin );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
placeMenu->AppendSeparator();
|
2021-03-27 19:16:58 +00:00
|
|
|
ACTION_MENU* autoplaceSubmenu = new ACTION_MENU( false, selTool );
|
2019-05-28 13:51:47 +00:00
|
|
|
autoplaceSubmenu->SetTitle( _( "Auto-Place Footprints" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
autoplaceSubmenu->SetIcon( BITMAPS::mode_module );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
|
|
|
autoplaceSubmenu->Add( PCB_ACTIONS::autoplaceOffboardComponents );
|
|
|
|
autoplaceSubmenu->Add( PCB_ACTIONS::autoplaceSelectedComponents );
|
2011-09-01 12:54:34 +00:00
|
|
|
|
2022-04-11 02:33:43 +00:00
|
|
|
placeMenu->Add( autoplaceSubmenu );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
//-- Route Menu ----------------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* routeMenu = new ACTION_MENU( false, selTool );
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
routeMenu->Add( PCB_ACTIONS::selectLayerPair );
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
routeMenu->AppendSeparator();
|
|
|
|
routeMenu->Add( PCB_ACTIONS::routeSingleTrack );
|
|
|
|
routeMenu->Add( PCB_ACTIONS::routeDiffPair );
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
routeMenu->AppendSeparator();
|
2024-02-08 14:21:28 +00:00
|
|
|
routeMenu->Add( PCB_ACTIONS::tuneSingleTrack );
|
|
|
|
routeMenu->Add( PCB_ACTIONS::tuneDiffPair );
|
2023-10-11 16:10:48 +00:00
|
|
|
routeMenu->Add( PCB_ACTIONS::tuneSkew );
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
routeMenu->AppendSeparator();
|
|
|
|
routeMenu->Add( PCB_ACTIONS::routerSettingsDialog );
|
2011-09-01 12:54:34 +00:00
|
|
|
|
2019-06-25 20:30:40 +00:00
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
//-- Inspect Menu --------------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* inspectMenu = new ACTION_MENU( false, selTool );
|
2014-09-24 16:56:20 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
inspectMenu->Add( PCB_ACTIONS::boardStatistics );
|
2020-12-01 22:35:11 +00:00
|
|
|
inspectMenu->Add( ACTIONS::measureTool );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
inspectMenu->AppendSeparator();
|
|
|
|
inspectMenu->Add( PCB_ACTIONS::runDRC );
|
2020-12-01 22:35:11 +00:00
|
|
|
inspectMenu->Add( ACTIONS::prevMarker );
|
|
|
|
inspectMenu->Add( ACTIONS::nextMarker );
|
|
|
|
inspectMenu->Add( ACTIONS::excludeMarker );
|
|
|
|
|
|
|
|
inspectMenu->AppendSeparator();
|
2020-09-10 19:58:05 +00:00
|
|
|
inspectMenu->Add( PCB_ACTIONS::inspectClearance );
|
2020-09-22 23:16:02 +00:00
|
|
|
inspectMenu->Add( PCB_ACTIONS::inspectConstraints );
|
2023-07-11 13:05:39 +00:00
|
|
|
inspectMenu->Add( PCB_ACTIONS::showFootprintAssociations );
|
2023-03-09 17:41:18 +00:00
|
|
|
inspectMenu->Add( PCB_ACTIONS::diffFootprint );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
//-- Tools menu ----------------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* toolsMenu = new ACTION_MENU( false, selTool );
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2021-02-22 22:45:29 +00:00
|
|
|
wxMenuItem* update = toolsMenu->Add( ACTIONS::updatePcbFromSchematic );
|
|
|
|
update->Enable( !Kiface().IsSingle() );
|
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
toolsMenu->Add( PCB_ACTIONS::showEeschema );
|
2020-07-08 10:17:21 +00:00
|
|
|
|
2023-09-26 16:25:06 +00:00
|
|
|
if( !Kiface().IsSingle() )
|
|
|
|
toolsMenu->Add( ACTIONS::showProjectManager );
|
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
toolsMenu->AppendSeparator();
|
|
|
|
toolsMenu->Add( ACTIONS::showFootprintEditor );
|
|
|
|
toolsMenu->Add( PCB_ACTIONS::updateFootprints );
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2024-02-24 15:10:50 +00:00
|
|
|
//Zones management
|
|
|
|
toolsMenu->AppendSeparator();
|
|
|
|
toolsMenu->Add( PCB_ACTIONS::zonesManager );
|
|
|
|
|
2023-10-07 16:18:21 +00:00
|
|
|
if( ADVANCED_CFG::GetCfg().m_EnableGenerators )
|
|
|
|
{
|
|
|
|
toolsMenu->AppendSeparator();
|
|
|
|
toolsMenu->Add( PCB_ACTIONS::generatorsShowManager );
|
|
|
|
toolsMenu->Add( PCB_ACTIONS::regenerateAll );
|
|
|
|
toolsMenu->Add( PCB_ACTIONS::regenerateSelected );
|
|
|
|
}
|
2023-10-07 05:34:44 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
toolsMenu->AppendSeparator();
|
2021-01-10 16:37:06 +00:00
|
|
|
toolsMenu->Add( PCB_ACTIONS::cleanupTracksAndVias );
|
2020-08-13 23:09:17 +00:00
|
|
|
toolsMenu->Add( PCB_ACTIONS::removeUnusedPads );
|
2021-01-10 16:37:06 +00:00
|
|
|
toolsMenu->Add( PCB_ACTIONS::cleanupGraphics );
|
2020-08-13 23:09:17 +00:00
|
|
|
toolsMenu->Add( PCB_ACTIONS::repairBoard );
|
2020-07-27 19:41:50 +00:00
|
|
|
|
2021-01-10 16:37:06 +00:00
|
|
|
toolsMenu->AppendSeparator();
|
|
|
|
toolsMenu->Add( PCB_ACTIONS::boardReannotate );
|
2021-02-22 22:45:29 +00:00
|
|
|
update = toolsMenu->Add( ACTIONS::updateSchematicFromPcb );
|
|
|
|
update->Enable( !Kiface().IsSingle() );
|
|
|
|
|
2021-04-23 20:13:03 +00:00
|
|
|
if( SCRIPTING::IsWxAvailable() )
|
|
|
|
{
|
|
|
|
toolsMenu->AppendSeparator();
|
|
|
|
toolsMenu->Add( PCB_ACTIONS::showPythonConsole );
|
|
|
|
}
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2021-03-27 19:16:58 +00:00
|
|
|
ACTION_MENU* submenuActionPlugins = new ACTION_MENU( false, selTool );
|
2019-06-03 13:49:17 +00:00
|
|
|
submenuActionPlugins->SetTitle( _( "External Plugins" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
submenuActionPlugins->SetIcon( BITMAPS::puzzle_piece );
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2024-01-20 23:35:29 +00:00
|
|
|
submenuActionPlugins->Add( ACTIONS::pluginsReload );
|
2021-03-19 23:06:29 +00:00
|
|
|
submenuActionPlugins->Add( PCB_ACTIONS::pluginsShowFolder );
|
|
|
|
|
2020-09-11 03:04:27 +00:00
|
|
|
// Populate the Action Plugin sub-menu: Must be done before Add
|
|
|
|
// Since the object is cloned by Add
|
2019-06-03 13:49:17 +00:00
|
|
|
submenuActionPlugins->AppendSeparator();
|
2020-12-15 22:46:52 +00:00
|
|
|
buildActionPluginMenus( submenuActionPlugins );
|
2019-06-03 13:49:17 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
toolsMenu->AppendSeparator();
|
2022-04-11 02:33:43 +00:00
|
|
|
toolsMenu->Add( submenuActionPlugins );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
//-- Preferences menu ----------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* prefsMenu = new ACTION_MENU( false, selTool );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
prefsMenu->Add( ACTIONS::configurePaths );
|
|
|
|
prefsMenu->Add( ACTIONS::showFootprintLibTable );
|
2023-08-07 23:51:22 +00:00
|
|
|
prefsMenu->Add( ACTIONS::openPreferences );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
prefsMenu->AppendSeparator();
|
2019-06-16 18:35:32 +00:00
|
|
|
AddMenuLanguageList( prefsMenu, selTool );
|
2019-05-28 13:51:47 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
|
2019-05-28 13:51:47 +00:00
|
|
|
//--MenuBar -----------------------------------------------------------
|
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
menuBar->Append( fileMenu, _( "&File" ) );
|
|
|
|
menuBar->Append( editMenu, _( "&Edit" ) );
|
|
|
|
menuBar->Append( viewMenu, _( "&View" ) );
|
|
|
|
menuBar->Append( placeMenu, _( "&Place" ) );
|
|
|
|
menuBar->Append( routeMenu, _( "Ro&ute" ) );
|
2018-02-18 14:21:23 +00:00
|
|
|
menuBar->Append( inspectMenu, _( "&Inspect" ) );
|
2020-08-13 23:09:17 +00:00
|
|
|
menuBar->Append( toolsMenu, _( "&Tools" ) );
|
|
|
|
menuBar->Append( prefsMenu, _( "P&references" ) );
|
2019-05-18 10:27:36 +00:00
|
|
|
AddStandardHelpMenu( menuBar );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2018-04-06 23:24:02 +00:00
|
|
|
SetMenuBar( menuBar );
|
2018-04-07 13:13:38 +00:00
|
|
|
delete oldMenuBar;
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
}
|