2011-10-18 19:59:19 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-01-30 18:42:46 +00:00
|
|
|
* Copyright (C) 2015 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 2015 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2018-03-16 12:38:36 +00:00
|
|
|
* Copyright (C) 2015 Wayne Stambaugh <stambaughw@gmail.com>
|
2022-01-30 10:52:52 +00:00
|
|
|
* Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-06-08 09:56:42 +00:00
|
|
|
*
|
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
|
|
|
|
*/
|
|
|
|
|
2018-12-12 14:16:50 +00:00
|
|
|
#include "footprint_edit_frame.h"
|
2020-01-13 01:44:19 +00:00
|
|
|
#include "pcbnew_id.h"
|
2021-03-07 20:31:19 +00:00
|
|
|
#include <bitmaps.h>
|
2019-05-14 19:21:10 +00:00
|
|
|
#include <tool/actions.h>
|
2020-08-13 23:09:17 +00:00
|
|
|
#include <tool/action_menu.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>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
|
2022-12-16 21:37:32 +00:00
|
|
|
void FOOTPRINT_EDIT_FRAME::doReCreateMenuBar()
|
2007-06-05 12:10:51 +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-12-17 20:34:29 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
//-- File menu ----------------------------------------------------------
|
2019-05-28 13:51:47 +00:00
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* fileMenu = new ACTION_MENU( false, selTool );
|
|
|
|
|
|
|
|
fileMenu->Add( ACTIONS::newLibrary );
|
|
|
|
fileMenu->Add( ACTIONS::addLibrary );
|
|
|
|
fileMenu->Add( PCB_ACTIONS::newFootprint );
|
|
|
|
fileMenu->Add( PCB_ACTIONS::createFootprint );
|
2018-07-27 10:46:09 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
|
2021-02-06 14:31:04 +00:00
|
|
|
fileMenu->Add( ACTIONS::save );
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->Add( ACTIONS::saveAs );
|
|
|
|
fileMenu->Add( ACTIONS::revert );
|
|
|
|
|
|
|
|
fileMenu->AppendSeparator();
|
2019-05-02 15:19:33 +00:00
|
|
|
|
2021-03-27 19:16:58 +00:00
|
|
|
ACTION_MENU* submenuImport = new ACTION_MENU( false, selTool );
|
2019-05-28 13:51:47 +00:00
|
|
|
submenuImport->SetTitle( _( "Import" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
submenuImport->SetIcon( BITMAPS::import );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2021-03-27 19:04:16 +00:00
|
|
|
submenuImport->Add( PCB_ACTIONS::importFootprint, ACTION_MENU::NORMAL, _( "Footprint..." ) );
|
|
|
|
submenuImport->Add( PCB_ACTIONS::placeImportedGraphics, ACTION_MENU::NORMAL, _( "Graphics..." ) );
|
2019-05-02 15:19:33 +00:00
|
|
|
|
2022-04-11 02:33:43 +00:00
|
|
|
fileMenu->Add( submenuImport );
|
2019-05-02 15:19:33 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* submenuExport = new ACTION_MENU( false, selTool );
|
2019-05-28 13:51:47 +00:00
|
|
|
submenuExport->SetTitle( _( "Export" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
submenuExport->SetIcon( BITMAPS::export_file );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2021-03-27 18:47:48 +00:00
|
|
|
submenuExport->Add( PCB_ACTIONS::exportFootprint, ACTION_MENU::NORMAL, _( "Footprint..." ) );
|
|
|
|
submenuExport->Add( _( "View as &PNG..." ),
|
2020-08-13 23:09:17 +00:00
|
|
|
_( "Create a PNG file from the current view" ),
|
2020-11-10 20:11:53 +00:00
|
|
|
ID_FPEDIT_SAVE_PNG,
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::export_png );
|
2019-05-02 15:19:33 +00:00
|
|
|
|
2022-04-11 02:33:43 +00:00
|
|
|
fileMenu->Add( submenuExport );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2021-11-20 22:44:43 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
fileMenu->Add( PCB_ACTIONS::footprintProperties );
|
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
fileMenu->Add( ACTIONS::print );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
fileMenu->AppendSeparator();
|
2019-08-13 23:34:05 +00:00
|
|
|
fileMenu->AddClose( _( "Footprint Editor" ) );
|
2018-02-19 19:26:02 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
|
|
|
|
//-- Edit menu -------------------------------------------------------
|
2019-05-28 13:51:47 +00:00
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* editMenu = new ACTION_MENU( false, selTool );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
editMenu->Add( ACTIONS::undo );
|
|
|
|
editMenu->Add( ACTIONS::redo );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
editMenu->AppendSeparator();
|
|
|
|
editMenu->Add( ACTIONS::cut );
|
|
|
|
editMenu->Add( ACTIONS::copy );
|
|
|
|
editMenu->Add( ACTIONS::paste );
|
|
|
|
editMenu->Add( ACTIONS::doDelete );
|
|
|
|
editMenu->Add( ACTIONS::duplicate );
|
2018-07-27 10:46:09 +00:00
|
|
|
|
2020-08-19 22:15:44 +00:00
|
|
|
editMenu->AppendSeparator();
|
|
|
|
editMenu->Add( ACTIONS::selectAll );
|
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
editMenu->AppendSeparator();
|
2021-11-20 22:05:57 +00:00
|
|
|
editMenu->Add( PCB_ACTIONS::editTextAndGraphics );
|
2020-08-13 23:09:17 +00:00
|
|
|
editMenu->Add( PCB_ACTIONS::defaultPadProperties );
|
2023-11-03 12:36:21 +00:00
|
|
|
editMenu->Add( PCB_ACTIONS::enumeratePads );
|
2024-02-27 23:50:44 +00:00
|
|
|
editMenu->Add( ACTIONS::gridOrigin );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
|
|
|
|
//-- View menu -------------------------------------------------------
|
2019-05-28 13:51:47 +00:00
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* viewMenu = new ACTION_MENU( false, selTool );
|
|
|
|
|
|
|
|
viewMenu->Add( ACTIONS::showFootprintBrowser );
|
|
|
|
viewMenu->Add( ACTIONS::show3DViewer );
|
|
|
|
|
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
viewMenu->Add( ACTIONS::zoomInCenter );
|
|
|
|
viewMenu->Add( ACTIONS::zoomOutCenter );
|
|
|
|
viewMenu->Add( ACTIONS::zoomFitScreen );
|
|
|
|
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 );
|
2015-05-19 16:39:05 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::padDisplayMode, ACTION_MENU::CHECK );
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::graphicsOutlines, ACTION_MENU::CHECK );
|
|
|
|
drawingModeSubMenu->Add( PCB_ACTIONS::textOutlines, ACTION_MENU::CHECK );
|
2022-04-11 02:33:43 +00:00
|
|
|
viewMenu->Add( drawingModeSubMenu );
|
2015-05-19 16:39:05 +00:00
|
|
|
|
2018-02-21 16:29:24 +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 );
|
2018-02-21 16:29:24 +00:00
|
|
|
|
2021-02-10 21:53:55 +00:00
|
|
|
viewMenu->Add( PCB_ACTIONS::flipBoard, ACTION_MENU::CHECK );
|
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
viewMenu->AppendSeparator();
|
2023-09-03 12:29:06 +00:00
|
|
|
viewMenu->Add( ACTIONS::showProperties, ACTION_MENU::CHECK );
|
2021-03-29 11:01:03 +00:00
|
|
|
viewMenu->Add( PCB_ACTIONS::showFootprintTree, ACTION_MENU::CHECK );
|
2021-10-30 22:21:15 +00:00
|
|
|
viewMenu->Add( PCB_ACTIONS::showLayersManager, ACTION_MENU::CHECK );
|
2018-02-19 19:26:02 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
|
|
|
|
//-- Place menu -------------------------------------------------------
|
2019-05-28 13:51:47 +00:00
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* placeMenu = new ACTION_MENU( false, selTool );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::placePad );
|
2021-12-04 23:52:00 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::drawRuleArea );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2020-08-13 23:09:17 +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-03-11 14:13:11 +00:00
|
|
|
placeMenu->Add( PCB_ACTIONS::drawTable );
|
2021-12-04 23:52:00 +00:00
|
|
|
|
|
|
|
placeMenu->AppendSeparator();
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drawAlignedDimension );
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drawOrthogonalDimension );
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drawCenterDimension );
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drawRadialDimension );
|
|
|
|
placeMenu->Add( PCB_ACTIONS::drawLeader );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
placeMenu->AppendSeparator();
|
|
|
|
placeMenu->Add( PCB_ACTIONS::setAnchor );
|
|
|
|
placeMenu->Add( ACTIONS::gridSetOrigin );
|
2023-02-11 18:19:13 +00:00
|
|
|
placeMenu->AppendSeparator();
|
|
|
|
placeMenu->Add( ACTIONS::gridResetOrigin );
|
2018-02-19 19:26:02 +00:00
|
|
|
|
|
|
|
|
2019-06-03 23:50:44 +00:00
|
|
|
//-- Inspect menu ------------------------------------------------------
|
2019-05-28 13:51:47 +00:00
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* inspectMenu = new ACTION_MENU( false, selTool );
|
|
|
|
|
|
|
|
inspectMenu->Add( ACTIONS::measureTool );
|
2018-02-19 19:26:02 +00:00
|
|
|
|
2020-11-21 20:42:27 +00:00
|
|
|
inspectMenu->AppendSeparator();
|
|
|
|
inspectMenu->Add( PCB_ACTIONS::checkFootprint );
|
|
|
|
|
2018-02-19 19:26:02 +00:00
|
|
|
|
2019-06-03 23:50:44 +00:00
|
|
|
//-- Tools menu --------------------------------------------------------
|
2019-05-28 13:51:47 +00:00
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* toolsMenu = new ACTION_MENU( false, selTool );
|
2018-02-19 19:26:02 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
toolsMenu->Add( _( "&Load Footprint from PCB..." ),
|
|
|
|
_( "Load a footprint from the current board into the editor" ),
|
2020-11-10 20:11:53 +00:00
|
|
|
ID_LOAD_FOOTPRINT_FROM_BOARD,
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::load_module_board );
|
2018-07-27 10:46:09 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
toolsMenu->Add( _( "&Insert Footprint on PCB" ),
|
|
|
|
_( "Insert footprint onto current board" ),
|
|
|
|
ID_ADD_FOOTPRINT_TO_BOARD,
|
2021-03-08 02:59:07 +00:00
|
|
|
BITMAPS::insert_module_board );
|
2018-02-19 19:26:02 +00:00
|
|
|
|
2021-05-21 16:52:11 +00:00
|
|
|
toolsMenu->AppendSeparator();
|
2021-11-20 22:44:43 +00:00
|
|
|
toolsMenu->Add( PCB_ACTIONS::cleanupGraphics );
|
2021-05-21 16:52:11 +00:00
|
|
|
toolsMenu->Add( PCB_ACTIONS::repairFootprint );
|
|
|
|
|
2015-01-30 18:42:46 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
//-- Preferences menu -------------------------------------------------
|
2019-05-28 13:51:47 +00:00
|
|
|
//
|
2020-08-13 23:09:17 +00:00
|
|
|
ACTION_MENU* prefsMenu = new ACTION_MENU( false, selTool );
|
|
|
|
|
|
|
|
prefsMenu->Add( ACTIONS::configurePaths );
|
|
|
|
prefsMenu->Add( ACTIONS::showFootprintLibTable );
|
2023-08-07 23:51:22 +00:00
|
|
|
prefsMenu->Add( ACTIONS::openPreferences );
|
2017-03-13 15:18:30 +00:00
|
|
|
|
2020-08-13 23:09:17 +00:00
|
|
|
prefsMenu->AppendSeparator();
|
|
|
|
AddMenuLanguageList( prefsMenu, selTool );
|
2015-01-30 18:42:46 +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" ) );
|
2018-02-19 19:26:02 +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-08-24 17:26:51 +00:00
|
|
|
|
2018-04-07 13:13:38 +00:00
|
|
|
SetMenuBar( menuBar );
|
|
|
|
delete oldMenuBar;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|