menu cleaning and changing obscure menu info. and menu labels
files cleaning
This commit is contained in:
parent
73f83c0509
commit
04f41a4a7b
|
@ -19,8 +19,9 @@ set(BITMAP_SRCS
|
||||||
Add_Circle.xpm
|
Add_Circle.xpm
|
||||||
Add_Component.xpm
|
Add_Component.xpm
|
||||||
Add_Corner.xpm
|
Add_Corner.xpm
|
||||||
add_cotation.xpm
|
add_dimension.xpm
|
||||||
Add_Dashed_Line.xpm
|
Add_Dashed_Line.xpm
|
||||||
|
add_dimension.xpm
|
||||||
Add_Entry.xpm
|
Add_Entry.xpm
|
||||||
Add_GLabel.xpm
|
Add_GLabel.xpm
|
||||||
add_hierarchical_label.xpm
|
add_hierarchical_label.xpm
|
||||||
|
@ -146,6 +147,7 @@ set(BITMAP_SRCS
|
||||||
Hidden_Pin.xpm
|
Hidden_Pin.xpm
|
||||||
Hierarchy_cursor.xpm
|
Hierarchy_cursor.xpm
|
||||||
Hierarchy_Nav.xpm
|
Hierarchy_Nav.xpm
|
||||||
|
hotkeys.xpm
|
||||||
icon_3d.xpm
|
icon_3d.xpm
|
||||||
icon_cvpcb_small.xpm
|
icon_cvpcb_small.xpm
|
||||||
icon_cvpcb.xpm
|
icon_cvpcb.xpm
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
/* XPM */
|
/* XPM */
|
||||||
#ifndef XPMMAIN
|
const char * add_dimension_xpm[] = {
|
||||||
extern const char* add_cotation_xpm[];
|
/* columns rows colors const chars-per-pixel */
|
||||||
#else
|
|
||||||
const char * add_cotation_xpm[] = {
|
|
||||||
"16 16 14 1",
|
"16 16 14 1",
|
||||||
" c None",
|
" c None",
|
||||||
". c #000000",
|
". c #000000",
|
||||||
|
@ -34,5 +32,3 @@ const char * add_cotation_xpm[] = {
|
||||||
"+ + ",
|
"+ + ",
|
||||||
"+ + ",
|
"+ + ",
|
||||||
" "};
|
" "};
|
||||||
|
|
||||||
#endif
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
/* XPM */
|
||||||
|
const char *hotkeys_xpm[] = {
|
||||||
|
/* columns rows colors chars-per-pixel */
|
||||||
|
"16 16 15 1",
|
||||||
|
"@ c #AFB0AB",
|
||||||
|
"O c #A5A5A2",
|
||||||
|
"X c #BCBFBB",
|
||||||
|
"% c #E7E9E6",
|
||||||
|
". c #C4C4C4",
|
||||||
|
"= c #DEDFDD",
|
||||||
|
"* c #FCFAFC",
|
||||||
|
"; c #94928D",
|
||||||
|
" c None",
|
||||||
|
"+ c #9C9A94",
|
||||||
|
"& c #F1F3EF",
|
||||||
|
"$ c #B6B8B3",
|
||||||
|
"- c #D4D3CF",
|
||||||
|
"# c #ACAAAC",
|
||||||
|
"o c #B4B2B4",
|
||||||
|
/* pixels */
|
||||||
|
" ",
|
||||||
|
" ",
|
||||||
|
" . ",
|
||||||
|
" ......XoOO+@ ",
|
||||||
|
" Xoo##o$. O. ",
|
||||||
|
" @O ",
|
||||||
|
" XOo ",
|
||||||
|
" .OX ",
|
||||||
|
" OO@@@$$$$$$XX ",
|
||||||
|
"XX%%&&****&%%o. ",
|
||||||
|
"O =.- --.==.=X# ",
|
||||||
|
"+-=========%=-+ ",
|
||||||
|
"+;;;;;;;;;;;;;O ",
|
||||||
|
" ",
|
||||||
|
" ",
|
||||||
|
" "
|
||||||
|
};
|
|
@ -62,7 +62,7 @@ set(PCB_COMMON_SRCS
|
||||||
../pcbnew/class_board_connected_item.cpp
|
../pcbnew/class_board_connected_item.cpp
|
||||||
../pcbnew/class_board_design_settings.cpp
|
../pcbnew/class_board_design_settings.cpp
|
||||||
../pcbnew/class_board_item.cpp
|
../pcbnew/class_board_item.cpp
|
||||||
../pcbnew/class_cotation.cpp
|
../pcbnew/class_dimension.cpp
|
||||||
../pcbnew/class_drawsegment.cpp
|
../pcbnew/class_drawsegment.cpp
|
||||||
../pcbnew/class_drc_item.cpp
|
../pcbnew/class_drc_item.cpp
|
||||||
../pcbnew/class_edge_mod.cpp
|
../pcbnew/class_edge_mod.cpp
|
||||||
|
|
|
@ -615,25 +615,25 @@ wxString ReturnHotkeyConfigFilePath( int choice )
|
||||||
/** add hotkey config options submenu to a menu
|
/** add hotkey config options submenu to a menu
|
||||||
* @param menu : initial menu
|
* @param menu : initial menu
|
||||||
*/
|
*/
|
||||||
void AddHotkeyConfigMenu( wxMenu* menu )
|
void AddHotkeyConfigMenu( wxMenu* aMenu )
|
||||||
{
|
{
|
||||||
|
if( aMenu == NULL )
|
||||||
|
return;
|
||||||
|
|
||||||
wxMenuItem* item;
|
wxMenuItem* item;
|
||||||
wxMenu* HotkeySubmenu = new wxMenu();
|
wxMenu* HotkeySubmenu = new wxMenu();
|
||||||
|
|
||||||
if( menu == NULL )
|
/* List existing hotkey menu*/
|
||||||
return;
|
|
||||||
|
|
||||||
/* Show hotkey configuration */
|
|
||||||
item = new wxMenuItem( HotkeySubmenu,
|
item = new wxMenuItem( HotkeySubmenu,
|
||||||
ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST,
|
ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST,
|
||||||
_( "Show" ),
|
_( "List Current Keys" ),
|
||||||
_( "Show the current hotkey configuration" ) );
|
_( "Displays the current hotkeys list and corresponding commands" ) );
|
||||||
item->SetBitmap( info_xpm );
|
item->SetBitmap( info_xpm );
|
||||||
HotkeySubmenu->Append( item );
|
HotkeySubmenu->Append( item );
|
||||||
|
|
||||||
/* (Re)create hotkey file */
|
/* (Re)create hotkey file */
|
||||||
item = new wxMenuItem( HotkeySubmenu, ID_PREFERENCES_HOTKEY_CREATE_CONFIG,
|
item = new wxMenuItem( HotkeySubmenu, ID_PREFERENCES_HOTKEY_CREATE_CONFIG,
|
||||||
_( "(Re)create" ),
|
_( "(Re)create Hotkeys File" ),
|
||||||
_( "Create or recreate the hotkey configuration file from current hotkey list" )
|
_( "Create or recreate the hotkey configuration file from current hotkey list" )
|
||||||
);
|
);
|
||||||
item->SetBitmap( save_setup_xpm );
|
item->SetBitmap( save_setup_xpm );
|
||||||
|
@ -641,23 +641,22 @@ void AddHotkeyConfigMenu( wxMenu* menu )
|
||||||
|
|
||||||
/* Reload hotkey file */
|
/* Reload hotkey file */
|
||||||
item = new wxMenuItem( HotkeySubmenu, ID_PREFERENCES_HOTKEY_READ_CONFIG,
|
item = new wxMenuItem( HotkeySubmenu, ID_PREFERENCES_HOTKEY_READ_CONFIG,
|
||||||
_( "Reload" ),
|
_( "Reload Hotkeys File" ),
|
||||||
_( "Reload the hotkey configuration file" ) );
|
_( "Reload the hotkey configuration file" ) );
|
||||||
item->SetBitmap( reload_xpm );
|
item->SetBitmap( reload_xpm );
|
||||||
HotkeySubmenu->Append( item );
|
HotkeySubmenu->Append( item );
|
||||||
|
|
||||||
/* Edit hotkey file */
|
/* Edit hotkey file */
|
||||||
item = new wxMenuItem( HotkeySubmenu, ID_PREFERENCES_HOTKEY_EDIT_CONFIG,
|
item = new wxMenuItem( HotkeySubmenu, ID_PREFERENCES_HOTKEY_EDIT_CONFIG,
|
||||||
_( "Edit" ),
|
_( "Edit Hotkeys File" ),
|
||||||
_( "Edit the hotkey configuration file in a text editor" ) );
|
_( "Edit the hotkey configuration file in a text editor" ) );
|
||||||
item->SetBitmap( editor_xpm );
|
item->SetBitmap( editor_xpm );
|
||||||
HotkeySubmenu->Append( item );
|
HotkeySubmenu->Append( item );
|
||||||
|
|
||||||
/* Append HotkeySubmenu to menu */
|
/* Append HotkeySubmenu to menu */
|
||||||
menu->Append( ID_PREFERENCES_HOTKEY_SUBMENU,
|
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( aMenu, HotkeySubmenu,
|
||||||
_("Hotkey"),
|
ID_PREFERENCES_HOTKEY_SUBMENU, _( "Hotkeys" ),
|
||||||
HotkeySubmenu,
|
_("Hotkeys configuration and preferences" ), hotkeys_xpm );
|
||||||
_("Hotkey configuration and preferences"));
|
|
||||||
|
|
||||||
/* Hotkey path */
|
/* Hotkey path */
|
||||||
wxMenu* HotkeyLocationSubmenu = new wxMenu();
|
wxMenu* HotkeyLocationSubmenu = new wxMenu();
|
||||||
|
|
|
@ -40,10 +40,8 @@ void WinEDA_DrawFrame::Recadre_Trace( bool ToMouse )
|
||||||
|
|
||||||
/* Move the mouse cursor to the on grid graphic cursor position */
|
/* Move the mouse cursor to the on grid graphic cursor position */
|
||||||
if( ToMouse == TRUE )
|
if( ToMouse == TRUE )
|
||||||
{
|
|
||||||
DrawPanel->MouseToCursorSchema();
|
DrawPanel->MouseToCursorSchema();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/** Adjust the coordinate to the nearest grid value
|
/** Adjust the coordinate to the nearest grid value
|
||||||
|
|
|
@ -510,12 +510,15 @@ bool CMP_LIBRARY::Load( wxString& aErrorMsg )
|
||||||
|| !vers.GetNextToken().ToLong( & minor ) || minor < 0L
|
|| !vers.GetNextToken().ToLong( & minor ) || minor < 0L
|
||||||
|| minor > 99 )
|
|| minor > 99 )
|
||||||
{
|
{
|
||||||
wxLogWarning( _( "The component library <%s> header version \
|
#if 0 // Note for defeloppers:
|
||||||
|
// Not sure this warning is very useful: old designs *must* be always loadable
|
||||||
|
wxLogWarning( wxT( "The component library <%s> header version \
|
||||||
number is invalid.\n\nIn future versions of EESchema this library may not \
|
number is invalid.\n\nIn future versions of EESchema this library may not \
|
||||||
load correctly. To resolve this problem open the library in the library \
|
load correctly. To resolve this problem open the library in the library \
|
||||||
editor and save it. If this library is the project cache library, save \
|
editor and save it. If this library is the project cache library, save \
|
||||||
the current schematic." ),
|
the current schematic." ),
|
||||||
GetChars( GetName() ) );
|
GetChars( GetName() ) );
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -52,25 +52,31 @@ void WinEDA_SchematicFrame::ReCreateMenuBar()
|
||||||
/* Open Recent submenu */
|
/* Open Recent submenu */
|
||||||
wxMenu* openRecentMenu = new wxMenu();
|
wxMenu* openRecentMenu = new wxMenu();
|
||||||
wxGetApp().m_fileHistory.AddFilesToMenu( openRecentMenu );
|
wxGetApp().m_fileHistory.AddFilesToMenu( openRecentMenu );
|
||||||
filesMenu->AppendSubMenu( openRecentMenu, _( "Open &Recent" ),
|
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( filesMenu, openRecentMenu,
|
||||||
_( "Open a recent opened document" ) );
|
-1, _( "Open &Recent" ),
|
||||||
|
_("Open a recent opened schematic project" ), open_project_xpm );
|
||||||
|
|
||||||
item = new wxMenuItem( filesMenu, ID_SAVE_ONE_SHEET, _( "&Save" ),
|
// Save menus:
|
||||||
|
filesMenu->AppendSeparator();
|
||||||
|
|
||||||
|
// Normal save command:
|
||||||
|
item = new wxMenuItem( filesMenu, ID_SAVE_PROJECT, _( "&Save Whole Schematic Project" ),
|
||||||
|
_( "Save all sheets in the schematic project" ) );
|
||||||
|
item->SetBitmap( save_project_xpm );
|
||||||
|
filesMenu->Append( item );
|
||||||
|
|
||||||
|
// Save current sheet only
|
||||||
|
item = new wxMenuItem( filesMenu, ID_SAVE_ONE_SHEET, _( "&Save Current Sheet Only" ),
|
||||||
_( "Save only current schematic sheet" ) );
|
_( "Save only current schematic sheet" ) );
|
||||||
item->SetBitmap( save_xpm );
|
item->SetBitmap( save_xpm );
|
||||||
filesMenu->Append( item );
|
filesMenu->Append( item );
|
||||||
|
|
||||||
item = new wxMenuItem( filesMenu, ID_SAVE_ONE_SHEET_AS, _( "Save &as..." ),
|
// Save current sheet only and ask for a new name
|
||||||
|
item = new wxMenuItem( filesMenu, ID_SAVE_ONE_SHEET_AS, _( "Save Current Sheet &as..." ),
|
||||||
_( "Save current schematic sheet as..." ) );
|
_( "Save current schematic sheet as..." ) );
|
||||||
item->SetBitmap( save_as_xpm );
|
item->SetBitmap( save_as_xpm );
|
||||||
filesMenu->Append( item );
|
filesMenu->Append( item );
|
||||||
|
|
||||||
filesMenu->AppendSeparator();
|
|
||||||
item = new wxMenuItem( filesMenu, ID_SAVE_PROJECT, _( "&Save Project" ),
|
|
||||||
_( "Save all sheets in the schematic project" ) );
|
|
||||||
item->SetBitmap( save_project_xpm );
|
|
||||||
filesMenu->Append( item );
|
|
||||||
|
|
||||||
filesMenu->AppendSeparator();
|
filesMenu->AppendSeparator();
|
||||||
|
|
||||||
// Print and Plot section:
|
// Print and Plot section:
|
||||||
|
|
|
@ -12,8 +12,8 @@ extern const char* add_bus_xpm[];
|
||||||
extern const char* add_circle_xpm[];
|
extern const char* add_circle_xpm[];
|
||||||
extern const char* add_component_xpm[];
|
extern const char* add_component_xpm[];
|
||||||
extern const char* add_corner_xpm[];
|
extern const char* add_corner_xpm[];
|
||||||
extern const char* add_cotation_xpm[];
|
|
||||||
extern const char* add_dashed_line_xpm[];
|
extern const char* add_dashed_line_xpm[];
|
||||||
|
extern const char* add_dimension_xpm[];
|
||||||
extern const char* add_entry_xpm[];
|
extern const char* add_entry_xpm[];
|
||||||
extern const char* add_glabel_xpm[];
|
extern const char* add_glabel_xpm[];
|
||||||
extern const char* add_hierarchical_label_xpm[];
|
extern const char* add_hierarchical_label_xpm[];
|
||||||
|
@ -139,6 +139,7 @@ extern const char* help_xpm[];
|
||||||
extern const char* hidden_pin_xpm[];
|
extern const char* hidden_pin_xpm[];
|
||||||
extern const char* hierarchy_cursor_xpm[];
|
extern const char* hierarchy_cursor_xpm[];
|
||||||
extern const char* hierarchy_nav_xpm[];
|
extern const char* hierarchy_nav_xpm[];
|
||||||
|
extern const char* hotkeys_xpm[];
|
||||||
extern const char* icon_cvpcb_small_xpm[];
|
extern const char* icon_cvpcb_small_xpm[];
|
||||||
extern const char* icon_cvpcb_xpm[];
|
extern const char* icon_cvpcb_xpm[];
|
||||||
extern const char* icon_eeschema_xpm[];
|
extern const char* icon_eeschema_xpm[];
|
||||||
|
|
|
@ -225,7 +225,7 @@ enum DisplayViaMode {
|
||||||
|
|
||||||
#include "class_drawsegment.h"
|
#include "class_drawsegment.h"
|
||||||
#include "class_pcb_text.h"
|
#include "class_pcb_text.h"
|
||||||
#include "class_cotation.h"
|
#include "class_dimension.h"
|
||||||
#include "class_mire.h"
|
#include "class_mire.h"
|
||||||
#include "class_track.h"
|
#include "class_track.h"
|
||||||
#include "class_marker_pcb.h"
|
#include "class_marker_pcb.h"
|
||||||
|
|
Binary file not shown.
3222
internat/fr/kicad.po
3222
internat/fr/kicad.po
File diff suppressed because it is too large
Load Diff
|
@ -30,7 +30,7 @@ set(PCBNEW_SRCS
|
||||||
# cleaningoptions_dialog.cpp
|
# cleaningoptions_dialog.cpp
|
||||||
connect.cpp
|
connect.cpp
|
||||||
controle.cpp
|
controle.cpp
|
||||||
cotation.cpp
|
dimension.cpp
|
||||||
cross-probing.cpp
|
cross-probing.cpp
|
||||||
debug_kbool_key_file_fct.cpp
|
debug_kbool_key_file_fct.cpp
|
||||||
deltrack.cpp
|
deltrack.cpp
|
||||||
|
|
|
@ -292,7 +292,7 @@ const char** BOARD_ITEM::MenuIcon() const
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TYPE_COTATION:
|
case TYPE_COTATION:
|
||||||
xpm = add_cotation_xpm;
|
xpm = add_dimension_xpm;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TYPE_MIRE:
|
case TYPE_MIRE:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/*****************************/
|
/*****************************/
|
||||||
/* COTATION class definition */
|
/* COTATION class definition */
|
||||||
/*****************************/
|
/*****************************/
|
||||||
#ifndef COTATION_H
|
#ifndef DIMENSION_H
|
||||||
#define COTATION_H
|
#define DIMENSION_H
|
||||||
|
|
||||||
#include "base_struct.h"
|
#include "base_struct.h"
|
||||||
|
|
||||||
|
@ -130,4 +130,4 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // #define COTATION_H
|
#endif // #define DIMENSION_H
|
|
@ -15,8 +15,7 @@
|
||||||
/**
|
/**
|
||||||
* PCBNew mainframe menubar
|
* PCBNew mainframe menubar
|
||||||
*/
|
*/
|
||||||
void
|
void WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
WinEDA_PcbFrame::ReCreateMenuBar()
|
|
||||||
{
|
{
|
||||||
wxString text;
|
wxString text;
|
||||||
wxMenuItem* item;
|
wxMenuItem* item;
|
||||||
|
@ -31,7 +30,6 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
menuBar = new wxMenuBar();
|
menuBar = new wxMenuBar();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* File Menu
|
* File Menu
|
||||||
*/
|
*/
|
||||||
|
@ -39,7 +37,7 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
|
|
||||||
/* New Board */
|
/* New Board */
|
||||||
item = new wxMenuItem( filesMenu, ID_NEW_BOARD, _( "&New" ),
|
item = new wxMenuItem( filesMenu, ID_NEW_BOARD, _( "&New" ),
|
||||||
_( "Clear current board and initialize a new one" ));
|
_( "Clear current board and initialize a new one" ) );
|
||||||
item->SetBitmap( new_xpm );
|
item->SetBitmap( new_xpm );
|
||||||
filesMenu->Append( item );
|
filesMenu->Append( item );
|
||||||
|
|
||||||
|
@ -52,8 +50,19 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
/* Load Recent submenu */
|
/* Load Recent submenu */
|
||||||
wxMenu* openRecentMenu = new wxMenu();
|
wxMenu* openRecentMenu = new wxMenu();
|
||||||
wxGetApp().m_fileHistory.AddFilesToMenu( openRecentMenu );
|
wxGetApp().m_fileHistory.AddFilesToMenu( openRecentMenu );
|
||||||
filesMenu->AppendSubMenu( openRecentMenu, _( "Open &Recent" ),
|
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( filesMenu, openRecentMenu,
|
||||||
_("Open a recent opened document"));
|
-1, _( "Open &Recent" ),
|
||||||
|
_( "Open a recent opened board" ), open_project_xpm );
|
||||||
|
|
||||||
|
|
||||||
|
/* PCBNew Board */
|
||||||
|
item = new wxMenuItem( filesMenu, ID_APPEND_FILE, _( "&Append Board" ),
|
||||||
|
_( "Append a other PCBNew board to the current loaded board" ) );
|
||||||
|
item->SetBitmap( import_xpm );
|
||||||
|
filesMenu->Append( item );
|
||||||
|
|
||||||
|
/* Separator */
|
||||||
|
filesMenu->AppendSeparator();
|
||||||
|
|
||||||
/* Save */
|
/* Save */
|
||||||
item = new wxMenuItem( filesMenu, ID_SAVE_BOARD,
|
item = new wxMenuItem( filesMenu, ID_SAVE_BOARD,
|
||||||
|
@ -72,24 +81,23 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
/* Separator */
|
/* Separator */
|
||||||
filesMenu->AppendSeparator();
|
filesMenu->AppendSeparator();
|
||||||
|
|
||||||
|
/* Revert */
|
||||||
|
item = new wxMenuItem( filesMenu, ID_MENU_READ_LAST_SAVED_VERSION_BOARD,
|
||||||
|
_( "&Revert" ),
|
||||||
|
_( "Clear board and get previous saved version of board" ) );
|
||||||
|
item->SetBitmap( jigsaw_xpm );
|
||||||
|
filesMenu->Append( item );
|
||||||
|
|
||||||
/* Rescue */
|
/* Rescue */
|
||||||
item = new wxMenuItem( filesMenu, ID_MENU_RECOVER_BOARD, _( "&Rescue" ),
|
item = new wxMenuItem( filesMenu, ID_MENU_RECOVER_BOARD, _( "&Rescue" ),
|
||||||
_( "Clear old board and get last rescue file" ) );
|
_( "Clear old board and get last rescue file" ) );
|
||||||
item->SetBitmap( hammer_xpm );
|
item->SetBitmap( hammer_xpm );
|
||||||
filesMenu->Append( item );
|
filesMenu->Append( item );
|
||||||
|
|
||||||
/* Revert */
|
|
||||||
item = new wxMenuItem( filesMenu, ID_MENU_READ_LAST_SAVED_VERSION_BOARD,
|
|
||||||
_( "&Revert" ),
|
|
||||||
_( "Clear old board and get old version of board" ) );
|
|
||||||
item->SetBitmap( jigsaw_xpm );
|
|
||||||
filesMenu->Append( item );
|
|
||||||
|
|
||||||
/* Separator */
|
/* Separator */
|
||||||
filesMenu->AppendSeparator();
|
filesMenu->AppendSeparator();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Fabrication Outputs submenu */
|
/* Fabrication Outputs submenu */
|
||||||
wxMenu* fabricationOutputsMenu = new wxMenu;
|
wxMenu* fabricationOutputsMenu = new wxMenu;
|
||||||
item = new wxMenuItem( fabricationOutputsMenu, ID_PCB_GEN_POS_MODULES_FILE,
|
item = new wxMenuItem( fabricationOutputsMenu, ID_PCB_GEN_POS_MODULES_FILE,
|
||||||
|
@ -114,24 +122,18 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
/* BOM File */
|
/* BOM File */
|
||||||
item = new wxMenuItem( fabricationOutputsMenu, ID_PCB_GEN_BOM_FILE_FROM_BOARD,
|
item = new wxMenuItem( fabricationOutputsMenu, ID_PCB_GEN_BOM_FILE_FROM_BOARD,
|
||||||
_( "&BOM File" ),
|
_( "&BOM File" ),
|
||||||
_( "(Re)create bill of materials file for CvPCB" ) );
|
_( "Create a bill of materials from schematic" ) );
|
||||||
item->SetBitmap( tools_xpm );
|
item->SetBitmap( tools_xpm );
|
||||||
fabricationOutputsMenu->Append( item );
|
fabricationOutputsMenu->Append( item );
|
||||||
|
|
||||||
/* Fabrications Outputs submenu append */
|
/* Fabrications Outputs submenu append */
|
||||||
filesMenu->AppendSubMenu( fabricationOutputsMenu,
|
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( filesMenu, fabricationOutputsMenu,
|
||||||
_( "Fabrication Outputs "),
|
-1, _( "Fabrication Outputs" ),
|
||||||
_( "Generate files for fabrication" ) );
|
_( "Generate files for fabrication" ), export_xpm );
|
||||||
|
|
||||||
/* Import submenu */
|
/* Import submenu */
|
||||||
wxMenu* submenuImport = new wxMenu();
|
wxMenu* submenuImport = new wxMenu();
|
||||||
|
|
||||||
/* PCBNew Board */
|
|
||||||
item = new wxMenuItem( submenuImport, ID_APPEND_FILE, _( "PCBNew Board" ),
|
|
||||||
_( "Append a other PCBNew board to the current loaded board" ) );
|
|
||||||
item->SetBitmap( pcbnew_xpm );
|
|
||||||
submenuImport->Append( item );
|
|
||||||
|
|
||||||
/* Specctra Session */
|
/* Specctra Session */
|
||||||
item = new wxMenuItem( submenuImport, ID_GEN_IMPORT_SPECCTRA_SESSION,
|
item = new wxMenuItem( submenuImport, ID_GEN_IMPORT_SPECCTRA_SESSION,
|
||||||
_( "&Specctra Session" ),
|
_( "&Specctra Session" ),
|
||||||
|
@ -153,7 +155,6 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
_( "Import files" ), import_xpm );
|
_( "Import files" ), import_xpm );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Export submenu */
|
/* Export submenu */
|
||||||
wxMenu* submenuexport = new wxMenu();
|
wxMenu* submenuexport = new wxMenu();
|
||||||
|
|
||||||
|
@ -206,7 +207,8 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
wxMenu* submenuarchive = new wxMenu();
|
wxMenu* submenuarchive = new wxMenu();
|
||||||
item = new wxMenuItem( submenuarchive, ID_MENU_ARCHIVE_NEW_MODULES,
|
item = new wxMenuItem( submenuarchive, ID_MENU_ARCHIVE_NEW_MODULES,
|
||||||
_( "Add New Footprints" ),
|
_( "Add New Footprints" ),
|
||||||
_( "Archive new footprints only in a library (keep other footprints in this lib)" ) );
|
_(
|
||||||
|
"Archive new footprints only in a library (keep other footprints in this lib)" ) );
|
||||||
item->SetBitmap( library_update_xpm );
|
item->SetBitmap( library_update_xpm );
|
||||||
submenuarchive->Append( item );
|
submenuarchive->Append( item );
|
||||||
item = new wxMenuItem( submenuarchive, ID_MENU_ARCHIVE_ALL_MODULES,
|
item = new wxMenuItem( submenuarchive, ID_MENU_ARCHIVE_ALL_MODULES,
|
||||||
|
@ -228,7 +230,6 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
filesMenu->Append( item );
|
filesMenu->Append( item );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Edit menu
|
* Edit menu
|
||||||
*/
|
*/
|
||||||
|
@ -236,7 +237,7 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
|
|
||||||
/* Undo */
|
/* Undo */
|
||||||
/* TODO add Undo hotkey */
|
/* TODO add Undo hotkey */
|
||||||
item = new wxMenuItem( editMenu, ID_UNDO_BUTT, _( "Undo"),
|
item = new wxMenuItem( editMenu, ID_UNDO_BUTT, _( "Undo" ),
|
||||||
_( "Undo last edition" ), wxITEM_NORMAL );
|
_( "Undo last edition" ), wxITEM_NORMAL );
|
||||||
item->SetBitmap( undo_xpm );
|
item->SetBitmap( undo_xpm );
|
||||||
editMenu->Append( item );
|
editMenu->Append( item );
|
||||||
|
@ -252,9 +253,10 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
editMenu->AppendSeparator();
|
editMenu->AppendSeparator();
|
||||||
|
|
||||||
/* Find */
|
/* Find */
|
||||||
text = AddHotkeyName( _( "&Find..." ), s_Pcbnew_Editor_Hokeys_Descr, HK_FIND_ITEM);
|
text = AddHotkeyName( _( "&Find..." ), s_Pcbnew_Editor_Hokeys_Descr, HK_FIND_ITEM );
|
||||||
item = new wxMenuItem( editMenu, ID_FIND_ITEMS, text,
|
item = new wxMenuItem( editMenu, ID_FIND_ITEMS, text,
|
||||||
_("Find components and text in current loaded board") );
|
_( "Find components and text in current loaded board" ) );
|
||||||
|
item->SetBitmap( find_xpm );
|
||||||
editMenu->Append( item );
|
editMenu->Append( item );
|
||||||
|
|
||||||
/* Separator */
|
/* Separator */
|
||||||
|
@ -270,7 +272,8 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
/* Tracks */
|
/* Tracks */
|
||||||
item = new wxMenuItem( editMenu, ID_MENU_PCB_CLEAN,
|
item = new wxMenuItem( editMenu, ID_MENU_PCB_CLEAN,
|
||||||
_( "&Tracks" ),
|
_( "&Tracks" ),
|
||||||
_( "Clean stubs, vias, delete break points, or connect dangling tracks to pads and vias" ) );
|
_(
|
||||||
|
"Clean stubs, vias, delete break points, or connect dangling tracks to pads and vias" ) );
|
||||||
item->SetBitmap( delete_body_xpm );
|
item->SetBitmap( delete_body_xpm );
|
||||||
editMenu->Append( item );
|
editMenu->Append( item );
|
||||||
|
|
||||||
|
@ -282,14 +285,13 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
editMenu->Append( item );
|
editMenu->Append( item );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* View menu
|
* View menu
|
||||||
*/
|
*/
|
||||||
wxMenu* viewMenu = new wxMenu;
|
wxMenu* viewMenu = new wxMenu;
|
||||||
|
|
||||||
/* Zoom in */
|
/* Zoom in */
|
||||||
text = AddHotkeyName( _( "Zoom in" ), s_Pcbnew_Editor_Hokeys_Descr, HK_ZOOM_IN);
|
text = AddHotkeyName( _( "Zoom in" ), s_Pcbnew_Editor_Hokeys_Descr, HK_ZOOM_IN );
|
||||||
item = new wxMenuItem( viewMenu, ID_ZOOM_IN, text, _( "Zoom in" ),
|
item = new wxMenuItem( viewMenu, ID_ZOOM_IN, text, _( "Zoom in" ),
|
||||||
wxITEM_NORMAL );
|
wxITEM_NORMAL );
|
||||||
item->SetBitmap( zoom_in_xpm );
|
item->SetBitmap( zoom_in_xpm );
|
||||||
|
@ -338,7 +340,6 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
viewMenu->Append( item );
|
viewMenu->Append( item );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Preferences and configuration
|
* Preferences and configuration
|
||||||
*/
|
*/
|
||||||
|
@ -388,7 +389,7 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
|
|
||||||
/* Pads */
|
/* Pads */
|
||||||
item = new wxMenuItem( dimensionsMenu, ID_PCB_PAD_SETUP, _( "Pads" ),
|
item = new wxMenuItem( dimensionsMenu, ID_PCB_PAD_SETUP, _( "Pads" ),
|
||||||
_( "Adjust pads shape, dimensions, layers" ) );
|
_( "Adjust default pads caracteristics" ) );
|
||||||
item->SetBitmap( pad_xpm );
|
item->SetBitmap( pad_xpm );
|
||||||
dimensionsMenu->Append( item );
|
dimensionsMenu->Append( item );
|
||||||
|
|
||||||
|
@ -400,14 +401,18 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
dimensionsMenu->Append( item );
|
dimensionsMenu->Append( item );
|
||||||
|
|
||||||
|
|
||||||
/* Save */
|
/* Save dimension preferences */
|
||||||
dimensionsMenu->AppendSeparator();
|
dimensionsMenu->AppendSeparator();
|
||||||
item = new wxMenuItem( dimensionsMenu, ID_CONFIG_SAVE, _( "&Save" ),
|
item = new wxMenuItem( dimensionsMenu, ID_CONFIG_SAVE, _( "&Save" ),
|
||||||
_( "Save dimension preferences" ) );
|
_( "Save dimension preferences" ) );
|
||||||
item->SetBitmap( save_xpm );
|
item->SetBitmap( save_xpm );
|
||||||
dimensionsMenu->Append( item );
|
dimensionsMenu->Append( item );
|
||||||
configmenu->AppendSubMenu( dimensionsMenu, _( "Di&mensions" ),
|
|
||||||
_( "Global dimensions preferences" ));
|
/* append dimension menu to config menu */
|
||||||
|
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( configmenu, dimensionsMenu,
|
||||||
|
-1, _( "Di&mensions" ),
|
||||||
|
_( "Global dimensions preferences" ),
|
||||||
|
add_dimension_xpm );
|
||||||
|
|
||||||
/* Language submenu */
|
/* Language submenu */
|
||||||
wxGetApp().AddMenuLanguageList( configmenu );
|
wxGetApp().AddMenuLanguageList( configmenu );
|
||||||
|
@ -431,7 +436,6 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
configmenu->Append( item );
|
configmenu->Append( item );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Design Rules menu
|
* Design Rules menu
|
||||||
*/
|
*/
|
||||||
|
@ -451,7 +455,6 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
designRulesMenu->Append( item );
|
designRulesMenu->Append( item );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Help menu
|
* Help menu
|
||||||
*/
|
*/
|
||||||
|
@ -467,12 +470,11 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
helpMenu->Append( item );
|
helpMenu->Append( item );
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Append all menus to the menuBar
|
* Append all menus to the menuBar
|
||||||
*/
|
*/
|
||||||
menuBar->Append( filesMenu, _( "&File" ) );
|
menuBar->Append( filesMenu, _( "&File" ) );
|
||||||
menuBar->Append( editMenu, _( "&Edit") );
|
menuBar->Append( editMenu, _( "&Edit" ) );
|
||||||
menuBar->Append( viewMenu, _( "&View" ) );
|
menuBar->Append( viewMenu, _( "&View" ) );
|
||||||
menuBar->Append( configmenu, _( "&Preferences" ) );
|
menuBar->Append( configmenu, _( "&Preferences" ) );
|
||||||
menuBar->Append( designRulesMenu, _( "&Design Rules" ) );
|
menuBar->Append( designRulesMenu, _( "&Design Rules" ) );
|
||||||
|
@ -481,4 +483,3 @@ WinEDA_PcbFrame::ReCreateMenuBar()
|
||||||
/* Associate the menu bar with the frame */
|
/* Associate the menu bar with the frame */
|
||||||
SetMenuBar( menuBar );
|
SetMenuBar( menuBar );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -458,7 +458,7 @@ void WinEDA_PcbFrame::ReCreateVToolbar()
|
||||||
|
|
||||||
m_VToolBar->AddSeparator();
|
m_VToolBar->AddSeparator();
|
||||||
m_VToolBar->AddTool( ID_PCB_COTATION_BUTT, wxEmptyString,
|
m_VToolBar->AddTool( ID_PCB_COTATION_BUTT, wxEmptyString,
|
||||||
wxBitmap( add_cotation_xpm ),
|
wxBitmap( add_dimension_xpm ),
|
||||||
_( "Add dimension" ), wxITEM_CHECK );
|
_( "Add dimension" ), wxITEM_CHECK );
|
||||||
|
|
||||||
m_VToolBar->AddTool( ID_PCB_MIRE_BUTT, wxEmptyString,
|
m_VToolBar->AddTool( ID_PCB_MIRE_BUTT, wxEmptyString,
|
||||||
|
|
Loading…
Reference in New Issue