kicad/pcbnew/menubar_pcbframe.cpp

685 lines
24 KiB
C++
Raw Normal View History

2010-01-17 20:25:10 +00:00
/**
* @file menubar_pcbframe.cpp
2010-01-17 20:25:10 +00:00
* PCBNew editor menu bar
*/
#include "fctsys.h"
#include "appl_wxstruct.h"
#include "common.h"
#include "pcbnew.h"
#include "wxPcbStruct.h"
#include "bitmaps.h"
#include "protos.h"
#include "hotkeys.h"
#include "pcbnew_id.h"
#include "macros.h"
2010-01-17 20:25:10 +00:00
#include "help_common_strings.h"
2010-01-17 20:25:10 +00:00
/**
* PCBNew mainframe menubar
*/
void PCB_EDIT_FRAME::ReCreateMenuBar()
2010-01-17 20:25:10 +00:00
{
wxString text;
wxMenuItem* item;
wxMenuBar* menuBar = GetMenuBar();
if( ! menuBar )
menuBar = new wxMenuBar();
2010-01-17 20:25:10 +00:00
// Delete all existing menus so they can be rebuilt.
// This allows language changes of the menu text on the fly.
menuBar->Freeze();
while( menuBar->GetMenuCount() )
delete menuBar->Remove(0);
2010-01-17 20:25:10 +00:00
// Recreate all menus:
// Create File Menu
2010-01-17 20:25:10 +00:00
wxMenu* filesMenu = new wxMenu;
// New
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( filesMenu, ID_NEW_BOARD,
_( "&New" ),
_( "Clear current board and initialize a new one" ) );
SET_BITMAP( new_xpm );
2010-01-17 20:25:10 +00:00
filesMenu->Append( item );
// Open
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( filesMenu, ID_LOAD_FILE,
_( "&Open\tCtrl+O" ),
_( "Delete current board and load new board" ) );
SET_BITMAP( open_document_xpm );
2010-01-17 20:25:10 +00:00
filesMenu->Append( item );
// Load Recent submenu
2011-04-17 13:54:17 +00:00
static wxMenu* openRecentMenu;
// Add this menu to list menu managed by m_fileHistory
// (the file history will be updated when adding/removing files in history
if( openRecentMenu )
wxGetApp().m_fileHistory.RemoveMenu( openRecentMenu );
openRecentMenu = new wxMenu();
wxGetApp().m_fileHistory.UseMenu( openRecentMenu );
wxGetApp().m_fileHistory.AddFilesToMenu();
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( filesMenu, openRecentMenu,
-1, _( "Open &Recent" ),
2010-10-28 18:30:31 +00:00
_( "Open a recent opened board" ),
open_project_xpm );
// PCBNew Board
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( filesMenu, ID_APPEND_FILE,
_( "&Append Board" ),
_( "Append another PCBNew board to the current loaded board" ) );
SET_BITMAP( import_xpm );
filesMenu->Append( item );
// Separator
filesMenu->AppendSeparator();
2010-01-17 20:25:10 +00:00
// Save
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( filesMenu, ID_SAVE_BOARD,
_( "&Save\tCtrl+S" ),
_( "Save current board" ) );
SET_BITMAP( save_xpm );
2010-01-17 20:25:10 +00:00
filesMenu->Append( item );
// Save As
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( filesMenu, ID_SAVE_BOARD_AS,
_( "Save as..." ),
_( "Save the current board as.." ) );
SET_BITMAP( save_as_xpm );
2010-01-17 20:25:10 +00:00
filesMenu->Append( item );
filesMenu->AppendSeparator();
// Revert
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( filesMenu, ID_MENU_READ_LAST_SAVED_VERSION_BOARD,
_( "&Revert" ),
_( "Clear board and get previous saved version of board" ) );
SET_BITMAP( jigsaw_xpm );
2010-01-17 20:25:10 +00:00
filesMenu->Append( item );
// Rescue
item = new wxMenuItem( filesMenu, ID_MENU_RECOVER_BOARD, _( "&Rescue" ),
_( "Clear old board and get last rescue file" ) );
SET_BITMAP( hammer_xpm );
filesMenu->Append( item );
2010-01-17 20:25:10 +00:00
filesMenu->AppendSeparator();
/* Fabrication Outputs submenu */
wxMenu* fabricationOutputsMenu = new wxMenu;
item = new wxMenuItem( fabricationOutputsMenu, ID_PCB_GEN_POS_MODULES_FILE,
_( "&Modules Position File" ),
_( "Generate modules position file for pick and place" ) );
SET_BITMAP( post_compo_xpm );
2010-01-17 20:25:10 +00:00
fabricationOutputsMenu->Append( item );
item = new wxMenuItem( fabricationOutputsMenu, ID_PCB_GEN_DRILL_FILE,
_( "&Drill File" ),
_( "Generate excellon2 drill file" ) );
SET_BITMAP( post_drill_xpm );
2010-01-17 20:25:10 +00:00
fabricationOutputsMenu->Append( item );
// Component File
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( fabricationOutputsMenu, ID_PCB_GEN_CMP_FILE,
_( "&Component File" ),
_( "(Re)create components file (*.cmp) for CvPcb" ) );
SET_BITMAP( create_cmp_file_xpm );
2010-01-17 20:25:10 +00:00
fabricationOutputsMenu->Append( item );
// BOM File
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( fabricationOutputsMenu, ID_PCB_GEN_BOM_FILE_FROM_BOARD,
_( "&BOM File" ),
_( "Create a bill of materials from schematic" ) );
SET_BITMAP( tools_xpm );
2010-01-17 20:25:10 +00:00
fabricationOutputsMenu->Append( item );
// Fabrications Outputs submenu append
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( filesMenu, fabricationOutputsMenu,
-1, _( "Fabrication Outputs" ),
_( "Generate files for fabrication" ),
fabrication_xpm );
2010-01-17 20:25:10 +00:00
/** Import submenu **/
2010-01-17 20:25:10 +00:00
wxMenu* submenuImport = new wxMenu();
// Specctra Session
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( submenuImport, ID_GEN_IMPORT_SPECCTRA_SESSION,
_( "&Specctra Session" ),
_( "Import a routed \"Specctra Session\" (*.ses) file" ) );
SET_BITMAP( import_xpm ); // @todo need better bitmap
2010-01-17 20:25:10 +00:00
submenuImport->Append( item );
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( filesMenu, submenuImport,
ID_GEN_IMPORT_FILE, _( "Import" ),
_( "Import files" ), import_xpm );
/** Export submenu **/
2010-01-17 20:25:10 +00:00
wxMenu* submenuexport = new wxMenu();
// Specctra DSN
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( submenuexport, ID_GEN_EXPORT_SPECCTRA,
_( "&Specctra DSN" ),
_( "Export the current board to a \"Specctra DSN\" file" ) );
SET_BITMAP( export_xpm );
2010-01-17 20:25:10 +00:00
submenuexport->Append( item );
// GenCAD
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( submenuexport, ID_GEN_EXPORT_FILE_GENCADFORMAT,
_( "&GenCAD" ), _( "Export GenCAD format" ) );
SET_BITMAP( export_xpm );
2010-01-17 20:25:10 +00:00
submenuexport->Append( item );
// Module Report
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( submenuexport, ID_GEN_EXPORT_FILE_MODULE_REPORT,
_( "&Module Report" ),
_( "Create a report of all modules on the current board" ) );
SET_BITMAP( tools_xpm );
2010-01-17 20:25:10 +00:00
submenuexport->Append( item );
// VRML
item = new wxMenuItem( submenuexport, ID_GEN_EXPORT_FILE_VRML,
_( "&VRML" ),
_( "Export a VRML board representation" ) );
SET_BITMAP( three_d_xpm );
submenuexport->Append( item );
2010-01-17 20:25:10 +00:00
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( filesMenu, submenuexport,
ID_GEN_EXPORT_FILE, _( "&Export" ),
_( "Export board" ), export_xpm );
filesMenu->AppendSeparator();
// Page settings
item = new wxMenuItem( filesMenu, ID_SHEET_SET,
_( "&Page settings" ),
_( "Page settings for paper size and texts" ) );
SET_BITMAP( sheetset_xpm );
filesMenu->Append( item );
// Print
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( filesMenu, wxID_PRINT,
_( "&Print\tCtrl+P" ),
_( "Print board" ) );
SET_BITMAP( print_button );
2010-01-17 20:25:10 +00:00
filesMenu->Append( item );
// Create SVG file
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( filesMenu, ID_GEN_PLOT_SVG,
_( "Print S&VG" ),
_( "Plot board in Scalable Vector Graphics format" ) );
SET_BITMAP( print_button );
2010-01-17 20:25:10 +00:00
filesMenu->Append( item );
// Plot
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( filesMenu, ID_GEN_PLOT,
_( "&Plot" ),
_( "Plot board in HPGL, PostScript or Gerber RS-274X format)" ) );
SET_BITMAP( plot_xpm );
2010-01-17 20:25:10 +00:00
filesMenu->Append( item );
filesMenu->AppendSeparator();
2010-10-28 18:30:31 +00:00
2010-01-17 20:25:10 +00:00
wxMenu* submenuarchive = new wxMenu();
2010-10-28 18:30:31 +00:00
// Archive New Footprints
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( submenuarchive, ID_MENU_ARCHIVE_NEW_MODULES,
_( "Archive New Footprints" ),
_( "Archive new footprints only in a library (keep other footprints in this lib)" ) );
SET_BITMAP( library_update_xpm );
2010-01-17 20:25:10 +00:00
submenuarchive->Append( item );
2010-10-28 18:30:31 +00:00
// Create FootPrint Archive
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( submenuarchive, ID_MENU_ARCHIVE_ALL_MODULES,
_( "Create Footprint Archive" ),
_( "Archive all footprints in a library (old library will be deleted)" ) );
SET_BITMAP( library_xpm );
2010-01-17 20:25:10 +00:00
submenuarchive->Append( item );
2010-10-28 18:30:31 +00:00
2010-01-17 20:25:10 +00:00
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( filesMenu, submenuarchive,
ID_MENU_ARCHIVE_MODULES,
_( "Archive Footprints" ),
_( "Archive or add footprints in a library file" ),
library_xpm );
2010-10-28 18:30:31 +00:00
/* Quit */
2010-01-17 20:25:10 +00:00
filesMenu->AppendSeparator();
item = new wxMenuItem( filesMenu, wxID_EXIT, _( "&Quit" ), _( "Quit PCBNew" ) );
SET_BITMAP( exit_xpm );
2010-01-17 20:25:10 +00:00
filesMenu->Append( item );
/** Create Edit menu **/
2010-01-17 20:25:10 +00:00
wxMenu* editMenu = new wxMenu;
// Undo
text = AddHotkeyName( _( "Undo" ), g_Pcbnew_Editor_Hokeys_Descr, HK_UNDO );
item = new wxMenuItem( editMenu, wxID_UNDO, text,
HELP_UNDO, wxITEM_NORMAL );
SET_BITMAP( undo_xpm );
2010-01-17 20:25:10 +00:00
editMenu->Append( item );
// Redo
text = AddHotkeyName( _( "Redo" ), g_Pcbnew_Editor_Hokeys_Descr, HK_REDO );
item = new wxMenuItem( editMenu, wxID_REDO, text,
HELP_REDO, wxITEM_NORMAL );
SET_BITMAP( redo_xpm );
2010-01-17 20:25:10 +00:00
editMenu->Append( item );
// Delete
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( editMenu, ID_PCB_DELETE_ITEM_BUTT,
_( "Delete" ),
_( "Delete items" ) );
SET_BITMAP( delete_body_xpm );
2010-10-28 18:30:31 +00:00
editMenu->Append( item );
2010-01-17 20:25:10 +00:00
editMenu->AppendSeparator();
// Find
text = AddHotkeyName( _( "&Find" ), g_Pcbnew_Editor_Hokeys_Descr, HK_FIND_ITEM );
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( editMenu, ID_FIND_ITEMS,
text, HELP_FIND );
SET_BITMAP( find_xpm );
2010-01-17 20:25:10 +00:00
editMenu->Append( item );
editMenu->AppendSeparator();
// Global Deletions
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( editMenu, ID_PCB_GLOBAL_DELETE,
_( "Global &Deletions" ),
_( "Delete tracks, modules, texts... on board" ) );
SET_BITMAP( general_deletions_xpm );
2010-01-17 20:25:10 +00:00
editMenu->Append( item );
// Cleanup Tracks and Vias
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( editMenu, ID_MENU_PCB_CLEAN,
_( "&Cleanup Tracks and Vias" ),
_( "Clean stubs, vias, delete break points, or connect dangling tracks to pads and vias" ) );
SET_BITMAP( delete_body_xpm );
2010-01-17 20:25:10 +00:00
editMenu->Append( item );
// Swap Layers
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( editMenu, ID_MENU_PCB_SWAP_LAYERS,
_( "&Swap Layers" ),
_( "Swap tracks on copper layers or drawings on other layers" ) );
SET_BITMAP( swap_layer_xpm );
2010-01-17 20:25:10 +00:00
editMenu->Append( item );
// Reset module reference sizes
item = new wxMenuItem( editMenu,
ID_MENU_PCB_RESET_TEXTMODULE_REFERENCE_SIZES,
_( "Reset Module &Reference Sizes" ),
_( "Reset text size and width of all module references to current defaults" ) );
SET_BITMAP( reset_text_xpm );
editMenu->Append( item );
// Reset module value sizes
item = new wxMenuItem( editMenu,
ID_MENU_PCB_RESET_TEXTMODULE_VALUE_SIZES,
_( "Reset Module &Value Sizes" ),
_( "Reset text size and width of all module values to current defaults" ) );
SET_BITMAP( reset_text_xpm );
editMenu->Append( item );
2010-01-17 20:25:10 +00:00
/** Create View menu **/
2010-01-17 20:25:10 +00:00
wxMenu* viewMenu = new wxMenu;
/* Important Note for ZOOM IN and ZOOM OUT commands from menubar:
* 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
* 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)
*
* in other words HK_ZOOM_IN and HK_ZOOM_OUT *are NOT* accelerators
* for Zoom in and Zoom out sub menus
*/
// Zoom In
text = AddHotkeyName( _( "Zoom In" ), g_Pcbnew_Editor_Hokeys_Descr,
2010-10-28 19:50:12 +00:00
HK_ZOOM_IN, false );
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( viewMenu, ID_ZOOM_IN, text,
HELP_ZOOM_IN, wxITEM_NORMAL );
SET_BITMAP( zoom_in_xpm );
2010-01-17 20:25:10 +00:00
viewMenu->Append( item );
// Zoom Out
text = AddHotkeyName( _( "Zoom Out" ), g_Pcbnew_Editor_Hokeys_Descr,
2010-10-28 19:50:12 +00:00
HK_ZOOM_OUT, false );
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( viewMenu, ID_ZOOM_OUT, text,
HELP_ZOOM_OUT, wxITEM_NORMAL );
SET_BITMAP( zoom_out_xpm );
2010-01-17 20:25:10 +00:00
viewMenu->Append( item );
// Fit on Screen
text = AddHotkeyName( _( "Fit on Screen" ), g_Pcbnew_Editor_Hokeys_Descr,
HK_ZOOM_AUTO );
2010-01-18 19:33:45 +00:00
item = new wxMenuItem( viewMenu, ID_ZOOM_PAGE, text,
HELP_ZOOM_FIT, wxITEM_NORMAL );
SET_BITMAP( zoom_fit_in_page_xpm );
2010-01-17 20:25:10 +00:00
viewMenu->Append( item );
viewMenu->AppendSeparator();
// Redraw
text = AddHotkeyName( _( "Redraw" ), g_Pcbnew_Editor_Hokeys_Descr,
HK_ZOOM_REDRAW );
2010-01-18 19:33:45 +00:00
item = new wxMenuItem( viewMenu, ID_ZOOM_REDRAW, text,
HELP_ZOOM_REDRAW,
2010-01-17 20:25:10 +00:00
wxITEM_NORMAL );
SET_BITMAP( zoom_redraw_xpm );
2010-01-17 20:25:10 +00:00
viewMenu->Append( item );
viewMenu->AppendSeparator();
// 3D Display
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( viewMenu, ID_MENU_PCB_SHOW_3D_FRAME,
_( "3D Display" ),
_( "Show board in 3D viewer" ) );
SET_BITMAP( three_d_xpm );
2010-10-28 18:30:31 +00:00
viewMenu->Append( item );
// List Nets
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( viewMenu, ID_MENU_LIST_NETS,
_( "&List Nets" ),
_( "View a list of nets with names and id's" ) );
SET_BITMAP( tools_xpm );
2010-01-17 20:25:10 +00:00
viewMenu->Append( item );
2010-10-28 18:30:31 +00:00
/** Create Place Menu **/
2010-10-28 18:30:31 +00:00
wxMenu* placeMenu = new wxMenu;
// Module
text = AddHotkeyName( _( "Module" ), g_Pcbnew_Editor_Hokeys_Descr, HK_ADD_MODULE, false );
item = new wxMenuItem( placeMenu, ID_PCB_MODULE_BUTT, text,
_( "Add modules" ), wxITEM_NORMAL );
2010-10-28 18:30:31 +00:00
SET_BITMAP( module_xpm );
2010-10-28 18:30:31 +00:00
placeMenu->Append( item );
// Track
text = AddHotkeyName( _( "Track" ), g_Pcbnew_Editor_Hokeys_Descr,
HK_ADD_NEW_TRACK, false );
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( placeMenu, ID_TRACK_BUTT, text,
_( "Add tracks and vias" ), wxITEM_NORMAL );
2010-10-28 18:30:31 +00:00
SET_BITMAP( add_tracks_xpm );
2010-10-28 18:30:31 +00:00
placeMenu->Append( item );
// Zone
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( placeMenu, ID_PCB_ZONES_BUTT,
_( "Zone" ),
_( "Add filled zones" ));
SET_BITMAP( add_zone_xpm );
2010-10-28 18:30:31 +00:00
placeMenu->Append( item );
// Text
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( placeMenu, ID_PCB_ADD_TEXT_BUTT,
_( "Text" ),
_( "Add text on copper layers or graphic text" ) );
SET_BITMAP( add_text_xpm );
2010-10-28 18:30:31 +00:00
placeMenu->Append( item );
// Graphic Arc
item = new wxMenuItem( placeMenu, ID_PCB_ARC_BUTT,
2010-10-28 18:30:31 +00:00
_( "Arc" ),
_( "Add graphic arc" ) );
SET_BITMAP( add_arc_xpm );
placeMenu->Append( item );
2010-10-28 18:30:31 +00:00
// Graphic Circle
item = new wxMenuItem( placeMenu, ID_PCB_CIRCLE_BUTT,
2010-10-28 18:30:31 +00:00
_( "Circle" ),
_( "Add graphic circle" ));
SET_BITMAP( add_circle_xpm );
placeMenu->Append( item );
2010-10-28 18:30:31 +00:00
// Line or Polygon
item = new wxMenuItem( placeMenu, ID_PCB_ADD_LINE_BUTT,
2010-10-28 18:30:31 +00:00
_( "Line or Polygon" ),
_( "Add graphic line or polygon" ));
SET_BITMAP( add_dashed_line_xpm );
placeMenu->Append( item );
2010-10-28 18:30:31 +00:00
placeMenu->AppendSeparator();
// Dimension
item = new wxMenuItem( placeMenu, ID_PCB_DIMENSION_BUTT,
_( "Dimension" ),
_( "Add dimension" ) );
SET_BITMAP( add_dimension_xpm );
placeMenu->Append( item );
// Layer alignment target
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( placeMenu, ID_PCB_MIRE_BUTT,
_( "Layer alignment target" ),
_( "Add layer alignment target" ));
SET_BITMAP( add_mires_xpm );
2010-10-28 18:30:31 +00:00
placeMenu->Append( item );
placeMenu->AppendSeparator();
2010-10-28 18:30:31 +00:00
// Drill & Place Offset
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( placeMenu, ID_PCB_PLACE_OFFSET_COORD_BUTT,
_( "Drill and Place Offset" ),
_( "Place the origin point for drill and place files" ));
SET_BITMAP( pcb_offset_xpm );
2010-10-28 18:30:31 +00:00
placeMenu->Append( item );
// Grid Origin
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( placeMenu, ID_PCB_PLACE_GRID_COORD_BUTT,
_( "Grid Origin" ),
_( "Set the origin point for the grid" ));
SET_BITMAP( grid_select_axis_xpm );
2010-10-28 18:30:31 +00:00
placeMenu->Append( item );
2010-01-17 20:25:10 +00:00
/** Create Preferences and configuration menu **/
2010-01-17 20:25:10 +00:00
wxMenu* configmenu = new wxMenu;
// Library
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( configmenu, ID_CONFIG_REQ,
_( "&Library" ),
_( "Setting libraries, directories and others..." ) );
SET_BITMAP( library_xpm );
2010-01-17 20:25:10 +00:00
configmenu->Append( item );
// Colors and Visibility are also handled by the layers manager toolbar
item = new wxMenuItem( configmenu, ID_MENU_PCB_SHOW_HIDE_LAYERS_MANAGER_DIALOG,
2011-03-03 19:08:13 +00:00
m_show_layer_manager_tools ?
_( "Hide &Layers Manager" ) : _("Show &Layers Manager" ),
HELP_SHOW_HIDE_LAYERMANAGER );
SET_BITMAP( layers_manager_xpm );
2010-01-17 20:25:10 +00:00
configmenu->Append( item );
// General
item = new wxMenuItem( configmenu, wxID_PREFERENCES,
#ifdef __WXMAC__
_( "&Preferences..." ),
#else
2010-10-28 18:30:31 +00:00
_( "&General" ),
#endif
_( "Select general options for PCBnew" ) );
SET_BITMAP( preference_xpm );
2010-01-17 20:25:10 +00:00
configmenu->Append( item );
// Display
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( configmenu, ID_PCB_DISPLAY_OPTIONS_SETUP,
_( "&Display" ),
_( "Select how items (pads, tracks texts ... ) are displayed" ) );
SET_BITMAP( display_options_xpm );
2010-01-17 20:25:10 +00:00
configmenu->Append( item );
// Create Dimensions submenu
2010-01-17 20:25:10 +00:00
wxMenu* dimensionsMenu = new wxMenu;
// Grid
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( dimensionsMenu, ID_PCB_USER_GRID_SETUP,
_( "Grid" ),
_( "Adjust user grid dimensions" ) );
SET_BITMAP( grid_xpm );
2010-01-17 20:25:10 +00:00
dimensionsMenu->Append( item );
// Text and Drawings
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( dimensionsMenu, ID_PCB_DRAWINGS_WIDTHS_SETUP,
_( "Texts and Drawings" ),
_( "Adjust dimensions for texts and drawings" ) );
SET_BITMAP( options_text_xpm );
2010-01-17 20:25:10 +00:00
dimensionsMenu->Append( item );
// Pads
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( dimensionsMenu, ID_PCB_PAD_SETUP,
_( "Pads" ),
_( "Adjust default pad characteristics" ) );
SET_BITMAP( pad_xpm );
2010-01-17 20:25:10 +00:00
dimensionsMenu->Append( item );
// Pads Mask Clearance
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( dimensionsMenu, ID_PCB_MASK_CLEARANCE,
_( "Pads Mask Clearance" ),
_( "Adjust the global clearance between pads and the solder resist mask" ) );
SET_BITMAP( pads_mask_layers_xpm );
2010-01-17 20:25:10 +00:00
dimensionsMenu->Append( item );
// Save dimension preferences
2010-01-17 20:25:10 +00:00
dimensionsMenu->AppendSeparator();
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( dimensionsMenu, ID_CONFIG_SAVE,
_( "&Save" ),
_( "Save dimension preferences" ) );
SET_BITMAP( save_xpm );
2010-01-17 20:25:10 +00:00
dimensionsMenu->Append( item );
// Append dimension menu to config menu
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( configmenu, dimensionsMenu,
-1, _( "Di&mensions" ),
_( "Global dimensions preferences" ),
add_dimension_xpm );
2010-01-17 20:25:10 +00:00
// Language submenu
2010-01-17 20:25:10 +00:00
wxGetApp().AddMenuLanguageList( configmenu );
// Hotkey submenu
2010-01-17 20:25:10 +00:00
AddHotkeyConfigMenu( configmenu );
configmenu->AppendSeparator();
// Save Preferences
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( configmenu, ID_CONFIG_SAVE,
_( "&Save Preferences" ),
_( "Save application preferences" ) );
SET_BITMAP( save_setup_xpm );
2010-01-17 20:25:10 +00:00
configmenu->Append( item );
// Read Preferences
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( configmenu, ID_CONFIG_READ,
_( "&Read Preferences" ),
_( "Read application preferences" ) );
SET_BITMAP( read_setup_xpm );
2010-01-17 20:25:10 +00:00
configmenu->Append( item );
/**
* Tools menu
*/
wxMenu* toolsMenu = new wxMenu;
/* Netlist */
item = new wxMenuItem( toolsMenu, ID_GET_NETLIST,
_( "Netlist" ),
2011-07-03 18:51:07 +00:00
_( "Read the netlist and update board connectivity" ) );
SET_BITMAP( netlist_xpm );
toolsMenu->Append( item );
/* Layer pair */
item = new wxMenuItem( toolsMenu, ID_AUX_TOOLBAR_PCB_SELECT_LAYER_PAIR,
_( "Layer Pair" ),
_( "Change the active layer pair" ) );
SET_BITMAP( web_support_xpm );
toolsMenu->Append( item );
/* DRC */
item = new wxMenuItem( toolsMenu, ID_DRC_CONTROL,
_( "DRC" ),
_( "Perform design rules check" ) );
SET_BITMAP( erc_xpm );
toolsMenu->Append( item );
/* FreeRoute */
item = new wxMenuItem( toolsMenu, ID_TOOLBARH_PCB_FREEROUTE_ACCESS,
_( "FreeRoute" ),
_( "Fast access to the Web Based FreeROUTE advanced router" ) );
SET_BITMAP( web_support_xpm );
toolsMenu->Append( item );
2010-01-17 20:25:10 +00:00
/**
* Design Rules menu
*/
2010-01-17 20:25:10 +00:00
wxMenu* designRulesMenu = new wxMenu;
// Design Rules
2010-01-17 20:25:10 +00:00
item = new wxMenuItem( designRulesMenu, ID_MENU_PCB_SHOW_DESIGN_RULES_DIALOG,
_( "Design Rules" ),
_( "Open the design rules editor" ) );
SET_BITMAP( hammer_xpm );
2010-01-17 20:25:10 +00:00
designRulesMenu->Append( item );
// Layers Setup
2010-10-28 18:30:31 +00:00
item = new wxMenuItem( configmenu, ID_PCB_LAYERS_SETUP,
_( "&Layers Setup" ),
_( "Enable and set layer properties" ) );
SET_BITMAP( copper_layers_setup_xpm );
2010-01-17 20:25:10 +00:00
designRulesMenu->Append( item );
/**
* Help menu
*/
wxMenu* helpMenu = new wxMenu;
AddHelpVersionInfoMenuEntry( helpMenu );
// Contents
ADD_MENUITEM_WITH_HELP( helpMenu,
wxID_HELP,
_( "&Contents" ),
_( "Open the PCBNew handbook" ),
online_help_xpm );
ADD_MENUITEM_WITH_HELP( helpMenu,
wxID_INDEX,
_( "&Getting Started in KiCad" ),
_( "Open the \"Getting Started in KiCad\" guide for beginners" ),
help_xpm );
2010-01-17 20:25:10 +00:00
// About
helpMenu->AppendSeparator();
ADD_MENUITEM_WITH_HELP( helpMenu, wxID_ABOUT,
_( "&About PCBNew" ),
_( "About PCBnew printed circuit board designer" ),
info_xpm );
2010-10-28 18:30:31 +00:00
2010-01-17 20:25:10 +00:00
/**
* Append all menus to the menuBar
*/
menuBar->Append( filesMenu, _( "&File" ) );
menuBar->Append( editMenu, _( "&Edit" ) );
2010-01-17 20:25:10 +00:00
menuBar->Append( viewMenu, _( "&View" ) );
2010-10-28 18:30:31 +00:00
menuBar->Append( placeMenu, _( "&Place" ) );
2010-01-17 20:25:10 +00:00
menuBar->Append( configmenu, _( "&Preferences" ) );
menuBar->Append( toolsMenu, _( "&Tools" ) );
2010-01-17 20:25:10 +00:00
menuBar->Append( designRulesMenu, _( "&Design Rules" ) );
menuBar->Append( helpMenu, _( "&Help" ) );
menuBar->Thaw();
// Associate the menu bar with the frame, if no previous menubar
if( GetMenuBar() == NULL )
SetMenuBar( menuBar );
else
menuBar->Refresh();
2010-01-17 20:25:10 +00:00
}