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"
|
|
|
|
#include "libeditframe.h"
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-06-30 11:15:34 +00:00
|
|
|
|
2010-03-18 20:40:18 +00:00
|
|
|
/**
|
2017-11-14 12:47:44 +00:00
|
|
|
* @brief (Re)Create the menubar for the part editor frame
|
2010-03-18 20:40:18 +00:00
|
|
|
*/
|
2010-11-19 16:28:46 +00:00
|
|
|
void LIB_EDIT_FRAME::ReCreateMenuBar()
|
2010-03-18 20:40:18 +00:00
|
|
|
{
|
2011-04-06 13:52:47 +00:00
|
|
|
// Create and try to get the current menubar
|
2010-03-18 20:40:18 +00:00
|
|
|
wxString text;
|
2011-05-16 19:32:57 +00:00
|
|
|
wxMenuBar* menuBar = GetMenuBar();
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2011-05-16 19:32:57 +00:00
|
|
|
if( !menuBar )
|
2010-12-17 20:34:29 +00:00
|
|
|
menuBar = new wxMenuBar();
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Delete all existing menus so they can be rebuilt.
|
|
|
|
// This allows language changes of the menu text on the fly.
|
|
|
|
menuBar->Freeze();
|
2011-09-01 12:54:34 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
while( menuBar->GetMenuCount() )
|
2011-05-16 19:32:57 +00:00
|
|
|
delete menuBar->Remove( 0 );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
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
|
|
|
// Creating/loading libraries
|
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_NEW_LIBRARY,
|
2017-12-19 11:10:11 +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,
|
2017-12-19 11:10:11 +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
|
|
|
|
|
|
|
// Separator
|
2012-09-12 09:53:11 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
|
2017-10-31 11:13:20 +00:00
|
|
|
// Save library variants
|
|
|
|
text = AddHotkeyName( _( "&Save Library" ), g_Libedit_Hokeys_Descr, HK_SAVE_LIB );
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_SAVE_LIBRARY, text,
|
2011-09-01 12:54:34 +00:00
|
|
|
_( "Save the current active library" ),
|
2017-11-14 12:36:40 +00:00
|
|
|
KiBitmap( save_library_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_SAVE_LIBRARY_AS,
|
2017-12-21 12:46:21 +00:00
|
|
|
_( "Save Library As..." ),
|
2017-10-31 11:13:20 +00:00
|
|
|
_( "Save the current library to a new file" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( save_as_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2017-02-13 08:53:47 +00:00
|
|
|
AddMenuItem( fileMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_SAVE_ALL_LIBS,
|
2017-12-19 11:10:11 +00:00
|
|
|
_( "Save All &Libraries" ),
|
2017-10-31 11:13:20 +00:00
|
|
|
_( "Save all library changes" ),
|
|
|
|
KiBitmap( save_xpm ) );
|
2017-02-13 08:53:47 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Separator
|
2011-04-06 13:52:47 +00:00
|
|
|
fileMenu->AppendSeparator();
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Export as png file
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_GEN_PNG_FILE,
|
2017-02-07 21:19:48 +00:00
|
|
|
_( "Create &PNG File from Screen..." ),
|
2018-01-03 19:19:26 +00:00
|
|
|
_( "Create a PNG file from the current symbol" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( plot_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Export as SVG file
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_GEN_SVG_FILE,
|
2017-02-07 21:19:48 +00:00
|
|
|
_( "Create S&VG File..." ),
|
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
|
|
|
|
|
|
|
// Separator
|
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
|
|
|
|
// Quit
|
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;
|
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Undo
|
2014-10-15 11:40:38 +00:00
|
|
|
text = AddHotkeyName( _( "&Undo" ), g_Libedit_Hokeys_Descr, HK_UNDO );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
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
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Redo
|
2014-10-15 11:40:38 +00:00
|
|
|
text = AddHotkeyName( _( "&Redo" ), g_Libedit_Hokeys_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
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Menu View:
|
2010-03-18 20:40:18 +00:00
|
|
|
wxMenu* viewMenu = new wxMenu;
|
|
|
|
|
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
|
2014-10-15 11:40:38 +00:00
|
|
|
text = AddHotkeyName( _( "&Fit on Screen" ), g_Libedit_Hokeys_Descr, HK_ZOOM_AUTO );
|
2011-09-08 05:58:45 +00:00
|
|
|
AddMenuItem( viewMenu, ID_ZOOM_PAGE, text, HELP_ZOOM_FIT, KiBitmap( zoom_fit_in_page_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Redraw
|
2014-10-15 11:40:38 +00:00
|
|
|
text = AddHotkeyName( _( "&Redraw" ), g_Libedit_Hokeys_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
|
|
|
|
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" ),
|
|
|
|
KiBitmap( search_tree_xpm ) );
|
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
// Menu Part:
|
|
|
|
wxMenu* partMenu = new wxMenu;
|
2017-10-31 11:13:20 +00:00
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
AddMenuItem( partMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_NEW_PART,
|
2017-12-26 14:38:45 +00:00
|
|
|
_( "&New Symbol" ),
|
|
|
|
_( "Create a new empty symbol" ),
|
2017-10-31 11:13:20 +00:00
|
|
|
KiBitmap( new_component_xpm ) );
|
|
|
|
|
2017-12-26 14:38:45 +00:00
|
|
|
text = AddHotkeyName( _( "&Save Symbol" ), g_Libedit_Hokeys_Descr, HK_SAVE_PART );
|
2017-11-14 12:47:44 +00:00
|
|
|
AddMenuItem( partMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_SAVE_PART,
|
2017-11-14 12:23:16 +00:00
|
|
|
text,
|
2017-12-26 14:38:45 +00:00
|
|
|
_( "Saves the current symbol to the library" ),
|
2017-11-14 12:36:40 +00:00
|
|
|
KiBitmap( save_part_xpm ) );
|
2017-10-31 11:13:20 +00:00
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
partMenu->AppendSeparator();
|
2017-10-31 11:13:20 +00:00
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
AddMenuItem( partMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_IMPORT_PART,
|
2017-12-26 14:38:45 +00:00
|
|
|
_( "&Import Symbol" ),
|
|
|
|
_( "Import a symbol to the current library" ),
|
2017-11-14 14:06:27 +00:00
|
|
|
KiBitmap( import_part_xpm ) );
|
2017-10-31 11:13:20 +00:00
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
AddMenuItem( partMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_EXPORT_PART,
|
2017-12-26 14:38:45 +00:00
|
|
|
_( "&Export Symbol" ),
|
|
|
|
_( "Export the current symbol" ),
|
2017-11-14 14:06:27 +00:00
|
|
|
KiBitmap( export_part_xpm ) );
|
2017-10-31 11:13:20 +00:00
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
partMenu->AppendSeparator();
|
2017-10-31 11:13:20 +00:00
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
AddMenuItem( partMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_GET_FRAME_EDIT_PART,
|
|
|
|
_( "&Properties" ),
|
2017-12-26 14:38:45 +00:00
|
|
|
_( "Edit symbol properties" ),
|
2017-10-31 11:13:20 +00:00
|
|
|
KiBitmap( part_properties_xpm ) );
|
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
AddMenuItem( partMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_GET_FRAME_EDIT_FIELDS,
|
|
|
|
_( "&Fields" ),
|
|
|
|
_( "Edit field properties" ),
|
|
|
|
KiBitmap( edit_text_xpm ) );
|
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
partMenu->AppendSeparator();
|
2017-10-31 11:13:20 +00:00
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
AddMenuItem( partMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_EDIT_PIN_BY_TABLE,
|
2017-11-14 12:47:44 +00:00
|
|
|
_( "Pi&n Table" ),
|
2017-10-31 11:13:20 +00:00
|
|
|
_( "Show pin table" ),
|
|
|
|
KiBitmap( pin_table_xpm ) );
|
|
|
|
|
2017-11-14 12:47:44 +00:00
|
|
|
AddMenuItem( partMenu,
|
2017-10-31 11:13:20 +00:00
|
|
|
ID_LIBEDIT_CHECK_PART,
|
|
|
|
_( "ERC" ),
|
|
|
|
_( "Check duplicate and off grid pins" ),
|
|
|
|
KiBitmap( erc_xpm ) );
|
|
|
|
|
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
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Menu Preferences:
|
|
|
|
wxMenu* preferencesMenu = new wxMenu;
|
2010-03-20 19:57:59 +00:00
|
|
|
|
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,
|
2017-11-01 00:57:57 +00:00
|
|
|
_( "Manage Symbol Libraries" ),
|
|
|
|
_( "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
|
|
|
|
2014-08-25 16:31:32 +00:00
|
|
|
// Default values and options
|
2017-08-12 12:09:39 +00:00
|
|
|
AddMenuItem( preferencesMenu,
|
2014-08-25 16:31:32 +00:00
|
|
|
wxID_PREFERENCES,
|
2017-08-17 14:39:11 +00:00
|
|
|
_( "General &Options" ),
|
2017-12-26 14:38:45 +00:00
|
|
|
_( "Set Symbol Editor default values and options" ),
|
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
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Hotkey submenu
|
2011-04-06 13:52:47 +00:00
|
|
|
AddHotkeyConfigMenu( preferencesMenu );
|
|
|
|
|
|
|
|
// 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
|
|
|
|
2016-06-12 01:22:13 +00:00
|
|
|
AddMenuItem( helpMenu,
|
|
|
|
ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST,
|
|
|
|
_( "&List Hotkeys" ),
|
|
|
|
_( "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
|
|
|
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( helpMenu,
|
|
|
|
wxID_ABOUT,
|
2015-10-08 13:52:03 +00:00
|
|
|
_( "&About KiCad" ),
|
|
|
|
_( "About KiCad" ),
|
2017-06-02 09:51:11 +00:00
|
|
|
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" ) );
|
2017-12-26 14:38:45 +00:00
|
|
|
menuBar->Append( partMenu, _( "&Symbol" ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
menuBar->Append( placeMenu, _( "&Place" ) );
|
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" ) );
|
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
menuBar->Thaw();
|
|
|
|
|
|
|
|
// Associate the menu bar with the frame, if no previous menubar
|
|
|
|
if( GetMenuBar() == NULL )
|
|
|
|
SetMenuBar( menuBar );
|
|
|
|
else
|
|
|
|
menuBar->Refresh();
|
2010-03-18 20:40:18 +00:00
|
|
|
}
|