2010-01-24 02:05:07 +00:00
|
|
|
/*
|
2011-09-30 18:15:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2010-01-24 02:05:07 +00:00
|
|
|
*
|
2018-05-25 16:33:00 +00:00
|
|
|
* Copyright (C) 2018 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2013-11-27 13:20:42 +00:00
|
|
|
* Copyright (C) 2013 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2017-09-26 14:13:21 +00:00
|
|
|
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@gmail.com>
|
2018-01-08 04:05:03 +00:00
|
|
|
* Copyright (C) 2013-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
2010-01-24 02:05:07 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +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 3 of the License, or (at your
|
|
|
|
* option) any later version.
|
2010-01-24 02:05:07 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +00:00
|
|
|
* 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.
|
2010-01-24 02:05:07 +00:00
|
|
|
*
|
2018-01-08 04:05:03 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-01-24 02:05:07 +00:00
|
|
|
*/
|
|
|
|
|
2011-10-13 19:56:32 +00:00
|
|
|
/**
|
2018-01-29 20:58:58 +00:00
|
|
|
* @file pcb_edit_frame.cpp
|
2018-01-31 08:23:20 +00:00
|
|
|
* @brief PCB editor main frame implementation.
|
2011-10-13 19:56:32 +00:00
|
|
|
*/
|
2007-06-05 12:10:51 +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 <kiface_i.h>
|
|
|
|
#include <pgm_base.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <collectors.h>
|
|
|
|
#include <build_version.h>
|
2016-07-19 17:35:25 +00:00
|
|
|
#include <3d_viewer/eda_3d_viewer.h>
|
2013-05-20 14:49:20 +00:00
|
|
|
#include <fp_lib_table.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2018-04-13 13:58:25 +00:00
|
|
|
#include <trace_helpers.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <pcbnew_id.h>
|
2018-01-28 21:02:31 +00:00
|
|
|
#include <drc.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <layer_widget.h>
|
2018-01-31 08:23:20 +00:00
|
|
|
#include <pcb_layer_widget.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <hotkeys.h>
|
2017-08-04 12:43:02 +00:00
|
|
|
#include <config_params.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <footprint_edit_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <dialog_helpers.h>
|
2013-05-10 19:22:29 +00:00
|
|
|
#include <dialog_plot.h>
|
2018-02-16 19:26:55 +00:00
|
|
|
#include <dialog_exchange_footprints.h>
|
|
|
|
#include <dialog_edit_footprint_for_BoardEditor.h>
|
2018-04-28 15:22:25 +00:00
|
|
|
#include <dialog_board_setup.h>
|
|
|
|
#include <dialog_configure_paths.h>
|
2016-06-05 11:49:25 +00:00
|
|
|
#include <convert_to_biu.h>
|
2013-07-16 07:26:29 +00:00
|
|
|
#include <view/view.h>
|
2014-03-12 16:09:53 +00:00
|
|
|
#include <view/view_controls.h>
|
2014-05-21 21:13:30 +00:00
|
|
|
#include <pcb_painter.h>
|
2014-06-24 16:17:18 +00:00
|
|
|
#include <invoke_pcb_dialog.h>
|
2013-11-25 15:50:03 +00:00
|
|
|
#include <class_track.h>
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_module.h>
|
|
|
|
#include <worksheet_viewitem.h>
|
2017-11-15 17:33:06 +00:00
|
|
|
#include <connectivity_data.h>
|
2013-11-25 15:50:03 +00:00
|
|
|
#include <ratsnest_viewitem.h>
|
2018-05-14 17:34:18 +00:00
|
|
|
#include <wildcards_and_files_ext.h>
|
|
|
|
#include <kicad_string.h>
|
|
|
|
#include <pcb_draw_panel_gal.h>
|
|
|
|
#include <gal/graphics_abstraction_layer.h>
|
|
|
|
#include <functional>
|
2013-08-02 14:53:50 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tool/tool_dispatcher.h>
|
2017-02-21 12:42:08 +00:00
|
|
|
#include <tools/pcb_actions.h>
|
2014-07-09 13:02:56 +00:00
|
|
|
|
2013-03-11 08:09:48 +00:00
|
|
|
#if defined(KICAD_SCRIPTING) || defined(KICAD_SCRIPTING_WXPYTHON)
|
2012-08-02 17:24:53 +00:00
|
|
|
#include <python_scripting.h>
|
2018-04-28 15:22:25 +00:00
|
|
|
|
2012-08-02 17:24:53 +00:00
|
|
|
#endif
|
2010-01-24 02:05:07 +00:00
|
|
|
|
2016-09-19 07:40:36 +00:00
|
|
|
|
2016-06-29 10:23:11 +00:00
|
|
|
using namespace std::placeholders;
|
2013-04-15 15:57:03 +00:00
|
|
|
|
2016-05-12 19:45:47 +00:00
|
|
|
///@{
|
|
|
|
/// \ingroup config
|
|
|
|
|
|
|
|
static const wxString PlotLineWidthEntry = "PlotLineWidth_mm";
|
|
|
|
static const wxString ShowMicrowaveEntry = "ShowMicrowaveTools";
|
|
|
|
static const wxString ShowLayerManagerEntry = "ShowLayerManagerTools";
|
|
|
|
static const wxString ShowPageLimitsEntry = "ShowPageLimits";
|
|
|
|
|
|
|
|
///@}
|
2009-02-07 14:13:16 +00:00
|
|
|
|
2010-12-08 20:12:46 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
BEGIN_EVENT_TABLE( PCB_EDIT_FRAME, PCB_BASE_FRAME )
|
|
|
|
EVT_SOCKET( ID_EDA_SOCKET_EVENT_SERV, PCB_EDIT_FRAME::OnSockRequestServer )
|
|
|
|
EVT_SOCKET( ID_EDA_SOCKET_EVENT, PCB_EDIT_FRAME::OnSockRequest )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2015-07-02 09:50:38 +00:00
|
|
|
EVT_CHOICE( ID_ON_ZOOM_SELECT, PCB_EDIT_FRAME::OnSelectZoom )
|
|
|
|
EVT_CHOICE( ID_ON_GRID_SELECT, PCB_EDIT_FRAME::OnSelectGrid )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_CLOSE( PCB_EDIT_FRAME::OnCloseWindow )
|
|
|
|
EVT_SIZE( PCB_EDIT_FRAME::OnSize )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_TOOL( ID_LOAD_FILE, PCB_EDIT_FRAME::Files_io )
|
2012-12-21 07:58:51 +00:00
|
|
|
EVT_TOOL( ID_MENU_READ_BOARD_BACKUP_FILE, PCB_EDIT_FRAME::Files_io )
|
|
|
|
EVT_TOOL( ID_MENU_RECOVER_BOARD_AUTOSAVE, PCB_EDIT_FRAME::Files_io )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_TOOL( ID_NEW_BOARD, PCB_EDIT_FRAME::Files_io )
|
|
|
|
EVT_TOOL( ID_SAVE_BOARD, PCB_EDIT_FRAME::Files_io )
|
|
|
|
EVT_TOOL( ID_OPEN_MODULE_EDITOR, PCB_EDIT_FRAME::Process_Special_Functions )
|
2012-02-09 20:33:38 +00:00
|
|
|
EVT_TOOL( ID_OPEN_MODULE_VIEWER, PCB_EDIT_FRAME::Process_Special_Functions )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// Menu Files:
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_MAIN_MENUBAR, PCB_EDIT_FRAME::Process_Special_Functions )
|
2016-12-02 17:59:48 +00:00
|
|
|
EVT_MENU( ID_MENU_PCB_FLIP_VIEW, PCB_EDIT_FRAME::OnFlipPcbView )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_APPEND_FILE, PCB_EDIT_FRAME::Files_io )
|
|
|
|
EVT_MENU( ID_SAVE_BOARD_AS, PCB_EDIT_FRAME::Files_io )
|
2015-02-14 12:43:11 +00:00
|
|
|
EVT_MENU( ID_COPY_BOARD_AS, PCB_EDIT_FRAME::Files_io )
|
2016-03-04 18:48:08 +00:00
|
|
|
EVT_MENU( ID_IMPORT_NON_KICAD_BOARD, PCB_EDIT_FRAME::Files_io )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU_RANGE( wxID_FILE1, wxID_FILE9, PCB_EDIT_FRAME::OnFileHistory )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_GEN_PLOT, PCB_EDIT_FRAME::ToPlotter )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_GEN_EXPORT_SPECCTRA, PCB_EDIT_FRAME::ExportToSpecctra )
|
|
|
|
EVT_MENU( ID_GEN_EXPORT_FILE_GENCADFORMAT, PCB_EDIT_FRAME::ExportToGenCAD )
|
2012-02-15 10:41:16 +00:00
|
|
|
EVT_MENU( ID_GEN_EXPORT_FILE_MODULE_REPORT, PCB_EDIT_FRAME::GenFootprintsReport )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_GEN_EXPORT_FILE_VRML, PCB_EDIT_FRAME::OnExportVRML )
|
2016-07-19 17:35:25 +00:00
|
|
|
EVT_MENU( ID_GEN_EXPORT_FILE_IDF3, PCB_EDIT_FRAME::OnExportIDF3 )
|
2016-09-19 07:40:36 +00:00
|
|
|
EVT_MENU( ID_GEN_EXPORT_FILE_STEP, PCB_EDIT_FRAME::OnExportSTEP )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_GEN_IMPORT_SPECCTRA_SESSION,PCB_EDIT_FRAME::ImportSpecctraSession )
|
|
|
|
EVT_MENU( ID_GEN_IMPORT_SPECCTRA_DESIGN, PCB_EDIT_FRAME::ImportSpecctraDesign )
|
2013-10-24 16:44:38 +00:00
|
|
|
EVT_MENU( ID_GEN_IMPORT_DXF_FILE, PCB_EDIT_FRAME::Process_Special_Functions )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2015-09-28 08:46:00 +00:00
|
|
|
EVT_MENU( ID_MENU_ARCHIVE_MODULES_IN_LIBRARY, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_MENU_CREATE_LIBRARY_AND_ARCHIVE_MODULES, PCB_EDIT_FRAME::Process_Special_Functions )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( wxID_EXIT, PCB_EDIT_FRAME::OnQuit )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// menu Config
|
2012-10-15 22:30:01 +00:00
|
|
|
EVT_MENU( ID_PCB_LIB_TABLE_EDIT, PCB_EDIT_FRAME::Process_Config )
|
2015-08-20 07:14:44 +00:00
|
|
|
EVT_MENU( ID_PCB_3DSHAPELIB_WIZARD, PCB_EDIT_FRAME::Process_Config )
|
2015-03-29 21:22:53 +00:00
|
|
|
EVT_MENU( ID_PREFERENCES_CONFIGURE_PATHS, PCB_EDIT_FRAME::OnConfigurePaths )
|
2018-05-14 17:34:18 +00:00
|
|
|
EVT_MENU( ID_PREFERENCES_HOTKEY_SHOW_CURRENT_LIST, PCB_EDIT_FRAME::Process_Config )
|
2011-04-04 18:05:55 +00:00
|
|
|
EVT_MENU( wxID_PREFERENCES, PCB_EDIT_FRAME::Process_Config )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_PCB_USER_GRID_SETUP, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
// menu Postprocess
|
2012-02-15 10:41:16 +00:00
|
|
|
EVT_MENU( ID_PCB_GEN_POS_MODULES_FILE, PCB_EDIT_FRAME::GenFootprintsPositionFile )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_PCB_GEN_DRILL_FILE, PCB_EDIT_FRAME::InstallDrillFrame )
|
2013-09-13 09:49:55 +00:00
|
|
|
EVT_MENU( ID_PCB_GEN_D356_FILE, PCB_EDIT_FRAME::GenD356File )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_PCB_GEN_CMP_FILE, PCB_EDIT_FRAME::RecreateCmpFileFromBoard )
|
|
|
|
EVT_MENU( ID_PCB_GEN_BOM_FILE_FROM_BOARD, PCB_EDIT_FRAME::RecreateBOMFileFromBoard )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// menu Miscellaneous
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_MENU_LIST_NETS, PCB_EDIT_FRAME::ListNetsAndSelect )
|
2018-04-28 15:22:25 +00:00
|
|
|
EVT_MENU( ID_PCB_EDIT_TRACKS_AND_VIAS, PCB_EDIT_FRAME::OnEditTracksAndVias )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_PCB_GLOBAL_DELETE, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_MENU_PCB_CLEAN, PCB_EDIT_FRAME::Process_Special_Functions )
|
2018-01-12 19:36:15 +00:00
|
|
|
EVT_MENU( ID_MENU_PCB_UPDATE_FOOTPRINTS, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_MENU_PCB_EXCHANGE_FOOTPRINTS, PCB_EDIT_FRAME::Process_Special_Functions )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_MENU_PCB_SWAP_LAYERS, PCB_EDIT_FRAME::Process_Special_Functions )
|
2018-04-28 15:22:25 +00:00
|
|
|
EVT_MENU( ID_MENU_PCB_EDIT_TEXT_AND_GRAPHICS, PCB_EDIT_FRAME::OnEditTextAndGraphics )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// Menu Help
|
2011-04-17 13:54:17 +00:00
|
|
|
EVT_MENU( wxID_HELP, EDA_DRAW_FRAME::GetKicadHelp )
|
2011-08-04 18:03:26 +00:00
|
|
|
EVT_MENU( wxID_INDEX, EDA_DRAW_FRAME::GetKicadHelp )
|
2016-09-24 00:44:52 +00:00
|
|
|
EVT_MENU( ID_HELP_GET_INVOLVED, EDA_DRAW_FRAME::GetKicadContribute )
|
2011-04-04 18:05:55 +00:00
|
|
|
EVT_MENU( wxID_ABOUT, EDA_BASE_FRAME::GetKicadAbout )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// Menu 3D Frame
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_MENU_PCB_SHOW_3D_FRAME, PCB_EDIT_FRAME::Show3D_Frame )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2013-04-15 15:57:03 +00:00
|
|
|
// Switching canvases
|
2018-01-17 07:58:44 +00:00
|
|
|
EVT_MENU( ID_MENU_CANVAS_LEGACY, PCB_EDIT_FRAME::OnSwitchCanvas )
|
|
|
|
EVT_MENU( ID_MENU_CANVAS_CAIRO, PCB_EDIT_FRAME::OnSwitchCanvas )
|
|
|
|
EVT_MENU( ID_MENU_CANVAS_OPENGL, PCB_EDIT_FRAME::OnSwitchCanvas )
|
2013-04-15 15:57:03 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
// Menu Get Design Rules Editor
|
2018-04-28 15:22:25 +00:00
|
|
|
EVT_MENU( ID_BOARD_SETUP_DIALOG, PCB_EDIT_FRAME::ShowBoardSetupDialog )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// Horizontal toolbar
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
EVT_TOOL( ID_RUN_LIBRARY, PCB_EDIT_FRAME::Process_Special_Functions )
|
2011-01-21 19:30:59 +00:00
|
|
|
EVT_TOOL( ID_SHEET_SET, EDA_DRAW_FRAME::Process_PageSettings )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_TOOL( wxID_CUT, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_TOOL( wxID_COPY, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_TOOL( wxID_PASTE, PCB_EDIT_FRAME::Process_Special_Functions )
|
2016-05-25 09:52:43 +00:00
|
|
|
EVT_TOOL( wxID_UNDO, PCB_BASE_EDIT_FRAME::RestoreCopyFromUndoList )
|
|
|
|
EVT_TOOL( wxID_REDO, PCB_BASE_EDIT_FRAME::RestoreCopyFromRedoList )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_TOOL( wxID_PRINT, PCB_EDIT_FRAME::ToPrinter )
|
2018-06-13 12:20:29 +00:00
|
|
|
EVT_TOOL( ID_GEN_PLOT_SVG, PCB_EDIT_FRAME::ExportSVG )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_TOOL( ID_GEN_PLOT, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_TOOL( ID_FIND_ITEMS, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_TOOL( ID_GET_NETLIST, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_TOOL( ID_DRC_CONTROL, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_TOOL( ID_AUX_TOOLBAR_PCB_SELECT_LAYER_PAIR, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_TOOL( ID_AUX_TOOLBAR_PCB_SELECT_AUTO_WIDTH, PCB_EDIT_FRAME::Tracks_and_Vias_Size_Event )
|
2011-04-19 19:19:41 +00:00
|
|
|
EVT_COMBOBOX( ID_TOOLBARH_PCB_SELECT_LAYER, PCB_EDIT_FRAME::Process_Special_Functions )
|
2015-07-02 09:50:38 +00:00
|
|
|
EVT_CHOICE( ID_AUX_TOOLBAR_PCB_TRACK_WIDTH, PCB_EDIT_FRAME::Tracks_and_Vias_Size_Event )
|
|
|
|
EVT_CHOICE( ID_AUX_TOOLBAR_PCB_VIA_SIZE, PCB_EDIT_FRAME::Tracks_and_Vias_Size_Event )
|
2014-10-31 14:45:46 +00:00
|
|
|
|
2017-01-22 09:05:46 +00:00
|
|
|
|
|
|
|
#if defined(KICAD_SCRIPTING) && defined(KICAD_SCRIPTING_ACTION_MENU)
|
|
|
|
EVT_TOOL( ID_TOOLBARH_PCB_ACTION_PLUGIN_REFRESH, PCB_EDIT_FRAME::OnActionPluginRefresh )
|
|
|
|
#endif
|
|
|
|
|
2015-12-21 15:39:36 +00:00
|
|
|
#if defined( KICAD_SCRIPTING_WXPYTHON )
|
2014-10-31 14:45:46 +00:00
|
|
|
// has meaning only with KICAD_SCRIPTING_WXPYTHON enabled
|
2012-08-10 21:53:50 +00:00
|
|
|
EVT_TOOL( ID_TOOLBARH_PCB_SCRIPTING_CONSOLE, PCB_EDIT_FRAME::ScriptingConsoleEnableDisable )
|
2014-06-17 18:31:27 +00:00
|
|
|
EVT_UPDATE_UI( ID_TOOLBARH_PCB_SCRIPTING_CONSOLE,
|
|
|
|
PCB_EDIT_FRAME::OnUpdateScriptingConsoleState )
|
2015-12-21 15:39:36 +00:00
|
|
|
#endif
|
2014-10-31 14:45:46 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
// Option toolbar
|
2011-03-04 19:16:00 +00:00
|
|
|
EVT_TOOL( ID_TB_OPTIONS_DRC_OFF,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::OnSelectOptionToolbar )
|
2011-03-04 19:16:00 +00:00
|
|
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_RATSNEST,
|
|
|
|
PCB_EDIT_FRAME::OnSelectOptionToolbar )
|
|
|
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_VIAS_SKETCH,
|
|
|
|
PCB_EDIT_FRAME::OnSelectOptionToolbar )
|
|
|
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_TRACKS_SKETCH,
|
|
|
|
PCB_EDIT_FRAME::OnSelectOptionToolbar )
|
|
|
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_HIGH_CONTRAST_MODE,
|
|
|
|
PCB_EDIT_FRAME::OnSelectOptionToolbar )
|
|
|
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_EXTRA_VERTICAL_TOOLBAR_MICROWAVE,
|
|
|
|
PCB_EDIT_FRAME::OnSelectOptionToolbar )
|
|
|
|
|
2016-01-29 14:43:40 +00:00
|
|
|
EVT_TOOL( ID_UPDATE_PCB_FROM_SCH, PCB_EDIT_FRAME::OnUpdatePCBFromSch )
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
EVT_TOOL_RANGE( ID_TB_OPTIONS_SHOW_ZONES, ID_TB_OPTIONS_SHOW_ZONES_OUTLINES_ONLY,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::OnSelectOptionToolbar )
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2010-01-21 20:36:48 +00:00
|
|
|
EVT_TOOL( ID_TB_OPTIONS_SHOW_MANAGE_LAYERS_VERTICAL_TOOLBAR,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::OnSelectOptionToolbar )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-03-04 19:16:00 +00:00
|
|
|
// Vertical main toolbar:
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_TOOL( ID_NO_TOOL_SELECTED, PCB_EDIT_FRAME::OnSelectTool )
|
2016-06-08 11:19:53 +00:00
|
|
|
EVT_TOOL( ID_ZOOM_SELECTION, PCB_EDIT_FRAME::OnSelectTool )
|
2017-03-09 09:09:13 +00:00
|
|
|
EVT_TOOL_RANGE( ID_PCB_HIGHLIGHT_BUTT, ID_PCB_MEASUREMENT_TOOL,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::OnSelectTool )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
EVT_TOOL_RANGE( ID_PCB_MUWAVE_START_CMD, ID_PCB_MUWAVE_END_CMD,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::ProcessMuWaveFunctions )
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
EVT_MENU_RANGE( ID_POPUP_PCB_START_RANGE, ID_POPUP_PCB_END_RANGE,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::Process_Special_Functions )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// Tracks and vias sizes general options
|
|
|
|
EVT_MENU_RANGE( ID_POPUP_PCB_SELECT_WIDTH_START_RANGE,
|
|
|
|
ID_POPUP_PCB_SELECT_WIDTH_END_RANGE,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::Tracks_and_Vias_Size_Event )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// popup menus
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_POPUP_PCB_DELETE_TRACKSEG, PCB_EDIT_FRAME::Process_Special_Functions )
|
2009-11-18 12:52:19 +00:00
|
|
|
EVT_MENU_RANGE( ID_POPUP_GENERAL_START_RANGE, ID_POPUP_GENERAL_END_RANGE,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::Process_Special_Functions )
|
2018-04-24 18:42:38 +00:00
|
|
|
EVT_MENU( ID_POPUP_PCB_SPREAD_ALL_MODULES, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_POPUP_PCB_SPREAD_NEW_MODULES, PCB_EDIT_FRAME::Process_Special_Functions )
|
2018-05-02 16:06:10 +00:00
|
|
|
EVT_MENU( ID_POPUP_PCB_AUTOPLACE_FIXE_MODULE, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_POPUP_PCB_AUTOPLACE_FIXE_ALL_MODULES, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_POPUP_PCB_AUTOPLACE_FREE_ALL_MODULES, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_POPUP_PCB_AUTOPLACE_FREE_MODULE, PCB_EDIT_FRAME::Process_Special_Functions )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
// User interface update event handlers.
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_UPDATE_UI( ID_SAVE_BOARD, PCB_EDIT_FRAME::OnUpdateSave )
|
|
|
|
EVT_UPDATE_UI( ID_AUX_TOOLBAR_PCB_SELECT_LAYER_PAIR, PCB_EDIT_FRAME::OnUpdateLayerPair )
|
|
|
|
EVT_UPDATE_UI( ID_TOOLBARH_PCB_SELECT_LAYER, PCB_EDIT_FRAME::OnUpdateLayerSelectBox )
|
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_DRC_OFF, PCB_EDIT_FRAME::OnUpdateDrcEnable )
|
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_RATSNEST, PCB_EDIT_FRAME::OnUpdateShowBoardRatsnest )
|
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_VIAS_SKETCH, PCB_EDIT_FRAME::OnUpdateViaDrawMode )
|
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_TRACKS_SKETCH, PCB_EDIT_FRAME::OnUpdateTraceDrawMode )
|
2011-02-21 13:54:29 +00:00
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_HIGH_CONTRAST_MODE,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::OnUpdateHighContrastDisplayMode )
|
2011-03-03 19:08:13 +00:00
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_MANAGE_LAYERS_VERTICAL_TOOLBAR,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::OnUpdateShowLayerManager )
|
2011-03-04 19:16:00 +00:00
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_EXTRA_VERTICAL_TOOLBAR_MICROWAVE,
|
2011-03-03 19:08:13 +00:00
|
|
|
PCB_EDIT_FRAME::OnUpdateShowMicrowaveToolbar )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_UPDATE_UI( ID_NO_TOOL_SELECTED, PCB_EDIT_FRAME::OnUpdateVerticalToolbar )
|
2016-06-08 11:19:53 +00:00
|
|
|
EVT_UPDATE_UI( ID_ZOOM_SELECTION, PCB_EDIT_FRAME::OnUpdateVerticalToolbar )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_UPDATE_UI( ID_AUX_TOOLBAR_PCB_TRACK_WIDTH, PCB_EDIT_FRAME::OnUpdateSelectTrackWidth )
|
|
|
|
EVT_UPDATE_UI( ID_AUX_TOOLBAR_PCB_VIA_SIZE, PCB_EDIT_FRAME::OnUpdateSelectViaSize )
|
|
|
|
EVT_UPDATE_UI_RANGE( ID_POPUP_PCB_SELECT_WIDTH1, ID_POPUP_PCB_SELECT_WIDTH8,
|
|
|
|
PCB_EDIT_FRAME::OnUpdateSelectTrackWidth )
|
|
|
|
EVT_UPDATE_UI_RANGE( ID_POPUP_PCB_SELECT_VIASIZE1, ID_POPUP_PCB_SELECT_VIASIZE8,
|
|
|
|
PCB_EDIT_FRAME::OnUpdateSelectViaSize )
|
2017-03-09 09:09:13 +00:00
|
|
|
EVT_UPDATE_UI_RANGE( ID_PCB_HIGHLIGHT_BUTT, ID_PCB_MEASUREMENT_TOOL,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::OnUpdateVerticalToolbar )
|
2014-02-27 18:48:18 +00:00
|
|
|
EVT_UPDATE_UI_RANGE( ID_PCB_MUWAVE_START_CMD, ID_PCB_MUWAVE_END_CMD,
|
|
|
|
PCB_EDIT_FRAME::OnUpdateMuWaveToolbar )
|
2014-07-09 09:59:23 +00:00
|
|
|
|
|
|
|
EVT_COMMAND( wxID_ANY, LAYER_WIDGET::EVT_LAYER_COLOR_CHANGE, PCB_EDIT_FRAME::OnLayerColorChange )
|
2007-08-20 01:20:48 +00:00
|
|
|
END_EVENT_TABLE()
|
2007-06-05 12:10:51 +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
|
|
|
PCB_EDIT_FRAME::PCB_EDIT_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
2014-07-09 11:50:27 +00:00
|
|
|
PCB_BASE_EDIT_FRAME( aKiway, aParent, FRAME_PCB, wxT( "Pcbnew" ), wxDefaultPosition,
|
* 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
|
|
|
wxDefaultSize, KICAD_DEFAULT_DRAWFRAME_STYLE, PCB_EDIT_FRAME_NAME )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-12-14 20:03:15 +00:00
|
|
|
m_showBorderAndTitleBlock = true; // true to display sheet references
|
|
|
|
m_showAxis = false; // true to display X and Y axis
|
|
|
|
m_showOriginAxis = true;
|
|
|
|
m_showGridAxis = true;
|
|
|
|
m_SelTrackWidthBox = NULL;
|
2009-10-03 17:18:08 +00:00
|
|
|
m_SelViaSizeBox = NULL;
|
2011-12-14 20:03:15 +00:00
|
|
|
m_SelLayerBox = NULL;
|
2009-10-14 19:43:31 +00:00
|
|
|
m_show_microwave_tools = false;
|
2010-01-21 20:36:48 +00:00
|
|
|
m_show_layer_manager_tools = true;
|
2018-02-14 22:07:59 +00:00
|
|
|
m_hotkeysDescrList = g_Board_Editor_Hotkeys_Descr;
|
2011-10-13 19:56:32 +00:00
|
|
|
m_hasAutoSave = true;
|
2011-12-14 20:03:15 +00:00
|
|
|
m_microWaveToolBar = NULL;
|
2018-02-24 16:53:52 +00:00
|
|
|
m_Layers = nullptr;
|
2013-05-20 14:49:20 +00:00
|
|
|
|
2018-05-03 22:23:47 +00:00
|
|
|
// We don't know what state board was in when it was lasat saved, so we have to
|
|
|
|
// assume dirty
|
|
|
|
m_ZoneFillsDirty = true;
|
|
|
|
|
2013-12-16 21:40:03 +00:00
|
|
|
m_rotationAngle = 900;
|
2013-05-20 14:49:20 +00:00
|
|
|
|
2014-07-09 08:57:32 +00:00
|
|
|
// Create GAL canvas
|
2015-08-21 08:33:36 +00:00
|
|
|
EDA_DRAW_PANEL_GAL* galCanvas = new PCB_DRAW_PANEL_GAL( this, -1, wxPoint( 0, 0 ),
|
2017-01-02 06:13:45 +00:00
|
|
|
m_FrameSize,
|
|
|
|
GetGalDisplayOptions(),
|
|
|
|
EDA_DRAW_PANEL_GAL::GAL_TYPE_NONE );
|
2015-08-21 08:33:36 +00:00
|
|
|
|
|
|
|
SetGalCanvas( galCanvas );
|
2014-07-09 08:57:32 +00:00
|
|
|
|
++PCBNew
* Removed Pcb_Frame argument from BOARD() constructor, since it precludes
having a BOARD being edited by more than one editor, it was a bad design.
And this meant removing m_PcbFrame from BOARD.
* removed BOARD::SetWindowFrame(), and BOARD::m_PcbFrame
* Removed the global BOARD_DESIGN_SETTINGS which was in class_board.cpp
* added BOARD_DESIGN_SETTINGS to the BOARD class, a full instance
* a couple dialogs now only change BOARD_DESIGN_SETTINGS when OK is pressed,
such as dialog_mask_clearance, dialog_drc, etc.
* Removed common/pcbcommon.cpp's int g_CurrentVersionPCB = 1 and replaced it
with build_version.h's #define BOARD_FILE_VERSION, although there may be a
better place for this constant.
* Made the public functions in PARAM_CFG_ARRAY be type const.
void SaveParam(..) const and void ReadParam(..) const
* PARAM_CFG_BASE now has virtual destructor since we have various way of
destroying the derived class and boost::ptr_vector must be told about this.
* Pass const PARAM_CFG_ARRAY& instead of PARAM_CFG_ARRAY so that we can use
an automatic PARAM_CFG_ARRAY which is on the stack.\
* PCB_EDIT_FRAME::GetProjectFileParameters() may no longer cache the array,
since it has to access the current BOARD and the BOARD can change.
Remember BOARD_DESIGN_SETTINGS are now in the BOARD.
* Made the m_BoundingBox member private, this was a brutally hard task,
and indicative of the lack of commitment to accessors and object oriented
design on the part of KiCad developers. We must do better.
Added BOARD::GetBoundingBox, SetBoundingBox(), ComputeBoundingBox().
* Added PCB_BASE_FRAME::GetBoardBoundingBox() which calls BOARD::ComputeBoundingBox()
2011-12-05 06:15:33 +00:00
|
|
|
SetBoard( new BOARD() );
|
2010-01-21 20:53:01 +00:00
|
|
|
|
2010-01-24 02:05:07 +00:00
|
|
|
// Create the PCB_LAYER_WIDGET *after* SetBoard():
|
2018-05-02 14:46:09 +00:00
|
|
|
m_Layers = new PCB_LAYER_WIDGET( this, GetCanvas() );
|
2010-01-24 02:05:07 +00:00
|
|
|
|
2009-01-17 20:31:19 +00:00
|
|
|
m_drc = new DRC( this ); // these 2 objects point to each other
|
|
|
|
|
2011-09-08 05:58:45 +00:00
|
|
|
wxIcon icon;
|
|
|
|
icon.CopyFromBitmap( KiBitmap( icon_pcbnew_xpm ) );
|
|
|
|
SetIcon( icon );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2015-08-06 00:10:52 +00:00
|
|
|
// LoadSettings() *after* creating m_LayersManager, because LoadSettings()
|
|
|
|
// initialize parameters in m_LayersManager
|
|
|
|
LoadSettings( config() );
|
|
|
|
|
2011-12-31 05:44:00 +00:00
|
|
|
SetScreen( new PCB_SCREEN( GetPageSettings().GetSizeIU() ) );
|
2015-08-06 00:10:52 +00:00
|
|
|
GetScreen()->SetMaxUndoItems( m_UndoRedoCountMax );
|
2011-12-31 05:44:00 +00:00
|
|
|
|
|
|
|
// PCB drawings start in the upper left corner.
|
|
|
|
GetScreen()->m_Center = false;
|
2010-02-03 14:05:17 +00:00
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
SetSize( m_FramePos.x, m_FramePos.y, m_FrameSize.x, m_FrameSize.y );
|
|
|
|
|
2018-02-24 11:24:00 +00:00
|
|
|
GetScreen()->AddGrid( m_UserGridSize, EDA_UNITS_T::UNSCALED_UNITS, ID_POPUP_GRID_USER );
|
2009-10-14 19:43:31 +00:00
|
|
|
GetScreen()->SetGrid( ID_POPUP_GRID_LEVEL_1000 + m_LastGridSizeId );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas )
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetEnableBlockCommands( true );
|
2010-01-30 14:46:26 +00:00
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
ReCreateMenuBar();
|
|
|
|
ReCreateHToolbar();
|
|
|
|
ReCreateAuxiliaryToolbar();
|
|
|
|
ReCreateVToolbar();
|
|
|
|
ReCreateOptToolbar();
|
2009-10-14 19:43:31 +00:00
|
|
|
|
2010-07-17 11:14:57 +00:00
|
|
|
ReCreateMicrowaveVToolbar();
|
2009-11-02 22:24:55 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
m_auimgr.SetManagedWindow( this );
|
2009-11-05 08:52:41 +00:00
|
|
|
|
2011-09-15 18:25:44 +00:00
|
|
|
EDA_PANEINFO horiz;
|
|
|
|
horiz.HorizontalToolbarPane();
|
|
|
|
|
|
|
|
EDA_PANEINFO vert;
|
|
|
|
vert.VerticalToolbarPane();
|
|
|
|
|
|
|
|
EDA_PANEINFO mesg;
|
|
|
|
mesg.MessageToolbarPane();
|
2010-11-02 18:46:48 +00:00
|
|
|
|
2010-10-19 19:18:30 +00:00
|
|
|
// Create a wxAuiPaneInfo for the Layers Manager, not derived from the template.
|
2010-01-21 07:41:30 +00:00
|
|
|
// LAYER_WIDGET is floatable, but initially docked at far right
|
2011-09-15 18:25:44 +00:00
|
|
|
EDA_PANEINFO lyrs;
|
|
|
|
lyrs.LayersToolbarPane();
|
2010-01-21 07:41:30 +00:00
|
|
|
lyrs.MinSize( m_Layers->GetBestSize() ); // updated in ReFillLayerWidget
|
|
|
|
lyrs.BestSize( m_Layers->GetBestSize() );
|
2018-05-08 16:56:30 +00:00
|
|
|
lyrs.Caption( _( "Layers Manager" ) );
|
2014-07-15 16:53:13 +00:00
|
|
|
lyrs.TopDockable( false ).BottomDockable( false );
|
2010-01-21 07:41:30 +00:00
|
|
|
|
2011-12-16 13:32:23 +00:00
|
|
|
if( m_mainToolBar ) // The main horizontal toolbar
|
2010-10-19 19:18:30 +00:00
|
|
|
{
|
2011-12-16 13:32:23 +00:00
|
|
|
m_auimgr.AddPane( m_mainToolBar,
|
|
|
|
wxAuiPaneInfo( horiz ).Name( wxT( "m_mainToolBar" ) ).Top().Row( 0 ) );
|
2010-10-19 19:18:30 +00:00
|
|
|
}
|
2009-11-02 22:24:55 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
if( m_auxiliaryToolBar ) // the auxiliary horizontal toolbar, that shows track and via sizes, zoom ...)
|
2010-10-19 19:18:30 +00:00
|
|
|
{
|
2011-12-14 20:03:15 +00:00
|
|
|
m_auimgr.AddPane( m_auxiliaryToolBar,
|
|
|
|
wxAuiPaneInfo( horiz ).Name( wxT( "m_auxiliaryToolBar" ) ).Top().Row( 1 ) );
|
2010-10-19 19:18:30 +00:00
|
|
|
}
|
2009-11-02 22:24:55 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
if( m_microWaveToolBar ) // The auxiliary vertical right toolbar (currently microwave tools)
|
|
|
|
m_auimgr.AddPane( m_microWaveToolBar,
|
2014-06-17 18:31:27 +00:00
|
|
|
wxAuiPaneInfo( vert ).Name( wxT( "m_microWaveToolBar" ) ).
|
|
|
|
Right().Layer( 1 ).Position(1).Hide() );
|
2009-11-02 22:24:55 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
if( m_drawToolBar ) // The main right vertical toolbar
|
|
|
|
m_auimgr.AddPane( m_drawToolBar,
|
2011-09-18 15:11:09 +00:00
|
|
|
wxAuiPaneInfo( vert ).Name( wxT( "m_VToolBar" ) ).Right().Layer( 2 ) );
|
2010-01-21 07:41:30 +00:00
|
|
|
|
2011-09-18 15:11:09 +00:00
|
|
|
// Add the layer manager ( most right side of pcbframe )
|
|
|
|
m_auimgr.AddPane( m_Layers, lyrs.Name( wxT( "m_LayersManagerToolBar" ) ).Right().Layer( 3 ) );
|
2009-11-02 22:24:55 +00:00
|
|
|
|
2011-12-14 20:03:15 +00:00
|
|
|
if( m_optionsToolBar ) // The left vertical toolbar (fast acces display options of Pcbnew)
|
2010-01-21 20:36:48 +00:00
|
|
|
{
|
2011-12-14 20:03:15 +00:00
|
|
|
m_auimgr.AddPane( m_optionsToolBar,
|
|
|
|
wxAuiPaneInfo( vert ).Name( wxT( "m_optionsToolBar" ) ).Left().Layer(1) );
|
2010-11-02 18:46:48 +00:00
|
|
|
|
2010-01-21 20:36:48 +00:00
|
|
|
m_auimgr.GetPane( wxT( "m_LayersManagerToolBar" ) ).Show( m_show_layer_manager_tools );
|
2011-12-14 20:03:15 +00:00
|
|
|
m_auimgr.GetPane( wxT( "m_microWaveToolBar" ) ).Show( m_show_microwave_tools );
|
2010-01-21 20:36:48 +00:00
|
|
|
}
|
2009-11-02 22:24:55 +00:00
|
|
|
|
2011-12-22 13:28:11 +00:00
|
|
|
if( m_canvas )
|
|
|
|
m_auimgr.AddPane( m_canvas,
|
2010-01-13 21:15:54 +00:00
|
|
|
wxAuiPaneInfo().Name( wxT( "DrawFrame" ) ).CentrePane() );
|
2009-11-02 22:24:55 +00:00
|
|
|
|
2013-12-26 22:36:43 +00:00
|
|
|
if( GetGalCanvas() )
|
|
|
|
m_auimgr.AddPane( (wxWindow*) GetGalCanvas(),
|
2013-04-18 09:20:19 +00:00
|
|
|
wxAuiPaneInfo().Name( wxT( "DrawFrameGal" ) ).CentrePane().Hide() );
|
|
|
|
|
2011-12-12 14:02:37 +00:00
|
|
|
if( m_messagePanel )
|
|
|
|
m_auimgr.AddPane( m_messagePanel,
|
2011-09-15 18:25:44 +00:00
|
|
|
wxAuiPaneInfo( mesg ).Name( wxT( "MsgPanel" ) ).Bottom().Layer(10) );
|
2009-11-02 22:24:55 +00:00
|
|
|
|
2011-04-07 19:17:51 +00:00
|
|
|
ReFillLayerWidget(); // this is near end because contents establish size
|
|
|
|
m_Layers->ReFillRender(); // Update colors in Render after the config is read
|
2012-02-06 05:44:19 +00:00
|
|
|
syncLayerWidgetLayer();
|
|
|
|
|
2010-10-19 19:18:30 +00:00
|
|
|
m_auimgr.Update();
|
2013-05-28 16:54:59 +00:00
|
|
|
|
2013-09-02 14:29:10 +00:00
|
|
|
setupTools();
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
|
2015-03-06 17:46:04 +00:00
|
|
|
Zoom_Automatique( false );
|
2015-08-07 17:15:47 +00:00
|
|
|
|
2017-09-20 08:53:58 +00:00
|
|
|
EDA_DRAW_PANEL_GAL::GAL_TYPE canvasType = loadCanvasTypeSetting();
|
2015-08-21 08:33:36 +00:00
|
|
|
|
2018-01-04 14:28:02 +00:00
|
|
|
// Nudge user to switch to OpenGL if they are on legacy or Cairo
|
|
|
|
if( m_firstRunDialogSetting < 1 )
|
|
|
|
{
|
|
|
|
if( canvasType != EDA_DRAW_PANEL_GAL::GAL_TYPE_OPENGL )
|
|
|
|
{
|
|
|
|
wxString msg = _( "KiCad can use your graphics card to give you a smoother "
|
|
|
|
"and faster experience. This option is turned off by "
|
|
|
|
"default since it is not compatible with all computers.\n\n"
|
|
|
|
"Would you like to try enabling graphics acceleration?\n\n"
|
2018-02-19 19:26:02 +00:00
|
|
|
"If you'd like to choose later, select Modern Toolset "
|
|
|
|
"(Accelerated) in the Preferences menu." );
|
2018-01-04 14:28:02 +00:00
|
|
|
|
|
|
|
wxMessageDialog dlg( this, msg, _( "Enable Graphics Acceleration" ),
|
|
|
|
wxYES_NO );
|
|
|
|
|
|
|
|
dlg.SetYesNoLabels( _( "&Enable Acceleration" ), _( "&No Thanks" ) );
|
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_YES )
|
|
|
|
{
|
|
|
|
// Save Cairo as default in case OpenGL crashes
|
|
|
|
saveCanvasTypeSetting( EDA_DRAW_PANEL_GAL::GAL_TYPE_CAIRO );
|
|
|
|
|
|
|
|
// Switch to OpenGL, which will save the new setting if successful
|
|
|
|
wxCommandEvent evt( wxEVT_MENU, ID_MENU_CANVAS_OPENGL );
|
2018-06-04 09:49:53 +00:00
|
|
|
GetEventHandler()->ProcessEvent( evt );
|
|
|
|
|
|
|
|
// Switch back to Cairo if OpenGL is not supported
|
|
|
|
if( GetGalCanvas()->GetBackend() == EDA_DRAW_PANEL_GAL::GAL_TYPE_NONE )
|
|
|
|
{
|
|
|
|
wxCommandEvent cairoEvt( wxEVT_MENU, ID_MENU_CANVAS_CAIRO );
|
|
|
|
GetEventHandler()->ProcessEvent( cairoEvt );
|
|
|
|
}
|
2018-01-04 14:28:02 +00:00
|
|
|
}
|
2018-06-04 08:41:13 +00:00
|
|
|
else if( canvasType == EDA_DRAW_PANEL_GAL::GAL_TYPE_NONE )
|
2018-01-04 14:28:02 +00:00
|
|
|
{
|
|
|
|
// If they were on legacy, switch them to Cairo
|
2018-06-04 08:41:13 +00:00
|
|
|
wxCommandEvent evt( wxEVT_MENU, ID_MENU_CANVAS_CAIRO );
|
2018-06-04 09:49:53 +00:00
|
|
|
GetEventHandler()->ProcessEvent( evt );
|
2018-01-04 14:28:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_firstRunDialogSetting = 1;
|
|
|
|
SaveSettings( config() );
|
|
|
|
}
|
2018-06-04 08:41:13 +00:00
|
|
|
else
|
2015-08-07 17:15:47 +00:00
|
|
|
{
|
2018-06-04 08:41:13 +00:00
|
|
|
if( canvasType != EDA_DRAW_PANEL_GAL::GAL_TYPE_NONE )
|
|
|
|
{
|
|
|
|
if( GetGalCanvas()->SwitchBackend( canvasType ) )
|
|
|
|
UseGalCanvas( true );
|
|
|
|
}
|
2015-08-07 17:15:47 +00:00
|
|
|
}
|
2015-08-21 08:33:36 +00:00
|
|
|
|
|
|
|
enableGALSpecificMenus();
|
2016-09-19 07:40:36 +00:00
|
|
|
|
|
|
|
// disable Export STEP item if kicad2step does not exist
|
2016-09-19 21:29:38 +00:00
|
|
|
wxString strK2S = Pgm().GetExecutablePath();
|
2018-06-18 16:14:10 +00:00
|
|
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
if (strK2S.find( "pcbnew.app" ) != wxNOT_FOUND )
|
2018-06-13 02:35:42 +00:00
|
|
|
{
|
|
|
|
// On macOS, we have standalone applications inside the main bundle, so we handle that here:
|
|
|
|
strK2S += "../../";
|
|
|
|
}
|
2018-06-18 16:14:10 +00:00
|
|
|
|
2018-06-13 02:35:42 +00:00
|
|
|
strK2S += "Contents/MacOS/";
|
2018-06-18 16:14:10 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-19 07:40:36 +00:00
|
|
|
wxFileName appK2S( strK2S, "kicad2step" );
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2016-09-21 00:18:16 +00:00
|
|
|
appK2S.SetExt( "exe" );
|
2016-09-19 07:40:36 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if( !appK2S.FileExists() )
|
|
|
|
GetMenuBar()->FindItem( ID_GEN_EXPORT_FILE_STEP )->Enable( false );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-06-04 13:17:33 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::~PCB_EDIT_FRAME()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2007-12-01 03:42:52 +00:00
|
|
|
delete m_drc;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2013-11-25 15:50:03 +00:00
|
|
|
void PCB_EDIT_FRAME::SetBoard( BOARD* aBoard )
|
|
|
|
{
|
2015-08-15 14:00:34 +00:00
|
|
|
PCB_BASE_EDIT_FRAME::SetBoard( aBoard );
|
2013-11-25 15:50:03 +00:00
|
|
|
|
2014-04-07 14:04:54 +00:00
|
|
|
if( IsGalCanvasActive() )
|
2013-11-25 15:50:03 +00:00
|
|
|
{
|
2017-04-25 09:06:24 +00:00
|
|
|
aBoard->GetConnectivity()->Build( aBoard );
|
2017-07-04 10:48:47 +00:00
|
|
|
|
2014-09-08 12:06:38 +00:00
|
|
|
// reload the worksheet
|
|
|
|
SetPageSettings( aBoard->GetPageSettings() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-13 15:31:54 +00:00
|
|
|
BOARD_ITEM_CONTAINER* PCB_EDIT_FRAME::GetModel() const
|
|
|
|
{
|
|
|
|
return m_Pcb;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-08 12:06:38 +00:00
|
|
|
void PCB_EDIT_FRAME::SetPageSettings( const PAGE_INFO& aPageSettings )
|
|
|
|
{
|
|
|
|
PCB_BASE_FRAME::SetPageSettings( aPageSettings );
|
|
|
|
|
|
|
|
if( IsGalCanvasActive() )
|
|
|
|
{
|
|
|
|
PCB_DRAW_PANEL_GAL* drawPanel = static_cast<PCB_DRAW_PANEL_GAL*>( GetGalCanvas() );
|
|
|
|
|
2014-07-09 08:57:32 +00:00
|
|
|
// Prepare worksheet template
|
2014-07-09 08:57:32 +00:00
|
|
|
KIGFX::WORKSHEET_VIEWITEM* worksheet;
|
2018-06-01 07:11:43 +00:00
|
|
|
worksheet = new KIGFX::WORKSHEET_VIEWITEM( IU_PER_MILS ,&m_Pcb->GetPageSettings(),
|
2014-09-08 12:06:38 +00:00
|
|
|
&m_Pcb->GetTitleBlock() );
|
2014-07-09 08:57:32 +00:00
|
|
|
worksheet->SetSheetName( std::string( GetScreenDesc().mb_str() ) );
|
2013-11-25 15:50:03 +00:00
|
|
|
|
2014-07-09 08:57:32 +00:00
|
|
|
BASE_SCREEN* screen = GetScreen();
|
2013-11-25 15:50:03 +00:00
|
|
|
|
2014-07-09 08:57:32 +00:00
|
|
|
if( screen != NULL )
|
|
|
|
{
|
|
|
|
worksheet->SetSheetNumber( screen->m_ScreenNumber );
|
|
|
|
worksheet->SetSheetCount( screen->m_NumberOfScreens );
|
|
|
|
}
|
2014-05-21 21:13:30 +00:00
|
|
|
|
2014-07-09 08:57:32 +00:00
|
|
|
// PCB_DRAW_PANEL_GAL takes ownership of the worksheet
|
2014-07-09 08:57:32 +00:00
|
|
|
drawPanel->SetWorksheet( worksheet );
|
2014-05-21 21:13:30 +00:00
|
|
|
}
|
2013-11-25 15:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-15 13:25:57 +00:00
|
|
|
bool PCB_EDIT_FRAME::isAutoSaveRequired() const
|
2011-10-13 19:56:32 +00:00
|
|
|
{
|
2015-08-08 12:44:39 +00:00
|
|
|
if( GetScreen() )
|
|
|
|
return GetScreen()->IsSave();
|
|
|
|
|
|
|
|
return false;
|
2011-10-13 19:56:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-09 13:02:56 +00:00
|
|
|
void PCB_EDIT_FRAME::setupTools()
|
|
|
|
{
|
|
|
|
// Create the manager and dispatcher & route draw panel events to the dispatcher
|
|
|
|
m_toolManager = new TOOL_MANAGER;
|
2015-07-02 09:40:36 +00:00
|
|
|
m_toolManager->SetEnvironment( m_Pcb, GetGalCanvas()->GetView(),
|
2014-07-09 13:02:56 +00:00
|
|
|
GetGalCanvas()->GetViewControls(), this );
|
2017-02-21 12:42:08 +00:00
|
|
|
m_actions = new PCB_ACTIONS();
|
|
|
|
m_toolDispatcher = new TOOL_DISPATCHER( m_toolManager, m_actions );
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
// Register tools
|
2017-02-21 12:42:08 +00:00
|
|
|
m_actions->RegisterAllTools( m_toolManager );
|
2017-01-30 10:38:02 +00:00
|
|
|
m_toolManager->InitTools();
|
2014-07-09 13:02:56 +00:00
|
|
|
|
|
|
|
// Run the selection tool, it is supposed to be always active
|
|
|
|
m_toolManager->InvokeTool( "pcbnew.InteractiveSelection" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::ReFillLayerWidget()
|
2010-01-21 07:41:30 +00:00
|
|
|
{
|
2010-01-24 02:05:07 +00:00
|
|
|
m_Layers->ReFill();
|
2010-01-21 20:53:01 +00:00
|
|
|
|
|
|
|
wxAuiPaneInfo& lyrs = m_auimgr.GetPane( m_Layers );
|
|
|
|
|
|
|
|
wxSize bestz = m_Layers->GetBestSize();
|
|
|
|
|
|
|
|
lyrs.MinSize( bestz );
|
|
|
|
lyrs.BestSize( bestz );
|
|
|
|
lyrs.FloatingSize( bestz );
|
|
|
|
|
|
|
|
if( lyrs.IsDocked() )
|
|
|
|
m_auimgr.Update();
|
|
|
|
else
|
|
|
|
m_Layers->SetSize( bestz );
|
2010-01-21 07:41:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::OnQuit( wxCommandEvent& event )
|
2010-01-18 19:33:45 +00:00
|
|
|
{
|
2015-06-25 19:06:51 +00:00
|
|
|
Close( false );
|
2010-01-18 19:33:45 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::OnCloseWindow( wxCloseEvent& Event )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-12-29 20:11:42 +00:00
|
|
|
m_canvas->SetAbortRequest( true );
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2018-04-10 18:10:00 +00:00
|
|
|
if( GetScreen()->IsModify() && !GetBoard()->IsEmpty() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
wxString msg = wxString::Format( _(
|
|
|
|
"Save the changes in\n"
|
2017-12-15 11:37:46 +00:00
|
|
|
"\"%s\"\n"
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
"before closing?" ),
|
|
|
|
GetChars( GetBoard()->GetFileName() )
|
|
|
|
);
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2012-03-08 17:47:23 +00:00
|
|
|
int ii = DisplayExitDialog( this, msg );
|
2007-08-20 01:20:48 +00:00
|
|
|
switch( ii )
|
|
|
|
{
|
|
|
|
case wxID_CANCEL:
|
|
|
|
Event.Veto();
|
|
|
|
return;
|
|
|
|
|
|
|
|
case wxID_NO:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case wxID_YES:
|
2015-03-17 07:34:02 +00:00
|
|
|
// save the board. if the board has no name,
|
|
|
|
// the ID_SAVE_BOARD_AS will actually made
|
|
|
|
Files_io_from_id( ID_SAVE_BOARD );
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-17 12:16:16 +00:00
|
|
|
if( IsGalCanvasActive() )
|
|
|
|
{
|
|
|
|
// On Windows 7 / 32 bits, on OpenGL mode only, Pcbnew crashes
|
|
|
|
// when closing this frame if a footprint was selected, and the footprint editor called
|
|
|
|
// to edit this footprint, and when closing pcbnew if this footprint is still selected
|
|
|
|
// See https://bugs.launchpad.net/kicad/+bug/1655858
|
|
|
|
// I think this is certainly a OpenGL event fired after frame deletion, so this workaround
|
|
|
|
// avoid the crash (JPC)
|
|
|
|
GetGalCanvas()->SetEvtHandlerEnabled( false );
|
|
|
|
}
|
|
|
|
|
2014-05-14 17:04:21 +00:00
|
|
|
GetGalCanvas()->StopDrawing();
|
|
|
|
|
2011-10-13 19:56:32 +00:00
|
|
|
// Delete the auto save file if it exists.
|
2012-08-29 16:59:50 +00:00
|
|
|
wxFileName fn = GetBoard()->GetFileName();
|
2011-10-13 19:56:32 +00:00
|
|
|
|
2016-08-11 19:13:47 +00:00
|
|
|
// Auto save file name is the normal file name prefixed with '_autosave'.
|
|
|
|
fn.SetName( GetAutoSaveFilePrefix() + fn.GetName() );
|
|
|
|
|
|
|
|
// When the auto save feature does not have write access to the board file path, it falls
|
|
|
|
// back to a platform specific user temporary file path.
|
|
|
|
if( !fn.IsOk() || !fn.IsDirWritable() )
|
|
|
|
fn.SetPath( wxFileName::GetTempDir() );
|
|
|
|
|
|
|
|
wxLogTrace( traceAutoSave, "Deleting auto save file <" + fn.GetFullPath() + ">" );
|
2011-10-13 19:56:32 +00:00
|
|
|
|
|
|
|
// Remove the auto save file on a normal close of Pcbnew.
|
|
|
|
if( fn.FileExists() && !wxRemoveFile( fn.GetFullPath() ) )
|
|
|
|
{
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
wxString msg = wxString::Format( _(
|
2017-12-15 11:37:46 +00:00
|
|
|
"The auto save file \"%s\" could not be removed!" ),
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
GetChars( fn.GetFullPath() )
|
|
|
|
);
|
2011-10-13 19:56:32 +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
|
|
|
wxMessageBox( msg, Pgm().App().GetAppName(), wxOK | wxICON_ERROR, this );
|
2011-10-13 19:56:32 +00:00
|
|
|
}
|
|
|
|
|
2013-11-22 19:47:10 +00:00
|
|
|
// Delete board structs and undo/redo lists, to avoid crash on exit
|
|
|
|
// when deleting some structs (mainly in undo/redo lists) too late
|
|
|
|
Clear_Pcb( false );
|
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
// do not show the window because ScreenPcb will be deleted and we do not
|
|
|
|
// want any paint event
|
2009-10-03 17:18:08 +00:00
|
|
|
Show( false );
|
2014-01-28 01:29:26 +00:00
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
Destroy();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::Show3D_Frame( wxCommandEvent& event )
|
2009-02-05 20:53:08 +00:00
|
|
|
{
|
2018-05-10 10:49:20 +00:00
|
|
|
bool forceRecreateIfNotOwner = true;
|
|
|
|
CreateAndShow3D_Frame( forceRecreateIfNotOwner );
|
2009-02-05 20:53:08 +00:00
|
|
|
}
|
2009-07-18 11:44:19 +00:00
|
|
|
|
2009-10-03 17:18:08 +00:00
|
|
|
|
2013-11-25 15:50:03 +00:00
|
|
|
void PCB_EDIT_FRAME::UseGalCanvas( bool aEnable )
|
|
|
|
{
|
2016-09-05 13:28:53 +00:00
|
|
|
if( !aEnable )
|
2015-09-01 08:50:59 +00:00
|
|
|
Compile_Ratsnest( NULL, true );
|
2015-09-02 08:48:10 +00:00
|
|
|
|
|
|
|
PCB_BASE_EDIT_FRAME::UseGalCanvas( aEnable );
|
2017-11-28 03:12:31 +00:00
|
|
|
COLORS_DESIGN_SETTINGS& cds = Settings().Colors();
|
2015-09-01 08:50:59 +00:00
|
|
|
|
2017-09-12 03:00:41 +00:00
|
|
|
if( aEnable )
|
|
|
|
{
|
2017-11-28 03:12:31 +00:00
|
|
|
cds.SetLegacyMode( false );
|
2017-09-12 03:00:41 +00:00
|
|
|
GetGalCanvas()->GetGAL()->SetGridColor( cds.GetLayerColor( LAYER_GRID ) );
|
2017-11-28 03:12:31 +00:00
|
|
|
auto view = GetGalCanvas()->GetView();
|
|
|
|
view->GetPainter()->GetSettings()->ImportLegacyColors( &cds );
|
|
|
|
GetGalCanvas()->Refresh();
|
2017-09-12 03:00:41 +00:00
|
|
|
}
|
|
|
|
|
2015-05-08 08:58:59 +00:00
|
|
|
enableGALSpecificMenus();
|
2017-02-20 16:57:41 +00:00
|
|
|
|
|
|
|
// Force colors to be legacy-compatible in case they were changed in GAL
|
|
|
|
if( !aEnable )
|
|
|
|
{
|
2017-11-28 03:12:31 +00:00
|
|
|
cds.SetLegacyMode( true );
|
2017-02-20 16:57:41 +00:00
|
|
|
Refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Re-create the layer manager to allow arbitrary colors when GAL is enabled
|
2017-08-27 06:04:12 +00:00
|
|
|
UpdateUserInterface();
|
2017-02-20 16:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-08 08:58:59 +00:00
|
|
|
void PCB_EDIT_FRAME::enableGALSpecificMenus()
|
|
|
|
{
|
|
|
|
// some menus are active only in GAL mode and do nothing in legacy mode.
|
|
|
|
// So enable or disable them, depending on the display mode
|
|
|
|
|
2017-09-29 08:58:05 +00:00
|
|
|
ReCreateMenuBar();
|
|
|
|
|
2015-05-08 08:58:59 +00:00
|
|
|
if( GetMenuBar() )
|
|
|
|
{
|
|
|
|
// Enable / disable some menus which are usable only on GAL
|
|
|
|
pcbnew_ids id_list[] =
|
|
|
|
{
|
|
|
|
ID_MENU_INTERACTIVE_ROUTER_SETTINGS,
|
|
|
|
ID_DIFF_PAIR_BUTT,
|
|
|
|
ID_TUNE_SINGLE_TRACK_LEN_BUTT,
|
|
|
|
ID_TUNE_DIFF_PAIR_LEN_BUTT,
|
|
|
|
ID_TUNE_DIFF_PAIR_SKEW_BUTT,
|
2016-12-13 20:24:29 +00:00
|
|
|
ID_MENU_DIFF_PAIR_DIMENSIONS,
|
|
|
|
ID_MENU_PCB_FLIP_VIEW
|
2015-05-08 08:58:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool enbl = IsGalCanvasActive();
|
|
|
|
|
|
|
|
for( unsigned ii = 0; ii < DIM( id_list ); ii++ )
|
|
|
|
{
|
|
|
|
if( GetMenuBar()->FindItem( id_list[ii] ) )
|
|
|
|
GetMenuBar()->FindItem( id_list[ii] )->Enable( enbl );
|
|
|
|
}
|
2017-11-30 01:58:47 +00:00
|
|
|
|
|
|
|
// Update settings for GAL menus
|
|
|
|
auto view = GetGalCanvas()->GetView();
|
|
|
|
GetMenuBar()->FindItem( ID_MENU_PCB_FLIP_VIEW )->Check( view->IsMirroredX() );
|
2015-05-08 08:58:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-28 15:22:25 +00:00
|
|
|
void PCB_EDIT_FRAME::ShowBoardSetupDialog( wxCommandEvent& event )
|
2009-07-18 11:44:19 +00:00
|
|
|
{
|
2018-04-28 15:22:25 +00:00
|
|
|
DIALOG_BOARD_SETUP dlg( this );
|
2009-10-03 17:18:08 +00:00
|
|
|
|
2018-04-28 15:22:25 +00:00
|
|
|
if( dlg.ShowModal() == wxID_OK )
|
2009-07-18 11:44:19 +00:00
|
|
|
{
|
2018-04-28 15:22:25 +00:00
|
|
|
Prj().ConfigSave( Kiface().KifaceSearch(), GROUP_PCB, GetProjectFileParameters() );
|
|
|
|
|
|
|
|
UpdateUserInterface();
|
2015-01-05 13:20:04 +00:00
|
|
|
ReCreateAuxiliaryToolbar();
|
2018-04-28 15:22:25 +00:00
|
|
|
|
|
|
|
if( IsGalCanvasActive() )
|
|
|
|
{
|
|
|
|
for( MODULE* module = GetBoard()->m_Modules; module; module = module->Next() )
|
|
|
|
GetGalCanvas()->GetView()->Update( module );
|
|
|
|
|
|
|
|
GetGalCanvas()->Refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
//this event causes the routing tool to reload its design rules information
|
|
|
|
TOOL_EVENT toolEvent( TC_COMMAND, TA_MODEL_CHANGE, AS_ACTIVE );
|
|
|
|
m_toolManager->ProcessEvent( toolEvent );
|
|
|
|
|
2010-02-19 13:23:58 +00:00
|
|
|
OnModify();
|
2009-07-18 11:44:19 +00:00
|
|
|
}
|
|
|
|
}
|
2009-10-14 19:43:31 +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 PCB_EDIT_FRAME::LoadSettings( wxConfigBase* aCfg )
|
2009-10-14 19:43:31 +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
|
|
|
PCB_BASE_FRAME::LoadSettings( aCfg );
|
2009-10-14 19:43:31 +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
|
|
|
wxConfigLoadSetups( aCfg, GetConfigurationSettings() );
|
2009-10-14 19:43:31 +00:00
|
|
|
|
2017-08-04 12:43:02 +00:00
|
|
|
m_configSettings.Load( aCfg );
|
|
|
|
|
2013-01-15 09:31:11 +00:00
|
|
|
double dtmp;
|
2016-05-12 19:45:47 +00:00
|
|
|
aCfg->Read( PlotLineWidthEntry, &dtmp, 0.1 ); // stored in mm
|
* 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
|
|
|
|
2013-01-15 09:31:11 +00:00
|
|
|
if( dtmp < 0.01 )
|
|
|
|
dtmp = 0.01;
|
* 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
|
|
|
|
2013-01-15 09:31:11 +00:00
|
|
|
if( dtmp > 5.0 )
|
|
|
|
dtmp = 5.0;
|
* 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
|
|
|
|
2013-01-15 09:31:11 +00:00
|
|
|
g_DrawDefaultLineThickness = Millimeter2iu( dtmp );
|
* 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
|
|
|
|
2016-05-12 19:45:47 +00:00
|
|
|
aCfg->Read( ShowMicrowaveEntry, &m_show_microwave_tools );
|
|
|
|
aCfg->Read( ShowLayerManagerEntry, &m_show_layer_manager_tools );
|
2018-07-01 08:24:57 +00:00
|
|
|
|
2016-05-12 19:45:47 +00:00
|
|
|
aCfg->Read( ShowPageLimitsEntry, &m_showPageLimits );
|
2009-10-14 19:43:31 +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 PCB_EDIT_FRAME::SaveSettings( wxConfigBase* aCfg )
|
2009-10-14 19:43:31 +00:00
|
|
|
{
|
2017-08-04 12:43:02 +00:00
|
|
|
m_configSettings.Save( aCfg );
|
|
|
|
|
* 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
|
|
|
PCB_BASE_FRAME::SaveSettings( aCfg );
|
2009-10-14 19:43:31 +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
|
|
|
wxConfigSaveSetups( aCfg, GetConfigurationSettings() );
|
2009-10-14 19:43:31 +00:00
|
|
|
|
2013-01-15 09:31:11 +00:00
|
|
|
// This value is stored in mm )
|
2016-05-12 19:45:47 +00:00
|
|
|
aCfg->Write( PlotLineWidthEntry, MM_PER_IU * g_DrawDefaultLineThickness );
|
|
|
|
aCfg->Write( ShowMicrowaveEntry, (long) m_show_microwave_tools );
|
|
|
|
aCfg->Write( ShowLayerManagerEntry, (long)m_show_layer_manager_tools );
|
|
|
|
aCfg->Write( ShowPageLimitsEntry, m_showPageLimits );
|
2009-10-14 19:43:31 +00:00
|
|
|
}
|
2010-01-23 10:50:05 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2012-09-02 12:06:47 +00:00
|
|
|
bool PCB_EDIT_FRAME::IsGridVisible() const
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
return IsElementVisible( LAYER_GRID );
|
2010-02-01 21:23:27 +00:00
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::SetGridVisibility(bool aVisible)
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
SetElementVisibility( LAYER_GRID, aVisible );
|
2010-02-01 21:23:27 +00:00
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2017-08-04 12:43:02 +00:00
|
|
|
COLOR4D PCB_EDIT_FRAME::GetGridColor()
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
2017-08-04 12:43:02 +00:00
|
|
|
return Settings().Colors().GetItemColor( LAYER_GRID );
|
2010-02-01 21:23:27 +00:00
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2017-02-20 16:57:41 +00:00
|
|
|
void PCB_EDIT_FRAME::SetGridColor( COLOR4D aColor )
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
2016-01-13 18:37:52 +00:00
|
|
|
|
2017-08-04 12:43:02 +00:00
|
|
|
Settings().Colors().SetItemColor( LAYER_GRID, aColor );
|
2016-01-13 18:37:52 +00:00
|
|
|
|
|
|
|
if( IsGalCanvasActive() )
|
|
|
|
{
|
2017-02-20 16:57:41 +00:00
|
|
|
GetGalCanvas()->GetGAL()->SetGridColor( aColor );
|
2016-01-13 18:37:52 +00:00
|
|
|
}
|
2010-02-01 21:23:27 +00:00
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2014-04-18 02:05:40 +00:00
|
|
|
bool PCB_EDIT_FRAME::IsMicroViaAcceptable()
|
2010-01-31 20:01:46 +00:00
|
|
|
{
|
|
|
|
int copperlayercnt = GetBoard()->GetCopperLayerCount( );
|
2017-03-13 03:19:33 +00:00
|
|
|
PCB_LAYER_ID currLayer = GetActiveLayer();
|
2010-01-31 20:01:46 +00:00
|
|
|
|
2012-02-02 17:45:37 +00:00
|
|
|
if( !GetDesignSettings().m_MicroViasAllowed )
|
2010-01-31 20:01:46 +00:00
|
|
|
return false; // Obvious..
|
|
|
|
|
|
|
|
if( copperlayercnt < 4 )
|
|
|
|
return false; // Only on multilayer boards..
|
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
if( ( currLayer == B_Cu )
|
|
|
|
|| ( currLayer == F_Cu )
|
2010-01-31 20:01:46 +00:00
|
|
|
|| ( currLayer == copperlayercnt - 2 )
|
2014-06-24 16:17:18 +00:00
|
|
|
|| ( currLayer == In1_Cu ) )
|
2010-01-31 20:01:46 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-01-23 10:50:05 +00:00
|
|
|
|
2017-03-13 03:19:33 +00:00
|
|
|
void PCB_EDIT_FRAME::SetActiveLayer( PCB_LAYER_ID aLayer )
|
2013-09-12 16:24:53 +00:00
|
|
|
{
|
2014-07-09 09:50:27 +00:00
|
|
|
PCB_BASE_FRAME::SetActiveLayer( aLayer );
|
2013-09-12 16:24:53 +00:00
|
|
|
|
2014-07-09 09:50:27 +00:00
|
|
|
syncLayerWidgetLayer();
|
2013-09-12 16:24:53 +00:00
|
|
|
|
2013-12-26 22:36:43 +00:00
|
|
|
if( IsGalCanvasActive() )
|
2014-07-09 14:25:50 +00:00
|
|
|
{
|
2017-02-21 12:42:08 +00:00
|
|
|
m_toolManager->RunAction( PCB_ACTIONS::layerChanged ); // notify other tools
|
2014-07-09 14:44:22 +00:00
|
|
|
GetGalCanvas()->SetFocus(); // otherwise hotkeys are stuck somewhere
|
2017-01-31 08:33:44 +00:00
|
|
|
|
|
|
|
GetGalCanvas()->SetHighContrastLayer( aLayer );
|
2013-12-26 22:36:43 +00:00
|
|
|
GetGalCanvas()->Refresh();
|
2014-07-09 14:25:50 +00:00
|
|
|
}
|
2013-07-16 07:26:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-25 17:52:52 +00:00
|
|
|
void PCB_EDIT_FRAME::onBoardLoaded()
|
|
|
|
{
|
|
|
|
UpdateTitle();
|
|
|
|
|
|
|
|
// Re-create layers manager based on layer info in board
|
|
|
|
ReFillLayerWidget();
|
|
|
|
ReCreateLayerBox();
|
|
|
|
|
|
|
|
// Sync layer and item visibility
|
|
|
|
syncLayerVisibilities();
|
|
|
|
syncLayerWidgetLayer();
|
|
|
|
syncRenderStates();
|
|
|
|
|
|
|
|
// Update the tracks / vias available sizes list:
|
|
|
|
ReCreateAuxiliaryToolbar();
|
|
|
|
|
|
|
|
// Update the RATSNEST items, which were not loaded at the time
|
|
|
|
// BOARD::SetVisibleElements() was called from within any PLUGIN.
|
|
|
|
// See case LAYER_RATSNEST: in BOARD::SetElementVisibility()
|
|
|
|
GetBoard()->SetVisibleElements( GetBoard()->GetVisibleElements() );
|
|
|
|
|
|
|
|
// Display the loaded board:
|
|
|
|
Zoom_Automatique( false );
|
|
|
|
|
2018-04-03 10:05:09 +00:00
|
|
|
Refresh();
|
|
|
|
|
2018-02-25 17:52:52 +00:00
|
|
|
SetMsgPanel( GetBoard() );
|
|
|
|
SetStatusText( wxEmptyString );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
void PCB_EDIT_FRAME::syncLayerWidgetLayer()
|
2010-01-30 20:17:56 +00:00
|
|
|
{
|
2014-03-21 10:17:47 +00:00
|
|
|
m_Layers->SelectLayer( GetActiveLayer() );
|
2013-04-05 07:38:00 +00:00
|
|
|
m_Layers->OnLayerSelected();
|
2010-01-30 20:17:56 +00:00
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
void PCB_EDIT_FRAME::syncRenderStates()
|
|
|
|
{
|
2018-02-23 15:12:11 +00:00
|
|
|
m_Layers->ReFillRender();
|
2012-02-06 05:44:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-12 00:40:48 +00:00
|
|
|
void PCB_EDIT_FRAME::syncLayerVisibilities()
|
|
|
|
{
|
|
|
|
m_Layers->SyncLayerVisibilities();
|
2014-07-09 09:24:56 +00:00
|
|
|
static_cast<PCB_DRAW_PANEL_GAL*>( GetGalCanvas() )->SyncLayersVisibility( m_Pcb );
|
2012-03-12 00:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-21 16:29:24 +00:00
|
|
|
void PCB_EDIT_FRAME::OnUpdateLayerAlpha( wxUpdateUIEvent & )
|
|
|
|
{
|
|
|
|
m_Layers->SyncLayerAlphaIndicators();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::unitsChangeRefresh()
|
|
|
|
{
|
|
|
|
PCB_BASE_FRAME::unitsChangeRefresh(); // Update the grid size select box.
|
|
|
|
|
2015-01-05 13:20:04 +00:00
|
|
|
ReCreateAuxiliaryToolbar();
|
2011-03-01 19:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-13 03:19:33 +00:00
|
|
|
bool PCB_EDIT_FRAME::IsElementVisible( GAL_LAYER_ID aElement ) const
|
2010-01-30 20:17:56 +00:00
|
|
|
{
|
2011-09-20 13:57:40 +00:00
|
|
|
return GetBoard()->IsElementVisible( aElement );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-13 03:19:33 +00:00
|
|
|
void PCB_EDIT_FRAME::SetElementVisibility( GAL_LAYER_ID aElement, bool aNewState )
|
2011-09-20 13:57:40 +00:00
|
|
|
{
|
2017-03-13 03:19:33 +00:00
|
|
|
GetGalCanvas()->GetView()->SetLayerVisible( aElement , aNewState );
|
2011-09-20 13:57:40 +00:00
|
|
|
GetBoard()->SetElementVisibility( aElement, aNewState );
|
|
|
|
m_Layers->SetRenderState( aElement, aNewState );
|
2010-01-30 20:17:56 +00:00
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
void PCB_EDIT_FRAME::SetVisibleAlls()
|
2010-01-23 10:50:05 +00:00
|
|
|
{
|
2012-02-06 05:44:19 +00:00
|
|
|
GetBoard()->SetVisibleAlls();
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2017-03-13 03:19:33 +00:00
|
|
|
for( GAL_LAYER_ID ii = GAL_LAYER_ID_START; ii < GAL_LAYER_ID_BITMASK_END; ++ii )
|
2010-01-30 20:17:56 +00:00
|
|
|
m_Layers->SetRenderState( ii, true );
|
2010-01-23 10:50:05 +00:00
|
|
|
}
|
2010-02-19 13:23:58 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
Modular-Kicad milestone B), major portions:
*) Rework the set language support, simplify it by using KIWAY. Now any major
frame with a "change language" menu can change the language for all KIWAY_PLAYERs
in the whole KIWAY. Multiple KIWAYs are not supported yet.
*) Simplify "modal wxFrame" support, and add that support exclusively to
KIWAY_PLAYER where it is inherited by all derivatives. The function
KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable.
*) Remove the requirements and assumptions that the wxFrame hierarchy always
had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers
and editors. This is no longer the case, nor required.
*) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the
KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame
quickly. It also gives control to the KIWAY as to frame hierarchical
relationships.
*) Change single_top to use the KIWAY for loading a KIFACE and instantiating
the single KIWAY_PLAYER, see bullet immediately above.
*) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this
gives the KIFACEs a chance to save their final configuration dope to disk.
*) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and
these modal frames are distinctly different than their non-modal equivalents.
KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor,
so this is another important reason for having a dedicated FRAME_T for each
modal wxFrame.
On balance, more lines were deleted than were added to achieve all this.
2014-05-03 17:40:19 +00:00
|
|
|
void PCB_EDIT_FRAME::ShowChangedLanguage()
|
2010-02-26 15:39:10 +00:00
|
|
|
{
|
Modular-Kicad milestone B), major portions:
*) Rework the set language support, simplify it by using KIWAY. Now any major
frame with a "change language" menu can change the language for all KIWAY_PLAYERs
in the whole KIWAY. Multiple KIWAYs are not supported yet.
*) Simplify "modal wxFrame" support, and add that support exclusively to
KIWAY_PLAYER where it is inherited by all derivatives. The function
KIWAY_PLAYER::ShowModal() is in the vtable and so is cross module capable.
*) Remove the requirements and assumptions that the wxFrame hierarchy always
had PCB_EDIT_FRAME and SCH_EDIT_FRAME as immediate parents of their viewers
and editors. This is no longer the case, nor required.
*) Use KIWAY::Player() everywhere to make KIWAY_PLAYERs, this registers the
KIWAY_PLAYER within the KIWAY and makes it very easy to find an open frame
quickly. It also gives control to the KIWAY as to frame hierarchical
relationships.
*) Change single_top to use the KIWAY for loading a KIFACE and instantiating
the single KIWAY_PLAYER, see bullet immediately above.
*) Add KIWAY::OnKiwayEnd() and call it from PGM_BASE at program termination, this
gives the KIFACEs a chance to save their final configuration dope to disk.
*) Add dedicated FRAME_T's for the modal frames, so m_Ident can be tested and
these modal frames are distinctly different than their non-modal equivalents.
KIWAY_PLAYER::IsModal() is !not! a valid test during the wxFrame's constructor,
so this is another important reason for having a dedicated FRAME_T for each
modal wxFrame.
On balance, more lines were deleted than were added to achieve all this.
2014-05-03 17:40:19 +00:00
|
|
|
// call my base class
|
|
|
|
PCB_BASE_FRAME::ShowChangedLanguage();
|
|
|
|
|
2018-02-03 22:55:13 +00:00
|
|
|
// update the layer manager
|
|
|
|
m_Layers->Freeze();
|
* 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
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
wxAuiPaneInfo& pane_info = m_auimgr.GetPane( m_Layers );
|
2010-03-20 19:57:59 +00:00
|
|
|
pane_info.Caption( _( "Visibles" ) );
|
2010-02-26 15:39:10 +00:00
|
|
|
m_auimgr.Update();
|
2018-02-03 22:55:13 +00:00
|
|
|
|
|
|
|
m_Layers->SetLayersManagerTabsText();
|
2010-02-26 15:39:10 +00:00
|
|
|
ReFillLayerWidget();
|
2018-02-03 22:55:13 +00:00
|
|
|
m_Layers->ReFillRender();
|
|
|
|
|
|
|
|
// upate the layer widget to match board visibility states, both layers and render columns.
|
|
|
|
syncLayerVisibilities();
|
|
|
|
syncLayerWidgetLayer();
|
|
|
|
syncRenderStates();
|
|
|
|
|
|
|
|
m_Layers->Thaw();
|
|
|
|
|
|
|
|
// pcbnew-specific toolbars
|
|
|
|
ReCreateMicrowaveVToolbar();
|
2010-02-26 15:39:10 +00:00
|
|
|
}
|
2010-04-23 14:46:00 +00:00
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
wxString PCB_EDIT_FRAME::GetLastNetListRead()
|
2010-04-23 14:46:00 +00:00
|
|
|
{
|
|
|
|
wxFileName absoluteFileName = m_lastNetListRead;
|
2012-08-29 16:59:50 +00:00
|
|
|
wxFileName pcbFileName = GetBoard()->GetFileName();
|
2010-04-23 14:46:00 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
if( !absoluteFileName.MakeAbsolute( pcbFileName.GetPath() ) || !absoluteFileName.FileExists() )
|
2010-04-23 14:46:00 +00:00
|
|
|
{
|
|
|
|
absoluteFileName.Clear();
|
|
|
|
m_lastNetListRead = wxEmptyString;
|
|
|
|
}
|
|
|
|
|
|
|
|
return absoluteFileName.GetFullPath();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::SetLastNetListRead( const wxString& aLastNetListRead )
|
2010-04-23 14:46:00 +00:00
|
|
|
{
|
|
|
|
wxFileName relativeFileName = aLastNetListRead;
|
2012-08-29 16:59:50 +00:00
|
|
|
wxFileName pcbFileName = GetBoard()->GetFileName();
|
2010-04-23 14:46:00 +00:00
|
|
|
|
|
|
|
if( relativeFileName.MakeRelativeTo( pcbFileName.GetPath() )
|
|
|
|
&& relativeFileName.GetFullPath() != aLastNetListRead )
|
|
|
|
{
|
|
|
|
m_lastNetListRead = relativeFileName.GetFullPath();
|
|
|
|
}
|
|
|
|
}
|
2010-05-01 12:46:33 +00:00
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::OnModify( )
|
2010-05-01 12:46:33 +00:00
|
|
|
{
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_BASE_FRAME::OnModify();
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2018-05-10 10:49:20 +00:00
|
|
|
Update3DView();
|
2018-05-03 22:23:47 +00:00
|
|
|
|
|
|
|
m_ZoneFillsDirty = true;
|
2010-05-01 12:46:33 +00:00
|
|
|
}
|
|
|
|
|
2010-11-17 21:47:27 +00:00
|
|
|
|
2018-06-13 12:20:29 +00:00
|
|
|
void PCB_EDIT_FRAME::ExportSVG( wxCommandEvent& event )
|
2010-11-17 21:47:27 +00:00
|
|
|
{
|
2018-06-13 12:20:29 +00:00
|
|
|
InvokeExportSVG( this, GetBoard() );
|
2010-11-17 21:47:27 +00:00
|
|
|
}
|
2011-08-26 17:01:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::UpdateTitle()
|
|
|
|
{
|
2016-09-26 17:15:33 +00:00
|
|
|
wxFileName fileName = GetBoard()->GetFileName();
|
|
|
|
wxString fileinfo;
|
2012-12-15 13:39:36 +00:00
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
if( fileName.IsOk() && fileName.FileExists() )
|
|
|
|
{
|
2018-03-12 21:02:04 +00:00
|
|
|
fileinfo = fileName.IsFileWritable() ? wxString( wxEmptyString ) : _( " [Read Only]" );
|
2011-08-26 17:01:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-09-26 17:15:33 +00:00
|
|
|
fileinfo = _( " [new file]" );
|
2011-08-26 17:01:17 +00:00
|
|
|
}
|
|
|
|
|
2016-09-26 17:15:33 +00:00
|
|
|
wxString title;
|
2018-03-12 19:16:09 +00:00
|
|
|
title.Printf( _( "Pcbnew" ) + wxT( " \u2014 %s%s" ),
|
|
|
|
fileName.GetFullPath(),
|
|
|
|
fileinfo );
|
2016-09-26 17:15:33 +00:00
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
SetTitle( title );
|
|
|
|
}
|
2011-12-16 13:32:23 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
|
2017-08-27 06:04:12 +00:00
|
|
|
void PCB_EDIT_FRAME::UpdateUserInterface()
|
|
|
|
{
|
|
|
|
// Update the layer manager and other widgets from the board setup
|
|
|
|
// (layer and items visibility, colors ...)
|
|
|
|
|
|
|
|
// Rebuild list of nets (full ratsnest rebuild)
|
|
|
|
Compile_Ratsnest( NULL, true );
|
|
|
|
GetBoard()->BuildConnectivity();
|
|
|
|
|
|
|
|
// Update info shown by the horizontal toolbars
|
|
|
|
ReCreateLayerBox();
|
|
|
|
|
|
|
|
// Update the layer manager
|
|
|
|
m_Layers->Freeze();
|
|
|
|
ReFillLayerWidget();
|
|
|
|
m_Layers->ReFillRender();
|
|
|
|
|
|
|
|
// upate the layer widget to match board visibility states, both layers and render columns.
|
|
|
|
syncLayerVisibilities();
|
|
|
|
syncLayerWidgetLayer();
|
|
|
|
syncRenderStates();
|
|
|
|
|
|
|
|
m_Layers->Thaw();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-21 15:39:36 +00:00
|
|
|
#if defined( KICAD_SCRIPTING_WXPYTHON )
|
|
|
|
|
2012-08-10 21:53:50 +00:00
|
|
|
void PCB_EDIT_FRAME::ScriptingConsoleEnableDisable( wxCommandEvent& aEvent )
|
|
|
|
{
|
2014-10-31 07:51:22 +00:00
|
|
|
|
2014-10-31 14:45:46 +00:00
|
|
|
wxWindow * pythonPanelFrame = findPythonConsole();
|
2015-08-25 14:47:09 +00:00
|
|
|
bool pythonPanelShown = true;
|
2014-10-31 07:51:22 +00:00
|
|
|
|
|
|
|
if( pythonPanelFrame == NULL )
|
2015-12-21 14:55:31 +00:00
|
|
|
pythonPanelFrame = CreatePythonShellWindow( this, pythonConsoleNameId() );
|
2014-10-31 07:51:22 +00:00
|
|
|
else
|
2015-08-25 14:47:09 +00:00
|
|
|
pythonPanelShown = ! pythonPanelFrame->IsShown();
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2015-12-21 20:00:32 +00:00
|
|
|
if( pythonPanelFrame )
|
|
|
|
pythonPanelFrame->Show( pythonPanelShown );
|
|
|
|
else
|
|
|
|
wxMessageBox( wxT( "Error: unable to create the Python Console" ) );
|
2012-08-10 21:53:50 +00:00
|
|
|
}
|
2015-12-21 15:39:36 +00:00
|
|
|
#endif
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
|
2014-07-09 09:59:23 +00:00
|
|
|
void PCB_EDIT_FRAME::OnLayerColorChange( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
ReCreateLayerBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-17 07:58:44 +00:00
|
|
|
void PCB_EDIT_FRAME::OnSwitchCanvas( wxCommandEvent& aEvent )
|
2017-08-09 07:48:56 +00:00
|
|
|
{
|
|
|
|
// switches currently used canvas (default / Cairo / OpenGL).
|
2018-01-17 07:58:44 +00:00
|
|
|
PCB_BASE_FRAME::OnSwitchCanvas( aEvent );
|
2017-08-09 07:48:56 +00:00
|
|
|
|
|
|
|
// The base class method reinit the layers manager.
|
|
|
|
// We must upate the layer widget to match board visibility states,
|
|
|
|
// both layers and render columns.
|
|
|
|
syncLayerVisibilities();
|
|
|
|
syncLayerWidgetLayer();
|
|
|
|
syncRenderStates();
|
|
|
|
}
|
|
|
|
|
2013-05-10 19:22:29 +00:00
|
|
|
void PCB_EDIT_FRAME::ToPlotter( wxCommandEvent& event )
|
|
|
|
{
|
2018-05-25 16:33:00 +00:00
|
|
|
// Force rebuild the dialog if currently open because the old dialog can be not up to date
|
|
|
|
// if the board (or units) has changed
|
|
|
|
wxWindow* dlg = wxWindow::FindWindowByName( DLG_WINDOW_NAME );
|
* 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
|
|
|
|
2018-05-25 16:33:00 +00:00
|
|
|
if( dlg )
|
|
|
|
dlg->Destroy();
|
|
|
|
|
|
|
|
dlg = new DIALOG_PLOT( this );
|
|
|
|
dlg->Show( true );
|
2013-05-10 19:22:29 +00:00
|
|
|
}
|
2014-09-28 14:44:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool PCB_EDIT_FRAME::SetCurrentNetClass( const wxString& aNetClassName )
|
|
|
|
{
|
|
|
|
bool change = GetDesignSettings().SetCurrentNetClass( aNetClassName );
|
|
|
|
|
|
|
|
if( change )
|
|
|
|
{
|
2015-01-05 13:20:04 +00:00
|
|
|
ReCreateAuxiliaryToolbar();
|
2014-09-28 14:44:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return change;
|
|
|
|
}
|
2015-03-29 21:22:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::OnConfigurePaths( wxCommandEvent& aEvent )
|
|
|
|
{
|
2018-05-14 17:34:18 +00:00
|
|
|
DIALOG_CONFIGURE_PATHS dlg( this, Prj().Get3DCacheManager()->GetResolver() );
|
|
|
|
dlg.ShowModal();
|
2015-03-29 21:22:53 +00:00
|
|
|
}
|
2016-01-29 14:43:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::OnUpdatePCBFromSch( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
if( Kiface().IsSingle() )
|
|
|
|
{
|
2017-09-28 16:41:29 +00:00
|
|
|
DisplayError( this, _( "Cannot update the PCB, because Pcbnew is "
|
2017-09-26 14:13:21 +00:00
|
|
|
"opened in stand-alone mode. In order to create or update "
|
2017-09-28 16:41:29 +00:00
|
|
|
"PCBs from schematics, you need to launch the KiCad project manager "
|
2017-09-26 14:13:21 +00:00
|
|
|
"and create a PCB project." ) );
|
2016-01-29 14:43:40 +00:00
|
|
|
return;
|
2016-10-22 18:02:15 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-01-16 12:01:38 +00:00
|
|
|
// Update PCB requires a netlist. Therefore the schematic editor must be running
|
|
|
|
// If this is not the case, open the schematic editor
|
2016-01-29 14:43:40 +00:00
|
|
|
KIWAY_PLAYER* frame = Kiway().Player( FRAME_SCH, true );
|
|
|
|
|
2018-01-16 12:01:38 +00:00
|
|
|
if( !frame->IsShown() )
|
2016-01-29 14:43:40 +00:00
|
|
|
{
|
2018-01-16 12:01:38 +00:00
|
|
|
wxFileName schfn( Prj().GetProjectPath(), Prj().GetProjectName(), SchematicFileExtension );
|
|
|
|
|
2016-01-29 14:43:40 +00:00
|
|
|
frame->OpenProjectFiles( std::vector<wxString>( 1, schfn.GetFullPath() ) );
|
2018-01-16 12:01:38 +00:00
|
|
|
// Because the schematic editor frame is not on screen, iconize it:
|
2018-04-08 10:28:59 +00:00
|
|
|
// However, another valid option is to do not iconize the schematic editor frame
|
2018-01-16 12:01:38 +00:00
|
|
|
// and show it
|
|
|
|
frame->Iconize( true );
|
|
|
|
// we show the schematic editor frame, because do not show is seen as
|
|
|
|
// a not yet opened schematic by Kicad manager, which is not the case
|
|
|
|
frame->Show( true );
|
2016-01-29 14:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Kiway().ExpressMail( FRAME_SCH, MAIL_SCH_PCB_UPDATE_REQUEST, "", this );
|
|
|
|
}
|
|
|
|
}
|
2016-12-02 17:59:48 +00:00
|
|
|
|
2016-12-09 11:04:32 +00:00
|
|
|
|
2016-12-12 10:50:09 +00:00
|
|
|
void PCB_EDIT_FRAME::OnFlipPcbView( wxCommandEvent& evt )
|
2016-12-02 17:59:48 +00:00
|
|
|
{
|
|
|
|
auto view = GetGalCanvas()->GetView();
|
|
|
|
view->SetMirror( evt.IsChecked(), false );
|
|
|
|
view->RecacheAllItems();
|
2016-12-12 10:50:46 +00:00
|
|
|
Refresh();
|
2016-12-02 17:59:48 +00:00
|
|
|
}
|
2017-01-28 17:47:11 +00:00
|
|
|
|
2017-01-29 11:25:19 +00:00
|
|
|
|
2017-01-28 17:47:11 +00:00
|
|
|
void PCB_EDIT_FRAME::PythonPluginsReload()
|
|
|
|
{
|
2017-01-29 11:25:19 +00:00
|
|
|
// Reload Python plugins if they are newer than
|
2017-01-28 17:47:11 +00:00
|
|
|
// the already loaded, and load new plugins
|
|
|
|
#if defined(KICAD_SCRIPTING)
|
|
|
|
//Reload plugin list: reload Python plugins if they are newer than
|
|
|
|
// the already loaded, and load new plugins
|
2017-01-29 11:25:19 +00:00
|
|
|
PythonPluginsReloadBase();
|
2017-01-28 17:47:11 +00:00
|
|
|
|
|
|
|
#if defined(KICAD_SCRIPTING_ACTION_MENU)
|
2017-01-29 11:25:19 +00:00
|
|
|
// Action plugins can be modified, therefore the plugins menu
|
|
|
|
// must be updated:
|
2017-01-28 17:47:11 +00:00
|
|
|
RebuildActionPluginMenus();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
2017-01-31 07:55:02 +00:00
|
|
|
|
|
|
|
|
2018-01-31 13:54:31 +00:00
|
|
|
void PCB_EDIT_FRAME::InstallFootprintPropertiesDialog( MODULE* Module, wxDC* DC )
|
|
|
|
{
|
|
|
|
if( Module == NULL )
|
|
|
|
return;
|
|
|
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
// avoid Avoid "writes" in the dialog, creates errors with WxOverlay and NSView & Modal
|
|
|
|
// Raising an Exception - Fixes #764678
|
|
|
|
DC = NULL;
|
|
|
|
#endif
|
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
DIALOG_FOOTPRINT_BOARD_EDITOR* dlg = new DIALOG_FOOTPRINT_BOARD_EDITOR( this, Module, DC );
|
2018-01-31 13:54:31 +00:00
|
|
|
|
|
|
|
int retvalue = dlg->ShowModal();
|
|
|
|
/* retvalue =
|
|
|
|
* FP_PRM_EDITOR_RETVALUE::PRM_EDITOR_ABORT if abort,
|
|
|
|
* FP_PRM_EDITOR_RETVALUE::PRM_EDITOR_WANT_EXCHANGE_FP if exchange module,
|
2018-06-22 13:05:11 +00:00
|
|
|
* FP_PRM_EDITOR_RETVALUE::PRM_EDITOR_EDIT_OK for normal edit
|
2018-01-31 13:54:31 +00:00
|
|
|
* FP_PRM_EDITOR_RETVALUE::PRM_EDITOR_WANT_MODEDIT for a goto editor command
|
|
|
|
*/
|
|
|
|
|
|
|
|
dlg->Close();
|
|
|
|
dlg->Destroy();
|
|
|
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
// If something edited, push a refresh request
|
2018-02-16 19:26:55 +00:00
|
|
|
if( retvalue == DIALOG_FOOTPRINT_BOARD_EDITOR::PRM_EDITOR_EDIT_OK )
|
2018-01-31 13:54:31 +00:00
|
|
|
m_canvas->Refresh();
|
|
|
|
#endif
|
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
if( retvalue == DIALOG_FOOTPRINT_BOARD_EDITOR::PRM_EDITOR_WANT_MODEDIT )
|
2018-01-31 13:54:31 +00:00
|
|
|
{
|
|
|
|
FOOTPRINT_EDIT_FRAME* editor = (FOOTPRINT_EDIT_FRAME*) Kiway().Player( FRAME_PCB_MODULE_EDITOR, true );
|
|
|
|
|
|
|
|
editor->Load_Module_From_BOARD( Module );
|
|
|
|
SetCurItem( NULL );
|
|
|
|
|
|
|
|
editor->Show( true );
|
|
|
|
editor->Raise(); // Iconize( false );
|
|
|
|
}
|
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
if( retvalue == DIALOG_FOOTPRINT_BOARD_EDITOR::PRM_EDITOR_WANT_UPDATE_FP )
|
2018-01-31 13:54:31 +00:00
|
|
|
{
|
|
|
|
InstallExchangeModuleFrame( Module, true );
|
|
|
|
}
|
|
|
|
|
2018-02-16 19:26:55 +00:00
|
|
|
if( retvalue == DIALOG_FOOTPRINT_BOARD_EDITOR::PRM_EDITOR_WANT_EXCHANGE_FP )
|
2018-01-31 13:54:31 +00:00
|
|
|
{
|
|
|
|
InstallExchangeModuleFrame( Module, false );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-12 19:36:15 +00:00
|
|
|
int PCB_EDIT_FRAME::InstallExchangeModuleFrame( MODULE* Module, bool updateMode )
|
2017-01-31 07:55:02 +00:00
|
|
|
{
|
2018-02-16 19:26:55 +00:00
|
|
|
DIALOG_EXCHANGE_FOOTPRINTS dialog( this, Module, updateMode );
|
2017-01-31 07:55:02 +00:00
|
|
|
|
|
|
|
return dialog.ShowQuasiModal();
|
|
|
|
}
|
2018-01-08 04:05:03 +00:00
|
|
|
|
|
|
|
|
2018-05-14 17:34:18 +00:00
|
|
|
void PCB_EDIT_FRAME::CommonSettingsChanged()
|
2018-01-08 04:05:03 +00:00
|
|
|
{
|
2018-05-14 17:34:18 +00:00
|
|
|
PCB_BASE_EDIT_FRAME::CommonSettingsChanged();
|
2018-01-08 04:05:03 +00:00
|
|
|
|
|
|
|
ReCreateHToolbar();
|
|
|
|
ReCreateAuxiliaryToolbar();
|
|
|
|
ReCreateVToolbar();
|
|
|
|
ReCreateOptToolbar();
|
|
|
|
ReCreateMicrowaveVToolbar();
|
|
|
|
Layout();
|
|
|
|
SendSizeEvent();
|
|
|
|
}
|
2018-05-02 16:06:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::LockModule( MODULE* aModule, bool aLocked )
|
|
|
|
{
|
|
|
|
const wxString ModulesMaskSelection = wxT( "*" );
|
|
|
|
if( aModule )
|
|
|
|
{
|
|
|
|
aModule->SetLocked( aLocked );
|
|
|
|
SetMsgPanel( aModule );
|
|
|
|
OnModify();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
aModule = GetBoard()->m_Modules;
|
|
|
|
|
|
|
|
for( ; aModule != NULL; aModule = aModule->Next() )
|
|
|
|
{
|
|
|
|
if( WildCompareString( ModulesMaskSelection, aModule->GetReference() ) )
|
|
|
|
{
|
|
|
|
aModule->SetLocked( aLocked );
|
|
|
|
OnModify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|