2013-07-19 18:27:22 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2021-03-07 20:31:19 +00:00
|
|
|
* Copyright (C) 2016-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2019-08-14 08:28:07 +00:00
|
|
|
* Copyright (C) 2013-2019 CERN
|
2013-08-13 17:51:22 +00:00
|
|
|
* @author Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2013-07-19 18:27:22 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2021-03-07 20:31:19 +00:00
|
|
|
#include <bitmaps.h>
|
2022-12-28 22:03:03 +00:00
|
|
|
#include <file_history.h>
|
2021-09-14 22:45:14 +00:00
|
|
|
#include <kiface_base.h>
|
2021-06-06 17:26:26 +00:00
|
|
|
#include <tool/action_manager.h>
|
2020-07-29 23:50:25 +00:00
|
|
|
#include <tool/action_menu.h>
|
2019-05-20 10:23:32 +00:00
|
|
|
#include <tool/tool_manager.h>
|
2020-10-13 05:04:31 +00:00
|
|
|
#include <widgets/wx_menubar.h>
|
|
|
|
|
2016-03-11 16:40:24 +00:00
|
|
|
#include "pl_editor_frame.h"
|
|
|
|
#include "pl_editor_id.h"
|
2020-10-13 05:04:31 +00:00
|
|
|
#include "tools/pl_actions.h"
|
|
|
|
#include "tools/pl_selection_tool.h"
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
|
2022-12-16 21:37:32 +00:00
|
|
|
void PL_EDITOR_FRAME::doReCreateMenuBar()
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
PL_SELECTION_TOOL* selTool = m_toolManager->GetTool<PL_SELECTION_TOOL>();
|
2018-04-07 13:13:38 +00:00
|
|
|
// wxWidgets handles the Mac Application menu behind the scenes, but that means
|
|
|
|
// we always have to start from scratch with a new wxMenuBar.
|
|
|
|
wxMenuBar* oldMenuBar = GetMenuBar();
|
2020-06-06 17:42:04 +00:00
|
|
|
WX_MENUBAR* menuBar = new WX_MENUBAR();
|
2018-04-07 13:13:38 +00:00
|
|
|
|
2020-02-25 15:46:56 +00:00
|
|
|
static ACTION_MENU* openRecentMenu; // Open Recent submenu, static to remember this menu
|
2020-05-16 21:47:01 +00:00
|
|
|
FILE_HISTORY& recentFiles = GetFileHistory();
|
2017-08-29 15:07:48 +00:00
|
|
|
|
2019-11-23 16:54:48 +00:00
|
|
|
// Create the menu if it does not exist. Adding a file to/from the history
|
|
|
|
// will automatically refresh the menu.
|
|
|
|
if( !openRecentMenu )
|
|
|
|
{
|
2021-03-27 19:16:58 +00:00
|
|
|
openRecentMenu = new ACTION_MENU( false, selTool );
|
2021-03-08 02:59:07 +00:00
|
|
|
openRecentMenu->SetIcon( BITMAPS::recent );
|
2020-02-25 15:46:56 +00:00
|
|
|
|
|
|
|
recentFiles.UseMenu( openRecentMenu );
|
|
|
|
recentFiles.AddFilesToMenu();
|
2019-11-23 16:54:48 +00:00
|
|
|
}
|
2017-08-29 15:07:48 +00:00
|
|
|
|
2022-04-11 07:11:26 +00:00
|
|
|
// Ensure the title is up to date after changing language
|
|
|
|
openRecentMenu->SetTitle( _( "Open Recent" ) );
|
2022-04-11 16:11:17 +00:00
|
|
|
recentFiles.UpdateClearText( openRecentMenu, _( "Clear Recent Files" ) );
|
2022-04-11 07:11:26 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
//-- File menu -------------------------------------------------------
|
2019-05-25 00:34:44 +00:00
|
|
|
//
|
2020-07-29 23:50:25 +00:00
|
|
|
ACTION_MENU* fileMenu = new ACTION_MENU( false, selTool );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
fileMenu->Add( ACTIONS::doNew );
|
|
|
|
fileMenu->Add( ACTIONS::open );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2022-04-11 22:59:51 +00:00
|
|
|
wxMenuItem* item = fileMenu->Add( openRecentMenu->Clone() );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
// Add the file menu condition here since it needs the item ID for the submenu
|
|
|
|
ACTION_CONDITIONS cond;
|
2020-08-05 22:00:26 +00:00
|
|
|
cond.Enable( FILE_HISTORY::FileHistoryNotEmpty( recentFiles ) );
|
2020-07-29 23:50:25 +00:00
|
|
|
RegisterUIUpdateHandler( item->GetId(), cond );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
fileMenu->Add( ACTIONS::save );
|
|
|
|
fileMenu->Add( ACTIONS::saveAs );
|
|
|
|
|
|
|
|
fileMenu->AppendSeparator();
|
|
|
|
fileMenu->Add( ACTIONS::print );
|
2017-08-29 15:07:48 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
fileMenu->AppendSeparator();
|
2023-06-28 14:00:26 +00:00
|
|
|
fileMenu->AddClose( _( "Drawing Sheet Editor" ) );
|
|
|
|
fileMenu->AddQuit( _( "Drawing Sheet Editor" ) );
|
2019-06-02 11:57:29 +00:00
|
|
|
|
|
|
|
//-- Edit menu -------------------------------------------------------
|
2019-05-25 00:34:44 +00:00
|
|
|
//
|
2020-07-29 23:50:25 +00:00
|
|
|
ACTION_MENU* editMenu = new ACTION_MENU( false, selTool );
|
2017-08-29 15:07:48 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
editMenu->Add( ACTIONS::undo );
|
|
|
|
editMenu->Add( ACTIONS::redo );
|
2017-08-29 15:07:48 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
editMenu->AppendSeparator();
|
|
|
|
editMenu->Add( ACTIONS::cut );
|
|
|
|
editMenu->Add( ACTIONS::copy );
|
|
|
|
editMenu->Add( ACTIONS::paste );
|
|
|
|
editMenu->Add( ACTIONS::doDelete );
|
2019-06-02 11:57:29 +00:00
|
|
|
|
|
|
|
//-- View menu -------------------------------------------------------
|
2019-05-25 00:34:44 +00:00
|
|
|
//
|
2020-07-29 23:50:25 +00:00
|
|
|
ACTION_MENU* viewMenu = new ACTION_MENU( false, selTool );
|
|
|
|
|
|
|
|
viewMenu->Add( ACTIONS::zoomInCenter );
|
|
|
|
viewMenu->Add( ACTIONS::zoomOutCenter );
|
|
|
|
viewMenu->Add( ACTIONS::zoomFitScreen );
|
|
|
|
viewMenu->Add( ACTIONS::zoomTool );
|
|
|
|
viewMenu->Add( ACTIONS::zoomRedraw );
|
|
|
|
|
|
|
|
viewMenu->AppendSeparator();
|
|
|
|
viewMenu->Add( PL_ACTIONS::previewSettings );
|
2019-10-07 22:23:57 +00:00
|
|
|
|
|
|
|
#ifdef __APPLE__
|
2020-07-29 23:50:25 +00:00
|
|
|
// Add a separator only on macOS because the OS adds menu items to the view menu after ours
|
|
|
|
viewMenu->AppendSeparator();
|
2019-10-07 22:23:57 +00:00
|
|
|
#endif
|
2019-08-02 08:35:26 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
//-- Place menu -------------------------------------------------------
|
2019-05-25 00:34:44 +00:00
|
|
|
//
|
2020-07-29 23:50:25 +00:00
|
|
|
ACTION_MENU* placeMenu = new ACTION_MENU( false, selTool );
|
2017-08-29 15:07:48 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
placeMenu->Add( PL_ACTIONS::drawLine );
|
|
|
|
placeMenu->Add( PL_ACTIONS::drawRectangle );
|
|
|
|
placeMenu->Add( PL_ACTIONS::placeText );
|
|
|
|
placeMenu->Add( PL_ACTIONS::placeImage );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
placeMenu->AppendSeparator();
|
2021-05-30 22:56:24 +00:00
|
|
|
placeMenu->Add( PL_ACTIONS::appendImportedDrawingSheet );
|
2019-06-02 11:57:29 +00:00
|
|
|
|
2019-08-16 10:08:43 +00:00
|
|
|
//-- Inspector menu -------------------------------------------------------
|
|
|
|
//
|
2020-07-29 23:50:25 +00:00
|
|
|
ACTION_MENU* inspectorMenu = new ACTION_MENU( false, selTool );
|
|
|
|
inspectorMenu->Add( PL_ACTIONS::showInspector );
|
2019-08-16 10:08:43 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
//-- Preferences menu --------------------------------------------------
|
2019-05-25 00:34:44 +00:00
|
|
|
//
|
2020-07-29 23:50:25 +00:00
|
|
|
ACTION_MENU* preferencesMenu = new ACTION_MENU( false, selTool );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2023-08-07 23:51:22 +00:00
|
|
|
preferencesMenu->Add( ACTIONS::openPreferences );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2013-07-20 19:36:19 +00:00
|
|
|
// Language submenu
|
2019-06-16 18:35:32 +00:00
|
|
|
AddMenuLanguageList( preferencesMenu, selTool );
|
2013-07-20 19:36:19 +00:00
|
|
|
|
2019-06-02 11:57:29 +00:00
|
|
|
//-- Menubar -----------------------------------------------------------
|
|
|
|
//
|
2020-07-29 23:50:25 +00:00
|
|
|
menuBar->Append( fileMenu, _( "&File" ) );
|
|
|
|
menuBar->Append( editMenu, _( "&Edit" ) );
|
|
|
|
menuBar->Append( viewMenu, _( "&View" ) );
|
|
|
|
menuBar->Append( placeMenu, _( "&Place" ) );
|
|
|
|
menuBar->Append( inspectorMenu, _( "&Inspect" ) );
|
2017-08-29 15:07:48 +00:00
|
|
|
menuBar->Append( preferencesMenu, _( "P&references" ) );
|
2019-05-18 10:27:36 +00:00
|
|
|
AddStandardHelpMenu( menuBar );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-04-07 13:13:38 +00:00
|
|
|
SetMenuBar( menuBar );
|
|
|
|
delete oldMenuBar;
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|