2012-07-17 15:29:29 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2021-01-13 14:40:30 +00:00
|
|
|
* Copyright (C) 2006-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2012-07-17 15:29:29 +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
|
|
|
|
*/
|
|
|
|
|
2019-08-15 07:09:52 +00:00
|
|
|
#include <lib_item.h>
|
2021-08-06 19:54:26 +00:00
|
|
|
#include <dialog_lib_shape_properties.h>
|
2020-10-31 01:27:16 +00:00
|
|
|
#include <symbol_edit_frame.h>
|
2021-03-13 00:07:58 +00:00
|
|
|
#include <confirm.h>
|
2010-07-22 20:12:40 +00:00
|
|
|
|
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
DIALOG_LIB_SHAPE_PROPERTIES::DIALOG_LIB_SHAPE_PROPERTIES( SYMBOL_EDIT_FRAME* aParent,
|
|
|
|
LIB_ITEM* aItem ) :
|
|
|
|
DIALOG_LIB_SHAPE_PROPERTIES_BASE( aParent ),
|
2018-06-14 08:26:11 +00:00
|
|
|
m_frame( aParent ),
|
|
|
|
m_item( aItem ),
|
2018-11-29 18:59:38 +00:00
|
|
|
m_lineWidth( aParent, m_widthLabel, m_widthCtrl, m_widthUnits, true )
|
2010-07-22 20:12:40 +00:00
|
|
|
{
|
2018-06-14 08:26:11 +00:00
|
|
|
SetTitle( aItem->GetTypeName() + wxT( " " ) + GetTitle() );
|
2021-11-29 20:01:41 +00:00
|
|
|
m_helpLabel->SetFont( KIUI::GetInfoFont( this ) );
|
2018-06-14 08:26:11 +00:00
|
|
|
|
|
|
|
SetInitialFocus( m_widthCtrl );
|
2010-07-22 20:12:40 +00:00
|
|
|
|
2010-11-17 21:47:27 +00:00
|
|
|
// Required under wxGTK if we want to dismiss the dialog with the ESC key
|
2010-07-22 20:12:40 +00:00
|
|
|
SetFocus();
|
2020-12-22 02:29:27 +00:00
|
|
|
|
2021-02-10 22:56:26 +00:00
|
|
|
if( !aParent->IsSymbolEditable() || aParent->IsSymbolAlias() )
|
2020-12-22 02:29:27 +00:00
|
|
|
{
|
|
|
|
m_sdbSizerCancel->SetDefault();
|
|
|
|
m_sdbSizerOK->SetLabel( _( "Read Only" ) );
|
|
|
|
m_sdbSizerOK->Enable( false );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_sdbSizerOK->SetDefault();
|
|
|
|
}
|
2016-07-16 10:54:55 +00:00
|
|
|
|
|
|
|
// Now all widgets have the size fixed, call FinishDialogSettings
|
2020-11-16 11:16:44 +00:00
|
|
|
finishDialogSettings();
|
2010-07-22 20:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
bool DIALOG_LIB_SHAPE_PROPERTIES::TransferDataToWindow()
|
2010-07-22 20:12:40 +00:00
|
|
|
{
|
2021-03-13 00:07:58 +00:00
|
|
|
if( !wxDialog::TransferDataToWindow() )
|
|
|
|
return false;
|
|
|
|
|
2021-06-10 18:51:46 +00:00
|
|
|
LIB_SYMBOL* symbol = m_item->GetParent();
|
2021-07-18 23:08:54 +00:00
|
|
|
EDA_SHAPE* shape = dynamic_cast<EDA_SHAPE*>( m_item );
|
|
|
|
|
|
|
|
if( shape )
|
|
|
|
m_lineWidth.SetValue( shape->GetWidth() );
|
2010-07-22 20:12:40 +00:00
|
|
|
|
2018-06-14 08:26:11 +00:00
|
|
|
m_checkApplyToAllUnits->SetValue( m_item->GetUnit() == 0 );
|
|
|
|
m_checkApplyToAllUnits->Enable( symbol && symbol->GetUnitCount() > 1 );
|
2018-10-20 10:38:36 +00:00
|
|
|
m_checkApplyToAllConversions->SetValue( m_item->GetConvert() == 0 );
|
2010-07-22 20:12:40 +00:00
|
|
|
|
2018-06-14 08:26:11 +00:00
|
|
|
bool enblConvOptStyle = symbol && symbol->HasConversion();
|
2021-01-13 14:40:30 +00:00
|
|
|
|
2022-03-24 18:30:53 +00:00
|
|
|
// If a symbol contains no conversion-specific pins or graphic items, symbol->HasConversion()
|
|
|
|
// will return false.
|
|
|
|
// But when creating a new symbol, with DeMorgan option set, the ApplyToAllConversions
|
|
|
|
// must be enabled in order to be able to create graphic items shared by all body styles.
|
2018-06-14 08:26:11 +00:00
|
|
|
if( m_frame->GetShowDeMorgan() )
|
|
|
|
enblConvOptStyle = true;
|
2010-07-22 20:12:40 +00:00
|
|
|
|
2018-06-14 08:26:11 +00:00
|
|
|
m_checkApplyToAllConversions->Enable( enblConvOptStyle );
|
2010-07-22 20:12:40 +00:00
|
|
|
|
2021-07-18 23:08:54 +00:00
|
|
|
if( shape )
|
2021-10-18 00:00:54 +00:00
|
|
|
m_fillCtrl->SetSelection( static_cast<int>( shape->GetFillType() ) - 1 );
|
2021-07-18 23:08:54 +00:00
|
|
|
|
|
|
|
m_fillCtrl->Enable( shape != nullptr );
|
2010-07-22 20:12:40 +00:00
|
|
|
|
2018-06-14 08:26:11 +00:00
|
|
|
return true;
|
2010-07-22 20:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
bool DIALOG_LIB_SHAPE_PROPERTIES::TransferDataFromWindow()
|
2010-07-22 20:12:40 +00:00
|
|
|
{
|
2021-03-13 00:07:58 +00:00
|
|
|
if( !wxDialog::TransferDataFromWindow() )
|
|
|
|
return false;
|
|
|
|
|
2021-07-18 23:08:54 +00:00
|
|
|
EDA_SHAPE* shape = dynamic_cast<EDA_SHAPE*>( m_item );
|
|
|
|
|
|
|
|
if( shape )
|
2021-10-18 00:00:54 +00:00
|
|
|
shape->SetFillMode( static_cast<FILL_T>( std::max( m_fillCtrl->GetSelection() + 1, 1 ) ) );
|
2021-03-13 00:07:58 +00:00
|
|
|
|
2021-07-18 23:08:54 +00:00
|
|
|
if( shape )
|
|
|
|
shape->SetWidth( m_lineWidth.GetValue() );
|
2021-03-13 00:07:58 +00:00
|
|
|
|
|
|
|
if( GetApplyToAllConversions() )
|
|
|
|
m_item->SetConvert( 0 );
|
|
|
|
else
|
|
|
|
m_item->SetConvert( m_frame->GetConvert() );
|
|
|
|
|
|
|
|
if( GetApplyToAllUnits() )
|
|
|
|
m_item->SetUnit( 0 );
|
|
|
|
else
|
|
|
|
m_item->SetUnit( m_frame->GetUnit() );
|
|
|
|
|
|
|
|
return true;
|
2010-07-22 20:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
bool DIALOG_LIB_SHAPE_PROPERTIES::GetApplyToAllConversions()
|
2010-07-22 20:12:40 +00:00
|
|
|
{
|
2018-06-14 08:26:11 +00:00
|
|
|
return m_checkApplyToAllConversions->IsChecked();
|
2010-07-22 20:12:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
bool DIALOG_LIB_SHAPE_PROPERTIES::GetApplyToAllUnits()
|
2010-07-22 20:12:40 +00:00
|
|
|
{
|
2018-06-14 08:26:11 +00:00
|
|
|
return m_checkApplyToAllUnits->IsChecked();
|
2010-07-22 20:12:40 +00:00
|
|
|
}
|
|
|
|
|