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
|
|
|
|
*/
|
|
|
|
|
2016-06-11 13:51:05 +00:00
|
|
|
/**
|
|
|
|
* @file pl_editor_frame.cpp
|
|
|
|
*/
|
|
|
|
|
2013-07-19 18:27:22 +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>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <build_version.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <base_units.h>
|
|
|
|
#include <msgpanel.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2018-08-11 16:04:46 +00:00
|
|
|
#include <eda_dockart.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
#include <pl_editor_frame.h>
|
|
|
|
#include <pl_editor_id.h>
|
|
|
|
#include <hotkeys.h>
|
2018-01-29 08:39:13 +00:00
|
|
|
#include <pl_editor_screen.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <worksheet_shape_builder.h>
|
2018-01-29 08:39:13 +00:00
|
|
|
#include <worksheet_dataitem.h>
|
2013-07-19 18:27:22 +00:00
|
|
|
#include <design_tree_frame.h>
|
|
|
|
#include <properties_frame.h>
|
|
|
|
|
|
|
|
#include <wildcards_and_files_ext.h>
|
|
|
|
#include <confirm.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
|
|
|
PL_EDITOR_FRAME::PL_EDITOR_FRAME( KIWAY* aKiway, wxWindow* aParent ) :
|
2014-04-19 18:47:20 +00:00
|
|
|
EDA_DRAW_FRAME( aKiway, aParent, FRAME_PL_EDITOR, wxT( "PlEditorFrame" ),
|
* 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
|
|
|
wxDefaultPosition, wxDefaultSize, KICAD_DEFAULT_DRAWFRAME_STYLE, PL_EDITOR_FRAME_NAME )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2018-06-14 08:26:11 +00:00
|
|
|
m_UserUnits = 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_showAxis = false; // true to show X and Y axis on screen
|
2013-07-19 18:27:22 +00:00
|
|
|
m_showGridAxis = true;
|
2014-06-20 11:13:04 +00:00
|
|
|
m_showBorderAndTitleBlock = true; // true for reference drawings.
|
2019-04-01 17:14:16 +00:00
|
|
|
m_hotkeysDescrList = PlEditorHotkeysDescr;
|
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)
|
|
|
|
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_designTreeWidth = 150;
|
|
|
|
m_propertiesFrameWidth = 200;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
if( m_canvas )
|
2016-06-11 13:51:05 +00:00
|
|
|
m_canvas->SetEnableBlockCommands( true );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
// Give an icon
|
|
|
|
wxIcon icon;
|
|
|
|
icon.CopyFromBitmap( KiBitmap( icon_pagelayout_editor_xpm ) );
|
|
|
|
SetIcon( icon );
|
|
|
|
wxSize pageSizeIU = GetPageLayout().GetPageSettings().GetSizeIU();
|
|
|
|
SetScreen( new PL_EDITOR_SCREEN( pageSizeIU ) );
|
|
|
|
|
* 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 );
|
|
|
|
|
2015-05-12 09:05:36 +00:00
|
|
|
if( ! GetScreen()->GridExists( m_LastGridSizeId + ID_POPUP_GRID_LEVEL_1000 ) )
|
|
|
|
m_LastGridSizeId = ID_POPUP_GRID_LEVEL_1MM - ID_POPUP_GRID_LEVEL_1000;
|
|
|
|
|
|
|
|
GetScreen()->SetGrid( m_LastGridSizeId + ID_POPUP_GRID_LEVEL_1000 );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
ReCreateMenuBar();
|
|
|
|
ReCreateHToolbar();
|
|
|
|
|
|
|
|
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-06-10 14:16:14 +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-06-10 14:16:14 +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 );
|
2018-08-11 16:04:46 +00:00
|
|
|
m_auimgr.SetArtProvider( new EDA_DOCKART( this ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
m_propertiesPagelayout = new PROPERTIES_FRAME( this );
|
|
|
|
m_treePagelayout = new DESIGN_TREE_FRAME( this );
|
|
|
|
|
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
|
|
|
|
2018-08-11 16:04:46 +00:00
|
|
|
m_auimgr.AddPane( m_treePagelayout, EDA_PANE().Palette().Name( "Design" ).Left().Layer(1)
|
|
|
|
.Caption( _( "Design" ) ).MinSize( m_treePagelayout->GetMinSize() )
|
|
|
|
.BestSize( m_designTreeWidth, -1 ) );
|
|
|
|
m_auimgr.AddPane( m_propertiesPagelayout, EDA_PANE().Palette().Name( "Props" ).Right().Layer(1)
|
|
|
|
.Caption( _( "Properties" ) ).MinSize( m_propertiesPagelayout->GetMinSize() )
|
|
|
|
.BestSize( m_propertiesFrameWidth, -1 ) );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-08-11 16:04:46 +00:00
|
|
|
m_auimgr.AddPane( m_canvas, EDA_PANE().Canvas().Name( "DrawFrame" ).Center() );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
m_auimgr.Update();
|
2014-06-07 16:20:23 +00:00
|
|
|
|
|
|
|
// Initialize the current page layout
|
|
|
|
WORKSHEET_LAYOUT& pglayout = WORKSHEET_LAYOUT::GetTheInstance();
|
|
|
|
#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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PL_EDITOR_FRAME::~PL_EDITOR_FRAME()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
* 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 ) )
|
|
|
|
{
|
|
|
|
wxString msg = wxString::Format(
|
2017-12-15 11:37:46 +00:00
|
|
|
_( "Error when loading file \"%s\"" ),
|
* 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
|
|
|
GetChars( fn )
|
|
|
|
);
|
|
|
|
|
|
|
|
wxMessageBox( msg );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
OnNewPageLayout();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
void PL_EDITOR_FRAME::OnCloseWindow( wxCloseEvent& Event )
|
|
|
|
{
|
|
|
|
if( GetScreen()->IsModify() )
|
|
|
|
{
|
2019-05-13 18:33:30 +00:00
|
|
|
if( !HandleUnsavedChanges( this,
|
|
|
|
_( "The current page layout has been modified. Save changes?" ),
|
2018-08-11 20:46:03 +00:00
|
|
|
[&]()->bool { return saveCurrentPageLayout(); } ) )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
|
|
|
Event.Veto();
|
|
|
|
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
|
|
|
// was: Pgm().SaveCurrentSetupValues( m_configSettings );
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
double PL_EDITOR_FRAME::BestZoom()
|
|
|
|
{
|
2018-02-13 21:19:41 +00:00
|
|
|
double sizeX = (double) GetPageLayout().GetPageSettings().GetWidthIU();
|
|
|
|
double sizeY = (double) GetPageLayout().GetPageSettings().GetHeightIU();
|
|
|
|
wxPoint centre( sizeX / 2, sizeY / 2 );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-02-13 21:19:41 +00:00
|
|
|
// The sheet boundary already affords us some margin, so add only an
|
|
|
|
// additional 5%.
|
|
|
|
double margin_scale_factor = 1.05;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2018-02-13 21:19:41 +00:00
|
|
|
return bestZoom( sizeX, sizeY, margin_scale_factor, centre );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
|
|
|
static const wxChar designTreeWidthKey[] = wxT( "DesignTreeWidth" );
|
|
|
|
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" );
|
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 );
|
|
|
|
|
2014-06-20 11:13:04 +00:00
|
|
|
aCfg->Read( designTreeWidthKey, &m_designTreeWidth, 100);
|
|
|
|
aCfg->Read( propertiesFrameWidthKey, &m_propertiesFrameWidth, 150);
|
|
|
|
aCfg->Read( cornerOriginChoiceKey, &m_originSelectChoice );
|
|
|
|
bool tmp;
|
|
|
|
aCfg->Read( blackBgColorKey, &tmp, false );
|
|
|
|
SetDrawBgColor( tmp ? BLACK : WHITE );
|
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_designTreeWidth = m_treePagelayout->GetSize().x;
|
|
|
|
m_propertiesFrameWidth = m_propertiesPagelayout->GetSize().x;
|
|
|
|
|
2014-06-20 11:13:04 +00:00
|
|
|
aCfg->Write( designTreeWidthKey, m_designTreeWidth);
|
|
|
|
aCfg->Write( propertiesFrameWidthKey, m_propertiesFrameWidth);
|
|
|
|
aCfg->Write( cornerOriginChoiceKey, m_originSelectChoice );
|
|
|
|
aCfg->Write( blackBgColorKey, GetDrawBgColor() == BLACK );
|
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
|
|
|
// was: wxGetApp().SaveCurrentSetupValues( GetConfigurationSettings() );
|
|
|
|
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-10 14:16:14 +00:00
|
|
|
/*
|
|
|
|
* Display the grid status.
|
|
|
|
*/
|
|
|
|
void PL_EDITOR_FRAME::DisplayGridMsg()
|
|
|
|
{
|
|
|
|
wxString line;
|
|
|
|
wxString gridformatter;
|
|
|
|
|
|
|
|
switch( m_UserUnits )
|
|
|
|
{
|
|
|
|
case INCHES:
|
|
|
|
gridformatter = "grid %.3f";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MILLIMETRES:
|
|
|
|
gridformatter = "grid %.4f";
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
gridformatter = "grid %f";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-13 18:33:30 +00:00
|
|
|
// coordinate origin can be the paper Top Left corner,
|
2013-07-19 18:27:22 +00:00
|
|
|
// or each of 4 page corners
|
|
|
|
// We know the origin, and the orientation of axis
|
|
|
|
wxPoint originCoord;
|
|
|
|
int Xsign = 1;
|
|
|
|
int Ysign = 1;
|
2013-08-03 05:15:23 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
WORKSHEET_DATAITEM dummy( WORKSHEET_DATAITEM::WS_SEGMENT );
|
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;
|
|
|
|
dummy.SetStart( 0, 0, RB_CORNER );
|
|
|
|
originCoord = dummy.GetStartPosUi();
|
|
|
|
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;
|
|
|
|
dummy.SetStart( 0, 0, LB_CORNER );
|
|
|
|
originCoord = dummy.GetStartPosUi();
|
|
|
|
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;
|
|
|
|
dummy.SetStart( 0, 0, RT_CORNER );
|
|
|
|
originCoord = dummy.GetStartPosUi();
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
case 4: // Origin = page Left Top corner
|
|
|
|
dummy.SetStart( 0, 0, LT_CORNER );
|
|
|
|
originCoord = dummy.GetStartPosUi();
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
SetGridOrigin( originCoord );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
// Display absolute coordinates:
|
2013-08-03 05:15:23 +00:00
|
|
|
wxPoint coord = GetCrossHairPosition() - originCoord;
|
2018-06-14 08:26:11 +00:00
|
|
|
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
|
|
|
{
|
|
|
|
case INCHES: // Should not be used in page layout editor
|
2019-06-10 14:16:14 +00:00
|
|
|
SetStatusText( _("inches"), 6 );
|
2013-07-19 18:27:22 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MILLIMETRES:
|
2019-06-10 14:16:14 +00:00
|
|
|
SetStatusText( _("mm"), 6 );
|
2013-07-19 18:27:22 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case UNSCALED_UNITS:
|
2019-06-10 14:16:14 +00:00
|
|
|
SetStatusText( wxEmptyString, 6 );
|
2013-07-19 18:27:22 +00:00
|
|
|
break;
|
2015-02-19 15:03:45 +00:00
|
|
|
|
|
|
|
case DEGREES:
|
|
|
|
wxASSERT( false );
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxString line;
|
2013-07-24 15:11:35 +00:00
|
|
|
|
|
|
|
// Display page size
|
|
|
|
#define milsTomm (25.4/1000)
|
|
|
|
DSIZE size = GetPageSettings().GetSizeMils();
|
|
|
|
size = size * milsTomm;
|
|
|
|
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:
|
2013-08-03 05:15:23 +00:00
|
|
|
int dx = GetCrossHairPosition().x - screen->m_O_Curseur.x;
|
|
|
|
int dy = GetCrossHairPosition().y - screen->m_O_Curseur.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-06-10 14:16:14 +00:00
|
|
|
DisplayGridMsg();
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
// Display corner reference for coord origin
|
|
|
|
line.Printf( _("coord origin: %s"),
|
|
|
|
m_originSelectBox->GetString( m_originSelectChoice ). GetData() );
|
2019-06-10 14:16:14 +00:00
|
|
|
SetStatusText( line, 5 );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
// Display units
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2014-06-24 16:17:18 +00:00
|
|
|
void PL_EDITOR_FRAME::PrintPage( wxDC* aDC, LSET aPrintMasklayer,
|
2013-07-19 18:27:22 +00:00
|
|
|
bool aPrintMirrorMode, void * aData )
|
|
|
|
{
|
|
|
|
GetScreen()-> m_ScreenNumber = GetPageNumberOption() ? 1 : 2;
|
|
|
|
DrawWorkSheet( aDC, GetScreen(), 0, IU_PER_MILS, wxEmptyString );
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
void PL_EDITOR_FRAME::RedrawActiveWindow( wxDC* aDC, bool aEraseBg )
|
|
|
|
{
|
2013-07-20 19:36:19 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
GetScreen()-> m_ScreenNumber = GetPageNumberOption() ? 1 : 2;
|
2013-07-20 19:36:19 +00:00
|
|
|
|
|
|
|
if( aEraseBg )
|
|
|
|
m_canvas->EraseScreen( aDC );
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
m_canvas->DrawBackGround( aDC );
|
|
|
|
|
|
|
|
const WORKSHEET_LAYOUT& pglayout = WORKSHEET_LAYOUT::GetTheInstance();
|
|
|
|
WORKSHEET_DATAITEM* selecteditem = GetSelectedItem();
|
|
|
|
|
2013-07-20 19:36:19 +00:00
|
|
|
// the color to draw selected items
|
2014-06-20 11:13:04 +00:00
|
|
|
if( GetDrawBgColor() == WHITE )
|
2013-07-20 19:36:19 +00:00
|
|
|
WORKSHEET_DATAITEM::m_SelectedColor = DARKCYAN;
|
|
|
|
else
|
|
|
|
WORKSHEET_DATAITEM::m_SelectedColor = YELLOW;
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
for( unsigned ii = 0; ; ii++ )
|
|
|
|
{
|
|
|
|
WORKSHEET_DATAITEM* item = pglayout.GetItem( ii );
|
|
|
|
|
|
|
|
if( item == NULL )
|
|
|
|
break;
|
|
|
|
|
|
|
|
item->SetSelected( item == selecteditem );
|
|
|
|
}
|
|
|
|
|
|
|
|
DrawWorkSheet( aDC, GetScreen(), 0, IU_PER_MILS, GetCurrFileName() );
|
|
|
|
|
2014-06-16 16:32:23 +00:00
|
|
|
#ifdef USE_WX_OVERLAY
|
|
|
|
if( IsShown() )
|
|
|
|
{
|
|
|
|
m_overlay.Reset();
|
|
|
|
wxDCOverlay overlaydc( m_overlay, (wxWindowDC*)aDC );
|
|
|
|
overlaydc.Clear();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
if( m_canvas->IsMouseCaptured() )
|
|
|
|
m_canvas->CallMouseCapture( aDC, wxDefaultPosition, false );
|
|
|
|
|
|
|
|
m_canvas->DrawCrossHair( aDC );
|
|
|
|
|
|
|
|
// Display the filename
|
|
|
|
UpdateTitleAndInfo();
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
void PL_EDITOR_FRAME::RebuildDesignTree()
|
|
|
|
{
|
|
|
|
const WORKSHEET_LAYOUT& pglayout = WORKSHEET_LAYOUT::GetTheInstance();
|
2013-07-23 16:45:23 +00:00
|
|
|
int rectId = 0;
|
|
|
|
int lineId = 0;
|
|
|
|
int textId = 0;
|
|
|
|
int polyId = 0;
|
2013-10-18 17:38:03 +00:00
|
|
|
int bitmapId = 0;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
for( unsigned ii = 0; ii < pglayout.GetCount(); ii++ )
|
|
|
|
{
|
|
|
|
WORKSHEET_DATAITEM* item = pglayout.GetItem( ii );
|
2013-07-23 16:45:23 +00:00
|
|
|
switch( item->GetType() )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2013-07-23 16:45:23 +00:00
|
|
|
case WORKSHEET_DATAITEM::WS_TEXT:
|
2017-11-12 00:31:38 +00:00
|
|
|
item->m_Name = wxString::Format( wxT( "text%d:%s" ), ++textId,
|
2013-07-23 16:45:23 +00:00
|
|
|
GetChars(item->GetClassName()) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WORKSHEET_DATAITEM:: WS_SEGMENT:
|
2017-11-12 00:31:38 +00:00
|
|
|
item->m_Name = wxString::Format( wxT( "segm%d:%s" ), ++lineId,
|
2013-07-23 16:45:23 +00:00
|
|
|
GetChars(item->GetClassName()) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WORKSHEET_DATAITEM::WS_RECT:
|
2017-11-12 00:31:38 +00:00
|
|
|
item->m_Name = wxString::Format( wxT( "rect%d:%s" ), ++rectId,
|
2013-07-23 16:45:23 +00:00
|
|
|
GetChars(item->GetClassName()) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WORKSHEET_DATAITEM::WS_POLYPOLYGON:
|
2017-11-12 00:31:38 +00:00
|
|
|
item->m_Name = wxString::Format( wxT( "poly%d:%s" ), ++polyId,
|
2013-07-23 16:45:23 +00:00
|
|
|
GetChars(item->GetClassName()) );
|
|
|
|
break;
|
2013-10-18 17:38:03 +00:00
|
|
|
|
|
|
|
case WORKSHEET_DATAITEM::WS_BITMAP:
|
2017-11-12 00:31:38 +00:00
|
|
|
item->m_Name = wxString::Format( wxT( "bm%d:%s" ), ++bitmapId,
|
2013-10-18 17:38:03 +00:00
|
|
|
GetChars(item->GetClassName()) );
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_treePagelayout->ReCreateDesignTree();
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
WORKSHEET_DATAITEM * PL_EDITOR_FRAME::AddPageLayoutItem( int aType, int aIdx )
|
|
|
|
{
|
|
|
|
WORKSHEET_DATAITEM * item = NULL;
|
|
|
|
|
|
|
|
switch( aType )
|
|
|
|
{
|
2017-11-12 00:31:38 +00:00
|
|
|
case WORKSHEET_DATAITEM::WS_TEXT:
|
|
|
|
item = new WORKSHEET_DATAITEM_TEXT( wxT( "Text") );
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
case WORKSHEET_DATAITEM::WS_SEGMENT:
|
|
|
|
item = new WORKSHEET_DATAITEM( WORKSHEET_DATAITEM::WS_SEGMENT );
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
case WORKSHEET_DATAITEM::WS_RECT:
|
|
|
|
item = new WORKSHEET_DATAITEM( WORKSHEET_DATAITEM::WS_RECT );
|
|
|
|
break;
|
2013-10-18 17:38:03 +00:00
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
case WORKSHEET_DATAITEM::WS_POLYPOLYGON:
|
|
|
|
item = new WORKSHEET_DATAITEM_POLYPOLYGON();
|
|
|
|
break;
|
2013-10-18 17:38:03 +00:00
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
case WORKSHEET_DATAITEM::WS_BITMAP:
|
|
|
|
{
|
|
|
|
wxFileDialog fileDlg( this, _( "Choose Image" ), wxEmptyString, wxEmptyString,
|
|
|
|
_( "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 ) )
|
|
|
|
{
|
2017-12-15 11:37:46 +00:00
|
|
|
wxMessageBox( _( "Couldn't load image from \"%s\"" ), GetChars( 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 ) )
|
|
|
|
{
|
2017-12-15 11:37:46 +00:00
|
|
|
wxMessageBox( _( "Couldn't load image from \"%s\"" ),
|
2017-11-12 00:31:38 +00:00
|
|
|
GetChars( fullFilename ) );
|
|
|
|
delete image;
|
2013-10-18 17:38:03 +00:00
|
|
|
break;
|
2017-11-12 00:31:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
item = new WORKSHEET_DATAITEM_BITMAP( image );
|
|
|
|
}
|
|
|
|
break;
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( item == NULL )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
WORKSHEET_LAYOUT& pglayout = WORKSHEET_LAYOUT::GetTheInstance();
|
|
|
|
pglayout.Insert( item, aIdx );
|
|
|
|
RebuildDesignTree();
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
WORKSHEET_DATAITEM * PL_EDITOR_FRAME::GetSelectedItem()
|
|
|
|
{
|
|
|
|
WORKSHEET_DATAITEM* item = m_treePagelayout->GetPageLayoutSelectedItem();
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2018-08-19 19:49:35 +00:00
|
|
|
WORKSHEET_DATAITEM* PL_EDITOR_FRAME::Locate( wxDC* aDC, const wxPoint& aPosition )
|
2013-07-19 18:27:22 +00:00
|
|
|
{
|
2013-08-03 05:15:23 +00:00
|
|
|
const PAGE_INFO& pageInfo = GetPageSettings();
|
|
|
|
TITLE_BLOCK t_block = GetTitleBlock();
|
2017-02-20 16:57:41 +00:00
|
|
|
COLOR4D color = COLOR4D( RED ); // Needed, not used
|
2013-08-03 05:15:23 +00:00
|
|
|
PL_EDITOR_SCREEN* screen = (PL_EDITOR_SCREEN*) GetScreen();
|
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
screen-> m_ScreenNumber = GetPageNumberOption() ? 1 : 2;
|
|
|
|
|
|
|
|
WS_DRAW_ITEM_LIST drawList;
|
|
|
|
drawList.SetPenSize( 0 );
|
|
|
|
drawList.SetMilsToIUfactor( IU_PER_MILS );
|
|
|
|
drawList.SetSheetNumber( screen->m_ScreenNumber );
|
|
|
|
drawList.SetSheetCount( screen->m_NumberOfScreens );
|
|
|
|
drawList.SetFileName( GetCurrFileName() );
|
2015-04-03 09:13:06 +00:00
|
|
|
// GetScreenDesc() returns a temporary string. Store it to avoid issues.
|
|
|
|
wxString descr = GetScreenDesc();
|
|
|
|
drawList.SetSheetName( descr );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
drawList.BuildWorkSheetGraphicList( pageInfo, t_block, color, color );
|
|
|
|
|
|
|
|
// locate items.
|
|
|
|
// We do not use here the COLLECTOR classes in use in pcbnew and eeschema
|
|
|
|
// because the locate requirements are very basic.
|
|
|
|
std::vector <WS_DRAW_ITEM_BASE*> list;
|
2018-08-19 19:49:35 +00:00
|
|
|
drawList.Locate( aDC, list, aPosition );
|
2015-02-26 10:33:15 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
if( list.size() == 0 )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
WS_DRAW_ITEM_BASE* drawitem = list[0];
|
|
|
|
|
|
|
|
// Choose item in list if more than 1 item
|
|
|
|
if( list.size() > 1 )
|
|
|
|
{
|
2013-08-03 05:15:23 +00:00
|
|
|
wxArrayString choices;
|
2013-07-19 18:27:22 +00:00
|
|
|
wxString text;
|
2013-08-03 05:15:23 +00:00
|
|
|
wxPoint cursPos = GetCrossHairPosition();
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
for( unsigned ii = 0; ii < list.size(); ++ii )
|
|
|
|
{
|
|
|
|
drawitem = list[ii];
|
|
|
|
text = drawitem->GetParent()->m_Name;
|
|
|
|
|
|
|
|
if( (drawitem->m_Flags & (LOCATE_STARTPOINT|LOCATE_ENDPOINT))
|
|
|
|
== (LOCATE_STARTPOINT|LOCATE_ENDPOINT) )
|
2017-11-12 00:31:38 +00:00
|
|
|
text << wxT( " " ) << _( "(start or end point)" );
|
2013-07-19 18:27:22 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if( (drawitem->m_Flags & LOCATE_STARTPOINT) )
|
2017-11-12 00:31:38 +00:00
|
|
|
text << wxT( " " ) << _( "(start point)" );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
if( (drawitem->m_Flags & LOCATE_ENDPOINT) )
|
2017-11-12 00:31:38 +00:00
|
|
|
text << wxT( " " ) << _( "(end point)" );
|
2013-07-19 18:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( ! drawitem->GetParent()->m_Info.IsEmpty() )
|
2017-11-12 00:31:38 +00:00
|
|
|
text << wxT( " \"" ) << drawitem->GetParent()->m_Info << wxT( "\"" );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
choices.Add( text );
|
|
|
|
}
|
2017-11-12 00:31:38 +00:00
|
|
|
|
2013-07-19 18:27:22 +00:00
|
|
|
int selection = wxGetSingleChoiceIndex ( wxEmptyString,
|
|
|
|
_( "Selection Clarification" ),
|
|
|
|
choices, this );
|
|
|
|
if( selection < 0 )
|
|
|
|
return NULL;
|
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
SetCrossHairPosition( cursPos );
|
2013-07-19 18:27:22 +00:00
|
|
|
m_canvas->MoveCursorToCrossHair();
|
|
|
|
drawitem = list[selection];
|
|
|
|
}
|
|
|
|
|
|
|
|
WORKSHEET_DATAITEM* item = drawitem->GetParent();
|
2017-11-12 00:31:38 +00:00
|
|
|
item->ClearFlags( LOCATE_STARTPOINT|LOCATE_ENDPOINT );
|
2013-07-19 18:27:22 +00:00
|
|
|
|
|
|
|
if( (drawitem->m_Flags & LOCATE_STARTPOINT) )
|
|
|
|
item->SetFlags( LOCATE_STARTPOINT );
|
|
|
|
|
|
|
|
if( (drawitem->m_Flags & LOCATE_ENDPOINT) )
|
|
|
|
item->SetFlags( LOCATE_ENDPOINT );
|
|
|
|
|
|
|
|
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();
|
|
|
|
m_propertiesPagelayout->CopyPrmsFromGeneralToPanel();
|
|
|
|
RebuildDesignTree();
|
2015-03-06 17:46:04 +00:00
|
|
|
Zoom_Automatique( false );
|
2013-07-20 19:36:19 +00:00
|
|
|
m_canvas->Refresh();
|
|
|
|
}
|
2015-01-06 07:38:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
const wxString PL_EDITOR_FRAME::GetZoomLevelIndicator() const
|
|
|
|
{
|
|
|
|
return EDA_DRAW_FRAME::GetZoomLevelIndicator();
|
|
|
|
}
|