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
|
|
|
*
|
2013-11-27 13:20:42 +00:00
|
|
|
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
|
|
|
* Copyright (C) 2013 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
|
|
|
* Copyright (C) 2013 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 2013 KiCad Developers, see change_log.txt for contributors.
|
2010-01-24 02:05:07 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-10-13 19:56:32 +00:00
|
|
|
/**
|
|
|
|
* @file pcbframe.cpp
|
|
|
|
* @brief PCB editor main window implementation.
|
|
|
|
*/
|
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>
|
|
|
|
#include <wxPcbStruct.h>
|
|
|
|
#include <pcbcommon.h> // enum PCB_VISIBLE
|
|
|
|
#include <collectors.h>
|
|
|
|
#include <build_version.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <3d_viewer.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2013-05-20 14:49:20 +00:00
|
|
|
#include <fp_lib_table.h>
|
2011-10-13 19:56:32 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbnew.h>
|
|
|
|
#include <pcbnew_id.h>
|
|
|
|
#include <drc_stuff.h>
|
|
|
|
#include <layer_widget.h>
|
|
|
|
#include <dialog_design_rules.h>
|
|
|
|
#include <class_pcb_layer_widget.h>
|
|
|
|
#include <hotkeys.h>
|
|
|
|
#include <pcbnew_config.h>
|
|
|
|
#include <module_editor_frame.h>
|
|
|
|
#include <dialog_SVG_print.h>
|
|
|
|
#include <dialog_helpers.h>
|
2013-05-10 19:22:29 +00:00
|
|
|
#include <dialog_plot.h>
|
2013-01-15 09:31:11 +00:00
|
|
|
#include <convert_from_iu.h>
|
2013-07-16 07:26:29 +00:00
|
|
|
#include <view/view.h>
|
|
|
|
#include <painter.h>
|
2010-04-23 14:46:00 +00:00
|
|
|
|
2013-11-25 15:50:03 +00:00
|
|
|
#include <class_track.h>
|
|
|
|
#include <class_board.h>
|
|
|
|
#include <class_module.h>
|
|
|
|
#include <worksheet_viewitem.h>
|
|
|
|
#include <ratsnest_data.h>
|
|
|
|
#include <ratsnest_viewitem.h>
|
|
|
|
|
2013-08-02 14:53:50 +00:00
|
|
|
#include <tool/tool_manager.h>
|
|
|
|
#include <tool/tool_dispatcher.h>
|
2013-05-20 14:49:20 +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>
|
|
|
|
#endif
|
2010-01-24 02:05:07 +00:00
|
|
|
|
2013-04-15 15:57:03 +00:00
|
|
|
#include <class_drawpanel_gal.h>
|
|
|
|
|
2009-02-07 08:33:25 +00:00
|
|
|
// Keys used in read/write config
|
2013-01-15 09:31:11 +00:00
|
|
|
#define OPTKEY_DEFAULT_LINEWIDTH_VALUE wxT( "PlotLineWidth_mm" )
|
2013-03-29 10:14:32 +00:00
|
|
|
#define PCB_SHOW_FULL_RATSNET_OPT wxT( "PcbFullRatsnest" )
|
|
|
|
#define PCB_MAGNETIC_PADS_OPT wxT( "PcbMagPadOpt" )
|
|
|
|
#define PCB_MAGNETIC_TRACKS_OPT wxT( "PcbMagTrackOpt" )
|
|
|
|
#define SHOW_MICROWAVE_TOOLS wxT( "ShowMicrowaveTools" )
|
|
|
|
#define SHOW_LAYER_MANAGER_TOOLS wxT( "ShowLayerManagerTools" )
|
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
|
|
|
|
2011-04-19 19:19:41 +00:00
|
|
|
EVT_COMBOBOX( ID_ON_ZOOM_SELECT, PCB_EDIT_FRAME::OnSelectZoom )
|
|
|
|
EVT_COMBOBOX( 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 )
|
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 )
|
|
|
|
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 )
|
2014-01-02 09:26:03 +00:00
|
|
|
EVT_MENU( ID_GEN_EXPORT_FILE_IDF3, PCB_EDIT_FRAME::ExportToIDF3 )
|
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
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_MENU_ARCHIVE_NEW_MODULES, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_MENU_ARCHIVE_ALL_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
|
2013-11-22 19:47:10 +00:00
|
|
|
|
|
|
|
/* Tom's hacks start */
|
2013-09-12 15:42:28 +00:00
|
|
|
EVT_MENU ( ID_PNS_ROUTER_TOOL, PCB_EDIT_FRAME::onGenericCommand )
|
2013-09-10 17:26:44 +00:00
|
|
|
EVT_TOOL ( ID_PNS_ROUTER_TOOL, PCB_EDIT_FRAME::onGenericCommand )
|
2013-08-02 14:53:50 +00:00
|
|
|
/* Tom's hacks end */
|
2013-11-22 19:47:10 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_PCB_DRAWINGS_WIDTHS_SETUP, PCB_EDIT_FRAME::OnConfigurePcbOptions )
|
2012-10-15 22:30:01 +00:00
|
|
|
EVT_MENU( ID_PCB_LIB_TABLE_EDIT, PCB_EDIT_FRAME::Process_Config )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_CONFIG_SAVE, PCB_EDIT_FRAME::Process_Config )
|
|
|
|
EVT_MENU( ID_CONFIG_READ, PCB_EDIT_FRAME::Process_Config )
|
|
|
|
EVT_MENU_RANGE( ID_PREFERENCES_HOTKEY_START, ID_PREFERENCES_HOTKEY_END,
|
|
|
|
PCB_EDIT_FRAME::Process_Config )
|
|
|
|
EVT_MENU( ID_MENU_PCB_SHOW_HIDE_LAYERS_MANAGER_DIALOG, PCB_EDIT_FRAME::Process_Config )
|
2014-02-27 18:48:18 +00:00
|
|
|
EVT_MENU( ID_MENU_PCB_SHOW_HIDE_MUWAVE_TOOLBAR, 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_LAYERS_SETUP, PCB_EDIT_FRAME::Process_Config )
|
|
|
|
EVT_MENU( ID_PCB_MASK_CLEARANCE, PCB_EDIT_FRAME::Process_Config )
|
|
|
|
EVT_MENU( ID_PCB_PAD_SETUP, PCB_EDIT_FRAME::Process_Config )
|
|
|
|
EVT_MENU( ID_CONFIG_SAVE, PCB_EDIT_FRAME::Process_Config )
|
|
|
|
EVT_MENU( ID_CONFIG_READ, PCB_EDIT_FRAME::Process_Config )
|
2011-09-07 09:27:02 +00:00
|
|
|
EVT_MENU( ID_PREFRENCES_MACROS_SAVE, PCB_EDIT_FRAME::Process_Config )
|
|
|
|
EVT_MENU( ID_PREFRENCES_MACROS_READ, PCB_EDIT_FRAME::Process_Config )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_PCB_DISPLAY_OPTIONS_SETUP, PCB_EDIT_FRAME::InstallDisplayOptionsDialog )
|
|
|
|
EVT_MENU( ID_PCB_USER_GRID_SETUP, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
|
|
|
|
EVT_MENU_RANGE( ID_LANGUAGE_CHOICE, ID_LANGUAGE_CHOICE_END, PCB_EDIT_FRAME::SetLanguage )
|
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 )
|
|
|
|
EVT_MENU( ID_PCB_GLOBAL_DELETE, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_MENU_PCB_CLEAN, PCB_EDIT_FRAME::Process_Special_Functions )
|
|
|
|
EVT_MENU( ID_MENU_PCB_SWAP_LAYERS, PCB_EDIT_FRAME::Process_Special_Functions )
|
2012-05-29 12:25:10 +00:00
|
|
|
EVT_MENU( ID_MENU_PCB_RESET_TEXTMODULE_FIELDS_SIZES,
|
|
|
|
PCB_EDIT_FRAME::OnResetModuleTextSizes )
|
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 )
|
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
|
2013-06-04 14:18:33 +00:00
|
|
|
EVT_MENU( ID_MENU_CANVAS_DEFAULT, PCB_EDIT_FRAME::SwitchCanvas )
|
|
|
|
EVT_MENU( ID_MENU_CANVAS_CAIRO, PCB_EDIT_FRAME::SwitchCanvas )
|
|
|
|
EVT_MENU( ID_MENU_CANVAS_OPENGL, PCB_EDIT_FRAME::SwitchCanvas )
|
2013-04-15 15:57:03 +00:00
|
|
|
|
2009-11-18 12:52:19 +00:00
|
|
|
// Menu Get Design Rules Editor
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_MENU_PCB_SHOW_DESIGN_RULES_DIALOG, PCB_EDIT_FRAME::ShowDesignRulesEditor )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
|
|
|
// Horizontal toolbar
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_TOOL( ID_TO_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 )
|
|
|
|
EVT_TOOL( wxID_UNDO, PCB_EDIT_FRAME::GetBoardFromUndoList )
|
|
|
|
EVT_TOOL( wxID_REDO, PCB_EDIT_FRAME::GetBoardFromRedoList )
|
|
|
|
EVT_TOOL( wxID_PRINT, PCB_EDIT_FRAME::ToPrinter )
|
|
|
|
EVT_TOOL( ID_GEN_PLOT_SVG, PCB_EDIT_FRAME::SVG_Print )
|
|
|
|
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 )
|
|
|
|
EVT_COMBOBOX( ID_AUX_TOOLBAR_PCB_TRACK_WIDTH, PCB_EDIT_FRAME::Tracks_and_Vias_Size_Event )
|
|
|
|
EVT_COMBOBOX( ID_AUX_TOOLBAR_PCB_VIA_SIZE, PCB_EDIT_FRAME::Tracks_and_Vias_Size_Event )
|
2011-12-16 13:32:23 +00:00
|
|
|
EVT_TOOL( ID_TOOLBARH_PCB_MODE_MODULE, PCB_EDIT_FRAME::OnSelectAutoPlaceMode )
|
|
|
|
EVT_TOOL( ID_TOOLBARH_PCB_MODE_TRACKS, PCB_EDIT_FRAME::OnSelectAutoPlaceMode )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_TOOL( ID_TOOLBARH_PCB_FREEROUTE_ACCESS, PCB_EDIT_FRAME::Access_to_External_Tool )
|
2012-09-11 19:03:21 +00:00
|
|
|
#ifdef KICAD_SCRIPTING_WXPYTHON
|
2012-08-10 21:53:50 +00:00
|
|
|
EVT_TOOL( ID_TOOLBARH_PCB_SCRIPTING_CONSOLE, PCB_EDIT_FRAME::ScriptingConsoleEnableDisable )
|
|
|
|
#endif
|
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_MODULE_RATSNEST,
|
|
|
|
PCB_EDIT_FRAME::OnSelectOptionToolbar )
|
|
|
|
EVT_TOOL( ID_TB_OPTIONS_AUTO_DEL_TRACK,
|
|
|
|
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 )
|
|
|
|
|
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 )
|
2011-02-24 20:22:12 +00:00
|
|
|
EVT_TOOL_RANGE( ID_PCB_HIGHLIGHT_BUTT, ID_PCB_PLACE_GRID_COORD_BUTT,
|
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
|
|
|
|
|
|
|
EVT_MENU_RANGE( ID_POPUP_PCB_AUTOPLACE_START_RANGE, ID_POPUP_PCB_AUTOPLACE_END_RANGE,
|
2013-11-27 13:20:42 +00:00
|
|
|
PCB_EDIT_FRAME::OnPlaceOrRouteFootprints )
|
2009-11-18 12:52:19 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_MENU( ID_POPUP_PCB_REORIENT_ALL_MODULES, PCB_EDIT_FRAME::OnOrientFootprints )
|
2010-12-08 20:12:46 +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 )
|
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 )
|
2011-03-07 12:28:14 +00:00
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_SHOW_MODULE_RATSNEST, PCB_EDIT_FRAME::OnUpdateShowModuleRatsnest )
|
2011-03-01 19:26:17 +00:00
|
|
|
EVT_UPDATE_UI( ID_TB_OPTIONS_AUTO_DEL_TRACK, PCB_EDIT_FRAME::OnUpdateAutoDeleteTrack )
|
|
|
|
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 )
|
|
|
|
EVT_UPDATE_UI( ID_AUX_TOOLBAR_PCB_TRACK_WIDTH, PCB_EDIT_FRAME::OnUpdateSelectTrackWidth )
|
|
|
|
EVT_UPDATE_UI( ID_AUX_TOOLBAR_PCB_SELECT_AUTO_WIDTH,
|
|
|
|
PCB_EDIT_FRAME::OnUpdateSelectAutoTrackWidth )
|
|
|
|
EVT_UPDATE_UI( ID_POPUP_PCB_SELECT_AUTO_WIDTH, PCB_EDIT_FRAME::OnUpdateSelectAutoTrackWidth )
|
|
|
|
EVT_UPDATE_UI( ID_AUX_TOOLBAR_PCB_VIA_SIZE, PCB_EDIT_FRAME::OnUpdateSelectViaSize )
|
2011-12-16 13:32:23 +00:00
|
|
|
EVT_UPDATE_UI( ID_TOOLBARH_PCB_MODE_MODULE, PCB_EDIT_FRAME::OnUpdateAutoPlaceModulesMode )
|
|
|
|
EVT_UPDATE_UI( ID_TOOLBARH_PCB_MODE_TRACKS, PCB_EDIT_FRAME::OnUpdateAutoPlaceTracksMode )
|
2011-03-01 19:26:17 +00:00
|
|
|
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 )
|
2011-02-24 20:22:12 +00:00
|
|
|
EVT_UPDATE_UI_RANGE( ID_PCB_HIGHLIGHT_BUTT, ID_PCB_PLACE_GRID_COORD_BUTT,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::OnUpdateVerticalToolbar )
|
2011-02-21 13:54:29 +00:00
|
|
|
EVT_UPDATE_UI_RANGE( ID_TB_OPTIONS_SHOW_ZONES, ID_TB_OPTIONS_SHOW_ZONES_OUTLINES_ONLY,
|
2011-03-01 19:26:17 +00:00
|
|
|
PCB_EDIT_FRAME::OnUpdateZoneDisplayStyle )
|
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 )
|
2007-08-20 01:20:48 +00:00
|
|
|
END_EVENT_TABLE()
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
///////****************************///////////:
|
|
|
|
|
2012-09-12 09:53:11 +00:00
|
|
|
#define PCB_EDIT_FRAME_NAME wxT( "PcbFrame" )
|
2010-01-21 07:41:30 +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 ) :
|
|
|
|
PCB_BASE_FRAME( aKiway, aParent, PCB_FRAME_TYPE, wxT( "Pcbnew" ), wxDefaultPosition,
|
|
|
|
wxDefaultSize, KICAD_DEFAULT_DRAWFRAME_STYLE, PCB_EDIT_FRAME_NAME )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2012-09-12 09:53:11 +00:00
|
|
|
m_FrameName = PCB_EDIT_FRAME_NAME;
|
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;
|
2010-11-24 15:10:33 +00:00
|
|
|
m_HotkeysZoomAndGridList = g_Board_Editor_Hokeys_Descr;
|
2011-10-13 19:56:32 +00:00
|
|
|
m_hasAutoSave = true;
|
2011-09-07 09:27:02 +00:00
|
|
|
m_RecordingMacros = -1;
|
2011-12-14 20:03:15 +00:00
|
|
|
m_microWaveToolBar = NULL;
|
2013-02-02 17:39:59 +00:00
|
|
|
m_useCmpFileForFpNames = true;
|
2013-09-06 12:17:33 +00:00
|
|
|
|
2013-12-16 21:40:03 +00:00
|
|
|
m_rotationAngle = 900;
|
2013-05-20 14:49:20 +00:00
|
|
|
|
2012-09-11 19:03:21 +00:00
|
|
|
#ifdef KICAD_SCRIPTING_WXPYTHON
|
2012-08-02 17:24:53 +00:00
|
|
|
m_pythonPanel = NULL;
|
|
|
|
#endif
|
2013-05-20 14:49:20 +00:00
|
|
|
|
2011-09-07 09:27:02 +00:00
|
|
|
for ( int i = 0; i < 10; i++ )
|
|
|
|
m_Macros[i].m_Record.clear();
|
|
|
|
|
++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():
|
|
|
|
|
|
|
|
wxFont font = wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT );
|
|
|
|
int pointSize = font.GetPointSize();
|
|
|
|
int screenHeight = wxSystemSettings::GetMetric( wxSYS_SCREEN_Y );
|
|
|
|
|
|
|
|
// printf( "pointSize:%d 80%%:%d\n", pointSize, (pointSize*8)/10 );
|
|
|
|
|
|
|
|
if( screenHeight <= 900 )
|
|
|
|
pointSize = (pointSize * 8) / 10;
|
|
|
|
|
2014-01-19 13:12:57 +00:00
|
|
|
m_Layers = new PCB_LAYER_WIDGET( this, GetCanvas(), pointSize );
|
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
|
|
|
|
2011-12-31 05:44:00 +00:00
|
|
|
SetScreen( new PCB_SCREEN( GetPageSettings().GetSizeIU() ) );
|
|
|
|
|
|
|
|
// PCB drawings start in the upper left corner.
|
|
|
|
GetScreen()->m_Center = false;
|
2010-02-03 14:05:17 +00:00
|
|
|
|
|
|
|
// LoadSettings() *after* creating m_LayersManager, because LoadSettings()
|
|
|
|
// initialize parameters in m_LayersManager
|
* 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
|
|
|
LoadSettings( config() );
|
2013-03-29 10:14:32 +00:00
|
|
|
|
|
|
|
// Be sure options are updated
|
|
|
|
m_DisplayPcbTrackFill = DisplayOpt.DisplayPcbTrackFill;
|
|
|
|
m_DisplayPadFill = DisplayOpt.DisplayPadFill;
|
|
|
|
m_DisplayViaFill = DisplayOpt.DisplayViaFill;
|
|
|
|
m_DisplayPadNum = DisplayOpt.DisplayPadNum;
|
|
|
|
|
|
|
|
m_DisplayModEdge = DisplayOpt.DisplayModEdge;
|
|
|
|
m_DisplayModText = DisplayOpt.DisplayModText;
|
|
|
|
|
2007-08-20 01:20:48 +00:00
|
|
|
SetSize( m_FramePos.x, m_FramePos.y, m_FrameSize.x, m_FrameSize.y );
|
|
|
|
|
2010-07-12 14:07:09 +00:00
|
|
|
GetScreen()->AddGrid( m_UserGridSize, m_UserGridUnit, 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() );
|
2010-01-23 07:00:21 +00:00
|
|
|
lyrs.Caption( _( "Visibles" ) );
|
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,
|
|
|
|
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
|
|
|
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2013-03-11 08:09:48 +00:00
|
|
|
#ifdef KICAD_SCRIPTING_WXPYTHON
|
2012-08-02 17:24:53 +00:00
|
|
|
// Add the scripting panel
|
|
|
|
EDA_PANEINFO pythonAuiInfo;
|
|
|
|
pythonAuiInfo.ScriptingToolbarPane();
|
|
|
|
pythonAuiInfo.Caption( wxT( "Python Scripting" ) );
|
|
|
|
pythonAuiInfo.MinSize( wxSize( 200, 100 ) );
|
|
|
|
pythonAuiInfo.BestSize( wxSize( GetClientSize().x/2, 200 ) );
|
2012-08-10 21:53:50 +00:00
|
|
|
pythonAuiInfo.Hide();
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2012-08-02 17:24:53 +00:00
|
|
|
m_pythonPanel = CreatePythonShellWindow( this );
|
|
|
|
m_auimgr.AddPane( m_pythonPanel,
|
2013-05-20 14:49:20 +00:00
|
|
|
pythonAuiInfo.Name( wxT( "PythonPanel" ) ).Bottom().Layer(9) );
|
2012-08-02 17:24:53 +00:00
|
|
|
|
2012-08-10 21:53:50 +00:00
|
|
|
m_pythonPanelHidden = true;
|
2013-03-11 08:09:48 +00:00
|
|
|
#endif
|
2012-08-02 17:24:53 +00:00
|
|
|
|
2011-04-07 19:17:51 +00:00
|
|
|
ReFillLayerWidget(); // this is near end because contents establish size
|
2012-02-06 05:44:19 +00:00
|
|
|
|
2011-04-07 19:17:51 +00:00
|
|
|
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();
|
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
|
|
|
{
|
2013-09-11 17:37:52 +00:00
|
|
|
destroyTools();
|
2011-09-07 09:27:02 +00:00
|
|
|
m_RecordingMacros = -1;
|
2011-09-24 18:33:28 +00:00
|
|
|
|
2011-09-07 09:27:02 +00:00
|
|
|
for( int i = 0; i < 10; i++ )
|
|
|
|
m_Macros[i].m_Record.clear();
|
|
|
|
|
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 )
|
|
|
|
{
|
|
|
|
PCB_BASE_FRAME::SetBoard( aBoard );
|
|
|
|
|
2013-12-26 22:36:43 +00:00
|
|
|
if( GetGalCanvas() )
|
2013-11-25 15:50:03 +00:00
|
|
|
{
|
|
|
|
ViewReloadBoard( aBoard );
|
|
|
|
|
|
|
|
// update the tool manager with the new board and its view.
|
|
|
|
if( m_toolManager )
|
2014-01-07 13:16:47 +00:00
|
|
|
{
|
2013-12-26 22:36:43 +00:00
|
|
|
m_toolManager->SetEnvironment( aBoard, GetGalCanvas()->GetView(),
|
|
|
|
GetGalCanvas()->GetViewControls(), this );
|
2014-01-07 13:16:47 +00:00
|
|
|
m_toolManager->ResetTools( TOOL_BASE::MODEL_RELOAD );
|
|
|
|
}
|
2013-11-25 15:50:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::ViewReloadBoard( const BOARD* aBoard ) const
|
|
|
|
{
|
2013-12-26 22:36:43 +00:00
|
|
|
KIGFX::VIEW* view = GetGalCanvas()->GetView();
|
2013-11-25 15:50:03 +00:00
|
|
|
view->Clear();
|
|
|
|
|
|
|
|
// All of PCB drawing elements should be added to the VIEW
|
|
|
|
// in order to be displayed
|
|
|
|
|
|
|
|
// Load zones
|
|
|
|
for( int i = 0; i < aBoard->GetAreaCount(); ++i )
|
|
|
|
{
|
|
|
|
view->Add( (KIGFX::VIEW_ITEM*) ( aBoard->GetArea( i ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load drawings
|
|
|
|
for( BOARD_ITEM* drawing = aBoard->m_Drawings; drawing; drawing = drawing->Next() )
|
|
|
|
{
|
|
|
|
view->Add( drawing );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load tracks
|
|
|
|
for( TRACK* track = aBoard->m_Track; track; track = track->Next() )
|
|
|
|
{
|
|
|
|
view->Add( track );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load modules and its additional elements
|
|
|
|
for( MODULE* module = aBoard->m_Modules; module; module = module->Next() )
|
|
|
|
{
|
|
|
|
// Load module's pads
|
|
|
|
for( D_PAD* pad = module->Pads().GetFirst(); pad; pad = pad->Next() )
|
|
|
|
{
|
|
|
|
view->Add( pad );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load module's drawing (mostly silkscreen)
|
|
|
|
for( BOARD_ITEM* drawing = module->GraphicalItems().GetFirst(); drawing;
|
|
|
|
drawing = drawing->Next() )
|
|
|
|
{
|
|
|
|
view->Add( drawing );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load module's texts (name and value)
|
|
|
|
view->Add( &module->Reference() );
|
|
|
|
view->Add( &module->Value() );
|
|
|
|
|
|
|
|
// Add the module itself
|
|
|
|
view->Add( module );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Segzones (equivalent of ZONE_CONTAINER for legacy boards)
|
|
|
|
for( SEGZONE* zone = aBoard->m_Zone; zone; zone = zone->Next() )
|
|
|
|
{
|
|
|
|
view->Add( zone );
|
|
|
|
}
|
|
|
|
|
2014-03-03 16:15:41 +00:00
|
|
|
KIGFX::WORKSHEET_VIEWITEM* worksheet = aBoard->GetWorksheetViewItem();
|
|
|
|
worksheet->SetSheetName( std::string( GetScreenDesc().mb_str() ) );
|
|
|
|
|
2013-11-25 15:50:03 +00:00
|
|
|
BASE_SCREEN* screen = GetScreen();
|
2014-03-03 16:15:41 +00:00
|
|
|
|
2013-11-25 15:50:03 +00:00
|
|
|
if( screen != NULL )
|
|
|
|
{
|
2014-03-03 16:15:41 +00:00
|
|
|
worksheet->SetSheetNumber( screen->m_ScreenNumber );
|
|
|
|
worksheet->SetSheetCount( screen->m_NumberOfScreens );
|
2013-11-25 15:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
view->Add( worksheet );
|
2014-03-03 16:15:41 +00:00
|
|
|
view->Add( aBoard->GetRatsnestViewItem() );
|
2013-11-25 15:50:03 +00:00
|
|
|
|
2014-03-03 16:15:41 +00:00
|
|
|
// Limit panning to the size of worksheet frame
|
|
|
|
view->SetPanBoundary( aBoard->GetWorksheetViewItem()->ViewBBox() );
|
2013-11-25 15:50:03 +00:00
|
|
|
view->RecacheAllItems( true );
|
|
|
|
|
2013-12-26 22:36:43 +00:00
|
|
|
if( IsGalCanvasActive() )
|
|
|
|
GetGalCanvas()->Refresh();
|
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
|
|
|
{
|
2011-10-15 13:25:57 +00:00
|
|
|
return GetScreen()->IsSave();
|
2011-10-13 19:56:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
{
|
2010-04-23 14:46:00 +00:00
|
|
|
Close( true );
|
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 );
|
2013-12-26 22:36:43 +00:00
|
|
|
GetGalCanvas()->StopDrawing();
|
2007-08-20 01:20:48 +00:00
|
|
|
|
2011-09-24 18:33:28 +00:00
|
|
|
if( GetScreen()->IsModify() )
|
2007-08-20 01:20:48 +00:00
|
|
|
{
|
2012-03-08 17:47:23 +00:00
|
|
|
wxString msg;
|
|
|
|
msg.Printf( _("Save the changes in\n<%s>\nbefore closing?"),
|
2012-08-29 16:59:50 +00:00
|
|
|
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:
|
2012-08-29 16:59:50 +00:00
|
|
|
SavePcbFile( GetBoard()->GetFileName() );
|
2007-08-20 01:20:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
// Auto save file name is the normal file name prefixed with a '$'.
|
|
|
|
fn.SetName( wxT( "$" ) + fn.GetName() );
|
|
|
|
|
|
|
|
// Remove the auto save file on a normal close of Pcbnew.
|
|
|
|
if( fn.FileExists() && !wxRemoveFile( fn.GetFullPath() ) )
|
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
|
|
|
|
msg.Printf( _( "The auto save file <%s> could not be removed!" ),
|
|
|
|
GetChars( fn.GetFullPath() ) );
|
|
|
|
|
* 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
|
|
|
{
|
|
|
|
if( m_Draw3DFrame )
|
|
|
|
{
|
2011-08-04 11:23:19 +00:00
|
|
|
// Raising the window does not show the window on Windows if iconized.
|
|
|
|
// This should work on any platform.
|
|
|
|
if( m_Draw3DFrame->IsIconized() )
|
|
|
|
m_Draw3DFrame->Iconize( false );
|
2011-09-24 18:33:28 +00:00
|
|
|
|
2011-08-03 15:09:39 +00:00
|
|
|
m_Draw3DFrame->Raise();
|
|
|
|
|
|
|
|
// Raising the window does not set the focus on Linux. This should work on any platform.
|
|
|
|
if( wxWindow::FindFocus() != m_Draw3DFrame )
|
|
|
|
m_Draw3DFrame->SetFocus();
|
|
|
|
|
2009-02-05 20:53:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
* 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
|
|
|
m_Draw3DFrame = new EDA_3D_FRAME( &Kiway(), this, _( "3D Viewer" ) );
|
2012-08-29 16:59:50 +00:00
|
|
|
m_Draw3DFrame->SetDefaultFileName( GetBoard()->GetFileName() );
|
2009-10-01 16:46:13 +00:00
|
|
|
m_Draw3DFrame->Show( true );
|
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 )
|
|
|
|
{
|
|
|
|
EDA_DRAW_FRAME::UseGalCanvas( aEnable );
|
|
|
|
|
|
|
|
ViewReloadBoard( m_Pcb );
|
2014-01-07 13:16:47 +00:00
|
|
|
|
|
|
|
if( aEnable )
|
|
|
|
{
|
2014-01-31 12:14:18 +00:00
|
|
|
// Update potential changes in the ratsnest
|
|
|
|
m_Pcb->GetRatsnest()->Recalculate();
|
|
|
|
|
2014-01-07 13:16:47 +00:00
|
|
|
m_toolManager->SetEnvironment( m_Pcb, GetGalCanvas()->GetView(),
|
|
|
|
GetGalCanvas()->GetViewControls(), this );
|
|
|
|
m_toolManager->ResetTools( TOOL_BASE::GAL_SWITCH );
|
|
|
|
}
|
2013-11-25 15:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-15 15:57:03 +00:00
|
|
|
void PCB_EDIT_FRAME::SwitchCanvas( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
int id = aEvent.GetId();
|
|
|
|
|
|
|
|
switch( id )
|
|
|
|
{
|
|
|
|
case ID_MENU_CANVAS_DEFAULT:
|
|
|
|
UseGalCanvas( false );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_MENU_CANVAS_CAIRO:
|
2013-12-26 22:36:43 +00:00
|
|
|
GetGalCanvas()->SwitchBackend( EDA_DRAW_PANEL_GAL::GAL_TYPE_CAIRO );
|
2013-04-15 15:57:03 +00:00
|
|
|
UseGalCanvas( true );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ID_MENU_CANVAS_OPENGL:
|
2013-12-26 22:36:43 +00:00
|
|
|
GetGalCanvas()->SwitchBackend( EDA_DRAW_PANEL_GAL::GAL_TYPE_OPENGL );
|
2013-04-15 15:57:03 +00:00
|
|
|
UseGalCanvas( true );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::ShowDesignRulesEditor( wxCommandEvent& event )
|
2009-07-18 11:44:19 +00:00
|
|
|
{
|
|
|
|
DIALOG_DESIGN_RULES dR_editor( this );
|
2009-10-03 17:18:08 +00:00
|
|
|
int returncode = dR_editor.ShowModal();
|
|
|
|
|
|
|
|
if( returncode == wxID_OK ) // New rules, or others changes.
|
2009-07-18 11:44:19 +00:00
|
|
|
{
|
2013-09-02 15:26:52 +00:00
|
|
|
ReCreateLayerBox();
|
2011-03-01 19:26:17 +00:00
|
|
|
updateTraceWidthSelectBox();
|
|
|
|
updateViaSizeSelectBox();
|
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
|
|
|
|
2013-01-15 09:31:11 +00:00
|
|
|
double 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
|
|
|
aCfg->Read( OPTKEY_DEFAULT_LINEWIDTH_VALUE, &dtmp, 0.1 ); // stored in mm
|
|
|
|
|
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
|
|
|
|
2010-01-29 20:36:12 +00:00
|
|
|
long tmp;
|
* 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
|
|
|
|
|
|
|
aCfg->Read( PCB_SHOW_FULL_RATSNET_OPT, &tmp );
|
2010-01-29 20:36:12 +00:00
|
|
|
GetBoard()->SetElementVisibility(RATSNEST_VISIBLE, tmp);
|
2013-03-29 10:14: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
|
|
|
aCfg->Read( PCB_MAGNETIC_PADS_OPT, &g_MagneticPadOption );
|
|
|
|
aCfg->Read( PCB_MAGNETIC_TRACKS_OPT, &g_MagneticTrackOption );
|
|
|
|
aCfg->Read( SHOW_MICROWAVE_TOOLS, &m_show_microwave_tools );
|
|
|
|
aCfg->Read( SHOW_LAYER_MANAGER_TOOLS, &m_show_layer_manager_tools );
|
2011-04-02 16:14:07 +00:00
|
|
|
|
|
|
|
// WxWidgets 2.9.1 seems call setlocale( LC_NUMERIC, "" )
|
* 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
|
|
|
// when reading doubles in cfg,
|
2011-04-02 16:14:07 +00:00
|
|
|
// but forget to back to current locale. So we call SetLocaleTo_Default
|
|
|
|
SetLocaleTo_Default( );
|
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
|
|
|
{
|
* 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 )
|
* 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
|
|
|
aCfg->Write( OPTKEY_DEFAULT_LINEWIDTH_VALUE,
|
2013-01-15 09:31:11 +00:00
|
|
|
MM_PER_IU * g_DrawDefaultLineThickness );
|
2010-01-29 20:36:12 +00:00
|
|
|
long tmp = GetBoard()->IsElementVisible(RATSNEST_VISIBLE);
|
* 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
|
|
|
aCfg->Write( PCB_SHOW_FULL_RATSNET_OPT, tmp );
|
|
|
|
aCfg->Write( PCB_MAGNETIC_PADS_OPT, (long) g_MagneticPadOption );
|
|
|
|
aCfg->Write( PCB_MAGNETIC_TRACKS_OPT, (long) g_MagneticTrackOption );
|
|
|
|
aCfg->Write( SHOW_MICROWAVE_TOOLS, (long) m_show_microwave_tools );
|
|
|
|
aCfg->Write( SHOW_LAYER_MANAGER_TOOLS, (long)m_show_layer_manager_tools );
|
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
|
|
|
{
|
2011-02-21 13:54:29 +00:00
|
|
|
return IsElementVisible( GRID_VISIBLE );
|
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
|
|
|
{
|
2011-02-21 13:54:29 +00:00
|
|
|
SetElementVisibility( GRID_VISIBLE, aVisible );
|
2010-02-01 21:23:27 +00:00
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T PCB_EDIT_FRAME::GetGridColor() const
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
|
|
|
return GetBoard()->GetVisibleElementColor( GRID_VISIBLE );
|
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2012-09-02 12:06:47 +00:00
|
|
|
void PCB_EDIT_FRAME::SetGridColor(EDA_COLOR_T aColor)
|
2010-02-01 21:23:27 +00:00
|
|
|
{
|
|
|
|
GetBoard()->SetVisibleElementColor( GRID_VISIBLE, aColor );
|
|
|
|
}
|
|
|
|
|
2011-02-21 13:54:29 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
bool PCB_EDIT_FRAME::IsMicroViaAcceptable( void )
|
2010-01-31 20:01:46 +00:00
|
|
|
{
|
|
|
|
int copperlayercnt = GetBoard()->GetCopperLayerCount( );
|
2013-09-20 14:32:11 +00:00
|
|
|
LAYER_NUM 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..
|
|
|
|
|
|
|
|
if( ( currLayer == LAYER_N_BACK )
|
|
|
|
|| ( currLayer == LAYER_N_FRONT )
|
|
|
|
|| ( currLayer == copperlayercnt - 2 )
|
|
|
|
|| ( currLayer == LAYER_N_2 ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-01-23 10:50:05 +00:00
|
|
|
|
2013-07-16 11:40:53 +00:00
|
|
|
void PCB_EDIT_FRAME::setHighContrastLayer( LAYER_NUM aLayer )
|
2013-07-16 07:26:29 +00:00
|
|
|
{
|
|
|
|
// Set display settings for high contrast mode
|
2013-12-26 22:36:43 +00:00
|
|
|
KIGFX::VIEW* view = GetGalCanvas()->GetView();
|
2013-10-14 14:13:35 +00:00
|
|
|
KIGFX::RENDER_SETTINGS* rSettings = view->GetPainter()->GetSettings();
|
2013-07-16 07:26:29 +00:00
|
|
|
|
2013-09-12 16:24:53 +00:00
|
|
|
setTopLayer( aLayer );
|
|
|
|
|
|
|
|
rSettings->ClearActiveLayers();
|
|
|
|
rSettings->SetActiveLayer( aLayer );
|
|
|
|
|
|
|
|
if( IsCopperLayer( aLayer ) )
|
2013-07-16 07:26:29 +00:00
|
|
|
{
|
2013-09-12 16:24:53 +00:00
|
|
|
// Bring some other layers to the front in case of copper layers and make them colored
|
|
|
|
// fixme do not like the idea of storing the list of layers here,
|
|
|
|
// should be done in some other way I guess..
|
|
|
|
LAYER_NUM layers[] = {
|
|
|
|
GetNetnameLayer( aLayer ), ITEM_GAL_LAYER( VIAS_VISIBLE ),
|
|
|
|
ITEM_GAL_LAYER( VIAS_HOLES_VISIBLE ), ITEM_GAL_LAYER( PADS_VISIBLE ),
|
2014-02-03 13:14:53 +00:00
|
|
|
ITEM_GAL_LAYER( PADS_HOLES_VISIBLE ), NETNAMES_GAL_LAYER( PADS_NETNAMES_VISIBLE ),
|
2013-11-25 15:50:03 +00:00
|
|
|
ITEM_GAL_LAYER( GP_OVERLAY ), ITEM_GAL_LAYER( RATSNEST_VISIBLE )
|
2013-09-12 16:24:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for( unsigned int i = 0; i < sizeof( layers ) / sizeof( LAYER_NUM ); ++i )
|
|
|
|
rSettings->SetActiveLayer( layers[i] );
|
|
|
|
|
|
|
|
// Pads should be shown too
|
|
|
|
if( aLayer == FIRST_COPPER_LAYER )
|
|
|
|
{
|
|
|
|
rSettings->SetActiveLayer( ITEM_GAL_LAYER( PAD_BK_VISIBLE ) );
|
2014-02-03 13:14:53 +00:00
|
|
|
rSettings->SetActiveLayer( NETNAMES_GAL_LAYER( PAD_BK_NETNAMES_VISIBLE ) );
|
2013-09-12 16:24:53 +00:00
|
|
|
}
|
|
|
|
else if( aLayer == LAST_COPPER_LAYER )
|
|
|
|
{
|
|
|
|
rSettings->SetActiveLayer( ITEM_GAL_LAYER( PAD_FR_VISIBLE ) );
|
2014-02-03 13:14:53 +00:00
|
|
|
rSettings->SetActiveLayer( NETNAMES_GAL_LAYER( PAD_FR_NETNAMES_VISIBLE ) );
|
2013-09-12 16:24:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
view->UpdateAllLayersColor();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::setTopLayer( LAYER_NUM aLayer )
|
|
|
|
{
|
|
|
|
// Set display settings for high contrast mode
|
2013-12-26 22:36:43 +00:00
|
|
|
KIGFX::VIEW* view = GetGalCanvas()->GetView();
|
2013-07-16 11:40:53 +00:00
|
|
|
|
2013-09-12 16:24:53 +00:00
|
|
|
view->ClearTopLayers();
|
|
|
|
view->SetTopLayer( aLayer );
|
2013-07-16 11:40:53 +00:00
|
|
|
|
2013-09-12 16:24:53 +00:00
|
|
|
if( IsCopperLayer( aLayer ) )
|
|
|
|
{
|
|
|
|
// Bring some other layers to the front in case of copper layers and make them colored
|
|
|
|
// fixme do not like the idea of storing the list of layers here,
|
|
|
|
// should be done in some other way I guess..
|
|
|
|
LAYER_NUM layers[] = {
|
|
|
|
GetNetnameLayer( aLayer ), ITEM_GAL_LAYER( VIAS_VISIBLE ),
|
|
|
|
ITEM_GAL_LAYER( VIAS_HOLES_VISIBLE ), ITEM_GAL_LAYER( PADS_VISIBLE ),
|
2014-02-03 13:14:53 +00:00
|
|
|
ITEM_GAL_LAYER( PADS_HOLES_VISIBLE ), NETNAMES_GAL_LAYER( PADS_NETNAMES_VISIBLE ),
|
2013-11-25 15:50:03 +00:00
|
|
|
ITEM_GAL_LAYER( GP_OVERLAY ), ITEM_GAL_LAYER( RATSNEST_VISIBLE ), DRAW_N
|
2013-09-12 16:24:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for( unsigned int i = 0; i < sizeof( layers ) / sizeof( LAYER_NUM ); ++i )
|
2013-07-16 11:40:53 +00:00
|
|
|
{
|
2013-09-12 16:24:53 +00:00
|
|
|
view->SetTopLayer( layers[i] );
|
2013-07-16 11:40:53 +00:00
|
|
|
}
|
2013-09-06 09:31:16 +00:00
|
|
|
|
2013-09-12 16:24:53 +00:00
|
|
|
// Pads should be shown too
|
|
|
|
if( aLayer == FIRST_COPPER_LAYER )
|
|
|
|
{
|
|
|
|
view->SetTopLayer( ITEM_GAL_LAYER( PAD_BK_VISIBLE ) );
|
2014-02-03 13:14:53 +00:00
|
|
|
view->SetTopLayer( NETNAMES_GAL_LAYER( PAD_BK_NETNAMES_VISIBLE ) );
|
2013-09-12 16:24:53 +00:00
|
|
|
}
|
|
|
|
else if( aLayer == LAST_COPPER_LAYER )
|
|
|
|
{
|
|
|
|
view->SetTopLayer( ITEM_GAL_LAYER( PAD_FR_VISIBLE ) );
|
2014-02-03 13:14:53 +00:00
|
|
|
view->SetTopLayer( NETNAMES_GAL_LAYER( PAD_FR_NETNAMES_VISIBLE ) );
|
2013-09-12 16:24:53 +00:00
|
|
|
}
|
2013-07-16 07:26:29 +00:00
|
|
|
}
|
2013-09-12 16:24:53 +00:00
|
|
|
|
|
|
|
view->UpdateAllLayersOrder();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-20 14:32:11 +00:00
|
|
|
void PCB_EDIT_FRAME::setActiveLayer( LAYER_NUM aLayer, bool doLayerWidgetUpdate )
|
2013-09-12 16:24:53 +00:00
|
|
|
{
|
|
|
|
( (PCB_SCREEN*) GetScreen() )->m_Active_Layer = aLayer;
|
|
|
|
|
|
|
|
setHighContrastLayer( aLayer );
|
|
|
|
|
|
|
|
if( doLayerWidgetUpdate )
|
|
|
|
syncLayerWidgetLayer();
|
|
|
|
|
2013-12-26 22:36:43 +00:00
|
|
|
if( IsGalCanvasActive() )
|
|
|
|
GetGalCanvas()->Refresh();
|
2013-07-16 07:26:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-06 05:44:19 +00:00
|
|
|
void PCB_EDIT_FRAME::syncLayerWidgetLayer()
|
2010-01-30 20:17:56 +00:00
|
|
|
{
|
2013-09-20 14:32:11 +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()
|
|
|
|
{
|
|
|
|
m_Layers->SyncRenderStates();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-12 00:40:48 +00:00
|
|
|
void PCB_EDIT_FRAME::syncLayerVisibilities()
|
|
|
|
{
|
|
|
|
m_Layers->SyncLayerVisibilities();
|
2013-07-25 16:04:15 +00:00
|
|
|
|
2013-12-26 22:36:43 +00:00
|
|
|
KIGFX::VIEW* view = GetGalCanvas()->GetView();
|
2014-02-03 13:14:53 +00:00
|
|
|
|
2013-07-25 16:04:15 +00:00
|
|
|
// Load layer & elements visibility settings
|
|
|
|
for( LAYER_NUM i = 0; i < NB_LAYERS; ++i )
|
|
|
|
{
|
|
|
|
view->SetLayerVisible( i, m_Pcb->IsLayerVisible( i ) );
|
2014-02-03 13:14:53 +00:00
|
|
|
|
|
|
|
// Synchronize netname layers as well
|
|
|
|
if( IsCopperLayer( i ) )
|
|
|
|
view->SetLayerVisible( GetNetnameLayer( i ), m_Pcb->IsLayerVisible( i ) );
|
2013-07-25 16:04:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for( LAYER_NUM i = 0; i < END_PCB_VISIBLE_LIST; ++i )
|
|
|
|
{
|
|
|
|
view->SetLayerVisible( ITEM_GAL_LAYER( i ), m_Pcb->IsElementVisible( i ) );
|
|
|
|
}
|
2013-07-29 12:20:40 +00:00
|
|
|
|
|
|
|
// Enable some layers that are GAL specific
|
|
|
|
view->SetLayerVisible( ITEM_GAL_LAYER( PADS_HOLES_VISIBLE ), true );
|
|
|
|
view->SetLayerVisible( ITEM_GAL_LAYER( VIAS_HOLES_VISIBLE ), true );
|
2014-02-03 13:14:53 +00:00
|
|
|
view->SetLayerVisible( ITEM_GAL_LAYER( WORKSHEET ), true );
|
|
|
|
view->SetLayerVisible( ITEM_GAL_LAYER( GP_OVERLAY ), true );
|
2012-03-12 00:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::unitsChangeRefresh()
|
|
|
|
{
|
|
|
|
PCB_BASE_FRAME::unitsChangeRefresh(); // Update the grid size select box.
|
|
|
|
|
|
|
|
updateTraceWidthSelectBox();
|
|
|
|
updateViaSizeSelectBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-02 12:06:47 +00:00
|
|
|
bool PCB_EDIT_FRAME::IsElementVisible( int aElement ) const
|
2010-01-30 20:17:56 +00:00
|
|
|
{
|
2011-09-20 13:57:40 +00:00
|
|
|
return GetBoard()->IsElementVisible( aElement );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::SetElementVisibility( int aElement, bool aNewState )
|
|
|
|
{
|
|
|
|
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
|
|
|
|
|
|
|
for( int ii = 0; ii < PCB_VISIBLE( END_PCB_VISIBLE_LIST ); 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
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::SetLanguage( wxCommandEvent& event )
|
2010-02-26 15:39:10 +00:00
|
|
|
{
|
2011-01-21 19:30:59 +00:00
|
|
|
EDA_DRAW_FRAME::SetLanguage( event );
|
2011-02-21 13:54:29 +00:00
|
|
|
m_Layers->SetLayersManagerTabsText();
|
* 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 );
|
* 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
|
|
|
|
2010-03-20 19:57:59 +00:00
|
|
|
pane_info.Caption( _( "Visibles" ) );
|
2010-02-26 15:39:10 +00:00
|
|
|
m_auimgr.Update();
|
|
|
|
ReFillLayerWidget();
|
2010-03-20 19:57:59 +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
|
|
|
FOOTPRINT_EDIT_FRAME* moduleEditFrame = FOOTPRINT_EDIT_FRAME::GetActiveFootprintEditor( this );
|
2012-09-12 09:53:11 +00:00
|
|
|
if( moduleEditFrame )
|
|
|
|
moduleEditFrame->EDA_DRAW_FRAME::SetLanguage( event );
|
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
|
|
|
|
2010-05-01 12:46:33 +00:00
|
|
|
if( m_Draw3DFrame )
|
2011-02-21 13:54:29 +00:00
|
|
|
m_Draw3DFrame->ReloadRequest();
|
2010-05-01 12:46:33 +00:00
|
|
|
}
|
|
|
|
|
2010-11-17 21:47:27 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::SVG_Print( wxCommandEvent& event )
|
2010-11-17 21:47:27 +00:00
|
|
|
{
|
|
|
|
DIALOG_SVG_PRINT frame( this );
|
|
|
|
|
|
|
|
frame.ShowModal();
|
|
|
|
}
|
2011-08-26 17:01:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::UpdateTitle()
|
|
|
|
{
|
* 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
|
|
|
wxFileName fileName = GetBoard()->GetFileName();
|
|
|
|
wxString title = wxString::Format( wxT( "Pcbnew %s " ), GetChars( GetBuildVersion() ) );
|
2012-12-15 13:39:36 +00:00
|
|
|
|
2011-08-26 17:01:17 +00:00
|
|
|
if( fileName.IsOk() && fileName.FileExists() )
|
|
|
|
{
|
2012-12-15 13:39:36 +00:00
|
|
|
title << fileName.GetFullPath();
|
2011-08-26 17:01:17 +00:00
|
|
|
|
|
|
|
if( !fileName.IsFileWritable() )
|
2012-12-15 13:39:36 +00:00
|
|
|
title << _( " [Read Only]" );
|
2011-08-26 17:01:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-12-15 13:39:36 +00:00
|
|
|
title << _( " [new file]" ) << wxT(" ") << fileName.GetFullPath();
|
2011-08-26 17:01:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SetTitle( title );
|
|
|
|
}
|
2011-12-16 13:32:23 +00:00
|
|
|
|
2012-08-10 21:53:50 +00:00
|
|
|
#ifdef KICAD_SCRIPTING_WXPYTHON
|
|
|
|
void PCB_EDIT_FRAME::ScriptingConsoleEnableDisable( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
if ( m_pythonPanelHidden )
|
|
|
|
{
|
|
|
|
m_auimgr.GetPane( m_pythonPanel ).Show();
|
|
|
|
m_pythonPanelHidden = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_auimgr.GetPane( m_pythonPanel ).Hide();
|
|
|
|
m_pythonPanelHidden = true;
|
|
|
|
}
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2012-08-10 21:53:50 +00:00
|
|
|
m_auimgr.Update();
|
2012-09-11 19:03:21 +00:00
|
|
|
|
2012-08-10 21:53:50 +00:00
|
|
|
}
|
|
|
|
#endif
|
2011-12-16 13:32:23 +00:00
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::OnSelectAutoPlaceMode( wxCommandEvent& aEvent )
|
|
|
|
{
|
2013-01-18 14:12:57 +00:00
|
|
|
// Automatic placement of modules and tracks is a mutually exclusive operation so
|
|
|
|
// clear the other tool if one of the two is selected.
|
|
|
|
// Be careful: this event function is called both by the
|
|
|
|
// ID_TOOLBARH_PCB_MODE_MODULE and the ID_TOOLBARH_PCB_MODE_TRACKS tool
|
|
|
|
// Therefore we should avoid a race condition when deselecting one of these tools
|
|
|
|
// inside this function (seems happen on some Linux/wxWidgets versions)
|
|
|
|
// when the other tool is selected
|
|
|
|
|
|
|
|
switch( aEvent.GetId() )
|
2011-12-16 13:32:23 +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
|
|
|
case ID_TOOLBARH_PCB_MODE_MODULE:
|
|
|
|
if( aEvent.IsChecked() &&
|
|
|
|
m_mainToolBar->GetToolToggled( ID_TOOLBARH_PCB_MODE_TRACKS ) )
|
|
|
|
{
|
|
|
|
m_mainToolBar->ToggleTool( ID_TOOLBARH_PCB_MODE_TRACKS, false );
|
|
|
|
}
|
|
|
|
break;
|
2013-01-18 14:12:57 +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
|
|
|
case ID_TOOLBARH_PCB_MODE_TRACKS:
|
|
|
|
if( aEvent.IsChecked() &&
|
|
|
|
m_mainToolBar->GetToolToggled( ID_TOOLBARH_PCB_MODE_MODULE ) )
|
|
|
|
{
|
|
|
|
m_mainToolBar->ToggleTool( ID_TOOLBARH_PCB_MODE_MODULE, false );
|
2013-01-18 14:12:57 +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
|
|
|
break;
|
|
|
|
}
|
2011-12-16 13:32:23 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 19:22:29 +00:00
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::ToPlotter( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
DIALOG_PLOT dlg( this );
|
* 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-05-10 19:22:29 +00:00
|
|
|
dlg.ShowModal();
|
|
|
|
}
|
2013-12-16 21:40:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
void PCB_EDIT_FRAME::SetRotationAngle( int aRotationAngle )
|
|
|
|
{
|
2013-12-17 21:38:20 +00:00
|
|
|
wxCHECK2_MSG( aRotationAngle > 0 && aRotationAngle <= 900, aRotationAngle = 900,
|
2013-12-16 21:40:03 +00:00
|
|
|
wxT( "Invalid rotation angle, defaulting to 90." ) );
|
|
|
|
|
|
|
|
m_rotationAngle = aRotationAngle;
|
|
|
|
}
|
* 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
|
|
|
|