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>
|
2019-11-23 16:54:48 +00:00
|
|
|
#include <filehistory.h>
|
2021-09-14 22:45:14 +00:00
|
|
|
#include <kiface_base.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <menus_helpers.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
|
|
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
void PL_EDITOR_FRAME::ReCreateMenuBar()
|
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();
|
2021-02-22 16:37:43 +00:00
|
|
|
fileMenu->AddQuitOrClose( &Kiface(), _( "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( ACTIONS::toggleGrid, ACTION_MENU::CHECK );
|
2020-10-05 19:22:57 +00:00
|
|
|
|
|
|
|
// Units submenu
|
|
|
|
ACTION_MENU* unitsSubMenu = new ACTION_MENU( false, selTool );
|
|
|
|
unitsSubMenu->SetTitle( _( "&Units" ) );
|
2021-03-08 02:59:07 +00:00
|
|
|
unitsSubMenu->SetIcon( BITMAPS::unit_mm );
|
2020-10-05 19:22:57 +00:00
|
|
|
unitsSubMenu->Add( ACTIONS::inchesUnits, ACTION_MENU::CHECK );
|
|
|
|
unitsSubMenu->Add( ACTIONS::milsUnits, ACTION_MENU::CHECK );
|
|
|
|
unitsSubMenu->Add( ACTIONS::millimetersUnits, ACTION_MENU::CHECK );
|
2022-04-11 02:33:43 +00:00
|
|
|
viewMenu->Add( unitsSubMenu );
|
2020-10-05 19:22:57 +00:00
|
|
|
|
2020-07-29 23:50:25 +00:00
|
|
|
viewMenu->Add( ACTIONS::toggleCursorStyle, ACTION_MENU::CHECK );
|
|
|
|
|
|
|
|
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
|
|
|
|
2021-06-07 19:45:17 +00:00
|
|
|
// We can't use ACTIONS::showPreferences yet because wxWidgets moves this on
|
|
|
|
// Mac, and it needs the wxID_PREFERENCES id to find it.
|
|
|
|
preferencesMenu->Add( _( "Preferences..." ) + "\tCtrl+,",
|
|
|
|
_( "Show preferences for all open tools" ),
|
|
|
|
wxID_PREFERENCES,
|
|
|
|
BITMAPS::preference );
|
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
|
|
|
}
|