Browse Source

Added getting started to the remaining menus and fixed the icons

pull/7/head
Simon Wells 10 years ago
parent
commit
1b26ca59b1
  1. 10
      cvpcb/menubar.cpp
  2. 2
      eeschema/menubar.cpp
  3. 2
      eeschema/menubar_libedit.cpp
  4. 10
      gerbview/menubar.cpp
  5. 12
      pagelayout_editor/menubar.cpp
  6. 2
      pcbnew/menubar_modedit.cpp
  7. 2
      pcbnew/menubar_pcbframe.cpp

10
cvpcb/menubar.cpp

@ -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" ),

2
eeschema/menubar.cpp

@ -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,

2
eeschema/menubar_libedit.cpp

@ -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,

10
gerbview/menubar.cpp

@ -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" ) );

12
pagelayout_editor/menubar.cpp

@ -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" ) );

2
pcbnew/menubar_modedit.cpp

@ -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,

2
pcbnew/menubar_pcbframe.cpp

@ -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…
Cancel
Save