2008-11-02 22:53:38 +00:00
|
|
|
/**
|
2010-12-14 10:56:30 -05:00
|
|
|
* @file kicad/menubar.cpp
|
2010-02-14 14:59:43 +00:00
|
|
|
* @brief Project manager menubars and toolbars
|
2008-11-02 22:53:38 +00:00
|
|
|
*/
|
2007-05-28 18:09:49 +00:00
|
|
|
#include "fctsys.h"
|
2009-02-04 15:25:03 +00:00
|
|
|
#include "appl_wxstruct.h"
|
2007-05-28 18:09:49 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "kicad.h"
|
|
|
|
#include "macros.h"
|
2010-02-14 14:59:43 +00:00
|
|
|
#include "bitmaps.h"
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Menubar and toolbar event table */
|
2011-01-21 14:30:59 -05:00
|
|
|
BEGIN_EVENT_TABLE( WinEDA_MainFrame, EDA_BASE_FRAME )
|
2011-03-13 19:03:43 +01:00
|
|
|
/* Window events */
|
|
|
|
EVT_SIZE( WinEDA_MainFrame::OnSize )
|
|
|
|
EVT_CLOSE( WinEDA_MainFrame::OnCloseWindow )
|
|
|
|
|
|
|
|
/* Sash drag events */
|
|
|
|
EVT_SASH_DRAGGED( ID_LEFT_FRAME, WinEDA_MainFrame::OnSashDrag )
|
|
|
|
|
|
|
|
/* Toolbar events */
|
|
|
|
EVT_TOOL( ID_NEW_PROJECT, WinEDA_MainFrame::OnLoadProject )
|
|
|
|
EVT_TOOL( ID_LOAD_PROJECT, WinEDA_MainFrame::OnLoadProject )
|
|
|
|
EVT_TOOL( ID_SAVE_PROJECT, WinEDA_MainFrame::OnSaveProject )
|
|
|
|
EVT_TOOL( ID_SAVE_AND_ZIP_FILES, WinEDA_MainFrame::OnArchiveFiles )
|
|
|
|
|
|
|
|
/* Menu events */
|
|
|
|
EVT_MENU( ID_SAVE_PROJECT, WinEDA_MainFrame::OnSaveProject )
|
|
|
|
EVT_MENU( wxID_EXIT, WinEDA_MainFrame::OnExit )
|
|
|
|
EVT_MENU( ID_TO_EDITOR, WinEDA_MainFrame::OnOpenTextEditor )
|
|
|
|
EVT_MENU( ID_BROWSE_AN_SELECT_FILE,
|
|
|
|
WinEDA_MainFrame::OnOpenFileInTextEditor )
|
|
|
|
EVT_MENU( ID_SELECT_PREFERED_EDITOR,
|
|
|
|
EDA_BASE_FRAME::OnSelectPreferredEditor )
|
|
|
|
EVT_MENU( ID_SELECT_DEFAULT_PDF_BROWSER,
|
|
|
|
WinEDA_MainFrame::OnSelectDefaultPdfBrowser )
|
|
|
|
EVT_MENU( ID_SELECT_PREFERED_PDF_BROWSER,
|
|
|
|
WinEDA_MainFrame::OnSelectPreferredPdfBrowser )
|
|
|
|
EVT_MENU( ID_SELECT_PREFERED_PDF_BROWSER_NAME,
|
|
|
|
WinEDA_MainFrame::OnSelectPreferredPdfBrowser )
|
|
|
|
EVT_MENU( ID_SAVE_AND_ZIP_FILES, WinEDA_MainFrame::OnArchiveFiles )
|
|
|
|
EVT_MENU( ID_READ_ZIP_ARCHIVE, WinEDA_MainFrame::OnUnarchiveFiles )
|
|
|
|
EVT_MENU( ID_PROJECT_TREE_REFRESH, WinEDA_MainFrame::OnRefresh )
|
|
|
|
EVT_MENU( ID_GENERAL_HELP, WinEDA_MainFrame::GetKicadHelp )
|
|
|
|
EVT_MENU( ID_KICAD_ABOUT, WinEDA_MainFrame::GetKicadAbout )
|
|
|
|
|
|
|
|
/* Range menu events */
|
|
|
|
EVT_MENU_RANGE( ID_LANGUAGE_CHOICE, ID_LANGUAGE_CHOICE_END,
|
|
|
|
WinEDA_MainFrame::SetLanguage )
|
|
|
|
|
|
|
|
EVT_MENU_RANGE( wxID_FILE1, wxID_FILE9, WinEDA_MainFrame::OnFileHistory )
|
|
|
|
|
|
|
|
/* Button events */
|
|
|
|
EVT_BUTTON( ID_TO_PCB, WinEDA_MainFrame::OnRunPcbNew )
|
|
|
|
EVT_BUTTON( ID_TO_CVPCB, WinEDA_MainFrame::OnRunCvpcb )
|
|
|
|
EVT_BUTTON( ID_TO_EESCHEMA, WinEDA_MainFrame::OnRunEeschema )
|
|
|
|
EVT_BUTTON( ID_TO_GERBVIEW, WinEDA_MainFrame::OnRunGerbview )
|
|
|
|
EVT_BUTTON( ID_TO_BITMAP_CONVERTER, WinEDA_MainFrame::OnRunBitmapConverter )
|
|
|
|
|
|
|
|
EVT_UPDATE_UI( ID_SELECT_DEFAULT_PDF_BROWSER,
|
|
|
|
WinEDA_MainFrame::OnUpdateDefaultPdfBrowser )
|
|
|
|
EVT_UPDATE_UI( ID_SELECT_PREFERED_PDF_BROWSER,
|
|
|
|
WinEDA_MainFrame::OnUpdatePreferredPdfBrowser )
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2008-11-02 22:53:38 +00:00
|
|
|
END_EVENT_TABLE()
|
2007-05-28 18:09:49 +00:00
|
|
|
|
|
|
|
|
2008-11-02 22:53:38 +00:00
|
|
|
/**
|
2010-02-14 14:59:43 +00:00
|
|
|
* @brief (Re)Create the menubar
|
2008-11-02 22:53:38 +00:00
|
|
|
*/
|
|
|
|
void WinEDA_MainFrame::ReCreateMenuBar()
|
|
|
|
{
|
2011-03-13 19:03:43 +01:00
|
|
|
wxMenuItem* item;
|
|
|
|
wxMenuBar* menuBar = GetMenuBar();
|
2008-11-02 22:53:38 +00:00
|
|
|
|
2011-03-13 19:03:43 +01:00
|
|
|
if( !menuBar )
|
2010-12-17 21:34:29 +01:00
|
|
|
menuBar = new wxMenuBar();
|
2008-11-02 22:53:38 +00:00
|
|
|
|
2010-12-17 21:34:29 +01: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() )
|
2011-03-13 19:03:43 +01:00
|
|
|
delete menuBar->Remove( 0 );
|
2010-12-17 21:34:29 +01:00
|
|
|
|
|
|
|
// Recreate all menus:
|
|
|
|
|
|
|
|
// Files menu
|
2009-01-17 20:31:19 +00:00
|
|
|
wxMenu* filesMenu = new wxMenu;
|
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Open
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( filesMenu, ID_LOAD_PROJECT, _( "&Open\tCtrl+O" ),
|
|
|
|
_( "Open an existing project" ),
|
|
|
|
open_project_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Open Recent submenu
|
2010-02-14 14:59:43 +00:00
|
|
|
wxMenu* openRecentMenu = new wxMenu();
|
|
|
|
wxGetApp().m_fileHistory.AddFilesToMenu( openRecentMenu );
|
|
|
|
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( filesMenu, openRecentMenu,
|
2011-03-13 19:03:43 +01:00
|
|
|
wxID_ANY, _( "Open &Recent" ),
|
|
|
|
_( "Open a recent opened schematic project" ),
|
2010-02-14 14:59:43 +00:00
|
|
|
open_project_xpm );
|
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// New
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( filesMenu, ID_NEW_PROJECT,
|
|
|
|
_( "&New\tCtrl+N" ),
|
|
|
|
_( "Start a new project" ),
|
|
|
|
new_project_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Save */
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( filesMenu, ID_SAVE_PROJECT, _( "&Save\tCtrl+S" ),
|
|
|
|
_( "Save current project" ),
|
|
|
|
save_project_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Archive
|
2009-01-17 20:31:19 +00:00
|
|
|
filesMenu->AppendSeparator();
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( filesMenu, ID_SAVE_AND_ZIP_FILES, _( "&Archive" ),
|
|
|
|
_( "Archive project files in zip archive" ),
|
|
|
|
zip_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Unarchive
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( filesMenu, ID_READ_ZIP_ARCHIVE, _( "&Unarchive" ),
|
|
|
|
_( "Unarchive project files from zip file" ),
|
|
|
|
unzip_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-01-18 19:33:45 +00:00
|
|
|
/* Quit on all platforms except WXMAC */
|
|
|
|
#if !defined( __WXMAC__ )
|
|
|
|
|
|
|
|
filesMenu->AppendSeparator();
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( filesMenu, wxID_EXIT, _( "&Quit" ),
|
|
|
|
_( "Quit KiCad" ),
|
|
|
|
exit_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-01-18 19:33:45 +00:00
|
|
|
#endif /* !defined( __WXMAC__ ) */
|
|
|
|
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Browse menu
|
2009-01-17 20:31:19 +00:00
|
|
|
wxMenu* browseMenu = new wxMenu();
|
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Text editor
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( browseMenu, ID_TO_EDITOR,
|
|
|
|
_( "Text E&ditor" ),
|
|
|
|
_( "Launch preferred text editor" ),
|
|
|
|
editor_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Browse files */
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( browseMenu, ID_BROWSE_AN_SELECT_FILE,
|
|
|
|
_( "&View File" ),
|
|
|
|
_( "View, read or edit file with a text editor" ),
|
|
|
|
browse_files_xpm );
|
2010-02-14 14:59:43 +00:00
|
|
|
|
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Preferences menu
|
2009-01-17 20:31:19 +00:00
|
|
|
wxMenu* PreferencesMenu = new wxMenu;
|
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Text editor
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( PreferencesMenu, ID_SELECT_PREFERED_EDITOR,
|
|
|
|
_( "&Text Editor" ),
|
|
|
|
_( "Select your preferred text editor" ),
|
|
|
|
editor_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// PDF Viewer submenu:System browser or user defined checkbox
|
2009-01-17 20:31:19 +00:00
|
|
|
wxMenu* SubMenuPdfBrowserChoice = new wxMenu;
|
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Default
|
2009-01-17 20:31:19 +00:00
|
|
|
item = new wxMenuItem( SubMenuPdfBrowserChoice,
|
|
|
|
ID_SELECT_DEFAULT_PDF_BROWSER,
|
2010-02-14 14:59:43 +00:00
|
|
|
_( "Default" ),
|
|
|
|
_( "Use system default PDF viewer used to browse datasheets" ),
|
2009-01-17 20:31:19 +00:00
|
|
|
wxITEM_CHECK );
|
2010-05-09 04:04:44 +02:00
|
|
|
|
|
|
|
#if !defined( __WXMAC__ )
|
2009-01-17 20:31:19 +00:00
|
|
|
SETBITMAPS( datasheet_xpm );
|
2010-05-09 04:04:44 +02:00
|
|
|
#endif /* !defined( __WXMAC__ ) */
|
|
|
|
|
2009-01-17 20:31:19 +00:00
|
|
|
SubMenuPdfBrowserChoice->Append( item );
|
|
|
|
SubMenuPdfBrowserChoice->Check( ID_SELECT_DEFAULT_PDF_BROWSER,
|
|
|
|
wxGetApp().m_PdfBrowserIsDefault );
|
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Favourite viewer
|
2009-01-17 20:31:19 +00:00
|
|
|
item = new wxMenuItem( SubMenuPdfBrowserChoice,
|
|
|
|
ID_SELECT_PREFERED_PDF_BROWSER,
|
2010-02-14 14:59:43 +00:00
|
|
|
_( "Favourite" ),
|
2009-01-17 20:31:19 +00:00
|
|
|
_( "Use your favourite PDF viewer used to browse datasheets" ),
|
|
|
|
wxITEM_CHECK );
|
2010-05-09 04:04:44 +02:00
|
|
|
#if !defined( __WXMAC__ )
|
2009-01-17 20:31:19 +00:00
|
|
|
SETBITMAPS( preference_xpm );
|
2010-05-09 04:04:44 +02:00
|
|
|
#endif /* !defined( __WXMAC__ ) */
|
|
|
|
|
2009-01-17 20:31:19 +00:00
|
|
|
SubMenuPdfBrowserChoice->Append( item );
|
|
|
|
SubMenuPdfBrowserChoice->AppendSeparator();
|
|
|
|
SubMenuPdfBrowserChoice->Check( ID_SELECT_PREFERED_PDF_BROWSER,
|
|
|
|
!wxGetApp().m_PdfBrowserIsDefault );
|
|
|
|
|
2010-12-18 17:09:06 +01:00
|
|
|
// Append PDF Viewer submenu to preferences
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( SubMenuPdfBrowserChoice,
|
|
|
|
ID_SELECT_PREFERED_PDF_BROWSER_NAME,
|
|
|
|
_( "PDF Viewer" ),
|
|
|
|
_( "Select your favourite PDF viewer used to browse datasheets" ),
|
|
|
|
datasheet_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
|
|
|
ADD_MENUITEM_WITH_HELP_AND_SUBMENU( PreferencesMenu,
|
|
|
|
SubMenuPdfBrowserChoice,
|
2010-02-14 14:59:43 +00:00
|
|
|
-1, _( "PDF Viewer" ),
|
|
|
|
_( "PDF viewer preferences" ),
|
2009-01-17 20:31:19 +00:00
|
|
|
datasheet_xpm );
|
|
|
|
|
2010-12-18 17:09:06 +01:00
|
|
|
// Add languages list:
|
2009-01-17 20:31:19 +00:00
|
|
|
PreferencesMenu->AppendSeparator();
|
2009-01-18 10:15:10 +00:00
|
|
|
wxGetApp().AddMenuLanguageList( PreferencesMenu );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Help menu
|
2009-01-17 20:31:19 +00:00
|
|
|
wxMenu* helpMenu = new wxMenu;
|
|
|
|
|
2010-08-24 13:26:51 -04:00
|
|
|
AddHelpVersionInfoMenuEntry( helpMenu );
|
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Contents */
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( helpMenu, ID_GENERAL_HELP, _( "&Contents" ),
|
|
|
|
_( "Open the kicad manual" ),
|
|
|
|
online_help_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// About
|
2010-01-18 19:33:45 +00:00
|
|
|
helpMenu->AppendSeparator();
|
2011-03-13 19:03:43 +01:00
|
|
|
ADD_MENUITEM_WITH_HELP( helpMenu, ID_KICAD_ABOUT, _( "&About" ),
|
|
|
|
_( "About kicad project manager" ),
|
|
|
|
info_xpm );
|
2009-01-17 20:31:19 +00:00
|
|
|
|
2010-12-18 09:59:04 +01:00
|
|
|
// Create the menubar and append all submenus
|
2009-01-17 20:31:19 +00:00
|
|
|
menuBar->Append( filesMenu, _( "&File" ) );
|
|
|
|
menuBar->Append( browseMenu, _( "&Browse" ) );
|
|
|
|
menuBar->Append( PreferencesMenu, _( "&Preferences" ) );
|
|
|
|
menuBar->Append( helpMenu, _( "&Help" ) );
|
|
|
|
|
2010-12-17 21:34:29 +01:00
|
|
|
menuBar->Thaw();
|
|
|
|
|
|
|
|
// Associate the menu bar with the frame, if no previous menubar
|
|
|
|
if( GetMenuBar() == NULL )
|
|
|
|
SetMenuBar( menuBar );
|
|
|
|
else
|
|
|
|
menuBar->Refresh();
|
2007-05-28 18:09:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-02 22:53:38 +00:00
|
|
|
/**
|
2010-02-14 14:59:43 +00:00
|
|
|
* @brief (Re)Create the horizontal toolbar
|
2008-11-02 22:53:38 +00:00
|
|
|
*/
|
2007-09-13 11:55:46 +00:00
|
|
|
void WinEDA_MainFrame::RecreateBaseHToolbar()
|
2007-05-28 18:09:49 +00:00
|
|
|
{
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Check if toolbar is not already created */
|
2008-12-08 15:27:13 +00:00
|
|
|
if( m_HToolBar != NULL )
|
|
|
|
return;
|
2008-11-02 22:53:38 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Allocate memory for m_HToolBar */
|
2008-12-08 15:27:13 +00:00
|
|
|
m_HToolBar = new WinEDA_Toolbar( TOOLBAR_MAIN, this, ID_H_TOOLBAR, TRUE );
|
2010-02-08 18:15:42 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* New */
|
2009-05-21 17:42:42 +00:00
|
|
|
m_HToolBar->AddTool( ID_NEW_PROJECT, wxEmptyString,
|
2011-03-13 19:03:43 +01:00
|
|
|
wxBitmap( new_project_xpm ),
|
|
|
|
_( "Start a new project" ) );
|
2007-05-28 18:09:49 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Load */
|
2009-05-21 17:42:42 +00:00
|
|
|
m_HToolBar->AddTool( ID_LOAD_PROJECT, wxEmptyString,
|
2011-03-13 19:03:43 +01:00
|
|
|
wxBitmap( open_project_xpm ),
|
|
|
|
_( "Load existing project" ) );
|
2008-11-02 22:53:38 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Save */
|
2009-05-21 17:42:42 +00:00
|
|
|
m_HToolBar->AddTool( ID_SAVE_PROJECT, wxEmptyString,
|
2011-03-13 19:03:43 +01:00
|
|
|
wxBitmap( save_project_xpm ),
|
|
|
|
_( "Save current project" ) );
|
2008-11-02 22:53:38 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Separator */
|
2008-12-08 15:27:13 +00:00
|
|
|
m_HToolBar->AddSeparator();
|
2008-11-02 22:53:38 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Archive */
|
2009-05-21 17:42:42 +00:00
|
|
|
m_HToolBar->AddTool( ID_SAVE_AND_ZIP_FILES, wxEmptyString,
|
2011-03-13 19:03:43 +01:00
|
|
|
wxBitmap( zip_xpm ),
|
|
|
|
_( "Archive all project files" ) );
|
2008-11-02 22:53:38 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Separator */
|
2008-12-08 15:27:13 +00:00
|
|
|
m_HToolBar->AddSeparator();
|
2008-11-02 22:53:38 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Refresh project tree */
|
2009-05-21 17:42:42 +00:00
|
|
|
m_HToolBar->AddTool( ID_PROJECT_TREE_REFRESH, wxEmptyString,
|
2011-03-13 19:03:43 +01:00
|
|
|
wxBitmap( reload_xpm ),
|
|
|
|
_( "Refresh project tree" ) );
|
2008-11-02 22:53:38 +00:00
|
|
|
|
2010-02-14 14:59:43 +00:00
|
|
|
/* Create m_HToolBar */
|
|
|
|
m_HToolBar->Realize();
|
2008-11-02 22:53:38 +00:00
|
|
|
}
|