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
|
|
|
|
* Copyright (C) 2009-2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* @brief (Re)Create the main menubar for the component editor frame (LibEdit)
|
2010-03-18 20:40:18 +00:00
|
|
|
*/
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <appl_wxstruct.h>
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <general.h>
|
|
|
|
#include <libeditframe.h>
|
|
|
|
#include <eeschema_id.h>
|
|
|
|
#include <hotkeys.h>
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <help_common_strings.h>
|
2012-04-09 09:16:47 +00:00
|
|
|
#include <menus_helpers.h>
|
2010-06-30 11:15:34 +00:00
|
|
|
|
2010-03-18 20:40:18 +00:00
|
|
|
/**
|
2011-04-06 13:52:47 +00:00
|
|
|
* @brief (Re)Create the menubar for the component 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
|
|
|
|
2012-09-12 09:53:11 +00:00
|
|
|
// Select current library
|
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_SELECT_CURRENT_LIB,
|
|
|
|
_( "&Current Library" ),
|
|
|
|
_( "Select working library" ),
|
|
|
|
KiBitmap( library_xpm ) );
|
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Save current library
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_SAVE_CURRENT_LIB,
|
|
|
|
_( "&Save Current Library\tCtrl+S" ),
|
|
|
|
_( "Save the current active library" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( save_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Save current library as...
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( fileMenu,
|
|
|
|
ID_LIBEDIT_SAVE_CURRENT_LIB_AS,
|
2011-10-18 19:59:19 +00:00
|
|
|
_( "Save Current Library &As" ),
|
2011-09-01 12:54:34 +00:00
|
|
|
_( "Save current active library as..." ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( save_as_xpm ) );
|
2010-03-18 20:40:18 +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,
|
2012-09-12 09:53:11 +00:00
|
|
|
_( "Create &PNG File from Screen" ),
|
2011-09-01 12:54:34 +00:00
|
|
|
_( "Create a PNG file from the component displayed on screen" ),
|
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,
|
2011-10-18 19:59:19 +00:00
|
|
|
_( "Create S&VG File" ),
|
2011-09-01 12:54:34 +00:00
|
|
|
_( "Create a SVG file from the current loaded component" ),
|
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
|
2011-10-18 19:59:19 +00:00
|
|
|
text = AddHotkeyName( _( "&Undo" ), s_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
|
2011-10-18 19:59:19 +00:00
|
|
|
text = AddHotkeyName( _( "&Redo" ), s_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
|
|
|
// Separator
|
2010-03-18 20:40:18 +00:00
|
|
|
editMenu->AppendSeparator();
|
2011-04-06 13:52:47 +00:00
|
|
|
|
|
|
|
// Delete
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( editMenu,
|
|
|
|
ID_LIBEDIT_DELETE_ITEM_BUTT,
|
2011-10-18 19:59:19 +00:00
|
|
|
_( "&Delete" ),
|
2011-09-01 12:54:34 +00:00
|
|
|
HELP_DELETE_ITEMS,
|
2012-03-20 14:17:58 +00:00
|
|
|
KiBitmap( delete_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
|
2011-10-18 19:59:19 +00:00
|
|
|
text = AddHotkeyName( _( "&Fit on Screen" ), s_Schematic_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
|
|
|
// Separator
|
2010-03-18 20:40:18 +00:00
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Redraw
|
2011-10-18 19:59:19 +00:00
|
|
|
text = AddHotkeyName( _( "&Redraw" ), s_Schematic_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
|
|
|
|
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,
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( add_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
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Library
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( preferencesMenu,
|
|
|
|
ID_CONFIG_REQ,
|
|
|
|
_( "&Library" ),
|
|
|
|
_( "Library preferences" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( library_xpm ) );
|
2010-03-20 19:57:59 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Colors
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( preferencesMenu,
|
|
|
|
ID_COLORS_SETUP,
|
|
|
|
_( "&Colors" ),
|
|
|
|
_( "Color preferences" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( palette_xpm ) );
|
2010-03-20 19:57:59 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Language submenu
|
2011-04-06 13:52:47 +00:00
|
|
|
wxGetApp().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 );
|
|
|
|
|
|
|
|
// Separator
|
|
|
|
preferencesMenu->AppendSeparator();
|
2010-03-20 19:57:59 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Save preferences
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( preferencesMenu,
|
|
|
|
ID_CONFIG_SAVE,
|
|
|
|
_( "&Save preferences" ),
|
|
|
|
_( "Save application preferences" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( save_setup_xpm ) );
|
2010-03-20 19:57:59 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Read preferences
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( preferencesMenu,
|
|
|
|
ID_CONFIG_READ,
|
|
|
|
_( "&Read preferences" ),
|
|
|
|
_( "Read application preferences" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( read_setup_xpm ) );
|
2010-03-18 20:40:18 +00:00
|
|
|
|
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-04-06 13:52:47 +00:00
|
|
|
// Version info
|
2010-08-24 17:26:51 +00:00
|
|
|
AddHelpVersionInfoMenuEntry( helpMenu );
|
|
|
|
|
2011-05-16 19:32:57 +00:00
|
|
|
// Contents
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( helpMenu,
|
|
|
|
wxID_HELP,
|
|
|
|
_( "&Contents" ),
|
2011-09-30 18:15:37 +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
|
|
|
|
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,
|
2011-09-30 18:15:37 +00:00
|
|
|
_( "&About Eeschema" ),
|
|
|
|
_( "About Eeschema schematic designer" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( info_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" ) );
|
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
|
|
|
}
|