2011-12-16 20:12:49 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
|
|
* Copyright (C) 2004-2011 KiCad Developers, see change_log.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
/**
|
|
|
|
* @file cvpcb/menubar.cpp
|
2011-09-30 18:15:37 +00:00
|
|
|
* @brief (Re)Create the menubar for CvPcb
|
2010-01-18 19:33:45 +00:00
|
|
|
*/
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
* 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
|
|
|
#include <pgm_base.h>
|
|
|
|
#include <kiface_i.h>
|
2012-04-09 09:16:47 +00:00
|
|
|
#include <menus_helpers.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <cvpcb.h>
|
|
|
|
#include <cvpcb_mainframe.h>
|
|
|
|
#include <cvpcb_id.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-02-01 19:49:37 +00:00
|
|
|
#include <common_help_msg.h>
|
|
|
|
|
2008-12-08 15:27:13 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
/**
|
2011-09-30 18:15:37 +00:00
|
|
|
* @brief (Re)Create the menubar for the CvPcb mainframe
|
2011-04-06 13:52:47 +00:00
|
|
|
*/
|
2011-02-05 16:15:48 +00:00
|
|
|
void CVPCB_MAINFRAME::ReCreateMenuBar()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2016-02-25 09:52:29 +00:00
|
|
|
// Create the current menubar if it does not yet exist
|
2010-12-17 20:34:29 +00:00
|
|
|
wxMenuBar* menuBar = GetMenuBar();
|
2009-05-21 17:42:42 +00:00
|
|
|
|
2011-04-17 16:04:09 +00:00
|
|
|
if( ! menuBar ) // Delete all menus
|
2010-12-17 20:34:29 +00:00
|
|
|
menuBar = new wxMenuBar();
|
|
|
|
|
|
|
|
// Delete all existing menus so they can be rebuilt.
|
|
|
|
// This allows language changes of the menu text on the fly.
|
|
|
|
menuBar->Freeze();
|
2011-08-24 19:44:05 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
while( menuBar->GetMenuCount() )
|
2011-08-24 19:44:05 +00:00
|
|
|
delete menuBar->Remove( 0 );
|
2010-12-17 20:34:29 +00:00
|
|
|
|
|
|
|
// Recreate all menus:
|
2009-04-21 17:56:27 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Menu File:
|
2009-04-21 17:56:27 +00:00
|
|
|
wxMenu* filesMenu = new wxMenu;
|
|
|
|
|
2015-06-07 18:18:45 +00:00
|
|
|
// Save the footprints back into eeschema
|
2015-01-01 15:46:11 +00:00
|
|
|
AddMenuItem( filesMenu, wxID_SAVE,
|
2016-02-25 09:52:29 +00:00
|
|
|
_( "&Save Footprint Association\tCtrl+S" ),
|
2016-02-13 15:34:52 +00:00
|
|
|
_( "Save footprint association in schematic component footprint fields" ),
|
|
|
|
KiBitmap( save_xpm ) );
|
2010-01-18 19:33:45 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Separator
|
2009-04-21 17:56:27 +00:00
|
|
|
filesMenu->AppendSeparator();
|
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Quit
|
2015-01-01 15:46:11 +00:00
|
|
|
AddMenuItem( filesMenu, wxID_EXIT,
|
2015-04-23 19:43:45 +00:00
|
|
|
_( "&Close" ), _( "Close CvPcb" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( exit_xpm ) );
|
2011-04-06 13:52:47 +00:00
|
|
|
|
2016-02-24 16:30:35 +00:00
|
|
|
// Preferences Menu :
|
2011-04-06 13:52:47 +00:00
|
|
|
wxMenu* preferencesMenu = new wxMenu;
|
|
|
|
|
2013-09-14 20:33:22 +00:00
|
|
|
AddMenuItem( preferencesMenu, ID_CVPCB_LIB_TABLE_EDIT,
|
2015-03-23 15:44:19 +00:00
|
|
|
_( "Footprint Li&braries" ), _( "Configure footprint libraries" ),
|
2013-09-14 20:33:22 +00:00
|
|
|
KiBitmap( library_table_xpm ) );
|
2011-04-06 13:52:47 +00:00
|
|
|
|
2015-03-29 21:22:53 +00:00
|
|
|
// Path configuration edit dialog.
|
|
|
|
AddMenuItem( preferencesMenu,
|
|
|
|
ID_PREFERENCES_CONFIGURE_PATHS,
|
|
|
|
_( "Configure Pa&ths" ),
|
|
|
|
_( "Edit path configuration environment variables" ),
|
|
|
|
KiBitmap( editor_xpm ) );
|
|
|
|
|
2016-02-25 09:52:29 +00:00
|
|
|
preferencesMenu->AppendSeparator();
|
2015-01-11 17:22:45 +00:00
|
|
|
AddMenuItem( preferencesMenu, ID_CVPCB_EQUFILES_LIST_EDIT,
|
|
|
|
_( "Edit &Equ Files List" ),
|
|
|
|
_( "Setup equ files list (.equ files)\n"
|
|
|
|
"They are files which give the footprint name from the component value"),
|
|
|
|
KiBitmap( library_table_xpm ) );
|
2016-02-25 09:52:29 +00:00
|
|
|
preferencesMenu->AppendSeparator();
|
2015-01-11 17:22:45 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Language submenu
|
* 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
|
|
|
Pgm().AddMenuLanguageList( preferencesMenu );
|
2011-04-06 13:52:47 +00:00
|
|
|
|
2016-02-25 09:52:29 +00:00
|
|
|
// Keep open on save data
|
|
|
|
preferencesMenu->AppendSeparator();
|
|
|
|
AddMenuItem( preferencesMenu, ID_CVPCB_CONFIG_KEEP_OPEN_ON_SAVE,
|
2015-04-23 19:43:45 +00:00
|
|
|
_( "&Keep Open On Save" ),
|
2011-08-29 19:50:05 +00:00
|
|
|
_( "Prevent CvPcb from exiting after saving netlist file" ),
|
2016-02-25 09:52:29 +00:00
|
|
|
KiBitmap( exit_xpm ),
|
2009-04-23 15:02:18 +00:00
|
|
|
wxITEM_CHECK );
|
2011-09-08 05:58:45 +00:00
|
|
|
|
2009-04-21 17:56:27 +00:00
|
|
|
// Menu Help:
|
|
|
|
wxMenu* helpMenu = new wxMenu;
|
2010-08-24 17:26:51 +00:00
|
|
|
|
2011-04-06 13:52:47 +00:00
|
|
|
// Version info
|
2010-08-24 17:26:51 +00:00
|
|
|
AddHelpVersionInfoMenuEntry( helpMenu );
|
|
|
|
|
2014-02-28 17:31:00 +00:00
|
|
|
// Manual Contents
|
2015-09-23 18:29:21 +00:00
|
|
|
AddMenuItem( helpMenu, wxID_HELP, _( "CvPcb &Manual" ),
|
|
|
|
_( "Open CvPcb Manual" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( online_help_xpm ) );
|
2010-01-18 19:33:45 +00:00
|
|
|
|
2015-09-23 18:29:21 +00:00
|
|
|
AddMenuItem( helpMenu,
|
|
|
|
wxID_INDEX,
|
|
|
|
_( "&Getting Started in KiCad" ),
|
|
|
|
_( "Open \"Getting Started in KiCad\" guide for beginners" ),
|
|
|
|
KiBitmap( help_xpm ) );
|
|
|
|
|
2014-02-28 17:31:00 +00:00
|
|
|
// About CvPcb
|
2011-09-01 12:54:34 +00:00
|
|
|
AddMenuItem( helpMenu, wxID_ABOUT,
|
2015-09-23 18:59:31 +00:00
|
|
|
_( "&About Kicad" ),
|
2015-10-08 13:52:03 +00:00
|
|
|
_( "About KiCad" ),
|
2011-09-08 05:58:45 +00:00
|
|
|
KiBitmap( info_xpm ) );
|
2009-04-21 17:56:27 +00:00
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
// Create the menubar and append all submenus
|
2016-02-13 15:34:52 +00:00
|
|
|
menuBar->Append( filesMenu, _( "&Save" ) );
|
2011-04-06 13:52:47 +00:00
|
|
|
menuBar->Append( preferencesMenu, _( "&Preferences" ) );
|
2009-04-21 17:56:27 +00:00
|
|
|
menuBar->Append( helpMenu, _( "&Help" ) );
|
|
|
|
|
2010-12-17 20:34:29 +00:00
|
|
|
menuBar->Thaw();
|
|
|
|
|
|
|
|
// Associate the menu bar with the frame, if no previous menubar
|
|
|
|
if( GetMenuBar() == NULL )
|
|
|
|
SetMenuBar( menuBar );
|
|
|
|
else
|
|
|
|
menuBar->Refresh();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|