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>
|
2019-03-16 14:36:22 +00:00
|
|
|
* Copyright (C) 1992-2019 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
|
|
|
|
*/
|
|
|
|
|
2018-12-12 14:16:50 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2016-03-11 16:40:24 +00:00
|
|
|
|
2018-12-12 14:16:50 +00:00
|
|
|
#include <advanced_config.h>
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
#include <kiface_i.h>
|
2018-12-12 14:16:50 +00:00
|
|
|
#include <menus_helpers.h>
|
2016-03-11 16:40:24 +00:00
|
|
|
#include <pgm_base.h>
|
2019-05-14 19:21:10 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tool/conditional_menu.h>
|
|
|
|
#include <tool/actions.h>
|
|
|
|
#include <tool/selection_conditions.h>
|
|
|
|
#include <tools/selection_tool.h>
|
2019-05-15 22:49:48 +00:00
|
|
|
#include <tools/pcb_actions.h>
|
2016-03-11 16:40:24 +00:00
|
|
|
#include "help_common_strings.h"
|
|
|
|
#include "hotkeys.h"
|
|
|
|
#include "pcbnew.h"
|
|
|
|
#include "pcbnew_id.h"
|
|
|
|
|
2010-06-30 11:15:34 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Build the files menu. Because some commands are available only if
|
|
|
|
// Pcbnew is run outside a project (run alone), aIsOutsideProject is false
|
|
|
|
// when Pcbnew is run from Kicad manager, and true is run as stand alone app.
|
|
|
|
static void prepareFilesMenu( wxMenu* aParentMenu, bool aIsOutsideProject );
|
|
|
|
|
|
|
|
// Build the export submenu (inside files menu)
|
|
|
|
static void prepareExportMenu( wxMenu* aParentMenu );
|
|
|
|
|
2018-02-18 14:21:23 +00:00
|
|
|
// Build the place submenu
|
2019-05-20 08:05:33 +00:00
|
|
|
static void preparePlaceMenu( CONDITIONAL_MENU* aPlaceMenu, SELECTION_TOOL* aSelectionTool );
|
|
|
|
|
|
|
|
// Build the edit submenu
|
2019-05-21 12:24:08 +00:00
|
|
|
static void prepareEditMenu( PCB_EDIT_FRAME * aFrame, CONDITIONAL_MENU* aEditMenu, SELECTION_TOOL* aSelectionTool );
|
2018-02-18 14:21:23 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Build the route menu
|
|
|
|
static void prepareRouteMenu( wxMenu* aParentMenu );
|
|
|
|
|
2018-02-18 14:21:23 +00:00
|
|
|
// Build the inspect menu
|
|
|
|
static void prepareInspectMenu( wxMenu* aParentMenu );
|
2017-02-24 11:43:10 +00:00
|
|
|
|
|
|
|
// Build the library management menu
|
|
|
|
static void prepareLibraryMenu( wxMenu* aParentMenu );
|
|
|
|
|
|
|
|
// Build the preferences menu
|
2017-03-03 13:18:07 +00:00
|
|
|
static void preparePreferencesMenu( PCB_EDIT_FRAME* aFrame, wxMenu* aParentMenu );
|
2017-02-24 11:43:10 +00:00
|
|
|
|
2018-02-18 14:21:23 +00:00
|
|
|
// Build the tools menu
|
|
|
|
static void prepareToolsMenu( wxMenu* aParentMenu );
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::ReCreateMenuBar()
|
2010-01-17 20:25:10 +00:00
|
|
|
{
|
2019-05-14 19:21:10 +00:00
|
|
|
SELECTION_TOOL* selTool = m_toolManager->GetTool<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.
|
|
|
|
wxMenuBar* oldMenuBar = GetMenuBar();
|
|
|
|
wxMenuBar* menuBar = new wxMenuBar();
|
|
|
|
wxString text;
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Recreate all menus:
|
|
|
|
|
|
|
|
// Create File Menu
|
2010-01-17 20:25:10 +00:00
|
|
|
wxMenu* filesMenu = new wxMenu;
|
2017-02-24 11:43:10 +00:00
|
|
|
prepareFilesMenu( filesMenu, Kiface().IsSingle() );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
//----- Edit menu -----------------------------------------------------------
|
2019-05-15 22:49:48 +00:00
|
|
|
CONDITIONAL_MENU* editMenu = new CONDITIONAL_MENU( false, selTool );
|
2019-05-21 12:24:08 +00:00
|
|
|
prepareEditMenu( this, editMenu, selTool );
|
2019-05-15 22:49:48 +00:00
|
|
|
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
//----- View menu -----------------------------------------------------------
|
2019-05-14 19:21:10 +00:00
|
|
|
CONDITIONAL_MENU* viewMenu = new CONDITIONAL_MENU( false, selTool );
|
|
|
|
|
|
|
|
auto layersPaletteShownCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return LayerManagerShown();
|
|
|
|
};
|
|
|
|
auto microwaveToolbarShownCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return MicrowaveToolbarShown();
|
|
|
|
};
|
|
|
|
auto gridShownCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return IsGridVisible();
|
|
|
|
};
|
|
|
|
auto polarCoordsCondition = [ this ] ( const SELECTION& aSel ) {
|
2019-05-17 11:52:38 +00:00
|
|
|
return GetShowPolarCoords();
|
2019-05-14 19:21:10 +00:00
|
|
|
};
|
|
|
|
auto imperialUnitsCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return GetUserUnits() == INCHES;
|
|
|
|
};
|
|
|
|
auto metricUnitsCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return GetUserUnits() == MILLIMETRES;
|
|
|
|
};
|
|
|
|
auto fullCrosshairCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return GetGalDisplayOptions().m_fullscreenCursor;
|
|
|
|
};
|
|
|
|
auto ratsnestShownCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return GetBoard()->IsElementVisible( LAYER_RATSNEST );
|
|
|
|
};
|
|
|
|
auto curvedRatsnestCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return ( (PCB_DISPLAY_OPTIONS*) GetDisplayOptions() )->m_DisplayRatsnestLinesCurved;
|
|
|
|
};
|
|
|
|
auto boardFlippedCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return GetGalCanvas()->GetView()->IsMirroredX();
|
|
|
|
};
|
|
|
|
auto zonesFilledCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return ( (PCB_DISPLAY_OPTIONS*) GetDisplayOptions() )->m_DisplayZonesMode == 0;
|
|
|
|
};
|
|
|
|
auto zonesWireframedCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return ( (PCB_DISPLAY_OPTIONS*) GetDisplayOptions() )->m_DisplayZonesMode == 1;
|
|
|
|
};
|
|
|
|
auto zonesOutlinedCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return ( (PCB_DISPLAY_OPTIONS*) GetDisplayOptions() )->m_DisplayZonesMode == 2;
|
|
|
|
};
|
|
|
|
auto sketchTracksCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return !( (PCB_DISPLAY_OPTIONS*) GetDisplayOptions() )->m_DisplayPcbTrackFill;
|
|
|
|
};
|
|
|
|
auto sketchViasCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return !( (PCB_DISPLAY_OPTIONS*) GetDisplayOptions() )->m_DisplayViaFill;
|
|
|
|
};
|
|
|
|
auto sketchPadsCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return !( (PCB_DISPLAY_OPTIONS*) GetDisplayOptions() )->m_DisplayPadFill;
|
|
|
|
};
|
2019-05-15 22:49:48 +00:00
|
|
|
auto contrastModeCondition = [ this ] ( const SELECTION& aSel ) {
|
|
|
|
return !( (PCB_DISPLAY_OPTIONS*) GetDisplayOptions() )->m_ContrastModeDisplay;
|
|
|
|
};
|
2019-05-14 19:21:10 +00:00
|
|
|
|
|
|
|
viewMenu->AddCheckItem( ID_TB_OPTIONS_SHOW_MANAGE_LAYERS_VERTICAL_TOOLBAR,
|
|
|
|
_( "Show La&yers Manager" ), HELP_SHOW_HIDE_LAYERMANAGER,
|
|
|
|
layers_manager_xpm, layersPaletteShownCondition );
|
|
|
|
viewMenu->AddCheckItem( ID_TB_OPTIONS_SHOW_EXTRA_VERTICAL_TOOLBAR_MICROWAVE,
|
|
|
|
_( "Show Microwa&ve Toolbar" ), HELP_SHOW_HIDE_MICROWAVE_TOOLS,
|
|
|
|
mw_toolbar_xpm, microwaveToolbarShownCondition );
|
|
|
|
viewMenu->AddItem( ID_OPEN_MODULE_VIEWER,
|
|
|
|
_( "Footprint &Library Browser" ), _( "Browse footprint libraries" ),
|
|
|
|
modview_icon_xpm, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
text = AddHotkeyName( _( "&3D Viewer" ), g_Board_Editor_Hotkeys_Descr, HK_3D_VIEWER );
|
|
|
|
viewMenu->AddItem( ID_MENU_PCB_SHOW_3D_FRAME,
|
|
|
|
text, _( "Show board in 3D viewer" ),
|
|
|
|
three_d_xpm, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
|
|
|
|
viewMenu->AddSeparator();
|
2019-05-17 11:52:38 +00:00
|
|
|
viewMenu->AddItem( ACTIONS::zoomInCenter, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
viewMenu->AddItem( ACTIONS::zoomOutCenter, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
viewMenu->AddItem( ACTIONS::zoomFitScreen, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
viewMenu->AddItem( ACTIONS::zoomTool, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
viewMenu->AddItem( ACTIONS::zoomRedraw, SELECTION_CONDITIONS::ShowAlways );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
|
|
|
viewMenu->AppendSeparator();
|
2019-05-17 11:52:38 +00:00
|
|
|
viewMenu->AddCheckItem( ACTIONS::toggleGrid, gridShownCondition );
|
|
|
|
viewMenu->AddItem( ACTIONS::gridProperties, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
viewMenu->AddCheckItem( PCB_ACTIONS::togglePolarCoords, polarCoordsCondition );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
|
|
|
// Units submenu
|
|
|
|
CONDITIONAL_MENU* unitsSubMenu = new CONDITIONAL_MENU( false, selTool );
|
|
|
|
unitsSubMenu->SetTitle( _( "&Units" ) );
|
|
|
|
unitsSubMenu->SetIcon( unit_mm_xpm );
|
2019-05-15 22:49:48 +00:00
|
|
|
unitsSubMenu->AddCheckItem( ACTIONS::imperialUnits, imperialUnitsCondition );
|
|
|
|
unitsSubMenu->AddCheckItem( ACTIONS::metricUnits, metricUnitsCondition );
|
2019-05-14 19:21:10 +00:00
|
|
|
viewMenu->AddMenu( unitsSubMenu );
|
|
|
|
|
2019-05-15 22:49:48 +00:00
|
|
|
viewMenu->AddCheckItem( ACTIONS::toggleCursorStyle, fullCrosshairCondition );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
|
|
|
viewMenu->AddSeparator();
|
2019-05-15 22:49:48 +00:00
|
|
|
viewMenu->AddCheckItem( PCB_ACTIONS::showRatsnest, ratsnestShownCondition );
|
|
|
|
viewMenu->AddCheckItem( PCB_ACTIONS::ratsnestLineMode, curvedRatsnestCondition );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
|
|
|
viewMenu->AddSeparator();
|
|
|
|
// Drawing Mode Submenu
|
|
|
|
CONDITIONAL_MENU* drawingModeSubMenu = new CONDITIONAL_MENU( false, selTool );
|
|
|
|
drawingModeSubMenu->SetTitle( _( "&Drawing Mode" ) );
|
|
|
|
drawingModeSubMenu->SetIcon( add_zone_xpm );
|
|
|
|
|
2019-05-15 22:49:48 +00:00
|
|
|
drawingModeSubMenu->AddCheckItem( PCB_ACTIONS::zoneDisplayEnable, zonesFilledCondition );
|
|
|
|
drawingModeSubMenu->AddCheckItem( PCB_ACTIONS::zoneDisplayDisable, zonesWireframedCondition );
|
|
|
|
drawingModeSubMenu->AddCheckItem( PCB_ACTIONS::zoneDisplayOutlines, zonesOutlinedCondition );
|
2019-05-14 19:21:10 +00:00
|
|
|
|
|
|
|
drawingModeSubMenu->AddSeparator();
|
2019-05-15 22:49:48 +00:00
|
|
|
drawingModeSubMenu->AddCheckItem( PCB_ACTIONS::padDisplayMode, sketchPadsCondition );
|
|
|
|
drawingModeSubMenu->AddCheckItem( PCB_ACTIONS::viaDisplayMode, sketchViasCondition );
|
|
|
|
drawingModeSubMenu->AddCheckItem( PCB_ACTIONS::trackDisplayMode, sketchTracksCondition );
|
2019-05-14 19:21:10 +00:00
|
|
|
viewMenu->AddMenu( drawingModeSubMenu );
|
|
|
|
|
|
|
|
// Contrast Mode Submenu
|
2019-05-15 22:49:48 +00:00
|
|
|
CONDITIONAL_MENU* contrastModeSubMenu = new CONDITIONAL_MENU( false, selTool );
|
2019-05-14 19:21:10 +00:00
|
|
|
contrastModeSubMenu->SetTitle( _( "&Contrast Mode" ) );
|
|
|
|
contrastModeSubMenu->SetIcon( contrast_mode_xpm );
|
2019-05-15 22:49:48 +00:00
|
|
|
|
|
|
|
contrastModeSubMenu->AddCheckItem( PCB_ACTIONS::highContrastMode, contrastModeCondition );
|
|
|
|
contrastModeSubMenu->AddItem( PCB_ACTIONS::layerAlphaDec, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
contrastModeSubMenu->AddItem( PCB_ACTIONS::layerAlphaInc, SELECTION_CONDITIONS::ShowAlways );
|
2019-05-14 19:21:10 +00:00
|
|
|
viewMenu->AddMenu( contrastModeSubMenu );
|
|
|
|
|
|
|
|
viewMenu->AddCheckItem( ID_MENU_PCB_FLIP_VIEW,
|
|
|
|
_( "Flip &Board View" ), _( "Flip (mirror) the board view" ),
|
|
|
|
flip_board_xpm, boardFlippedCondition );
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
#endif
|
2018-02-18 14:21:23 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
//----- Place Menu ----------------------------------------------------------
|
2019-05-15 22:49:48 +00:00
|
|
|
CONDITIONAL_MENU* placeMenu = new CONDITIONAL_MENU( false, selTool );
|
2019-05-20 08:05:33 +00:00
|
|
|
preparePlaceMenu( placeMenu, selTool );
|
2011-09-01 12:54:34 +00:00
|
|
|
|
2018-02-18 14:21:23 +00:00
|
|
|
//----- Route Menu ----------------------------------------------------------
|
2017-02-24 11:43:10 +00:00
|
|
|
wxMenu* routeMenu = new wxMenu;
|
|
|
|
prepareRouteMenu( routeMenu );
|
2011-09-01 12:54:34 +00:00
|
|
|
|
2018-02-18 14:21:23 +00:00
|
|
|
//----- Inspect Menu --------------------------------------------------------
|
|
|
|
wxMenu* inspectMenu = new wxMenu;
|
|
|
|
prepareInspectMenu( inspectMenu );
|
2014-09-24 16:56:20 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
//----- Tools menu ----------------------------------------------------------
|
|
|
|
wxMenu* toolsMenu = new wxMenu;
|
|
|
|
prepareToolsMenu( toolsMenu );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2018-02-18 14:21:23 +00:00
|
|
|
//----- Preferences and configuration menu ----------------------------------
|
|
|
|
wxMenu* configmenu = new wxMenu;
|
|
|
|
prepareLibraryMenu( configmenu );
|
|
|
|
configmenu->AppendSeparator();
|
|
|
|
|
|
|
|
preparePreferencesMenu( this, configmenu );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2019-05-18 10:27:36 +00:00
|
|
|
//------ Append all menus to the menuBar ------------------------------------
|
2017-02-24 11:43:10 +00:00
|
|
|
menuBar->Append( filesMenu, _( "&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" ) );
|
2017-02-24 11:43:10 +00:00
|
|
|
menuBar->Append( toolsMenu, _( "&Tools" ) );
|
2018-02-18 14:21:23 +00:00
|
|
|
menuBar->Append( configmenu, _( "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
|
|
|
#if defined(KICAD_SCRIPTING) && defined(KICAD_SCRIPTING_ACTION_MENU)
|
|
|
|
// Populate the Action Plugin sub-menu
|
|
|
|
RebuildActionPluginMenus();
|
|
|
|
#endif
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
}
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2019-05-20 08:05:33 +00:00
|
|
|
|
2019-05-21 12:24:08 +00:00
|
|
|
void prepareEditMenu( PCB_EDIT_FRAME * aFrame, CONDITIONAL_MENU* aEditMenu, SELECTION_TOOL* aSelectionTool )
|
2019-05-20 08:05:33 +00:00
|
|
|
{
|
2019-05-21 12:24:08 +00:00
|
|
|
auto enableUndoCondition = [ aFrame ] ( const SELECTION& sel ) {
|
|
|
|
return aFrame->GetScreen() && aFrame->GetScreen()->GetUndoCommandCount() > 0;
|
|
|
|
};
|
|
|
|
auto enableRedoCondition = [ aFrame ] ( const SELECTION& sel ) {
|
|
|
|
return aFrame->GetScreen() && aFrame->GetScreen()->GetRedoCommandCount() > 0;
|
|
|
|
};
|
|
|
|
auto noActiveToolCondition = [ aFrame ] ( const SELECTION& aSelection ) {
|
|
|
|
return aFrame->GetToolId() == ID_NO_TOOL_SELECTED;
|
|
|
|
};
|
|
|
|
|
|
|
|
aEditMenu->AddItem( ACTIONS::undo, enableUndoCondition );
|
|
|
|
aEditMenu->AddItem( ACTIONS::redo, enableRedoCondition );
|
|
|
|
|
|
|
|
aEditMenu->AddSeparator();
|
|
|
|
aEditMenu->AddItem( ACTIONS::cut, SELECTION_CONDITIONS::NotEmpty );
|
|
|
|
aEditMenu->AddItem( ACTIONS::copy, SELECTION_CONDITIONS::NotEmpty );
|
|
|
|
aEditMenu->AddItem( ACTIONS::paste, noActiveToolCondition );
|
|
|
|
|
|
|
|
aEditMenu->AddSeparator();
|
|
|
|
aEditMenu->AddItem( PCB_ACTIONS::deleteTool, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
|
|
|
|
aEditMenu->AddSeparator();
|
|
|
|
aEditMenu->AddItem( ACTIONS::find, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
|
|
|
|
aEditMenu->AddSeparator();
|
|
|
|
aEditMenu->AddItem( ID_PCB_EDIT_TRACKS_AND_VIAS,
|
|
|
|
_( "Edit &Track && Via Properties..." ), "",
|
|
|
|
width_track_via_xpm, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aEditMenu->AddItem( ID_MENU_PCB_EDIT_TEXT_AND_GRAPHICS,
|
|
|
|
_( "Edit Text && &Graphic Properties..." ), "",
|
|
|
|
reset_text_xpm, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aEditMenu->AddItem( PCB_ACTIONS::exchangeFootprints, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aEditMenu->AddItem( ID_MENU_PCB_SWAP_LAYERS,
|
|
|
|
_( "&Swap Layers..." ),
|
|
|
|
_( "Move tracks or drawings from a layer to another layer" ),
|
|
|
|
swap_layer_xpm, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
|
|
|
|
aEditMenu->AddSeparator();
|
|
|
|
aEditMenu->AddItem( PCB_ACTIONS::zoneFillAll, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aEditMenu->AddItem( PCB_ACTIONS::zoneUnfillAll, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
|
|
|
|
aEditMenu->AddSeparator();
|
|
|
|
aEditMenu->AddItem( ID_PCB_GLOBAL_DELETE,
|
|
|
|
_( "Glo&bal Deletions..." ),
|
|
|
|
_( "Delete tracks, footprints and graphic items from board" ),
|
|
|
|
general_deletions_xpm, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aEditMenu->AddItem( ID_MENU_PCB_CLEAN,
|
|
|
|
_( "C&leanup Tracks and Vias..." ),
|
|
|
|
_( "Clean stubs, vias, delete break points or unconnected tracks" ),
|
|
|
|
delete_xpm, SELECTION_CONDITIONS::ShowAlways );
|
2019-05-20 08:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Build the preferences menu
|
2017-03-03 13:18:07 +00:00
|
|
|
void preparePreferencesMenu( PCB_EDIT_FRAME* aFrame, wxMenu* aParentMenu )
|
2017-02-24 11:43:10 +00:00
|
|
|
{
|
2018-02-18 14:21:23 +00:00
|
|
|
wxString text;
|
|
|
|
|
2019-04-01 17:18:29 +00:00
|
|
|
text = AddHotkeyName( _( "&Preferences..." ), g_Board_Editor_Hotkeys_Descr, HK_PREFERENCES );
|
|
|
|
AddMenuItem( aParentMenu, wxID_PREFERENCES, text,
|
|
|
|
_( "Show preferences for all open tools" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( preference_xpm ) );
|
2018-02-18 14:21:23 +00:00
|
|
|
|
2018-12-12 14:16:50 +00:00
|
|
|
if( ADVANCED_CFG::GetCfg().AllowLegacyCanvas() )
|
|
|
|
{
|
|
|
|
text = AddHotkeyName(
|
|
|
|
_( "Legacy Tool&set" ), g_Board_Editor_Hotkeys_Descr, HK_CANVAS_LEGACY );
|
|
|
|
AddMenuItem( aParentMenu, ID_MENU_CANVAS_LEGACY, text,
|
|
|
|
_( "Use Legacy Toolset (not all features will be available)" ),
|
|
|
|
KiBitmap( tools_xpm ), wxITEM_RADIO );
|
|
|
|
}
|
2018-02-18 14:21:23 +00:00
|
|
|
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "Modern Toolset (&Accelerated)" ), g_Board_Editor_Hotkeys_Descr,
|
2018-02-18 14:21:23 +00:00
|
|
|
HK_CANVAS_OPENGL );
|
2018-02-19 19:26:02 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_MENU_CANVAS_OPENGL, text,
|
|
|
|
_( "Use Modern Toolset with hardware-accelerated graphics (recommended)" ),
|
|
|
|
KiBitmap( tools_xpm ), wxITEM_RADIO );
|
2018-02-18 14:21:23 +00:00
|
|
|
|
2019-03-16 14:36:22 +00:00
|
|
|
text = AddHotkeyName( _( "Modern Toolset (Fallbac&k)" ), g_Board_Editor_Hotkeys_Descr,
|
2018-02-18 14:21:23 +00:00
|
|
|
HK_CANVAS_CAIRO );
|
2018-02-19 19:26:02 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_MENU_CANVAS_CAIRO, text,
|
|
|
|
_( "Use Modern Toolset with software graphics (fall-back)" ),
|
|
|
|
KiBitmap( tools_xpm ), wxITEM_RADIO );
|
2018-02-18 14:21:23 +00:00
|
|
|
|
2018-02-19 23:05:41 +00:00
|
|
|
aParentMenu->AppendSeparator();
|
2013-10-24 16:44:38 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Language submenu
|
|
|
|
Pgm().AddMenuLanguageList( aParentMenu );
|
|
|
|
}
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2010-04-19 06:21:56 +00:00
|
|
|
|
2019-05-20 08:05:33 +00:00
|
|
|
// Build the place submenu
|
|
|
|
void preparePlaceMenu( CONDITIONAL_MENU* aPlaceMenu, SELECTION_TOOL* aSelectionTool )
|
|
|
|
{
|
|
|
|
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::placeModule, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::drawVia, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::drawZone, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::drawZoneKeepout, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::placeText, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::drawArc, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::drawCircle, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::drawLine, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::drawPolygon, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
|
|
|
|
aPlaceMenu->AddSeparator();
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::drawDimension, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
|
|
|
|
aPlaceMenu->AddSeparator();
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::placeTarget, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
|
|
|
|
aPlaceMenu->AddSeparator();
|
|
|
|
aPlaceMenu->AddItem( PCB_ACTIONS::drillOrigin, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
aPlaceMenu->AddItem( ACTIONS::gridSetOrigin, SELECTION_CONDITIONS::ShowAlways );
|
|
|
|
|
|
|
|
aPlaceMenu->AddSeparator();
|
|
|
|
|
|
|
|
ACTION_MENU* autoplaceSubmenu = new ACTION_MENU;
|
|
|
|
autoplaceSubmenu->SetTitle( _( "Auto-Place Footprints" ) );
|
|
|
|
autoplaceSubmenu->SetTool( aSelectionTool );
|
|
|
|
autoplaceSubmenu->SetIcon( mode_module_xpm );
|
|
|
|
|
|
|
|
autoplaceSubmenu->Add( PCB_ACTIONS::autoplaceOffboardComponents );
|
|
|
|
autoplaceSubmenu->Add( PCB_ACTIONS::autoplaceSelectedComponents );
|
|
|
|
|
|
|
|
aPlaceMenu->AddMenu( autoplaceSubmenu );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Build the route menu
|
|
|
|
void prepareRouteMenu( wxMenu* aParentMenu )
|
|
|
|
{
|
2018-02-14 22:57:38 +00:00
|
|
|
wxString text;
|
|
|
|
|
2019-03-07 13:59:32 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_AUX_TOOLBAR_PCB_SELECT_LAYER_PAIR,
|
|
|
|
_( "Set &Layer Pair..." ), _( "Change active layer pair" ),
|
|
|
|
KiBitmap( select_layer_pair_xpm ) );
|
|
|
|
|
|
|
|
aParentMenu->AppendSeparator();
|
|
|
|
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "&Single Track" ), g_Board_Editor_Hotkeys_Descr,
|
2018-02-14 22:57:38 +00:00
|
|
|
HK_ADD_NEW_TRACK, IS_ACCELERATOR );
|
|
|
|
AddMenuItem( aParentMenu, ID_TRACK_BUTT, text,
|
2018-02-18 14:21:23 +00:00
|
|
|
_( "Interactively route single track" ),
|
|
|
|
KiBitmap( add_tracks_xpm ) );
|
2014-01-02 09:26:03 +00:00
|
|
|
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "&Differential Pair" ), g_Board_Editor_Hotkeys_Descr,
|
2018-05-13 18:01:41 +00:00
|
|
|
HK_ROUTE_DIFF_PAIR, IS_ACCELERATOR );
|
|
|
|
AddMenuItem( aParentMenu, ID_DIFF_PAIR_BUTT, text,
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Interactively route differential pair" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( ps_diff_pair_xpm ) );
|
2016-09-19 07:40:36 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
aParentMenu->AppendSeparator();
|
2015-11-15 18:04:19 +00:00
|
|
|
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "&Tune Track Length" ), g_Board_Editor_Hotkeys_Descr,
|
2018-05-13 18:01:41 +00:00
|
|
|
HK_ROUTE_TUNE_SINGLE, IS_ACCELERATOR );
|
|
|
|
AddMenuItem( aParentMenu, ID_TUNE_SINGLE_TRACK_LEN_BUTT, text,
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Tune length of single track" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( ps_tune_length_xpm ) );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "Tune Differential Pair &Length" ), g_Board_Editor_Hotkeys_Descr,
|
2018-05-13 18:01:41 +00:00
|
|
|
HK_ROUTE_TUNE_DIFF_PAIR, IS_ACCELERATOR );
|
|
|
|
AddMenuItem( aParentMenu, ID_TUNE_DIFF_PAIR_LEN_BUTT, text,
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Tune length of differential pair" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( ps_diff_pair_tune_length_xpm ) );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2019-03-16 14:36:22 +00:00
|
|
|
text = AddHotkeyName( _( "Tune Differential Pair S&kew/Phase" ), g_Board_Editor_Hotkeys_Descr,
|
2018-05-13 18:01:41 +00:00
|
|
|
HK_ROUTE_TUNE_SKEW, IS_ACCELERATOR );
|
|
|
|
AddMenuItem( aParentMenu, ID_TUNE_DIFF_PAIR_SKEW_BUTT, text,
|
2017-02-24 11:43:10 +00:00
|
|
|
_( "Tune skew/phase of a differential pair" ),
|
|
|
|
KiBitmap( ps_diff_pair_tune_phase_xpm ) );
|
2018-02-18 14:21:23 +00:00
|
|
|
|
|
|
|
aParentMenu->AppendSeparator();
|
|
|
|
|
2018-06-15 15:12:54 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_MENU_INTERACTIVE_ROUTER_SETTINGS,
|
|
|
|
_( "&Interactive Router Settings..." ),
|
2018-02-18 14:21:23 +00:00
|
|
|
_( "Configure interactive router" ),
|
2018-06-15 15:12:54 +00:00
|
|
|
KiBitmap( tools_xpm ) );
|
2018-02-18 14:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Build the inspect menu
|
|
|
|
void prepareInspectMenu( wxMenu* aParentMenu )
|
|
|
|
{
|
2018-05-14 03:22:11 +00:00
|
|
|
wxString text;
|
|
|
|
|
2018-02-18 14:21:23 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_MENU_LIST_NETS,
|
|
|
|
_( "&List Nets" ),
|
|
|
|
_( "View list of nets with names and IDs" ),
|
|
|
|
KiBitmap( list_nets_xpm ) );
|
|
|
|
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "&Measure" ), g_Board_Editor_Hotkeys_Descr, HK_MEASURE_TOOL );
|
|
|
|
AddMenuItem( aParentMenu, ID_PCB_MEASUREMENT_TOOL, text,
|
2018-02-18 14:21:23 +00:00
|
|
|
_( "Measure distance" ),
|
|
|
|
KiBitmap( measurement_xpm ) );
|
|
|
|
|
|
|
|
aParentMenu->AppendSeparator();
|
|
|
|
|
|
|
|
AddMenuItem( aParentMenu, ID_DRC_CONTROL,
|
|
|
|
_( "&Design Rules Checker" ),
|
|
|
|
_( "Perform design rules check" ),
|
|
|
|
KiBitmap( erc_xpm ) );
|
2017-02-24 11:43:10 +00:00
|
|
|
}
|
2011-07-02 12:48:45 +00:00
|
|
|
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Build the library management menu
|
|
|
|
void prepareLibraryMenu( wxMenu* aParentMenu )
|
|
|
|
{
|
|
|
|
AddMenuItem( aParentMenu,
|
|
|
|
ID_PREFERENCES_CONFIGURE_PATHS,
|
2018-07-19 19:15:40 +00:00
|
|
|
_( "&Configure Paths..." ),
|
2017-02-24 11:43:10 +00:00
|
|
|
_( "Edit path configuration environment variables" ),
|
2017-06-02 09:51:11 +00:00
|
|
|
KiBitmap( path_xpm ) );
|
2010-10-28 18:30:31 +00:00
|
|
|
|
2018-04-20 14:31:45 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_PCB_LIB_TABLE_EDIT,
|
2018-07-19 19:15:40 +00:00
|
|
|
_( "Manage &Footprint Libraries..." ),
|
2018-04-20 14:31:45 +00:00
|
|
|
_( "Edit the global and project footprint library lists" ),
|
|
|
|
KiBitmap( library_table_xpm ) );
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
#ifdef BUILD_GITHUB_PLUGIN
|
|
|
|
AddMenuItem( aParentMenu, ID_PCB_3DSHAPELIB_WIZARD,
|
2018-04-21 14:31:41 +00:00
|
|
|
_( "Add &3D Shapes Libraries Wizard..." ),
|
2018-04-20 14:31:45 +00:00
|
|
|
_( "Download 3D shape libraries from GitHub" ),
|
2017-06-02 09:51:11 +00:00
|
|
|
KiBitmap( import3d_xpm ) );
|
2017-02-24 11:43:10 +00:00
|
|
|
#endif
|
|
|
|
}
|
2010-10-28 18:30:31 +00:00
|
|
|
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Build the tools menu
|
|
|
|
void prepareToolsMenu( wxMenu* aParentMenu )
|
|
|
|
{
|
|
|
|
AddMenuItem( aParentMenu,
|
|
|
|
ID_UPDATE_PCB_FROM_SCH,
|
2019-03-16 14:36:22 +00:00
|
|
|
_( "Update &PCB from Schematic..." ),
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Update PCB design with current schematic (forward annotation)" ),
|
2018-07-25 22:44:57 +00:00
|
|
|
KiBitmap( update_pcb_from_sch_xpm ) );
|
2017-02-24 11:43:10 +00:00
|
|
|
|
2018-02-18 14:21:23 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_MENU_PCB_UPDATE_FOOTPRINTS,
|
2019-03-16 14:36:22 +00:00
|
|
|
_( "Update &Footprints from Library..." ),
|
2018-02-18 14:21:23 +00:00
|
|
|
_( "Update footprints to include any changes from the library" ),
|
|
|
|
KiBitmap( reload_xpm ) );
|
|
|
|
|
2019-03-07 13:59:32 +00:00
|
|
|
bool needsSeparator = true;
|
2017-02-24 11:43:10 +00:00
|
|
|
|
|
|
|
#if defined(KICAD_SCRIPTING_WXPYTHON)
|
2019-03-07 13:59:32 +00:00
|
|
|
if( needsSeparator )
|
|
|
|
{
|
|
|
|
aParentMenu->AppendSeparator();
|
|
|
|
needsSeparator = false;
|
|
|
|
}
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_TOOLBARH_PCB_SCRIPTING_CONSOLE,
|
|
|
|
_( "&Scripting Console" ),
|
|
|
|
_( "Show/Hide the Python scripting console" ),
|
|
|
|
KiBitmap( py_script_xpm ) );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(KICAD_SCRIPTING) && defined(KICAD_SCRIPTING_ACTION_MENU)
|
2019-03-07 13:59:32 +00:00
|
|
|
if( needsSeparator )
|
|
|
|
{
|
|
|
|
aParentMenu->AppendSeparator();
|
|
|
|
needsSeparator = false;
|
|
|
|
}
|
2017-02-24 11:43:10 +00:00
|
|
|
|
|
|
|
wxMenu* submenuActionPluginsMenu = new wxMenu();
|
|
|
|
|
|
|
|
AddMenuItem( aParentMenu, submenuActionPluginsMenu, ID_TOOLBARH_PCB_ACTION_PLUGIN,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "&External Plugins..." ),
|
2017-02-24 11:43:10 +00:00
|
|
|
_( "Execute or reload python action plugins" ),
|
|
|
|
KiBitmap( hammer_xpm ) );
|
|
|
|
|
|
|
|
AddMenuItem( submenuActionPluginsMenu, ID_TOOLBARH_PCB_ACTION_PLUGIN_REFRESH,
|
|
|
|
_( "&Refresh Plugins" ),
|
|
|
|
_( "Reload all python plugins and refresh plugin menus" ),
|
|
|
|
KiBitmap( reload_xpm ) );
|
|
|
|
|
|
|
|
submenuActionPluginsMenu->AppendSeparator();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Build the files menu.
|
|
|
|
void prepareFilesMenu( wxMenu* aParentMenu, bool aIsOutsideProject )
|
|
|
|
{
|
|
|
|
wxString text;
|
2015-08-20 07:14:44 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Some commands are available only if Pcbnew is run outside a project (run alone).
|
|
|
|
// aIsOutsideProject is false when Pcbnew is run from Kicad manager.
|
2014-02-27 18:48:18 +00:00
|
|
|
|
2018-08-20 13:46:38 +00:00
|
|
|
FILE_HISTORY& fhist = Kiface().GetFileHistory();
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Load Recent submenu
|
|
|
|
static wxMenu* openRecentMenu;
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Add this menu to list menu managed by m_fileHistory
|
|
|
|
// (the file history will be updated when adding/removing files in history
|
|
|
|
if( openRecentMenu )
|
|
|
|
fhist.RemoveMenu( openRecentMenu );
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
openRecentMenu = new wxMenu();
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
fhist.UseMenu( openRecentMenu );
|
|
|
|
fhist.AddFilesToMenu();
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
if( aIsOutsideProject )
|
|
|
|
{
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "&New" ), g_Board_Editor_Hotkeys_Descr, HK_NEW );
|
2018-02-14 22:50:41 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_NEW_BOARD,
|
2019-03-16 14:36:22 +00:00
|
|
|
text, _( "Create new board" ),
|
|
|
|
KiBitmap( new_board_xpm ) );
|
2018-02-14 22:50:41 +00:00
|
|
|
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "&Open..." ), g_Board_Editor_Hotkeys_Descr, HK_OPEN );
|
2018-02-14 22:50:41 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_LOAD_FILE, text,
|
2019-03-16 14:36:22 +00:00
|
|
|
_( "Open existing board" ),
|
|
|
|
KiBitmap( open_brd_file_xpm ) );
|
2018-02-14 22:50:41 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, openRecentMenu,
|
|
|
|
-1, _( "Open &Recent" ),
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Open recently opened board" ),
|
2018-01-16 11:19:22 +00:00
|
|
|
KiBitmap( recent_xpm ) );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
aParentMenu->AppendSeparator();
|
|
|
|
}
|
2015-02-18 00:29:54 +00:00
|
|
|
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "&Save" ), g_Board_Editor_Hotkeys_Descr, HK_SAVE );
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_SAVE_BOARD, text,
|
|
|
|
_( "Save current board" ),
|
2011-10-18 08:28:12 +00:00
|
|
|
KiBitmap( save_xpm ) );
|
2010-01-18 12:37:53 +00:00
|
|
|
|
2017-02-24 11:43:10 +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
|
|
|
|
// when not under a project mgr, we are free to change filenames, cwd ...
|
|
|
|
if( Kiface().IsSingle() ) // not when under a project mgr (pcbnew is run as stand alone)
|
|
|
|
{
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "Sa&ve As..." ), g_Board_Editor_Hotkeys_Descr, HK_SAVEAS );
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_SAVE_BOARD_AS, text,
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Save current board with new name" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( save_as_xpm ) );
|
|
|
|
}
|
|
|
|
// under a project mgr, we can save a copy of the board,
|
|
|
|
// but do not change the current board file name
|
|
|
|
else
|
|
|
|
{
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "Sa&ve Copy As..." ), g_Board_Editor_Hotkeys_Descr, HK_SAVEAS );
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_COPY_BOARD_AS, text,
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Save copy of the current board" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( save_as_xpm ) );
|
|
|
|
}
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
aParentMenu->AppendSeparator();
|
2011-09-07 09:27:02 +00:00
|
|
|
|
2018-02-14 22:50:41 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_MENU_RECOVER_BOARD_AUTOSAVE,
|
|
|
|
_( "Resc&ue" ),
|
|
|
|
_( "Clear board and get last rescue file automatically saved by Pcbnew" ),
|
|
|
|
KiBitmap( rescue_xpm ) );
|
|
|
|
|
|
|
|
if( aIsOutsideProject )
|
|
|
|
{
|
|
|
|
AddMenuItem( aParentMenu, ID_APPEND_FILE,
|
|
|
|
_( "&Append Board..." ),
|
|
|
|
_( "Append another board to currently loaded board" ),
|
|
|
|
KiBitmap( add_board_xpm ) );
|
|
|
|
|
|
|
|
AddMenuItem( aParentMenu, ID_IMPORT_NON_KICAD_BOARD,
|
2019-03-16 14:36:22 +00:00
|
|
|
_( "Import Non-KiCad Board File..." ),
|
|
|
|
_( "Import board file from other applications" ),
|
|
|
|
KiBitmap( import_brd_file_xpm ) );
|
2018-02-14 22:50:41 +00:00
|
|
|
}
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_MENU_READ_BOARD_BACKUP_FILE,
|
|
|
|
_( "Revert to Las&t Backup" ),
|
|
|
|
_( "Clear board and get previous backup version of board" ),
|
2017-06-02 09:51:11 +00:00
|
|
|
KiBitmap( undo_xpm ) );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
aParentMenu->AppendSeparator();
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2018-02-25 19:09:53 +00:00
|
|
|
//----- Import submenu ------------------------------------------------------
|
|
|
|
wxMenu* submenuImport = new wxMenu();
|
|
|
|
|
2019-03-08 20:02:48 +00:00
|
|
|
AddMenuItem( submenuImport, ID_GET_NETLIST,
|
|
|
|
_( "&Netlist..." ),
|
2019-03-07 13:59:32 +00:00
|
|
|
_( "Read netlist and update board connectivity" ),
|
|
|
|
KiBitmap( netlist_xpm ) );
|
|
|
|
|
2018-02-25 19:09:53 +00:00
|
|
|
AddMenuItem( submenuImport, ID_GEN_IMPORT_SPECCTRA_SESSION,
|
|
|
|
_( "&Specctra Session..." ),
|
|
|
|
_( "Import routed \"Specctra Session\" (*.ses) file" ),
|
|
|
|
KiBitmap( import_xpm ) );
|
|
|
|
|
2018-11-01 09:47:41 +00:00
|
|
|
AddMenuItem( submenuImport, ID_GEN_IMPORT_GRAPHICS_FILE,
|
2019-03-08 20:02:48 +00:00
|
|
|
_( "&Graphics..." ),
|
2018-11-05 16:04:05 +00:00
|
|
|
_( "Import 2D Drawing file to Pcbnew on Drawings layer" ),
|
2019-05-07 11:00:36 +00:00
|
|
|
KiBitmap( import_vector_xpm ) );
|
2018-02-25 19:09:53 +00:00
|
|
|
|
|
|
|
AddMenuItem( aParentMenu, submenuImport,
|
|
|
|
ID_GEN_IMPORT_FILE, _( "&Import" ),
|
|
|
|
_( "Import files" ), KiBitmap( import_xpm ) );
|
|
|
|
|
|
|
|
|
|
|
|
//----- Export submenu ------------------------------------------------------
|
|
|
|
wxMenu* submenuexport = new wxMenu();
|
|
|
|
prepareExportMenu( submenuexport );
|
|
|
|
|
|
|
|
AddMenuItem( aParentMenu, submenuexport,
|
|
|
|
ID_GEN_EXPORT_FILE, _( "E&xport" ),
|
|
|
|
_( "Export board" ), KiBitmap( export_xpm ) );
|
|
|
|
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
//----- Fabrication Outputs submenu -----------------------------------------
|
|
|
|
wxMenu* fabricationOutputsMenu = new wxMenu;
|
2019-03-08 20:02:48 +00:00
|
|
|
AddMenuItem( fabricationOutputsMenu, ID_GEN_PLOT_GERBER,
|
|
|
|
_( "&Gerbers (.gbr)..." ),
|
|
|
|
_( "Generate Gerbers for fabrication" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( post_compo_xpm ) );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( fabricationOutputsMenu, ID_PCB_GEN_DRILL_FILE,
|
2019-03-08 20:02:48 +00:00
|
|
|
_( "&Drill Files (.drl)..." ),
|
2019-04-13 08:12:24 +00:00
|
|
|
_( "Generate Excellon drill file(s)" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( post_drill_xpm ) );
|
2011-07-02 12:48:45 +00:00
|
|
|
|
2019-03-08 20:02:48 +00:00
|
|
|
AddMenuItem( fabricationOutputsMenu, ID_PCB_GEN_POS_MODULES_FILE,
|
|
|
|
_( "Footprint &Positions (.pos)..." ),
|
|
|
|
_( "Generate footprint position file for pick and place" ),
|
|
|
|
KiBitmap( post_compo_xpm ) );
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( fabricationOutputsMenu, ID_GEN_EXPORT_FILE_MODULE_REPORT,
|
2019-03-08 20:02:48 +00:00
|
|
|
_( "&Footprint Report (.rpt)..." ),
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Create report of all footprints from current board" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( tools_xpm ) );
|
2016-01-29 14:43:40 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( fabricationOutputsMenu, ID_PCB_GEN_D356_FILE,
|
2019-03-16 14:36:22 +00:00
|
|
|
_( "IPC-D-356 Netlist File..." ),
|
|
|
|
_( "Generate IPC-D-356 netlist file" ),
|
|
|
|
KiBitmap( netlist_xpm ) );
|
2016-01-29 14:43:40 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( fabricationOutputsMenu, ID_PCB_GEN_BOM_FILE_FROM_BOARD,
|
2019-03-08 20:02:48 +00:00
|
|
|
_( "&BOM..." ),
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Create bill of materials from current schematic" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( bom_xpm ) );
|
2011-07-02 12:48:45 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, fabricationOutputsMenu,
|
|
|
|
-1, _( "&Fabrication Outputs" ),
|
|
|
|
_( "Generate files for fabrication" ),
|
|
|
|
KiBitmap( fabrication_xpm ) );
|
2011-07-02 12:48:45 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
aParentMenu->AppendSeparator();
|
2017-01-22 09:05:46 +00:00
|
|
|
|
2018-04-28 15:22:25 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_BOARD_SETUP_DIALOG,
|
|
|
|
_( "&Board Setup..." ),
|
|
|
|
_( "Edit board setup including layers, design rules and various defaults" ),
|
2018-07-24 10:57:07 +00:00
|
|
|
KiBitmap( options_board_xpm ) );
|
2018-04-28 15:22:25 +00:00
|
|
|
|
|
|
|
aParentMenu->AppendSeparator();
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_SHEET_SET,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "Page S&ettings..." ),
|
2017-02-24 11:43:10 +00:00
|
|
|
_( "Settings for sheet size and frame references" ),
|
|
|
|
KiBitmap( sheetset_xpm ) );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2018-05-14 03:22:11 +00:00
|
|
|
text = AddHotkeyName( _( "&Print..." ), g_Board_Editor_Hotkeys_Descr, HK_PRINT );
|
2018-02-14 22:50:41 +00:00
|
|
|
AddMenuItem( aParentMenu, wxID_PRINT, text,
|
|
|
|
_( "Print board" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( print_button_xpm ) );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_GEN_PLOT,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "P&lot..." ),
|
2017-02-24 11:43:10 +00:00
|
|
|
_( "Plot board in HPGL, PostScript or Gerber RS-274X format)" ),
|
|
|
|
KiBitmap( plot_xpm ) );
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
aParentMenu->AppendSeparator();
|
2011-10-18 19:59:19 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
//----- archive submenu -----------------------------------------------------
|
|
|
|
wxMenu* submenuarchive = new wxMenu();
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( submenuarchive, ID_MENU_ARCHIVE_MODULES_IN_LIBRARY,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "&Archive Footprints in Existing Library..." ),
|
2018-09-13 21:28:10 +00:00
|
|
|
_( "Archive all footprints to existing library in footprint Lib table"
|
2017-06-02 09:51:11 +00:00
|
|
|
"(does not remove other footprints in this library)" ),
|
2017-08-11 09:01:28 +00:00
|
|
|
KiBitmap( library_archive_xpm ) );
|
2016-06-12 01:22:13 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( submenuarchive, ID_MENU_CREATE_LIBRARY_AND_ARCHIVE_MODULES,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "&Create New Library and Archive Footprints..." ),
|
2018-09-13 21:28:10 +00:00
|
|
|
_( "Archive all footprints to a new library\n"
|
|
|
|
"(if the library already exists it will be replaced)" ),
|
2017-08-11 09:01:28 +00:00
|
|
|
KiBitmap( library_archive_as_xpm ) );
|
2016-09-24 00:44:52 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, submenuarchive,
|
|
|
|
ID_MENU_ARCHIVE_MODULES,
|
|
|
|
_( "Arc&hive Footprints" ),
|
2017-08-11 09:01:28 +00:00
|
|
|
_( "Archive or add all footprints in library file" ),
|
|
|
|
KiBitmap( library_archive_xpm ) );
|
2016-09-24 00:44:52 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
aParentMenu->AppendSeparator();
|
2018-02-19 23:05:41 +00:00
|
|
|
AddMenuItem( aParentMenu, wxID_EXIT, _( "&Exit" ), _( "Close Pcbnew" ), KiBitmap( exit_xpm ) );
|
2017-02-24 11:43:10 +00:00
|
|
|
}
|
2016-09-24 00:44:52 +00:00
|
|
|
|
2010-10-28 18:30:31 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
// Build the import/export submenu (inside files menu)
|
|
|
|
void prepareExportMenu( wxMenu* aParentMenu )
|
|
|
|
{
|
|
|
|
AddMenuItem( aParentMenu, ID_GEN_EXPORT_SPECCTRA,
|
2018-02-14 22:50:41 +00:00
|
|
|
_( "S&pecctra DSN..." ),
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Export current board to \"Specctra DSN\" file" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( export_dsn_xpm ) );
|
2010-01-17 20:25:10 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_GEN_EXPORT_FILE_GENCADFORMAT,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "&GenCAD..." ), _( "Export GenCAD format" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( export_xpm ) );
|
2010-12-17 20:34:29 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_GEN_EXPORT_FILE_VRML,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "&VRML..." ),
|
2017-06-02 09:51:11 +00:00
|
|
|
_( "Export VRML board representation" ),
|
2018-01-11 06:18:30 +00:00
|
|
|
KiBitmap( export3d_xpm ) );
|
2017-01-22 19:23:00 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_GEN_EXPORT_FILE_IDF3,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "I&DFv3..." ), _( "IDFv3 board and symbol export" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( export_idf_xpm ) );
|
2017-01-22 19:23:00 +00:00
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_GEN_EXPORT_FILE_STEP,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "S&TEP..." ), _( "STEP export" ),
|
2018-01-11 06:18:30 +00:00
|
|
|
KiBitmap( export_step_xpm ) );
|
2017-02-24 11:43:10 +00:00
|
|
|
|
2018-02-14 22:50:41 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_GEN_PLOT_SVG,
|
|
|
|
_( "&SVG..." ),
|
|
|
|
_( "Export board file in Scalable Vector Graphics format" ),
|
|
|
|
KiBitmap( plot_svg_xpm ) );
|
|
|
|
|
2017-02-24 11:43:10 +00:00
|
|
|
AddMenuItem( aParentMenu, ID_PCB_GEN_CMP_FILE,
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "&Footprint Association (.cmp) File..." ),
|
2017-12-24 15:04:02 +00:00
|
|
|
_( "Export footprint association file (*.cmp) for schematic back annotation" ),
|
2017-02-24 11:43:10 +00:00
|
|
|
KiBitmap( create_cmp_file_xpm ) );
|
2019-04-08 00:09:07 +00:00
|
|
|
|
|
|
|
AddMenuItem( aParentMenu, ID_GEN_EXPORT_FILE_HYPERLYNX,
|
|
|
|
_( "&Hyperlynx..." ), _( "Hyperlynx export" ),
|
|
|
|
KiBitmap( export_step_xpm ) );
|
|
|
|
|
2010-01-17 20:25:10 +00:00
|
|
|
}
|