2013-07-19 18:27:22 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2013-08-13 17:51:22 +00:00
|
|
|
* Copyright (C) 2013 CERN
|
2019-05-13 18:33:30 +00:00
|
|
|
* Copyright (C) 2017-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-08-13 17:51:22 +00:00
|
|
|
* @author Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2013-07-19 18:27:22 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
2019-05-24 13:37:55 +00:00
|
|
|
#include <pgm_base.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <base_units.h>
|
|
|
|
#include <msgpanel.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <pl_editor_frame.h>
|
|
|
|
#include <pl_editor_id.h>
|
2019-06-03 16:29:22 +00:00
|
|
|
#include <pl_draw_panel_gal.h>
|
2018-01-29 08:39:13 +00:00
|
|
|
#include <pl_editor_screen.h>
|
2019-05-25 11:05:39 +00:00
|
|
|
#include <ws_data_model.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <properties_frame.h>
|
2019-08-18 21:48:52 +00:00
|
|
|
#include <widgets/paged_dialog.h>
|
|
|
|
#include <panel_display_options.h>
|
|
|
|
#include <panel_hotkeys_editor.h>
|
2019-05-20 10:23:32 +00:00
|
|
|
#include <view/view.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <confirm.h>
|
2019-05-20 10:23:32 +00:00
|
|
|
#include <tool/selection.h>
|
2019-06-09 21:57:23 +00:00
|
|
|
#include <tool/action_toolbar.h>
|
2019-05-20 10:23:32 +00:00
|
|
|
#include <tool/tool_dispatcher.h>
|
|
|
|
#include <tool/tool_manager.h>
|
2019-06-09 21:57:23 +00:00
|
|
|
#include <tool/common_control.h>
|
2019-05-20 10:23:32 +00:00
|
|
|
#include <tool/common_tools.h>
|
2019-07-15 23:44:01 +00:00
|
|
|
#include <tool/picker_tool.h>
|
2019-05-20 10:23:32 +00:00
|
|
|
#include <tool/zoom_tool.h>
|
|
|
|
#include <tools/pl_actions.h>
|
|
|
|
#include <tools/pl_selection_tool.h>
|
|
|
|
#include <tools/pl_drawing_tools.h>
|
|
|
|
#include <tools/pl_edit_tool.h>
|
|
|
|
#include <tools/pl_point_editor.h>
|
2019-05-24 13:37:55 +00:00
|
|
|
#include <invoke_pl_editor_dialog.h>
|
2019-05-25 00:34:44 +00:00
|
|
|
#include <tools/pl_editor_control.h>
|
2019-05-24 13:37:55 +00:00
|
|
|
|
|
|
|
BEGIN_EVENT_TABLE( PL_EDITOR_FRAME, EDA_DRAW_FRAME )
|
|
|
|
EVT_CLOSE( PL_EDITOR_FRAME::OnCloseWindow )
|
2019-08-02 08:35:26 +00:00
|
|
|
EVT_MENU( wxID_CLOSE, PL_EDITOR_FRAME::OnExit )
|
|
|
|
EVT_MENU( wxID_EXIT, PL_EDITOR_FRAME::OnExit )
|
|
|
|
|
2019-05-24 13:37:55 +00:00
|
|
|
EVT_MENU( wxID_FILE, PL_EDITOR_FRAME::Files_io )
|
|
|
|
|
|
|
|
EVT_MENU_RANGE( ID_FILE1, ID_FILEMAX, PL_EDITOR_FRAME::OnFileHistory )
|
|
|
|
|
|
|
|
EVT_TOOL( ID_SHOW_REAL_MODE, PL_EDITOR_FRAME::OnSelectTitleBlockDisplayMode )
|
|
|
|
EVT_TOOL( ID_SHOW_PL_EDITOR_MODE, PL_EDITOR_FRAME::OnSelectTitleBlockDisplayMode )
|
2019-06-09 21:57:23 +00:00
|
|
|
EVT_CHOICE( ID_SELECT_COORDINATE_ORIGIN, PL_EDITOR_FRAME::OnSelectCoordOriginCorner )
|
|
|
|
EVT_CHOICE( ID_SELECT_PAGE_NUMBER, PL_EDITOR_FRAME::OnSelectPage )
|
2019-05-24 13:37:55 +00:00
|
|
|
|
|
|
|
EVT_UPDATE_UI( ID_SHOW_REAL_MODE, PL_EDITOR_FRAME::OnUpdateTitleBlockDisplayNormalMode )
|
2019-05-26 15:36:40 +00:00
|
|
|
EVT_UPDATE_UI( ID_SHOW_PL_EDITOR_MODE, PL_EDITOR_FRAME::OnUpdateTitleBlockDisplayEditMode )
|
2019-05-24 13:37:55 +00:00
|
|
|
END_EVENT_TABLE()
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
PL_EDITOR_FRAME::PL_EDITOR_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
2019-05-20 10:23:32 +00:00
|
|
|
EDA_DRAW_FRAME( aKiway, aParent, FRAME_PL_EDITOR, wxT( "PlEditorFrame" ),
|
|
|
|
wxDefaultPosition, wxDefaultSize,
|
|
|
|
KICAD_DEFAULT_DRAWFRAME_STYLE, PL_EDITOR_FRAME_NAME )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-12-20 14:11:39 +00:00
|
|
|
m_userUnits = EDA_UNITS::MILLIMETRES;
|
2015-01-06 07:38:58 +00:00
|
|
|
m_zoomLevelCoeff = 290.0; // Adjusted to roughly displays zoom level = 1
|
|
|
|
// when the screen shows a 1:1 image
|
|
|
|
// obviously depends on the monitor,
|
|
|
|
// but this is an acceptable value
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2014-06-20 11:13:04 +00:00
|
|
|
m_showBorderAndTitleBlock = true; // true for reference drawings.
|
2013-07-19 18:27:22 +00:00
|
|
|
m_originSelectChoice = 0;
|
2014-06-20 11:13:04 +00:00
|
|
|
SetDrawBgColor( WHITE ); // default value, user option (WHITE/BLACK)
|
2019-05-26 15:36:40 +00:00
|
|
|
WS_DATA_MODEL::GetTheInstance().m_EditMode = true;
|
2014-06-20 11:13:04 +00:00
|
|
|
SetShowPageLimits( true );
|
2019-05-13 18:33:30 +00:00
|
|
|
m_AboutTitle = "PlEditor";
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2013-08-19 07:08:13 +00:00
|
|
|
m_propertiesFrameWidth = 200;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
// Give an icon
|
|
|
|
wxIcon icon;
|
|
|
|
icon.CopyFromBitmap( KiBitmap( icon_pagelayout_editor_xpm ) );
|
|
|
|
SetIcon( icon );
|
2019-05-20 10:23:32 +00:00
|
|
|
|
|
|
|
// Create GAL canvas
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
// Cairo renderer doesn't handle Retina displays
|
|
|
|
m_canvasType = EDA_DRAW_PANEL_GAL::GAL_TYPE_OPENGL;
|
|
|
|
#else
|
|
|
|
m_canvasType = EDA_DRAW_PANEL_GAL::GAL_TYPE_CAIRO;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
auto* drawPanel = new PL_DRAW_PANEL_GAL( this, -1, wxPoint( 0, 0 ), m_FrameSize,
|
|
|
|
GetGalDisplayOptions(), m_canvasType );
|
2019-06-13 17:28:55 +00:00
|
|
|
SetCanvas( drawPanel );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
LoadSettings( config() );
|
2013-07-19 18:27:22 +00:00
|
|
|
SetSize( m_FramePos.x, m_FramePos.y, m_FrameSize.x, m_FrameSize.y );
|
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
wxSize pageSizeIU = GetPageLayout().GetPageSettings().GetSizeIU();
|
|
|
|
SetScreen( new PL_EDITOR_SCREEN( pageSizeIU ) );
|
|
|
|
|
|
|
|
setupTools();
|
2013-07-19 18:27:22 +00:00
|
|
|
ReCreateMenuBar();
|
|
|
|
ReCreateHToolbar();
|
2019-05-20 10:23:32 +00:00
|
|
|
ReCreateVToolbar();
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
wxWindow* stsbar = GetStatusBar();
|
|
|
|
int dims[] = {
|
|
|
|
|
|
|
|
// balance of status bar on far left is set to a default or whatever is left over.
|
|
|
|
-1,
|
|
|
|
|
|
|
|
// When using GetTextSize() remember the width of '1' is not the same
|
|
|
|
// as the width of '0' unless the font is fixed width, and it usually won't be.
|
|
|
|
|
|
|
|
// zoom:
|
|
|
|
GetTextSize( wxT( "Z 762000" ), stsbar ).x + 10,
|
|
|
|
|
|
|
|
// cursor coords
|
|
|
|
GetTextSize( wxT( "X 0234.567 Y 0234.567" ), stsbar ).x + 10,
|
|
|
|
|
|
|
|
// delta distances
|
|
|
|
GetTextSize( wxT( "dx 0234.567 dx 0234.567" ), stsbar ).x + 10,
|
|
|
|
|
2019-05-24 13:55:33 +00:00
|
|
|
// grid size
|
|
|
|
GetTextSize( wxT( "grid 0234.567" ), stsbar ).x + 10,
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
// Coord origin (use the bigger message)
|
|
|
|
GetTextSize( _( "coord origin: Right Bottom page corner" ), stsbar ).x + 10,
|
|
|
|
|
|
|
|
// units display, Inches is bigger than mm
|
2019-05-24 13:55:33 +00:00
|
|
|
GetTextSize( _( "Inches" ), stsbar ).x + 20
|
2013-07-19 18:27:22 +00:00
|
|
|
};
|
|
|
|
|
2019-01-06 16:43:12 +00:00
|
|
|
SetStatusWidths( arrayDim( dims ), dims );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
m_auimgr.SetManagedWindow( this );
|
|
|
|
|
|
|
|
m_propertiesPagelayout = new PROPERTIES_FRAME( this );
|
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
// Horizontal items; layers 4 - 6
|
2018-08-11 16:04:46 +00:00
|
|
|
m_auimgr.AddPane( m_mainToolBar, EDA_PANE().HToolbar().Name( "MainToolbar" ).Top().Layer(6) );
|
|
|
|
m_auimgr.AddPane( m_messagePanel, EDA_PANE().Messages().Name( "MsgPanel" ).Bottom().Layer(6) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
// Vertical items; layers 1 - 3
|
|
|
|
m_auimgr.AddPane( m_drawToolBar, EDA_PANE().VToolbar().Name( "ToolsToolbar" ).Right().Layer(1) );
|
|
|
|
|
|
|
|
m_auimgr.AddPane( m_propertiesPagelayout, EDA_PANE().Palette().Name( "Props" ).Right().Layer(2)
|
2018-08-11 16:04:46 +00:00
|
|
|
.Caption( _( "Properties" ) ).MinSize( m_propertiesPagelayout->GetMinSize() )
|
|
|
|
.BestSize( m_propertiesFrameWidth, -1 ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2019-06-13 17:28:55 +00:00
|
|
|
m_auimgr.AddPane( GetCanvas(), EDA_PANE().Canvas().Name( "DrawFrame" ).Center() );
|
2019-05-20 10:23:32 +00:00
|
|
|
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->GetView()->SetScale( GetZoomLevelCoeff() / GetScreen()->GetZoom() );
|
2019-05-30 12:25:08 +00:00
|
|
|
ActivateGalCanvas();
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
m_auimgr.Update();
|
2014-06-07 16:20:23 +00:00
|
|
|
|
2019-08-02 08:35:26 +00:00
|
|
|
// Add the exit key handler
|
|
|
|
InitExitKey();
|
|
|
|
|
2019-06-07 10:42:28 +00:00
|
|
|
wxPoint originCoord = ReturnCoordOriginCorner();
|
|
|
|
SetGridOrigin( originCoord );
|
|
|
|
|
2019-08-18 21:48:52 +00:00
|
|
|
if( !GetScreen()->GridExists( m_LastGridSizeId + ID_POPUP_GRID_LEVEL_1000 ) )
|
|
|
|
m_LastGridSizeId = ID_POPUP_GRID_LEVEL_1MM - ID_POPUP_GRID_LEVEL_1000;
|
|
|
|
|
|
|
|
GetToolManager()->RunAction( "common.Control.gridPreset", true, m_LastGridSizeId );
|
|
|
|
|
2014-06-07 16:20:23 +00:00
|
|
|
// Initialize the current page layout
|
2019-05-25 11:05:39 +00:00
|
|
|
WS_DATA_MODEL& pglayout = WS_DATA_MODEL::GetTheInstance();
|
2014-06-07 16:20:23 +00:00
|
|
|
#if 0 //start with empty layout
|
|
|
|
pglayout.AllowVoidList( true );
|
|
|
|
pglayout.ClearList();
|
|
|
|
#else // start with the default Kicad layout
|
|
|
|
pglayout.SetPageLayout();
|
|
|
|
#endif
|
|
|
|
OnNewPageLayout();
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-11-23 16:54:48 +00:00
|
|
|
PL_EDITOR_FRAME::~PL_EDITOR_FRAME()
|
|
|
|
{
|
|
|
|
// Since the file menu contains file history menus, we must ensure that the menu
|
|
|
|
// destructor is called before the file history objects are deleted since their destructor
|
|
|
|
// unregisters the menu from the history.
|
|
|
|
wxMenu* fileMenu = GetMenuBar()->Remove( 0 );
|
|
|
|
delete fileMenu;
|
|
|
|
}
|
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
void PL_EDITOR_FRAME::setupTools()
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
// Create the manager and dispatcher & route draw panel events to the dispatcher
|
|
|
|
m_toolManager = new TOOL_MANAGER;
|
2019-06-13 17:28:55 +00:00
|
|
|
m_toolManager->SetEnvironment( nullptr, GetCanvas()->GetView(),
|
|
|
|
GetCanvas()->GetViewControls(), this );
|
2019-05-20 10:23:32 +00:00
|
|
|
m_actions = new PL_ACTIONS();
|
|
|
|
m_toolDispatcher = new TOOL_DISPATCHER( m_toolManager, m_actions );
|
|
|
|
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->SetEventDispatcher( m_toolDispatcher );
|
2019-05-20 10:23:32 +00:00
|
|
|
|
|
|
|
// Register tools
|
2019-06-09 21:57:23 +00:00
|
|
|
m_toolManager->RegisterTool( new COMMON_CONTROL );
|
2019-05-20 10:23:32 +00:00
|
|
|
m_toolManager->RegisterTool( new COMMON_TOOLS );
|
|
|
|
m_toolManager->RegisterTool( new ZOOM_TOOL );
|
|
|
|
m_toolManager->RegisterTool( new PL_SELECTION_TOOL );
|
2019-05-25 00:34:44 +00:00
|
|
|
m_toolManager->RegisterTool( new PL_EDITOR_CONTROL );
|
2019-05-20 10:23:32 +00:00
|
|
|
m_toolManager->RegisterTool( new PL_DRAWING_TOOLS );
|
|
|
|
m_toolManager->RegisterTool( new PL_EDIT_TOOL );
|
|
|
|
m_toolManager->RegisterTool( new PL_POINT_EDITOR );
|
2019-07-15 23:44:01 +00:00
|
|
|
m_toolManager->RegisterTool( new PICKER_TOOL );
|
2019-05-20 10:23:32 +00:00
|
|
|
m_toolManager->InitTools();
|
|
|
|
|
|
|
|
// Run the selection tool, it is supposed to be always active
|
|
|
|
m_toolManager->InvokeTool( "plEditor.InteractiveSelection" );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
bool PL_EDITOR_FRAME::OpenProjectFiles( const std::vector<wxString>& aFileSet, int aCtl )
|
|
|
|
{
|
|
|
|
wxString fn = aFileSet[0];
|
|
|
|
|
|
|
|
if( !LoadPageLayoutDescrFile( fn ) )
|
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
wxMessageBox( wxString::Format( _( "Error when loading file \"%s\"" ), fn ) );
|
* 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
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
OnNewPageLayout();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-12-19 15:34:01 +00:00
|
|
|
bool PL_EDITOR_FRAME::IsContentModified()
|
|
|
|
{
|
|
|
|
return GetScreen() && GetScreen()->IsModify();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-02 08:35:26 +00:00
|
|
|
void PL_EDITOR_FRAME::OnExit( wxCommandEvent& aEvent )
|
|
|
|
{
|
|
|
|
if( aEvent.GetId() == wxID_EXIT )
|
|
|
|
Kiway().OnKiCadExit();
|
|
|
|
|
|
|
|
if( aEvent.GetId() == wxID_CLOSE || Kiface().IsSingle() )
|
|
|
|
Close( false );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PL_EDITOR_FRAME::OnCloseWindow( wxCloseEvent& aEvent )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-12-19 14:11:11 +00:00
|
|
|
// Shutdown blocks must be determined and vetoed as early as possible
|
|
|
|
if( SupportsShutdownBlockReason() && aEvent.GetId() == wxEVT_QUERY_END_SESSION
|
2019-12-19 15:34:01 +00:00
|
|
|
&& IsContentModified() )
|
2019-12-19 14:11:11 +00:00
|
|
|
{
|
|
|
|
aEvent.Veto();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-12-19 15:34:01 +00:00
|
|
|
if( IsContentModified() )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-06-17 15:59:39 +00:00
|
|
|
wxFileName filename = GetCurrFileName();
|
|
|
|
wxString msg = _( "Save changes to \"%s\" before closing?" );
|
|
|
|
|
|
|
|
if( !HandleUnsavedChanges( this, wxString::Format( msg, filename.GetFullName() ),
|
2018-08-11 20:46:03 +00:00
|
|
|
[&]()->bool { return saveCurrentPageLayout(); } ) )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-08-02 08:35:26 +00:00
|
|
|
aEvent.Veto();
|
2013-07-19 18:27:22 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// do not show the window because we do not want any paint event
|
|
|
|
Show( false );
|
2013-08-19 07:08:13 +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( Kiface().KifaceSettings(), m_configSettings );
|
2014-01-28 01:29:26 +00:00
|
|
|
|
2013-08-19 07:08:13 +00:00
|
|
|
// On Linux, m_propertiesPagelayout must be destroyed
|
|
|
|
// before deleting the main frame to avoid a crash when closing
|
|
|
|
m_propertiesPagelayout->Destroy();
|
2013-07-19 18:27:22 +00:00
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-24 13:37:55 +00:00
|
|
|
/* Handles the selection of tools, menu, and popup menu commands.
|
|
|
|
*/
|
2019-06-09 21:57:23 +00:00
|
|
|
void PL_EDITOR_FRAME::OnSelectPage( wxCommandEvent& event )
|
2019-05-24 13:37:55 +00:00
|
|
|
{
|
2019-06-13 17:28:55 +00:00
|
|
|
KIGFX::VIEW* view = GetCanvas()->GetView();
|
2019-06-09 21:57:23 +00:00
|
|
|
view->SetLayerVisible( LAYER_WORKSHEET_PAGE1, m_pageSelectBox->GetSelection() == 0 );
|
|
|
|
view->SetLayerVisible( LAYER_WORKSHEET_PAGEn, m_pageSelectBox->GetSelection() == 1 );
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->Refresh();
|
2019-05-24 13:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* called when the user select one of the 4 page corner as corner
|
|
|
|
* reference (or the left top paper corner)
|
|
|
|
*/
|
|
|
|
void PL_EDITOR_FRAME::OnSelectCoordOriginCorner( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
m_originSelectChoice = m_originSelectBox->GetSelection();
|
|
|
|
UpdateStatusBar(); // Update grid origin
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->DisplayWorksheet();
|
|
|
|
GetCanvas()->Refresh();
|
2019-05-24 13:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PL_EDITOR_FRAME::OnSelectTitleBlockDisplayMode( wxCommandEvent& event )
|
|
|
|
{
|
2019-05-26 15:36:40 +00:00
|
|
|
WS_DATA_MODEL::GetTheInstance().m_EditMode = (event.GetId() == ID_SHOW_PL_EDITOR_MODE);
|
2019-05-24 19:32:36 +00:00
|
|
|
HardRedraw();
|
2019-05-24 13:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-25 00:34:44 +00:00
|
|
|
void PL_EDITOR_FRAME::ToPrinter( bool doPreview )
|
2019-05-24 13:37:55 +00:00
|
|
|
{
|
|
|
|
// static print data and page setup data, to remember settings during the session
|
|
|
|
static wxPrintData* s_PrintData;
|
|
|
|
static wxPageSetupDialogData* s_pageSetupData = (wxPageSetupDialogData*) NULL;
|
|
|
|
|
|
|
|
const PAGE_INFO& pageInfo = GetPageSettings();
|
|
|
|
|
|
|
|
if( s_PrintData == NULL ) // First print
|
|
|
|
{
|
|
|
|
s_PrintData = new wxPrintData();
|
|
|
|
s_PrintData->SetQuality( wxPRINT_QUALITY_HIGH ); // Default resolution = HIGH;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !s_PrintData->Ok() )
|
|
|
|
{
|
|
|
|
wxMessageBox( _( "Error Init Printer info" ) );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( s_pageSetupData == NULL )
|
|
|
|
s_pageSetupData = new wxPageSetupDialogData( *s_PrintData );
|
|
|
|
|
|
|
|
s_pageSetupData->SetPaperId( pageInfo.GetPaperId() );
|
|
|
|
s_pageSetupData->GetPrintData().SetOrientation( pageInfo.GetWxOrientation() );
|
|
|
|
|
|
|
|
if( pageInfo.IsCustom() )
|
|
|
|
{
|
|
|
|
if( pageInfo.IsPortrait() )
|
|
|
|
s_pageSetupData->SetPaperSize( wxSize( Mils2mm( pageInfo.GetWidthMils() ),
|
|
|
|
Mils2mm( pageInfo.GetHeightMils() ) ) );
|
|
|
|
else
|
|
|
|
s_pageSetupData->SetPaperSize( wxSize( Mils2mm( pageInfo.GetHeightMils() ),
|
|
|
|
Mils2mm( pageInfo.GetWidthMils() ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
*s_PrintData = s_pageSetupData->GetPrintData();
|
|
|
|
|
2019-05-25 00:34:44 +00:00
|
|
|
if( doPreview )
|
2019-05-24 13:37:55 +00:00
|
|
|
InvokeDialogPrintPreview( this, s_PrintData );
|
|
|
|
else
|
|
|
|
InvokeDialogPrint( this, s_PrintData, s_pageSetupData );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PL_EDITOR_FRAME::OnUpdateTitleBlockDisplayNormalMode( wxUpdateUIEvent& event )
|
|
|
|
{
|
2019-05-26 15:36:40 +00:00
|
|
|
event.Check( WS_DATA_MODEL::GetTheInstance().m_EditMode == false );
|
2019-05-24 13:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-26 15:36:40 +00:00
|
|
|
void PL_EDITOR_FRAME::OnUpdateTitleBlockDisplayEditMode( wxUpdateUIEvent& event )
|
2019-05-24 13:37:55 +00:00
|
|
|
{
|
2019-05-26 15:36:40 +00:00
|
|
|
event.Check( WS_DATA_MODEL::GetTheInstance().m_EditMode == true );
|
2019-05-24 13:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
const BOX2I PL_EDITOR_FRAME::GetDocumentExtents() const
|
|
|
|
{
|
|
|
|
BOX2I rv( VECTOR2I( 0, 0 ), GetPageLayout().GetPageSettings().GetSizeIU() );
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-18 21:48:52 +00:00
|
|
|
void PL_EDITOR_FRAME::InstallPreferences( PAGED_DIALOG* aParent,
|
|
|
|
PANEL_HOTKEYS_EDITOR* aHotkeysPanel )
|
|
|
|
{
|
|
|
|
wxTreebook* book = aParent->GetTreebook();
|
|
|
|
|
|
|
|
book->AddPage( new PANEL_DISPLAY_OPTIONS( this, aParent ), _( "Display Options" ) );
|
|
|
|
|
|
|
|
aHotkeysPanel->AddHotKeys( GetToolManager() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
static const wxChar propertiesFrameWidthKey[] = wxT( "PropertiesFrameWidth" );
|
|
|
|
static const wxChar cornerOriginChoiceKey[] = wxT( "CornerOriginChoice" );
|
2014-06-20 11:13:04 +00:00
|
|
|
static const wxChar blackBgColorKey[] = wxT( "BlackBgColor" );
|
2019-07-10 22:15:57 +00:00
|
|
|
static const wxChar lastUsedPaperSizeKey[] = wxT( "LastUsedPaperSize" );
|
|
|
|
static const wxChar lastUsedCustomWidthKey[] = wxT( "LastUsedCustomWidth" );
|
|
|
|
static const wxChar lastUsedCustomHeightKey[] = wxT( "LastUsedCustomHeight" );
|
|
|
|
static const wxChar lastUsedPortraitKey[] = wxT( "LastUsedWasPortrait" );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
void PL_EDITOR_FRAME::LoadSettings( wxConfigBase* aCfg )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
EDA_DRAW_FRAME::LoadSettings( aCfg );
|
|
|
|
|
2019-07-10 22:15:57 +00:00
|
|
|
aCfg->Read( propertiesFrameWidthKey, &m_propertiesFrameWidth, 150 );
|
2014-06-20 11:13:04 +00:00
|
|
|
aCfg->Read( cornerOriginChoiceKey, &m_originSelectChoice );
|
2019-07-10 22:15:57 +00:00
|
|
|
|
|
|
|
bool flag;
|
|
|
|
aCfg->Read( blackBgColorKey, &flag, false );
|
|
|
|
SetDrawBgColor( flag ? BLACK : WHITE );
|
|
|
|
|
|
|
|
int i;
|
|
|
|
aCfg->Read( lastUsedCustomWidthKey, &i, 17000 );
|
|
|
|
PAGE_INFO::SetCustomWidthMils( i );
|
|
|
|
aCfg->Read( lastUsedCustomHeightKey, &i, 11000 );
|
|
|
|
PAGE_INFO::SetCustomHeightMils( i );
|
|
|
|
|
|
|
|
PAGE_INFO pageInfo = GetPageSettings();
|
|
|
|
wxString msg;
|
|
|
|
aCfg->Read( lastUsedPaperSizeKey, &msg, "A3" );
|
|
|
|
aCfg->Read( lastUsedPortraitKey, &flag, false );
|
|
|
|
pageInfo.SetType( msg, flag );
|
|
|
|
SetPageSettings( pageInfo );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
void PL_EDITOR_FRAME::SaveSettings( wxConfigBase* aCfg )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
EDA_DRAW_FRAME::SaveSettings( aCfg );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
m_propertiesFrameWidth = m_propertiesPagelayout->GetSize().x;
|
|
|
|
|
2014-06-20 11:13:04 +00:00
|
|
|
aCfg->Write( propertiesFrameWidthKey, m_propertiesFrameWidth);
|
|
|
|
aCfg->Write( cornerOriginChoiceKey, m_originSelectChoice );
|
|
|
|
aCfg->Write( blackBgColorKey, GetDrawBgColor() == BLACK );
|
2019-07-10 22:15:57 +00:00
|
|
|
aCfg->Write( lastUsedPaperSizeKey, GetPageSettings().GetType() );
|
|
|
|
aCfg->Write( lastUsedPortraitKey, GetPageSettings().IsPortrait() );
|
|
|
|
aCfg->Write( lastUsedCustomWidthKey, PAGE_INFO::GetCustomWidthMils() );
|
|
|
|
aCfg->Write( lastUsedCustomHeightKey, PAGE_INFO::GetCustomHeightMils() );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
wxConfigSaveSetups( aCfg, GetConfigurationSettings() );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PL_EDITOR_FRAME::UpdateTitleAndInfo()
|
|
|
|
{
|
|
|
|
wxString title;
|
2016-09-26 17:15:33 +00:00
|
|
|
wxString file = GetCurrFileName();
|
|
|
|
|
2018-03-12 19:16:09 +00:00
|
|
|
title.Printf( _( "Page Layout Editor" ) + wxT( " \u2014 %s" ),
|
|
|
|
file.Length() ? file : _( "no file selected" ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
SetTitle( title );
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
const wxString& PL_EDITOR_FRAME::GetCurrFileName() const
|
|
|
|
{
|
|
|
|
return BASE_SCREEN::m_PageLayoutDescrFileName;
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
void PL_EDITOR_FRAME::SetCurrFileName( const wxString& aName )
|
|
|
|
{
|
|
|
|
BASE_SCREEN::m_PageLayoutDescrFileName = aName;
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
void PL_EDITOR_FRAME::SetPageSettings( const PAGE_INFO& aPageSettings )
|
|
|
|
{
|
|
|
|
m_pageLayout.SetPageSettings( aPageSettings );
|
|
|
|
|
|
|
|
if( GetScreen() )
|
|
|
|
GetScreen()->InitDataPoints( aPageSettings.GetSizeIU() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const PAGE_INFO& PL_EDITOR_FRAME::GetPageSettings() const
|
|
|
|
{
|
|
|
|
return m_pageLayout.GetPageSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const wxSize PL_EDITOR_FRAME::GetPageSizeIU() const
|
|
|
|
{
|
|
|
|
// this function is only needed because EDA_DRAW_FRAME is not compiled
|
|
|
|
// with either -DPCBNEW or -DEESCHEMA, so the virtual is used to route
|
|
|
|
// into an application specific source file.
|
|
|
|
return m_pageLayout.GetPageSettings().GetSizeIU();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const TITLE_BLOCK& PL_EDITOR_FRAME::GetTitleBlock() const
|
|
|
|
{
|
|
|
|
return GetPageLayout().GetTitleBlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PL_EDITOR_FRAME::SetTitleBlock( const TITLE_BLOCK& aTitleBlock )
|
|
|
|
{
|
|
|
|
m_pageLayout.SetTitleBlock( aTitleBlock );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-07 10:42:28 +00:00
|
|
|
wxPoint PL_EDITOR_FRAME::ReturnCoordOriginCorner() const
|
|
|
|
{
|
|
|
|
// calculate the position (in page, in iu) of the corner used as coordinate origin
|
|
|
|
// coordinate origin can be the paper Top Left corner, or each of 4 page corners
|
|
|
|
wxPoint originCoord;
|
|
|
|
|
|
|
|
// To avoid duplicate code, we use a dummy segment starting at 0,0 in relative coord
|
|
|
|
WS_DATA_ITEM dummy( WS_DATA_ITEM::WS_SEGMENT );
|
|
|
|
|
|
|
|
switch( m_originSelectChoice )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0: // Origin = paper Left Top corner
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1: // Origin = page Right Bottom corner
|
|
|
|
dummy.SetStart( 0, 0, RB_CORNER );
|
|
|
|
originCoord = dummy.GetStartPosUi();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: // Origin = page Left Bottom corner
|
|
|
|
dummy.SetStart( 0, 0, LB_CORNER );
|
|
|
|
originCoord = dummy.GetStartPosUi();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: // Origin = page Right Top corner
|
|
|
|
dummy.SetStart( 0, 0, RT_CORNER );
|
|
|
|
originCoord = dummy.GetStartPosUi();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 4: // Origin = page Left Top corner
|
|
|
|
dummy.SetStart( 0, 0, LT_CORNER );
|
|
|
|
originCoord = dummy.GetStartPosUi();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return originCoord;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-24 13:55:33 +00:00
|
|
|
/*
|
|
|
|
* Display the grid status.
|
|
|
|
*/
|
|
|
|
void PL_EDITOR_FRAME::DisplayGridMsg()
|
|
|
|
{
|
|
|
|
wxString line;
|
|
|
|
wxString gridformatter;
|
|
|
|
|
|
|
|
switch( m_userUnits )
|
|
|
|
{
|
2019-12-20 14:11:39 +00:00
|
|
|
case EDA_UNITS::INCHES:
|
|
|
|
gridformatter = "grid %.3f";
|
|
|
|
break;
|
|
|
|
case EDA_UNITS::MILLIMETRES:
|
|
|
|
gridformatter = "grid %.4f";
|
|
|
|
break;
|
2019-08-18 21:48:52 +00:00
|
|
|
default: gridformatter = "grid %f"; break;
|
2019-05-24 13:55:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxRealPoint curr_grid_size = GetScreen()->GetGridSize();
|
|
|
|
double grid = To_User_Unit( m_userUnits, curr_grid_size.x );
|
|
|
|
line.Printf( gridformatter, grid );
|
|
|
|
|
|
|
|
SetStatusText( line, 4 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
void PL_EDITOR_FRAME::UpdateStatusBar()
|
|
|
|
{
|
|
|
|
PL_EDITOR_SCREEN* screen = (PL_EDITOR_SCREEN*) GetScreen();
|
|
|
|
|
|
|
|
if( !screen )
|
|
|
|
return;
|
|
|
|
|
2015-01-06 07:38:58 +00:00
|
|
|
// Display Zoom level:
|
|
|
|
EDA_DRAW_FRAME::UpdateStatusBar();
|
|
|
|
|
2019-05-25 13:56:52 +00:00
|
|
|
// coordinate origin can be the paper Top Left corner, or each of 4 page corners
|
2019-06-07 10:42:28 +00:00
|
|
|
wxPoint originCoord = ReturnCoordOriginCorner();
|
|
|
|
SetGridOrigin( originCoord );
|
|
|
|
|
|
|
|
// We need the orientation of axis (sign of coordinates)
|
2013-07-19 18:27:22 +00:00
|
|
|
int Xsign = 1;
|
|
|
|
int Ysign = 1;
|
2013-08-03 05:15:23 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
switch( m_originSelectChoice )
|
|
|
|
{
|
2013-08-03 05:15:23 +00:00
|
|
|
default:
|
|
|
|
case 0: // Origin = paper Left Top corner
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
case 1: // Origin = page Right Bottom corner
|
|
|
|
Xsign = -1;
|
|
|
|
Ysign = -1;
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
case 2: // Origin = page Left Bottom corner
|
|
|
|
Ysign = -1;
|
2019-06-07 10:42:28 +00:00
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
case 3: // Origin = page Right Top corner
|
|
|
|
Xsign = -1;
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
case 4: // Origin = page Left Top corner
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Display absolute coordinates:
|
2019-06-13 17:28:55 +00:00
|
|
|
VECTOR2D cursorPos = GetCanvas()->GetViewControls()->GetCursorPosition();
|
2019-06-13 13:34:38 +00:00
|
|
|
VECTOR2D coord = cursorPos - originCoord;
|
|
|
|
double dXpos = To_User_Unit( GetUserUnits(), coord.x * Xsign );
|
|
|
|
double dYpos = To_User_Unit( GetUserUnits(), coord.y * Ysign );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2015-04-19 11:07:31 +00:00
|
|
|
wxString pagesizeformatter = _( "Page size: width %.4g height %.4g" );
|
2013-07-26 12:50:29 +00:00
|
|
|
wxString absformatter = wxT( "X %.4g Y %.4g" );
|
|
|
|
wxString locformatter = wxT( "dx %.4g dy %.4g" );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-06-14 08:26:11 +00:00
|
|
|
switch( GetUserUnits() )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-12-20 14:11:39 +00:00
|
|
|
case EDA_UNITS::INCHES:
|
|
|
|
SetStatusText( _( "inches" ), 6 );
|
|
|
|
break;
|
|
|
|
case EDA_UNITS::MILLIMETRES:
|
|
|
|
SetStatusText( _( "mm" ), 6 );
|
|
|
|
break;
|
|
|
|
case EDA_UNITS::UNSCALED:
|
|
|
|
SetStatusText( wxEmptyString, 6 );
|
|
|
|
break;
|
2019-06-29 16:46:25 +00:00
|
|
|
default: wxASSERT( false ); break;
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxString line;
|
2013-07-24 15:11:35 +00:00
|
|
|
|
|
|
|
// Display page size
|
2019-05-20 10:23:32 +00:00
|
|
|
#define MILS_TO_MM (25.4/1000)
|
2013-07-24 15:11:35 +00:00
|
|
|
DSIZE size = GetPageSettings().GetSizeMils();
|
2019-05-20 10:23:32 +00:00
|
|
|
size = size * MILS_TO_MM;
|
2013-07-24 15:11:35 +00:00
|
|
|
line.Printf( pagesizeformatter, size.x, size.y );
|
|
|
|
SetStatusText( line, 0 );
|
|
|
|
|
|
|
|
// Display abs coordinates
|
2013-07-19 18:27:22 +00:00
|
|
|
line.Printf( absformatter, dXpos, dYpos );
|
|
|
|
SetStatusText( line, 2 );
|
|
|
|
|
|
|
|
// Display relative coordinates:
|
2019-06-13 13:34:38 +00:00
|
|
|
double dx = cursorPos.x - screen->m_LocalOrigin.x;
|
|
|
|
double dy = cursorPos.y - screen->m_LocalOrigin.y;
|
2018-06-14 08:26:11 +00:00
|
|
|
dXpos = To_User_Unit( GetUserUnits(), dx * Xsign );
|
|
|
|
dYpos = To_User_Unit( GetUserUnits(), dy * Ysign );
|
2013-07-19 18:27:22 +00:00
|
|
|
line.Printf( locformatter, dXpos, dYpos );
|
|
|
|
SetStatusText( line, 3 );
|
|
|
|
|
2019-05-24 13:55:33 +00:00
|
|
|
DisplayGridMsg();
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
// Display corner reference for coord origin
|
|
|
|
line.Printf( _("coord origin: %s"),
|
2019-06-13 13:34:38 +00:00
|
|
|
m_originSelectBox->GetString( m_originSelectChoice ).GetData() );
|
2019-05-24 13:55:33 +00:00
|
|
|
SetStatusText( line, 5 );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
// Display units
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2019-06-01 19:48:01 +00:00
|
|
|
void PL_EDITOR_FRAME::PrintPage( wxDC* aDC )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-05-31 12:15:25 +00:00
|
|
|
GetScreen()->m_ScreenNumber = GetPageNumberOption() ? 1 : 2;
|
|
|
|
PrintWorkSheet( aDC, GetScreen(), 0, IU_PER_MILS, wxEmptyString );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2019-06-13 17:28:55 +00:00
|
|
|
PL_DRAW_PANEL_GAL* PL_EDITOR_FRAME::GetCanvas() const
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-06-13 17:28:55 +00:00
|
|
|
return static_cast<PL_DRAW_PANEL_GAL*>( EDA_DRAW_FRAME::GetCanvas() );
|
|
|
|
}
|
|
|
|
|
2019-05-24 10:11:18 +00:00
|
|
|
|
2019-06-13 17:28:55 +00:00
|
|
|
void PL_EDITOR_FRAME::HardRedraw()
|
|
|
|
{
|
|
|
|
GetCanvas()->DisplayWorksheet();
|
2019-05-24 10:11:18 +00:00
|
|
|
|
|
|
|
PL_SELECTION_TOOL* selTool = m_toolManager->GetTool<PL_SELECTION_TOOL>();
|
2019-06-09 21:57:23 +00:00
|
|
|
PL_SELECTION& selection = selTool->GetSelection();
|
2019-08-18 21:48:52 +00:00
|
|
|
WS_DATA_ITEM* item = nullptr;
|
2019-05-24 10:11:18 +00:00
|
|
|
|
|
|
|
if( selection.GetSize() == 1 )
|
|
|
|
item = static_cast<WS_DRAW_ITEM_BASE*>( selection.Front() )->GetPeer();
|
|
|
|
|
|
|
|
m_propertiesPagelayout->CopyPrmsFromItemToPanel( item );
|
2019-05-20 10:23:32 +00:00
|
|
|
m_propertiesPagelayout->CopyPrmsFromGeneralToPanel();
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->Refresh();
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2019-05-25 11:05:39 +00:00
|
|
|
WS_DATA_ITEM* PL_EDITOR_FRAME::AddPageLayoutItem( int aType )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2019-05-25 11:05:39 +00:00
|
|
|
WS_DATA_ITEM * item = NULL;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
switch( aType )
|
|
|
|
{
|
2019-05-25 11:05:39 +00:00
|
|
|
case WS_DATA_ITEM::WS_TEXT:
|
|
|
|
item = new WS_DATA_ITEM_TEXT( wxT( "Text") );
|
2017-11-12 00:31:38 +00:00
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2019-05-25 11:05:39 +00:00
|
|
|
case WS_DATA_ITEM::WS_SEGMENT:
|
|
|
|
item = new WS_DATA_ITEM( WS_DATA_ITEM::WS_SEGMENT );
|
2017-11-12 00:31:38 +00:00
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2019-05-25 11:05:39 +00:00
|
|
|
case WS_DATA_ITEM::WS_RECT:
|
|
|
|
item = new WS_DATA_ITEM( WS_DATA_ITEM::WS_RECT );
|
2017-11-12 00:31:38 +00:00
|
|
|
break;
|
2013-10-18 17:38:03 +00:00
|
|
|
|
2019-05-25 11:05:39 +00:00
|
|
|
case WS_DATA_ITEM::WS_POLYPOLYGON:
|
|
|
|
item = new WS_DATA_ITEM_POLYGONS();
|
2017-11-12 00:31:38 +00:00
|
|
|
break;
|
2013-10-18 17:38:03 +00:00
|
|
|
|
2019-05-25 11:05:39 +00:00
|
|
|
case WS_DATA_ITEM::WS_BITMAP:
|
2017-11-12 00:31:38 +00:00
|
|
|
{
|
|
|
|
wxFileDialog fileDlg( this, _( "Choose Image" ), wxEmptyString, wxEmptyString,
|
2019-05-20 10:23:32 +00:00
|
|
|
_( "Image Files " ) + wxImage::GetImageExtWildcard(), wxFD_OPEN );
|
2013-10-18 17:38:03 +00:00
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
if( fileDlg.ShowModal() != wxID_OK )
|
|
|
|
return NULL;
|
2013-10-18 17:38:03 +00:00
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
wxString fullFilename = fileDlg.GetPath();
|
2013-10-18 17:38:03 +00:00
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
if( !wxFileExists( fullFilename ) )
|
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
wxMessageBox( _( "Couldn't load image from \"%s\"" ), fullFilename );
|
2017-11-12 00:31:38 +00:00
|
|
|
break;
|
2013-10-18 17:38:03 +00:00
|
|
|
}
|
2017-11-12 00:31:38 +00:00
|
|
|
|
|
|
|
BITMAP_BASE* image = new BITMAP_BASE();
|
|
|
|
|
|
|
|
if( !image->ReadImageFile( fullFilename ) )
|
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
wxMessageBox( _( "Couldn't load image from \"%s\"" ), fullFilename );
|
2017-11-12 00:31:38 +00:00
|
|
|
delete image;
|
2013-10-18 17:38:03 +00:00
|
|
|
break;
|
2017-11-12 00:31:38 +00:00
|
|
|
}
|
|
|
|
|
2019-05-25 11:05:39 +00:00
|
|
|
item = new WS_DATA_ITEM_BITMAP( image );
|
2017-11-12 00:31:38 +00:00
|
|
|
}
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( item == NULL )
|
|
|
|
return NULL;
|
|
|
|
|
2019-05-25 11:05:39 +00:00
|
|
|
WS_DATA_MODEL::GetTheInstance().Append( item );
|
2019-06-13 17:28:55 +00:00
|
|
|
item->SyncDrawItems( nullptr, GetCanvas()->GetView() );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
2013-07-20 19:36:19 +00:00
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2013-07-20 19:36:19 +00:00
|
|
|
void PL_EDITOR_FRAME::OnNewPageLayout()
|
|
|
|
{
|
2013-07-26 12:50:29 +00:00
|
|
|
GetScreen()->ClearUndoRedoList();
|
2013-07-20 19:36:19 +00:00
|
|
|
GetScreen()->ClrModify();
|
2019-06-13 17:28:55 +00:00
|
|
|
GetCanvas()->DisplayWorksheet();
|
2019-05-20 10:23:32 +00:00
|
|
|
|
2019-05-24 12:24:43 +00:00
|
|
|
m_propertiesPagelayout->CopyPrmsFromItemToPanel( nullptr );
|
2013-07-20 19:36:19 +00:00
|
|
|
m_propertiesPagelayout->CopyPrmsFromGeneralToPanel();
|
2019-05-24 19:57:50 +00:00
|
|
|
|
|
|
|
UpdateTitleAndInfo();
|
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
m_toolManager->RunAction( ACTIONS::zoomFitScreen, true );
|
2019-12-19 14:11:11 +00:00
|
|
|
|
|
|
|
if( GetCurrFileName().IsEmpty() )
|
|
|
|
{
|
|
|
|
// Default shutdown reason until a file is loaded
|
|
|
|
SetShutdownBlockReason( _( "New page layout file is unsaved" ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetShutdownBlockReason( _( "Page layout changes are unsaved" ) );
|
|
|
|
}
|
2013-07-20 19:36:19 +00:00
|
|
|
}
|
2015-01-06 07:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
const wxString PL_EDITOR_FRAME::GetZoomLevelIndicator() const
|
|
|
|
{
|
|
|
|
return EDA_DRAW_FRAME::GetZoomLevelIndicator();
|
|
|
|
}
|
2019-06-24 15:27:05 +00:00
|
|
|
|