2011-10-18 19:59:19 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
2017-11-01 00:57:57 +00:00
|
|
|
* Copyright (C) 2009 Wayne Stambaugh <stambaughw@gmail.com>
|
2018-01-03 19:19:26 +00:00
|
|
|
* Copyright (C) 1992-2018 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
|
|
|
|
*/
|
|
|
|
|
2010-03-18 20:40:18 +00:00
|
|
|
/**
|
2011-04-06 13:52:47 +00:00
|
|
|
* @file eeschema/menubar_libedit.cpp
|
2017-11-14 12:47:44 +00:00
|
|
|
* @brief (Re)Create the main menubar for the part editor frame (LibEdit)
|
2010-03-18 20:40:18 +00:00
|
|
|
*/
|
2016-03-11 16:40:24 +00:00
|
|
|
|
|
|
|
#include <menus_helpers.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 <pgm_base.h>
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2016-03-11 16:40:24 +00:00
|
|
|
#include "eeschema_id.h"
|
|
|
|
#include "general.h"
|
|
|
|
#include "help_common_strings.h"
|
|
|
|
#include "hotkeys.h"
|
2018-01-30 10:49:51 +00:00
|
|
|
#include "lib_edit_frame.h"
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-06-30 11:15:34 +00:00
|
|
|
|
2010-11-19 16:28:46 +00:00
|
|
|
void LIB_EDIT_FRAME::ReCreateMenuBar()
|
2010-03-18 20:40:18 +00:00
|
|
|
{
|
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();
|
2010-03-18 20:40:18 +00:00
|
|
|
wxString text;
|
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Recreate all menus:
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Menu File:
|
|
|
|
wxMenu* fileMenu = new wxMenu;
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2017-10-31 11:13:20 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_NEW_LIBRARY,
|
2018-07-26 20:19:46 +00:00
|
|
|
_( "New Library..." ),
|
2017-10-31 11:13:20 +00:00
|
|
|
_( "Creates an empty library" ),
|
|
|
|
KiBitmap( new_library_xpm ) );
|
|
|
|
|
2012-09-12 09:53:11 +00:00
|
|
|
AddMenuItem( fileMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_ADD_LIBRARY,
|
2018-07-26 20:19:46 +00:00
|
|
|
_( "Add Library..." ),
|
2017-10-31 11:13:20 +00:00
|
|
|
_( "Adds a previously created library" ),
|
2017-11-14 12:36:40 +00:00
|
|
|
KiBitmap( add_library_xpm ) );
|
2017-10-31 11:13:20 +00:00
|
|
|
|
2018-07-26 20:19:46 +00:00
|
|
|
text = AddHotkeyName( _( "&New Symbol..." ), m_hotkeysDescrList, HK_NEW );
|
2018-07-24 21:16:59 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_NEW_PART,
|
2018-07-26 20:19:46 +00:00
|
|
|
text,
|
|
|
|
_( "Create a new symbol" ),
|
2018-07-24 21:16:59 +00:00
|
|
|
KiBitmap( new_component_xpm ) );
|
|
|
|
|
2012-09-12 09:53:11 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "&Save" ), g_Libedit_Hotkeys_Descr, HK_SAVE );
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
2018-07-27 10:46:09 +00:00
|
|
|
ID_LIBEDIT_SAVE,
|
2018-07-24 21:16:59 +00:00
|
|
|
text,
|
|
|
|
_( "Save changes" ),
|
|
|
|
KiBitmap( save_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "Save &As..." ), g_Libedit_Hotkeys_Descr, HK_SAVEAS );
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
2018-07-27 10:46:09 +00:00
|
|
|
ID_LIBEDIT_SAVE_AS,
|
|
|
|
text,
|
2018-10-03 21:44:17 +00:00
|
|
|
_( "Save a copy to a new name and/or location" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( save_as_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2018-07-24 21:16:59 +00:00
|
|
|
AddMenuItem( fileMenu,
|
2018-07-27 10:46:09 +00:00
|
|
|
ID_LIBEDIT_SAVE_ALL,
|
|
|
|
_( "Save All" ),
|
|
|
|
_( "Save all library and symbol changes" ),
|
|
|
|
KiBitmap( save_xpm ) );
|
|
|
|
|
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_REVERT,
|
|
|
|
_( "&Revert" ),
|
|
|
|
_( "Throw away changes" ),
|
|
|
|
KiBitmap( undo_xpm ) );
|
2017-02-13 08:53:47 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
fileMenu->AppendSeparator();
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2018-07-24 21:16:59 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_IMPORT_PART,
|
|
|
|
_( "&Import Symbol..." ),
|
|
|
|
_( "Import a symbol to the current library" ),
|
|
|
|
KiBitmap( import_part_xpm ) );
|
|
|
|
|
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_EXPORT_PART,
|
|
|
|
_( "&Export Symbol..." ),
|
2018-11-02 08:23:16 +00:00
|
|
|
_( "Create a library file containing only the current symbol" ),
|
2018-07-24 21:16:59 +00:00
|
|
|
KiBitmap( export_part_xpm ) );
|
|
|
|
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_GEN_PNG_FILE,
|
2018-11-02 08:23:16 +00:00
|
|
|
_( "Export View as PNG..." ),
|
2018-02-09 16:28:33 +00:00
|
|
|
_( "Create a PNG file from the current view" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( plot_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_GEN_SVG_FILE,
|
2018-11-02 08:23:16 +00:00
|
|
|
_( "Export Symbol as SVG..." ),
|
2018-01-03 19:19:26 +00:00
|
|
|
_( "Create a SVG file from the current symbol" ),
|
2012-08-29 12:40:09 +00:00
|
|
|
KiBitmap( plot_svg_xpm ) );
|
2011-04-06 13:52:47 +00:00
|
|
|
|
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
wxID_EXIT,
|
|
|
|
_( "&Quit" ),
|
|
|
|
_( "Quit Library Editor" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( exit_xpm ) );
|
2010-07-23 14:12:37 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Edit menu
|
2010-03-18 20:40:18 +00:00
|
|
|
wxMenu* editMenu = new wxMenu;
|
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "&Undo" ), g_Libedit_Hotkeys_Descr, HK_UNDO );
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( editMenu,
|
|
|
|
wxID_UNDO,
|
|
|
|
text,
|
2013-11-09 16:30:49 +00:00
|
|
|
_( "Undo last edit" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( undo_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "&Redo" ), g_Libedit_Hotkeys_Descr, HK_REDO );
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( editMenu,
|
|
|
|
wxID_REDO,
|
|
|
|
text,
|
|
|
|
_( "Redo the last undo command" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( redo_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2018-07-24 21:16:59 +00:00
|
|
|
editMenu->AppendSeparator();
|
|
|
|
|
|
|
|
AddMenuItem( editMenu,
|
|
|
|
ID_LIBEDIT_GET_FRAME_EDIT_PART,
|
|
|
|
_( "&Properties..." ),
|
|
|
|
_( "Edit symbol properties" ),
|
|
|
|
KiBitmap( part_properties_xpm ) );
|
|
|
|
|
|
|
|
AddMenuItem( editMenu,
|
|
|
|
ID_LIBEDIT_EDIT_PIN_BY_TABLE,
|
|
|
|
_( "Pin &Table..." ),
|
|
|
|
_( "Show pin table" ),
|
|
|
|
KiBitmap( pin_table_xpm ) );
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Menu View:
|
2010-03-18 20:40:18 +00:00
|
|
|
wxMenu* viewMenu = new wxMenu;
|
|
|
|
|
2018-07-27 10:46:09 +00:00
|
|
|
AddMenuItem( viewMenu,
|
|
|
|
ID_TO_LIBVIEW,
|
2019-01-30 19:51:49 +00:00
|
|
|
_( "Symbol Library Browser" ),
|
2018-07-27 10:46:09 +00:00
|
|
|
_( "Open the symbol viewer" ),
|
|
|
|
KiBitmap( library_browse_xpm ) );
|
|
|
|
|
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
/**
|
|
|
|
* Important Note for ZOOM IN and ZOOM OUT commands from menubar:
|
2010-03-18 20:40:18 +00:00
|
|
|
* we cannot add hotkey info here, because the hotkey HK_ZOOM_IN and HK_ZOOM_OUT
|
|
|
|
* events(default = WXK_F1 and WXK_F2) are *NOT* equivalent to this menu command:
|
|
|
|
* zoom in and out from hotkeys are equivalent to the pop up menu zoom
|
2010-08-24 17:26:51 +00:00
|
|
|
* From here, zooming is made around the screen center
|
|
|
|
* From hotkeys, zooming is made around the mouse cursor position
|
|
|
|
* (obviously not possible from the toolbar or menubar command)
|
2010-03-18 20:40:18 +00:00
|
|
|
*
|
|
|
|
* in others words HK_ZOOM_IN and HK_ZOOM_OUT *are NOT* accelerators
|
|
|
|
* for Zoom in and Zoom out sub menus
|
|
|
|
*/
|
2011-04-06 13:52:47 +00:00
|
|
|
|
|
|
|
// Zoom in
|
2011-10-18 19:59:19 +00:00
|
|
|
text = _( "Zoom &In" );
|
2011-09-08 05:58:45 +00:00
|
|
|
AddMenuItem( viewMenu, ID_ZOOM_IN, text, HELP_ZOOM_IN, KiBitmap( zoom_in_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Zoom out
|
2011-10-18 19:59:19 +00:00
|
|
|
text = _( "Zoom &Out" );
|
2011-09-08 05:58:45 +00:00
|
|
|
AddMenuItem( viewMenu, ID_ZOOM_OUT, text, HELP_ZOOM_OUT, KiBitmap( zoom_out_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Fit on screen
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "&Zoom to Fit" ), g_Libedit_Hotkeys_Descr, HK_ZOOM_AUTO );
|
2018-03-16 12:38:36 +00:00
|
|
|
AddMenuItem( viewMenu, ID_ZOOM_PAGE, text, _( "Zoom to fit symbol" ),
|
|
|
|
KiBitmap( zoom_fit_in_page_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2018-04-01 18:58:27 +00:00
|
|
|
text = AddHotkeyName( _( "Zoom to Selection" ),
|
2019-04-01 17:14:16 +00:00
|
|
|
g_Schematic_Hotkeys_Descr, HK_ZOOM_SELECTION );
|
2018-04-01 18:58:27 +00:00
|
|
|
AddMenuItem( viewMenu, ID_MENU_ZOOM_SELECTION, text, KiBitmap( zoom_area_xpm ) );
|
2018-03-25 15:02:53 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Redraw
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "&Redraw" ), g_Libedit_Hotkeys_Descr, HK_ZOOM_REDRAW );
|
2011-09-08 05:58:45 +00:00
|
|
|
AddMenuItem( viewMenu, ID_ZOOM_REDRAW, text, HELP_ZOOM_REDRAW, KiBitmap( zoom_redraw_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2018-09-04 18:22:26 +00:00
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
|
|
|
|
AddMenuItem( viewMenu, ID_TB_OPTIONS_SHOW_GRID,
|
|
|
|
_( "Show &Grid" ), wxEmptyString,
|
|
|
|
KiBitmap( grid_xpm ), wxITEM_CHECK );
|
|
|
|
|
|
|
|
AddMenuItem( viewMenu, ID_GRID_SETTINGS,
|
|
|
|
_( "Grid Settings..." ), wxEmptyString,
|
|
|
|
KiBitmap( grid_xpm ) );
|
|
|
|
|
2019-01-12 18:26:33 +00:00
|
|
|
// Units submenu
|
|
|
|
wxMenu* unitsSubMenu = new wxMenu;
|
|
|
|
AddMenuItem( unitsSubMenu, ID_TB_OPTIONS_SELECT_UNIT_INCH,
|
|
|
|
_( "&Imperial" ), _( "Use imperial units" ),
|
|
|
|
KiBitmap( unit_inch_xpm ), wxITEM_RADIO );
|
|
|
|
|
|
|
|
AddMenuItem( unitsSubMenu, ID_TB_OPTIONS_SELECT_UNIT_MM,
|
|
|
|
_( "&Metric" ), _( "Use metric units" ),
|
|
|
|
KiBitmap( unit_mm_xpm ), wxITEM_RADIO );
|
|
|
|
|
|
|
|
AddMenuItem( viewMenu, unitsSubMenu,
|
|
|
|
-1, _( "&Units" ),
|
|
|
|
_( "Select which units are displayed" ),
|
|
|
|
KiBitmap( unit_mm_xpm ) );
|
|
|
|
|
|
|
|
AddMenuItem( viewMenu, ID_TB_OPTIONS_SELECT_CURSOR,
|
|
|
|
_( "Full &Window Crosshair" ),
|
|
|
|
_( "Change cursor shape" ),
|
|
|
|
KiBitmap( cursor_shape_xpm ), wxITEM_CHECK );
|
|
|
|
|
2017-10-31 11:13:20 +00:00
|
|
|
// Separator
|
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
|
|
|
|
AddMenuItem( viewMenu,
|
|
|
|
ID_LIBEDIT_SHOW_HIDE_SEARCH_TREE,
|
2017-12-26 14:38:45 +00:00
|
|
|
_( "&Search Tree" ),
|
2017-10-31 11:13:20 +00:00
|
|
|
_( "Toggles the search tree visibility" ),
|
2018-11-04 00:58:28 +00:00
|
|
|
KiBitmap( search_tree_xpm ), wxITEM_CHECK );
|
2017-10-31 11:13:20 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Menu Place:
|
2010-03-18 20:40:18 +00:00
|
|
|
wxMenu* placeMenu = new wxMenu;
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Pin
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( placeMenu,
|
|
|
|
ID_LIBEDIT_PIN_BUTT,
|
|
|
|
_( "&Pin" ),
|
|
|
|
HELP_ADD_PIN,
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( pin_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Graphic text
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( placeMenu,
|
|
|
|
ID_LIBEDIT_BODY_TEXT_BUTT,
|
2011-10-18 19:59:19 +00:00
|
|
|
_( "Graphic &Text" ),
|
2011-09-01 12:54:34 +00:00
|
|
|
HELP_ADD_BODYTEXT,
|
2017-06-02 09:51:11 +00:00
|
|
|
KiBitmap( text_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Graphic rectangle
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( placeMenu,
|
|
|
|
ID_LIBEDIT_BODY_RECT_BUTT,
|
2011-10-18 19:59:19 +00:00
|
|
|
_( "&Rectangle" ),
|
2011-09-01 12:54:34 +00:00
|
|
|
HELP_ADD_BODYRECT,
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( add_rectangle_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Graphic Circle
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( placeMenu,
|
|
|
|
ID_LIBEDIT_BODY_CIRCLE_BUTT,
|
2011-10-18 19:59:19 +00:00
|
|
|
_( "&Circle" ),
|
2011-09-01 12:54:34 +00:00
|
|
|
HELP_ADD_BODYCIRCLE,
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( add_circle_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Graphic Arc
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( placeMenu,
|
|
|
|
ID_LIBEDIT_BODY_ARC_BUTT,
|
2011-10-18 19:59:19 +00:00
|
|
|
_( "&Arc" ),
|
2011-09-01 12:54:34 +00:00
|
|
|
HELP_ADD_BODYARC,
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( add_arc_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Graphic Line or Polygon
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( placeMenu,
|
|
|
|
ID_LIBEDIT_BODY_LINE_BUTT,
|
2011-10-18 19:59:19 +00:00
|
|
|
_( "&Line or Polygon" ),
|
2011-09-01 12:54:34 +00:00
|
|
|
HELP_ADD_BODYPOLYGON,
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( add_polygon_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2018-07-27 10:46:09 +00:00
|
|
|
// Menu Inspect:
|
|
|
|
wxMenu* inspectMenu = new wxMenu;
|
|
|
|
|
2018-09-24 14:31:35 +00:00
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "Show Datasheet" ), g_Libedit_Hotkeys_Descr, HK_LIBEDIT_VIEW_DOC );
|
2018-07-27 10:46:09 +00:00
|
|
|
AddMenuItem( inspectMenu,
|
|
|
|
ID_LIBEDIT_VIEW_DOC,
|
2018-09-24 14:31:35 +00:00
|
|
|
text,
|
2018-07-27 10:46:09 +00:00
|
|
|
_( "Open associated datasheet in web browser" ),
|
|
|
|
KiBitmap( datasheet_xpm ) );
|
|
|
|
|
|
|
|
AddMenuItem( inspectMenu,
|
|
|
|
ID_LIBEDIT_CHECK_PART,
|
|
|
|
_( "Electrical Rules &Checker" ),
|
|
|
|
_( "Check duplicate and off grid pins" ),
|
|
|
|
KiBitmap( erc_xpm ) );
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Menu Preferences:
|
|
|
|
wxMenu* preferencesMenu = new wxMenu;
|
2010-03-20 19:57:59 +00:00
|
|
|
|
2018-05-03 13:52:43 +00:00
|
|
|
// Environment varialbes
|
|
|
|
AddMenuItem( preferencesMenu,
|
|
|
|
ID_PREFERENCES_CONFIGURE_PATHS,
|
2018-07-19 19:15:40 +00:00
|
|
|
_( "&Configure Paths..." ),
|
2018-05-03 13:52:43 +00:00
|
|
|
_( "Edit path configuration environment variables" ),
|
|
|
|
KiBitmap( path_xpm ) );
|
|
|
|
|
2014-08-25 16:31:32 +00:00
|
|
|
// Library list
|
2017-08-12 12:09:39 +00:00
|
|
|
AddMenuItem( preferencesMenu,
|
|
|
|
ID_EDIT_SYM_LIB_TABLE,
|
2018-07-19 19:15:40 +00:00
|
|
|
_( "Manage &Symbol Libraries..." ),
|
2017-11-01 00:57:57 +00:00
|
|
|
_( "Edit the global and project symbol library tables." ),
|
2017-08-17 14:39:11 +00:00
|
|
|
KiBitmap( library_table_xpm ) );
|
2017-08-12 12:09:39 +00:00
|
|
|
|
2018-05-03 13:52:43 +00:00
|
|
|
preferencesMenu->AppendSeparator();
|
|
|
|
|
2014-08-25 16:31:32 +00:00
|
|
|
// Default values and options
|
2019-04-01 17:18:29 +00:00
|
|
|
text = AddHotkeyName( _( "&Preferences..." ), g_Libedit_Hotkeys_Descr, HK_PREFERENCES );
|
|
|
|
AddMenuItem( preferencesMenu, wxID_PREFERENCES, text,
|
2018-05-14 17:34:18 +00:00
|
|
|
_( "Show preferences for all open tools" ),
|
2014-08-25 16:31:32 +00:00
|
|
|
KiBitmap( preference_xpm ) );
|
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Language submenu
|
* 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
|
|
|
Pgm().AddMenuLanguageList( preferencesMenu );
|
2010-03-20 19:57:59 +00:00
|
|
|
|
2019-02-19 02:26:03 +00:00
|
|
|
preferencesMenu->AppendSeparator();
|
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "Modern Toolset (&Accelerated)" ), g_Libedit_Hotkeys_Descr,
|
2019-02-19 02:26:03 +00:00
|
|
|
HK_CANVAS_OPENGL );
|
|
|
|
AddMenuItem( preferencesMenu, ID_MENU_CANVAS_OPENGL, text,
|
|
|
|
_( "Use Modern Toolset with hardware-accelerated graphics (recommended)" ),
|
|
|
|
KiBitmap( tools_xpm ), wxITEM_RADIO );
|
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "Modern Toolset (Fallba&ck)" ), g_Libedit_Hotkeys_Descr,
|
2019-02-19 02:26:03 +00:00
|
|
|
HK_CANVAS_CAIRO );
|
|
|
|
AddMenuItem( preferencesMenu, ID_MENU_CANVAS_CAIRO, text,
|
|
|
|
_( "Use Modern Toolset with software graphics (fall-back)" ),
|
|
|
|
KiBitmap( tools_xpm ), wxITEM_RADIO );
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Menu Help:
|
2010-03-18 20:40:18 +00:00
|
|
|
wxMenu* helpMenu = new wxMenu;
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2011-05-16 19:32:57 +00:00
|
|
|
// Contents
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( helpMenu,
|
|
|
|
wxID_HELP,
|
2015-09-23 18:11:56 +00:00
|
|
|
_( "Eeschema &Manual" ),
|
2015-09-23 18:29:21 +00:00
|
|
|
_( "Open the Eeschema Manual" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( online_help_xpm ) );
|
2011-10-18 19:59:19 +00:00
|
|
|
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( helpMenu,
|
|
|
|
wxID_INDEX,
|
|
|
|
_( "&Getting Started in KiCad" ),
|
|
|
|
_( "Open the \"Getting Started in KiCad\" guide for beginners" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( help_xpm ) );
|
2011-05-16 19:32:57 +00:00
|
|
|
|
2019-04-01 17:14:16 +00:00
|
|
|
text = AddHotkeyName( _( "&List Hotkeys..." ), g_Libedit_Hotkeys_Descr, HK_HELP );
|
2016-06-12 01:22:13 +00:00
|
|
|
AddMenuItem( helpMenu,
|
|
|
|
ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST,
|
2018-02-15 08:23:06 +00:00
|
|
|
text,
|
2016-06-12 01:22:13 +00:00
|
|
|
_( "Displays the current hotkeys list and corresponding commands" ),
|
|
|
|
KiBitmap( hotkeys_xpm ) );
|
|
|
|
|
2016-09-24 00:44:52 +00:00
|
|
|
helpMenu->AppendSeparator();
|
|
|
|
AddMenuItem( helpMenu, ID_HELP_GET_INVOLVED,
|
|
|
|
_( "Get &Involved" ),
|
|
|
|
_( "Contribute to KiCad (opens a web browser)" ),
|
|
|
|
KiBitmap( info_xpm ) );
|
|
|
|
|
2011-09-30 18:15:37 +00:00
|
|
|
// About Eeschema
|
2011-08-04 18:03:26 +00:00
|
|
|
helpMenu->AppendSeparator();
|
2011-10-18 19:59:19 +00:00
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
AddMenuItem( helpMenu, wxID_ABOUT, _( "&About KiCad" ), KiBitmap( about_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Create the menubar and append all submenus
|
2011-04-06 13:52:47 +00:00
|
|
|
menuBar->Append( fileMenu, _( "&File" ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
menuBar->Append( editMenu, _( "&Edit" ) );
|
|
|
|
menuBar->Append( viewMenu, _( "&View" ) );
|
|
|
|
menuBar->Append( placeMenu, _( "&Place" ) );
|
2018-07-27 10:46:09 +00:00
|
|
|
menuBar->Append( inspectMenu, _( "&Inspect" ) );
|
2011-10-18 19:59:19 +00:00
|
|
|
menuBar->Append( preferencesMenu, _( "P&references" ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
menuBar->Append( helpMenu, _( "&Help" ) );
|
|
|
|
|
2018-04-07 13:13:38 +00:00
|
|
|
SetMenuBar( menuBar );
|
|
|
|
delete oldMenuBar;
|
2010-03-18 20:40:18 +00:00
|
|
|
}
|