Added getting started to the remaining menus and fixed the icons
This commit is contained in:
parent
70b93f3c6c
commit
1b26ca59b1
|
@ -121,10 +121,16 @@ void CVPCB_MAINFRAME::ReCreateMenuBar()
|
|||
AddHelpVersionInfoMenuEntry( helpMenu );
|
||||
|
||||
// Manual Contents
|
||||
AddMenuItem( helpMenu, wxID_HELP, _( "&CvPcb Manual" ),
|
||||
_( "Open CvPcb manual" ),
|
||||
AddMenuItem( helpMenu, wxID_HELP, _( "CvPcb &Manual" ),
|
||||
_( "Open CvPcb Manual" ),
|
||||
KiBitmap( online_help_xpm ) );
|
||||
|
||||
AddMenuItem( helpMenu,
|
||||
wxID_INDEX,
|
||||
_( "&Getting Started in KiCad" ),
|
||||
_( "Open \"Getting Started in KiCad\" guide for beginners" ),
|
||||
KiBitmap( help_xpm ) );
|
||||
|
||||
// About CvPcb
|
||||
AddMenuItem( helpMenu, wxID_ABOUT,
|
||||
_( "&About CvPcb" ),
|
||||
|
|
|
@ -486,7 +486,7 @@ void SCH_EDIT_FRAME::ReCreateMenuBar()
|
|||
AddMenuItem( helpMenu,
|
||||
wxID_HELP,
|
||||
_( "Eeschema &Manual" ),
|
||||
_( "Open Eeschema manual" ),
|
||||
_( "Open Eeschema Manual" ),
|
||||
KiBitmap( online_help_xpm ) );
|
||||
|
||||
AddMenuItem( helpMenu,
|
||||
|
|
|
@ -261,7 +261,7 @@ void LIB_EDIT_FRAME::ReCreateMenuBar()
|
|||
AddMenuItem( helpMenu,
|
||||
wxID_HELP,
|
||||
_( "Eeschema &Manual" ),
|
||||
_( "Open the Eeschema manual" ),
|
||||
_( "Open the Eeschema Manual" ),
|
||||
KiBitmap( online_help_xpm ) );
|
||||
|
||||
AddMenuItem( helpMenu,
|
||||
|
|
|
@ -222,15 +222,21 @@ void GERBVIEW_FRAME::ReCreateMenuBar()
|
|||
AddMenuItem( helpMenu,
|
||||
wxID_HELP,
|
||||
_( "Gerbview &Manual" ),
|
||||
_( "Open the GerbView handbook" ),
|
||||
_( "Open the GerbView Manual" ),
|
||||
KiBitmap( help_xpm ) );
|
||||
|
||||
AddMenuItem( helpMenu,
|
||||
wxID_INDEX,
|
||||
_( "&Getting Started in KiCad" ),
|
||||
_( "Open \"Getting Started in KiCad\" guide for beginners" ),
|
||||
KiBitmap( online_help_xpm ) );
|
||||
|
||||
// About GerbView
|
||||
AddMenuItem( helpMenu,
|
||||
wxID_ABOUT,
|
||||
_( "&About GerbView" ),
|
||||
_( "About GerbView gerber and drill viewer" ),
|
||||
KiBitmap( online_help_xpm ) );
|
||||
KiBitmap( info_xpm ) );
|
||||
|
||||
// Append menus to the menubar
|
||||
menuBar->Append( fileMenu, _( "&File" ) );
|
||||
|
|
|
@ -148,16 +148,22 @@ void PL_EDITOR_FRAME::ReCreateMenuBar()
|
|||
// Contents
|
||||
AddMenuItem( helpMenu,
|
||||
wxID_HELP,
|
||||
_( "&Contents" ),
|
||||
_( "Open the GerbView handbook" ),
|
||||
_( "Pl_Editor &Manual" ),
|
||||
_( "Open the Pl_Editor Manual" ),
|
||||
KiBitmap( help_xpm ) );
|
||||
|
||||
AddMenuItem( helpMenu,
|
||||
wxID_INDEX,
|
||||
_( "&Getting Started in KiCad" ),
|
||||
_( "Open \"Getting Started in KiCad\" guide for beginners" ),
|
||||
KiBitmap( online_help_xpm ) );
|
||||
|
||||
// About GerbView
|
||||
AddMenuItem( helpMenu,
|
||||
wxID_ABOUT,
|
||||
_( "&About Page Layout Editor" ),
|
||||
_( "About page layout description editor" ),
|
||||
KiBitmap( online_help_xpm ) );
|
||||
KiBitmap( info_xpm ) );
|
||||
|
||||
// Append menus to the menubar
|
||||
menuBar->Append( fileMenu, _( "&File" ) );
|
||||
|
|
|
@ -339,7 +339,7 @@ void FOOTPRINT_EDIT_FRAME::ReCreateMenuBar()
|
|||
// Contents
|
||||
AddMenuItem( helpMenu, wxID_HELP,
|
||||
_( "P&cbnew Manual" ),
|
||||
_( "Open the Pcbnew manual" ),
|
||||
_( "Open the Pcbnew Manual" ),
|
||||
KiBitmap( online_help_xpm ) );
|
||||
|
||||
AddMenuItem( helpMenu, wxID_INDEX,
|
||||
|
|
|
@ -644,7 +644,7 @@ void PCB_EDIT_FRAME::ReCreateMenuBar()
|
|||
|
||||
AddMenuItem( helpMenu, wxID_HELP,
|
||||
_( "Pcbnew &Manual" ),
|
||||
_( "Open the Pcbnew handbook" ),
|
||||
_( "Open the Pcbnew Manual" ),
|
||||
KiBitmap( online_help_xpm ) );
|
||||
|
||||
AddMenuItem( helpMenu, wxID_INDEX,
|
||||
|
|
Loading…
Reference in New Issue