2013-12-14 19:03:38 +00:00
|
|
|
/**
|
|
|
|
* Module editor: Dialog for editing module properties in the pcb editor.
|
|
|
|
*/
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2012-06-09 09:38:58 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2013-12-14 19:03:38 +00:00
|
|
|
* Copyright (C) 2013 Jean-Pierre Charras
|
|
|
|
* Copyright (C) 2013 Dick Hollenbeck, dick@softplc.com
|
|
|
|
* Copyright (C) 2004-2013 KiCad Developers, see change_log.txt for contributors.
|
2012-06-09 09:38:58 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
#include <kiface_i.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <confirm.h>
|
|
|
|
#include <pcbnew.h>
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
#include <pgm_base.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <gestfich.h>
|
|
|
|
#include <3d_struct.h>
|
|
|
|
#include <3d_viewer.h>
|
|
|
|
#include <wxPcbStruct.h>
|
2012-04-13 18:51:24 +00:00
|
|
|
#include <base_units.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
|
|
|
|
#include <class_module.h>
|
|
|
|
#include <class_text_mod.h>
|
|
|
|
|
|
|
|
#include <dialog_edit_module_for_BoardEditor.h>
|
2012-03-08 17:47:23 +00:00
|
|
|
#include <wildcards_and_files_ext.h>
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
DIALOG_MODULE_BOARD_EDITOR::DIALOG_MODULE_BOARD_EDITOR( PCB_EDIT_FRAME* aParent,
|
|
|
|
MODULE* aModule,
|
|
|
|
wxDC* aDC ) :
|
2009-08-11 10:27:21 +00:00
|
|
|
DIALOG_MODULE_BOARD_EDITOR_BASE( aParent )
|
|
|
|
{
|
|
|
|
m_Parent = aParent;
|
2009-11-04 19:08:08 +00:00
|
|
|
m_DC = aDC;
|
|
|
|
m_CurrentModule = aModule;
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2011-09-11 11:38:01 +00:00
|
|
|
// Give an icon
|
|
|
|
wxIcon icon;
|
|
|
|
icon.CopyFromBitmap( KiBitmap( icon_modedit_xpm ) );
|
|
|
|
SetIcon( icon );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
InitModeditProperties();
|
|
|
|
InitBoardProperties();
|
|
|
|
|
2011-03-14 15:17:18 +00:00
|
|
|
m_sdbSizerStdButtonsOK->SetDefault();
|
2009-08-11 10:27:21 +00:00
|
|
|
GetSizer()->SetSizeHints( this );
|
|
|
|
Centre();
|
|
|
|
}
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
DIALOG_MODULE_BOARD_EDITOR::~DIALOG_MODULE_BOARD_EDITOR()
|
|
|
|
{
|
|
|
|
for( unsigned ii = 0; ii < m_Shapes3D_list.size(); ii++ )
|
|
|
|
delete m_Shapes3D_list[ii];
|
|
|
|
|
|
|
|
m_Shapes3D_list.clear();
|
|
|
|
|
|
|
|
delete m_ReferenceCopy;
|
|
|
|
delete m_ValueCopy;
|
|
|
|
delete m_3D_Scale;
|
|
|
|
delete m_3D_Offset;
|
|
|
|
delete m_3D_Rotation;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
// Creation of the panel properties of the module editor.
|
2009-11-04 19:08:08 +00:00
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::InitBoardProperties()
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_ModPositionX, m_CurrentModule->GetPosition().x );
|
2013-03-04 16:39:08 +00:00
|
|
|
m_XPosUnit->SetLabel( GetAbbreviatedUnitsLabel( g_UserUnit ) );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_ModPositionY, m_CurrentModule->GetPosition().y );
|
2013-03-04 16:39:08 +00:00
|
|
|
m_YPosUnit->SetLabel( GetAbbreviatedUnitsLabel( g_UserUnit ) );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
m_LayerCtrl->SetSelection(
|
2014-06-24 16:17:18 +00:00
|
|
|
(m_CurrentModule->GetLayer() == B_Cu) ? 1 : 0 );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2012-01-22 17:20:22 +00:00
|
|
|
bool select = false;
|
2013-05-04 11:57:09 +00:00
|
|
|
switch( int( m_CurrentModule->GetOrientation() ) )
|
2009-11-04 19:08:08 +00:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
m_OrientCtrl->SetSelection( 0 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 900:
|
2009-11-14 22:15:22 +00:00
|
|
|
case -2700:
|
2009-11-04 19:08:08 +00:00
|
|
|
m_OrientCtrl->SetSelection( 1 );
|
|
|
|
break;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
case -900:
|
2009-11-04 19:08:08 +00:00
|
|
|
case 2700:
|
|
|
|
m_OrientCtrl->SetSelection( 2 );
|
|
|
|
break;
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
case -1800:
|
2009-11-04 19:08:08 +00:00
|
|
|
case 1800:
|
|
|
|
m_OrientCtrl->SetSelection( 3 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
m_OrientCtrl->SetSelection( 4 );
|
2012-01-22 17:20:22 +00:00
|
|
|
select = true;
|
2009-11-04 19:08:08 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
wxString msg;
|
2013-03-13 18:53:58 +00:00
|
|
|
msg << m_CurrentModule->GetOrientation();
|
2009-11-04 19:08:08 +00:00
|
|
|
m_OrientValue->SetValue( msg );
|
|
|
|
m_OrientValue->Enable( select );
|
|
|
|
|
2009-11-06 12:55:20 +00:00
|
|
|
// Initialize dialog relative to masks clearances
|
2013-03-04 16:39:08 +00:00
|
|
|
m_NetClearanceUnits->SetLabel( GetAbbreviatedUnitsLabel( g_UserUnit ) );
|
|
|
|
m_SolderMaskMarginUnits->SetLabel( GetAbbreviatedUnitsLabel( g_UserUnit ) );
|
|
|
|
m_SolderPasteMarginUnits->SetLabel( GetAbbreviatedUnitsLabel( g_UserUnit ) );
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2012-04-17 01:35:43 +00:00
|
|
|
PutValueInLocalUnits( *m_NetClearanceValueCtrl, m_CurrentModule->GetLocalClearance() );
|
|
|
|
PutValueInLocalUnits( *m_SolderMaskMarginCtrl, m_CurrentModule->GetLocalSolderMaskMargin() );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
|
|
|
// These 2 parameters are usually < 0, so prepare entering a negative
|
|
|
|
// value, if current is 0
|
2012-04-13 18:51:24 +00:00
|
|
|
PutValueInLocalUnits( *m_SolderPasteMarginCtrl, m_CurrentModule->GetLocalSolderPasteMargin() );
|
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( m_CurrentModule->GetLocalSolderPasteMargin() == 0 )
|
2009-11-14 22:15:22 +00:00
|
|
|
m_SolderPasteMarginCtrl->SetValue( wxT( "-" ) +
|
|
|
|
m_SolderPasteMarginCtrl->GetValue() );
|
2012-05-18 08:33:57 +00:00
|
|
|
|
|
|
|
// Add solder paste margin ration in per cent
|
|
|
|
// for the usual default value 0.0, display -0.0 (or -0,0 in some countries)
|
2013-05-30 19:32:00 +00:00
|
|
|
msg.Printf( wxT( "%f" ),
|
2012-02-19 04:02:19 +00:00
|
|
|
m_CurrentModule->GetLocalSolderPasteMarginRatio() * 100.0 );
|
2012-05-18 08:33:57 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
if( m_CurrentModule->GetLocalSolderPasteMarginRatio() == 0.0 &&
|
2012-05-18 08:33:57 +00:00
|
|
|
msg[0] == '0') // Sometimes Printf adds a sign if the value is very small (0.0)
|
2010-01-31 20:01:46 +00:00
|
|
|
m_SolderPasteMarginRatioCtrl->SetValue( wxT("-") + msg );
|
2009-11-06 12:55:20 +00:00
|
|
|
else
|
2010-01-31 20:01:46 +00:00
|
|
|
m_SolderPasteMarginRatioCtrl->SetValue( msg );
|
2012-02-24 23:23:46 +00:00
|
|
|
|
|
|
|
switch( m_CurrentModule->GetZoneConnection() )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case UNDEFINED_CONNECTION:
|
|
|
|
m_ZoneConnectionChoice->SetSelection( 0 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD_IN_ZONE:
|
|
|
|
m_ZoneConnectionChoice->SetSelection( 1 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case THERMAL_PAD:
|
|
|
|
m_ZoneConnectionChoice->SetSelection( 2 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PAD_NOT_IN_ZONE:
|
|
|
|
m_ZoneConnectionChoice->SetSelection( 3 );
|
|
|
|
break;
|
|
|
|
}
|
2009-11-04 19:08:08 +00:00
|
|
|
}
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
|
2010-12-21 15:13:09 +00:00
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::OnCancelClick( wxCommandEvent& event )
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
|
|
|
EndModal( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::GotoModuleEditor( wxCommandEvent& event )
|
|
|
|
{
|
2011-12-12 08:37:05 +00:00
|
|
|
if( m_CurrentModule->GetTimeStamp() == 0 ) // Module Editor needs a non null timestamp
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
2011-12-12 08:37:05 +00:00
|
|
|
m_CurrentModule->SetTimeStamp( GetNewTimeStamp() );
|
2010-02-19 13:23:58 +00:00
|
|
|
m_Parent->OnModify();
|
2009-08-11 10:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EndModal( 2 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::ExchangeModule( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
m_Parent->InstallExchangeModuleFrame( m_CurrentModule );
|
|
|
|
|
|
|
|
// Warning: m_CurrentModule was deleted by exchange module
|
|
|
|
m_Parent->SetCurItem( NULL );
|
|
|
|
EndModal( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::ModuleOrientEvent( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
switch( m_OrientCtrl->GetSelection() )
|
|
|
|
{
|
|
|
|
case 0:
|
2012-01-22 17:20:22 +00:00
|
|
|
m_OrientValue->Enable( false );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_OrientValue->SetValue( wxT( "0" ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2012-01-22 17:20:22 +00:00
|
|
|
m_OrientValue->Enable( false );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_OrientValue->SetValue( wxT( "900" ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2012-01-22 17:20:22 +00:00
|
|
|
m_OrientValue->Enable( false );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_OrientValue->SetValue( wxT( "2700" ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
2012-01-22 17:20:22 +00:00
|
|
|
m_OrientValue->Enable( false );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_OrientValue->SetValue( wxT( "1800" ) );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2012-01-22 17:20:22 +00:00
|
|
|
m_OrientValue->Enable( true );
|
2009-08-11 10:27:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::InitModeditProperties()
|
|
|
|
{
|
|
|
|
SetFocus();
|
|
|
|
|
2014-02-10 09:30:08 +00:00
|
|
|
wxString default_path;
|
|
|
|
wxGetEnv( wxT( KISYS3DMOD ), &default_path );
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
default_path.Replace( wxT( "/" ), wxT( "\\" ) );
|
|
|
|
#endif
|
|
|
|
m_textCtrl3DDefaultPath->SetValue( default_path );
|
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
m_LastSelected3DShapeIndex = -1;
|
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
// Init 3D shape list
|
2013-03-18 19:36:07 +00:00
|
|
|
S3D_MASTER* draw3D = m_CurrentModule->Models();
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
while( draw3D )
|
|
|
|
{
|
2014-01-25 12:23:29 +00:00
|
|
|
if( !draw3D->GetShape3DName().IsEmpty() )
|
2009-08-18 07:54:03 +00:00
|
|
|
{
|
2009-11-04 19:08:08 +00:00
|
|
|
S3D_MASTER* draw3DCopy = new S3D_MASTER( NULL );
|
2009-08-18 07:54:03 +00:00
|
|
|
draw3DCopy->Copy( draw3D );
|
|
|
|
m_Shapes3D_list.push_back( draw3DCopy );
|
2014-01-25 12:23:29 +00:00
|
|
|
m_3D_ShapeNameListBox->Append( draw3DCopy->GetShape3DName() );
|
2009-08-18 07:54:03 +00:00
|
|
|
}
|
2009-08-11 10:27:21 +00:00
|
|
|
draw3D = (S3D_MASTER*) draw3D->Next();
|
|
|
|
}
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
m_ReferenceCopy = new TEXTE_MODULE( NULL );
|
|
|
|
m_ValueCopy = new TEXTE_MODULE( NULL );
|
2013-03-13 18:53:58 +00:00
|
|
|
m_ReferenceCopy->Copy( &m_CurrentModule->Reference() );
|
|
|
|
m_ValueCopy->Copy( &m_CurrentModule->Value() );
|
2013-03-18 19:36:07 +00:00
|
|
|
m_ReferenceCtrl->SetValue( m_ReferenceCopy->GetText() );
|
|
|
|
m_ValueCtrl->SetValue( m_ValueCopy->GetText() );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2013-12-14 19:03:38 +00:00
|
|
|
// Shows the footprint's schematic path.
|
|
|
|
m_textCtrlSheetPath->SetValue( m_CurrentModule->GetPath() );
|
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
m_AttributsCtrl->SetItemToolTip( 0,
|
2013-04-10 07:23:20 +00:00
|
|
|
_( "Use this attribute for most non SMD components\n"
|
|
|
|
"Components with this option are not put in the footprint position list file" ) );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_AttributsCtrl->SetItemToolTip( 1,
|
2013-04-10 07:23:20 +00:00
|
|
|
_( "Use this attribute for SMD components.\n"
|
|
|
|
"Only components with this option are put in the footprint position list file" ) );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_AttributsCtrl->SetItemToolTip( 2,
|
2013-04-10 07:23:20 +00:00
|
|
|
_( "Use this attribute for \"virtual\" components drawn on board\n"
|
|
|
|
"(like a old ISA PC bus connector)" ) );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
// Controls on right side of the dialog
|
2013-03-13 18:53:58 +00:00
|
|
|
switch( m_CurrentModule->GetAttributes() & 255 )
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
m_AttributsCtrl->SetSelection( 0 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MOD_CMS:
|
|
|
|
m_AttributsCtrl->SetSelection( 1 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MOD_VIRTUAL:
|
|
|
|
m_AttributsCtrl->SetSelection( 2 );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
m_AttributsCtrl->SetSelection( 0 );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-03-13 18:53:58 +00:00
|
|
|
m_AutoPlaceCtrl->SetSelection( (m_CurrentModule->IsLocked()) ? 1 : 0 );
|
2012-08-21 10:45:54 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
m_AutoPlaceCtrl->SetItemToolTip( 0,
|
|
|
|
_( "Enable hotkey move commands and Auto Placement" ) );
|
|
|
|
m_AutoPlaceCtrl->SetItemToolTip( 1,
|
|
|
|
_( "Disable hotkey move commands and Auto Placement" ) );
|
2012-08-21 10:45:54 +00:00
|
|
|
|
2013-03-13 18:53:58 +00:00
|
|
|
m_CostRot90Ctrl->SetValue( m_CurrentModule->GetPlacementCost90() );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2013-03-13 18:53:58 +00:00
|
|
|
m_CostRot180Ctrl->SetValue( m_CurrentModule->GetPlacementCost180() );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
// Initialize 3D parameters
|
2014-08-09 18:18:04 +00:00
|
|
|
m_3D_Scale = new S3DPOINT_VALUE_CTRL( m_Panel3D, m_bSizerShapeScale );
|
|
|
|
m_3D_Offset = new S3DPOINT_VALUE_CTRL( m_Panel3D, m_bSizerShapeOffset );
|
|
|
|
m_3D_Rotation = new S3DPOINT_VALUE_CTRL( m_Panel3D, m_bSizerShapeRotation );
|
2011-01-16 12:49:58 +00:00
|
|
|
|
|
|
|
// if m_3D_ShapeNameListBox is not empty, preselect first 3D shape
|
|
|
|
if( m_3D_ShapeNameListBox->GetCount() > 0 )
|
|
|
|
{
|
|
|
|
m_LastSelected3DShapeIndex = 0;
|
|
|
|
m_3D_ShapeNameListBox->SetSelection( m_LastSelected3DShapeIndex );
|
|
|
|
Transfert3DValuesToDisplay( m_Shapes3D_list[m_LastSelected3DShapeIndex] );
|
|
|
|
}
|
2013-03-04 12:08:35 +00:00
|
|
|
|
|
|
|
// We have modified the UI, so call Fit() for m_Panel3D
|
|
|
|
// to be sure the m_Panel3D sizers are initiliazed before opening the dialog
|
|
|
|
m_Panel3D->GetSizer()->Fit( m_Panel3D );
|
2009-08-11 10:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialize 3D info displayed in dialog box from values in aStruct3DSource
|
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::Transfert3DValuesToDisplay(
|
|
|
|
S3D_MASTER* aStruct3DSource )
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
|
|
|
if( aStruct3DSource )
|
|
|
|
{
|
|
|
|
m_3D_Scale->SetValue( aStruct3DSource->m_MatScale );
|
|
|
|
|
|
|
|
m_3D_Offset->SetValue( aStruct3DSource->m_MatPosition );
|
|
|
|
|
|
|
|
m_3D_Rotation->SetValue( aStruct3DSource->m_MatRotation );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-09 18:18:04 +00:00
|
|
|
S3DPOINT dummy_vertex( 1.0, 1.0, 1.0 );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_3D_Scale->SetValue( dummy_vertex );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
/** Copy 3D info displayed in dialog box to values in a item in m_Shapes3D_list
|
|
|
|
* @param aIndexSelection = item index in m_Shapes3D_list
|
|
|
|
*/
|
2009-11-14 22:15:22 +00:00
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::TransfertDisplayTo3DValues(
|
|
|
|
int aIndexSelection )
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
2009-11-04 19:08:08 +00:00
|
|
|
if( aIndexSelection >= (int) m_Shapes3D_list.size() )
|
2009-08-11 10:27:21 +00:00
|
|
|
return;
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
S3D_MASTER* struct3DDest = m_Shapes3D_list[aIndexSelection];
|
2009-08-11 10:27:21 +00:00
|
|
|
struct3DDest->m_MatScale = m_3D_Scale->GetValue();
|
|
|
|
struct3DDest->m_MatRotation = m_3D_Rotation->GetValue();
|
|
|
|
struct3DDest->m_MatPosition = m_3D_Offset->GetValue();
|
|
|
|
}
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::On3DShapeNameSelected( wxCommandEvent& event )
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
|
|
|
if( m_LastSelected3DShapeIndex >= 0 )
|
|
|
|
TransfertDisplayTo3DValues( m_LastSelected3DShapeIndex );
|
|
|
|
m_LastSelected3DShapeIndex = m_3D_ShapeNameListBox->GetSelection();
|
2009-08-17 19:04:51 +00:00
|
|
|
|
2009-11-14 22:15:22 +00:00
|
|
|
if( m_LastSelected3DShapeIndex < 0 ) // happens under wxGTK when
|
|
|
|
// deleting an item in
|
|
|
|
// m_3D_ShapeNameListBox wxListBox
|
2009-11-04 19:08:08 +00:00
|
|
|
return;
|
2009-08-17 19:04:51 +00:00
|
|
|
|
|
|
|
if( m_LastSelected3DShapeIndex >= (int) m_Shapes3D_list.size() )
|
|
|
|
{
|
2009-11-04 19:08:08 +00:00
|
|
|
wxMessageBox( wxT( "On3DShapeNameSelected() error" ) );
|
2009-08-17 19:04:51 +00:00
|
|
|
m_LastSelected3DShapeIndex = -1;
|
|
|
|
return;
|
|
|
|
}
|
2009-08-11 10:27:21 +00:00
|
|
|
Transfert3DValuesToDisplay( m_Shapes3D_list[m_LastSelected3DShapeIndex] );
|
|
|
|
}
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::Add3DShape( wxCommandEvent& event )
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
|
|
|
Browse3DLib( event );
|
|
|
|
}
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::Remove3DShape( wxCommandEvent& event )
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
|
|
|
if( m_LastSelected3DShapeIndex >= 0 )
|
|
|
|
TransfertDisplayTo3DValues( m_LastSelected3DShapeIndex );
|
|
|
|
|
|
|
|
int ii = m_3D_ShapeNameListBox->GetSelection();
|
|
|
|
if( ii < 0 )
|
|
|
|
return;
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
m_Shapes3D_list.erase( m_Shapes3D_list.begin() + ii );
|
|
|
|
m_3D_ShapeNameListBox->Delete( ii );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
if( m_3D_ShapeNameListBox->GetCount() == 0 )
|
2009-08-11 10:27:21 +00:00
|
|
|
Transfert3DValuesToDisplay( NULL );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_LastSelected3DShapeIndex = 0;
|
2009-11-04 19:08:08 +00:00
|
|
|
m_3D_ShapeNameListBox->SetSelection( m_LastSelected3DShapeIndex );
|
2009-11-14 22:15:22 +00:00
|
|
|
Transfert3DValuesToDisplay(
|
|
|
|
m_Shapes3D_list[m_LastSelected3DShapeIndex] );
|
2009-08-11 10:27:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::Browse3DLib( wxCommandEvent& event )
|
|
|
|
{
|
* 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
|
|
|
PROJECT& prj = Prj();
|
|
|
|
SEARCH_STACK& search = Kiface().KifaceSearch();
|
|
|
|
|
|
|
|
wxString fullpath;
|
|
|
|
wxString kisys3dmod = wxGetenv( wxT( KISYS3DMOD ) );
|
|
|
|
|
|
|
|
if( !kisys3dmod || !wxFileName::IsDirReadable( kisys3dmod ) )
|
|
|
|
{
|
|
|
|
fullpath = search.FindValidPath( LIB3D_PATH );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !fullpath )
|
2014-06-10 15:56:43 +00:00
|
|
|
{
|
|
|
|
fullpath = prj.GetRString( PROJECT::VIEWER_3D_PATH );
|
|
|
|
if( !fullpath )
|
|
|
|
fullpath = search.LastVisitedPath( LIB3D_PATH );
|
|
|
|
}
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
fullpath.Replace( wxT( "/" ), wxT( "\\" ) );
|
|
|
|
#endif
|
2013-03-27 18:34:23 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
wxString fullfilename;
|
|
|
|
wxString shortfilename;
|
|
|
|
|
|
|
|
wxString fileFilters = wxGetTranslation( Shapes3DFileWildcard );
|
|
|
|
|
|
|
|
fileFilters += wxChar( '|' );
|
2014-01-25 12:23:29 +00:00
|
|
|
fileFilters += wxGetTranslation( IDF3DFileWildcard );
|
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
fullfilename = EDA_FileSelector( _( "3D Shape:" ),
|
2009-11-14 22:15:22 +00:00
|
|
|
fullpath,
|
|
|
|
wxEmptyString,
|
2013-03-27 18:34:23 +00:00
|
|
|
wxEmptyString,
|
2014-01-25 12:23:29 +00:00
|
|
|
wxGetTranslation( fileFilters ),
|
2009-08-11 10:27:21 +00:00
|
|
|
this,
|
|
|
|
wxFD_OPEN,
|
2012-01-22 17:20:22 +00:00
|
|
|
true
|
2009-08-11 10:27:21 +00:00
|
|
|
);
|
|
|
|
|
2013-03-27 18:34:23 +00:00
|
|
|
if( fullfilename.IsEmpty() )
|
2009-08-11 10:27:21 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
wxFileName fn = fullfilename;
|
* 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
|
|
|
|
2014-06-10 15:56:43 +00:00
|
|
|
prj.SetRString( PROJECT::VIEWER_3D_PATH, fn.GetPath() );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
/* If the file path is already in the library search paths
|
|
|
|
* list, just add the library name to the list. Otherwise, add
|
|
|
|
* the library name with the full or relative path.
|
|
|
|
* the relative path, when possible is preferable,
|
2009-11-14 22:15:22 +00:00
|
|
|
* because it preserve use of default libraries paths, when the path is a
|
|
|
|
* sub path of these default paths
|
2009-08-11 10:27:21 +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
|
|
|
shortfilename = search.FilenameWithRelativePathInSearchList( fullfilename );
|
2010-01-20 12:43:05 +00:00
|
|
|
|
|
|
|
wxFileName aux = shortfilename;
|
|
|
|
if( aux.IsAbsolute() )
|
2014-06-10 15:56:43 +00:00
|
|
|
{
|
2014-03-20 06:24:33 +00:00
|
|
|
// Absolute path, ask if the user wants a relative one
|
2010-01-20 12:43:05 +00:00
|
|
|
int diag = wxMessageBox(
|
|
|
|
_( "Use a relative path?" ),
|
|
|
|
_( "Path type" ),
|
|
|
|
wxYES_NO | wxICON_QUESTION, this );
|
|
|
|
|
|
|
|
if( diag == wxYES )
|
2014-06-10 15:56:43 +00:00
|
|
|
{
|
2014-03-20 06:24:33 +00:00
|
|
|
// Make it relative
|
2010-01-20 12:43:05 +00:00
|
|
|
aux.MakeRelativeTo( wxT(".") );
|
|
|
|
shortfilename = aux.GetPathWithSep() + aux.GetFullName();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
S3D_MASTER* new3DShape = new S3D_MASTER( NULL );
|
* 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
|
|
|
|
2012-08-21 10:45:54 +00:00
|
|
|
#ifdef __WINDOWS__
|
|
|
|
// Store filename in Unix notation
|
|
|
|
shortfilename.Replace( wxT( "\\" ), wxT( "/" ) );
|
|
|
|
#endif
|
* 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
|
|
|
|
2014-01-25 12:23:29 +00:00
|
|
|
new3DShape->SetShape3DName( shortfilename );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_Shapes3D_list.push_back( new3DShape );
|
|
|
|
m_3D_ShapeNameListBox->Append( shortfilename );
|
|
|
|
|
|
|
|
if( m_LastSelected3DShapeIndex >= 0 )
|
|
|
|
TransfertDisplayTo3DValues( m_LastSelected3DShapeIndex );
|
|
|
|
|
|
|
|
m_LastSelected3DShapeIndex = m_3D_ShapeNameListBox->GetCount() - 1;
|
2009-11-04 19:08:08 +00:00
|
|
|
m_3D_ShapeNameListBox->SetSelection( m_LastSelected3DShapeIndex );
|
2009-08-11 10:27:21 +00:00
|
|
|
Transfert3DValuesToDisplay( m_Shapes3D_list[m_LastSelected3DShapeIndex] );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::OnOkClick( wxCommandEvent& event )
|
|
|
|
{
|
2009-11-14 22:15:22 +00:00
|
|
|
wxPoint modpos;
|
2009-11-04 19:08:08 +00:00
|
|
|
wxString msg;
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2011-12-21 13:42:02 +00:00
|
|
|
if( m_CurrentModule->GetFlags() == 0 ) // this is a simple edition, we
|
2009-11-14 22:15:22 +00:00
|
|
|
// must create an undo entry
|
2009-08-11 10:27:21 +00:00
|
|
|
m_Parent->SaveCopyInUndoList( m_CurrentModule, UR_CHANGED );
|
|
|
|
|
|
|
|
if( m_DC )
|
|
|
|
{
|
2011-12-22 13:28:11 +00:00
|
|
|
m_Parent->GetCanvas()->CrossHairOff( m_DC );
|
|
|
|
m_CurrentModule->Draw( m_Parent->GetCanvas(), m_DC, GR_XOR );
|
2009-08-11 10:27:21 +00:00
|
|
|
}
|
|
|
|
|
2012-04-06 18:03:16 +00:00
|
|
|
// Init Fields (should be first, because they can be moved or/and flipped later):
|
2013-03-13 18:53:58 +00:00
|
|
|
m_CurrentModule->Reference().Copy( m_ReferenceCopy );
|
|
|
|
m_CurrentModule->Value().Copy( m_ValueCopy );
|
2012-04-06 18:03:16 +00:00
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
// Initialize masks clearances
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
m_CurrentModule->SetLocalClearance( ValueFromTextCtrl( *m_NetClearanceValueCtrl ) );
|
|
|
|
m_CurrentModule->SetLocalSolderMaskMargin( ValueFromTextCtrl( *m_SolderMaskMarginCtrl ) );
|
|
|
|
m_CurrentModule->SetLocalSolderPasteMargin( ValueFromTextCtrl( *m_SolderPasteMarginCtrl ) );
|
2012-02-19 04:02:19 +00:00
|
|
|
|
2010-01-31 20:01:46 +00:00
|
|
|
double dtmp = 0.0;
|
2009-11-04 19:08:08 +00:00
|
|
|
msg = m_SolderPasteMarginRatioCtrl->GetValue();
|
|
|
|
msg.ToDouble( &dtmp );
|
2009-11-14 22:15:22 +00:00
|
|
|
|
2012-05-18 08:33:57 +00:00
|
|
|
// A -50% margin ratio means no paste on a pad, the ratio must be >= -50%
|
|
|
|
if( dtmp < -50.0 )
|
|
|
|
dtmp = -50.0;
|
|
|
|
// A margin ratio is always <= 0
|
|
|
|
// 0 means use full pad copper area
|
|
|
|
if( dtmp > 0.0 )
|
|
|
|
dtmp = 0.0;
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2012-02-19 04:02:19 +00:00
|
|
|
m_CurrentModule->SetLocalSolderPasteMarginRatio( dtmp / 100 );
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2012-02-24 23:23:46 +00:00
|
|
|
switch( m_ZoneConnectionChoice->GetSelection() )
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0:
|
|
|
|
m_CurrentModule->SetZoneConnection( UNDEFINED_CONNECTION );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
m_CurrentModule->SetZoneConnection( PAD_IN_ZONE );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
m_CurrentModule->SetZoneConnection( THERMAL_PAD );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
m_CurrentModule->SetZoneConnection( PAD_NOT_IN_ZONE );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
// Set Module Position
|
* 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
|
|
|
modpos.x = ValueFromTextCtrl( *m_ModPositionX );
|
|
|
|
modpos.y = ValueFromTextCtrl( *m_ModPositionY );
|
2009-11-04 19:08:08 +00:00
|
|
|
m_CurrentModule->SetPosition( modpos );
|
2013-03-13 18:53:58 +00:00
|
|
|
m_CurrentModule->SetLocked( m_AutoPlaceCtrl->GetSelection() == 1 );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
switch( m_AttributsCtrl->GetSelection() )
|
|
|
|
{
|
|
|
|
case 0:
|
2013-03-13 18:53:58 +00:00
|
|
|
m_CurrentModule->SetAttributes( 0 );
|
2009-08-11 10:27:21 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2013-03-13 18:53:58 +00:00
|
|
|
m_CurrentModule->SetAttributes( MOD_CMS );
|
2009-08-11 10:27:21 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2013-03-13 18:53:58 +00:00
|
|
|
m_CurrentModule->SetAttributes( MOD_VIRTUAL );
|
2009-08-11 10:27:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-03-13 18:53:58 +00:00
|
|
|
m_CurrentModule->SetPlacementCost90( m_CostRot90Ctrl->GetValue() );
|
|
|
|
m_CurrentModule->SetPlacementCost180( m_CostRot180Ctrl->GetValue() );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2010-05-03 15:24:54 +00:00
|
|
|
/* Now, set orientation. must be made after others changes,
|
|
|
|
* because rotation changes fields positions on board according to the new orientation
|
|
|
|
* (relative positions are not modified)
|
|
|
|
*/
|
|
|
|
long orient = 0;
|
|
|
|
msg = m_OrientValue->GetValue();
|
|
|
|
msg.ToLong( &orient );
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2013-03-13 18:53:58 +00:00
|
|
|
if( m_CurrentModule->GetOrientation() != orient )
|
|
|
|
m_CurrentModule->Rotate( m_CurrentModule->GetPosition(),
|
|
|
|
orient - m_CurrentModule->GetOrientation() );
|
2010-05-03 15:24:54 +00:00
|
|
|
|
|
|
|
// Set component side, that also have effect on the fields positions on board
|
2012-01-22 17:20:22 +00:00
|
|
|
bool change_layer = false;
|
2010-05-03 15:24:54 +00:00
|
|
|
if( m_LayerCtrl->GetSelection() == 0 ) // layer req = COMPONENT
|
|
|
|
{
|
2014-06-24 16:17:18 +00:00
|
|
|
if( m_CurrentModule->GetLayer() == B_Cu )
|
2012-01-22 17:20:22 +00:00
|
|
|
change_layer = true;
|
2010-05-03 15:24:54 +00:00
|
|
|
}
|
2014-06-24 16:17:18 +00:00
|
|
|
else if( m_CurrentModule->GetLayer() == F_Cu )
|
2012-01-22 17:20:22 +00:00
|
|
|
change_layer = true;
|
2010-05-03 15:24:54 +00:00
|
|
|
|
|
|
|
if( change_layer )
|
2013-03-13 18:53:58 +00:00
|
|
|
m_CurrentModule->Flip( m_CurrentModule->GetPosition() );
|
2010-05-03 15:24:54 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
// Update 3D shape list
|
* 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
|
|
|
int ii = m_3D_ShapeNameListBox->GetSelection();
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
if( ii >= 0 )
|
2009-08-11 10:27:21 +00:00
|
|
|
TransfertDisplayTo3DValues( ii );
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2013-03-18 19:36:07 +00:00
|
|
|
S3D_MASTER* draw3D = m_CurrentModule->Models();
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
for( unsigned ii = 0; ii < m_Shapes3D_list.size(); ii++ )
|
|
|
|
{
|
2009-11-04 19:08:08 +00:00
|
|
|
S3D_MASTER* draw3DCopy = m_Shapes3D_list[ii];
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2014-01-25 12:23:29 +00:00
|
|
|
if( draw3DCopy->GetShape3DName().IsEmpty() )
|
2009-08-11 10:27:21 +00:00
|
|
|
continue;
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
if( draw3D == NULL )
|
|
|
|
{
|
|
|
|
draw3D = new S3D_MASTER( draw3D );
|
2013-03-18 19:36:07 +00:00
|
|
|
m_CurrentModule->Models().Append( draw3D );
|
2009-08-11 10:27:21 +00:00
|
|
|
}
|
|
|
|
|
2014-01-25 12:23:29 +00:00
|
|
|
draw3D->SetShape3DName( draw3DCopy->GetShape3DName() );
|
2009-08-11 10:27:21 +00:00
|
|
|
draw3D->m_MatScale = draw3DCopy->m_MatScale;
|
|
|
|
draw3D->m_MatRotation = draw3DCopy->m_MatRotation;
|
|
|
|
draw3D->m_MatPosition = draw3DCopy->m_MatPosition;
|
|
|
|
|
|
|
|
draw3D = draw3D->Next();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove old extra 3D shapes
|
|
|
|
S3D_MASTER* nextdraw3D;
|
2011-12-22 13:28:11 +00:00
|
|
|
|
2009-08-11 10:27:21 +00:00
|
|
|
for( ; draw3D != NULL; draw3D = nextdraw3D )
|
|
|
|
{
|
|
|
|
nextdraw3D = (S3D_MASTER*) draw3D->Next();
|
2013-03-18 19:36:07 +00:00
|
|
|
delete m_CurrentModule->Models().Remove( draw3D );
|
2009-08-11 10:27:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fill shape list with one void entry, if no entry
|
2013-03-18 19:36:07 +00:00
|
|
|
if( m_CurrentModule->Models() == NULL )
|
|
|
|
m_CurrentModule->Models().PushBack( new S3D_MASTER( m_CurrentModule ) );
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
|
2011-09-07 19:41:04 +00:00
|
|
|
m_CurrentModule->CalculateBoundingBox();
|
2009-08-11 10:27:21 +00:00
|
|
|
|
2010-02-19 13:23:58 +00:00
|
|
|
m_Parent->OnModify();
|
2009-08-11 10:27:21 +00:00
|
|
|
|
|
|
|
EndModal( 1 );
|
|
|
|
|
|
|
|
if( m_DC )
|
|
|
|
{
|
2011-12-22 13:28:11 +00:00
|
|
|
m_CurrentModule->Draw( m_Parent->GetCanvas(), m_DC, GR_OR );
|
|
|
|
m_Parent->GetCanvas()->CrossHairOn( m_DC );
|
2009-08-11 10:27:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::OnEditReference( wxCommandEvent& event )
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
2013-08-03 05:15:23 +00:00
|
|
|
wxPoint tmp = m_Parent->GetCrossHairPosition();
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
m_Parent->SetCrossHairPosition( m_ReferenceCopy->GetTextPosition() );
|
2009-11-04 19:08:08 +00:00
|
|
|
m_ReferenceCopy->SetParent( m_CurrentModule );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_Parent->InstallTextModOptionsFrame( m_ReferenceCopy, NULL );
|
2013-08-03 05:15:23 +00:00
|
|
|
m_Parent->SetCrossHairPosition( tmp );
|
2013-03-18 19:36:07 +00:00
|
|
|
m_ReferenceCtrl->SetValue( m_ReferenceCopy->GetText() );
|
2009-08-11 10:27:21 +00:00
|
|
|
}
|
|
|
|
|
2009-11-04 19:08:08 +00:00
|
|
|
|
|
|
|
void DIALOG_MODULE_BOARD_EDITOR::OnEditValue( wxCommandEvent& event )
|
2009-08-11 10:27:21 +00:00
|
|
|
{
|
2013-08-03 05:15:23 +00:00
|
|
|
wxPoint tmp = m_Parent->GetCrossHairPosition();
|
2009-11-04 19:08:08 +00:00
|
|
|
|
2013-08-03 05:15:23 +00:00
|
|
|
m_Parent->SetCrossHairPosition( m_ValueCopy->GetTextPosition() );
|
2009-11-04 19:08:08 +00:00
|
|
|
m_ValueCopy->SetParent( m_CurrentModule );
|
2009-08-11 10:27:21 +00:00
|
|
|
m_Parent->InstallTextModOptionsFrame( m_ValueCopy, NULL );
|
2013-08-03 05:15:23 +00:00
|
|
|
m_Parent->SetCrossHairPosition( tmp );
|
2013-03-18 19:36:07 +00:00
|
|
|
m_ValueCtrl->SetValue( m_ValueCopy->GetText() );
|
2009-08-11 10:27:21 +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
|
|
|
|