2011-11-12 09:51:06 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2014-10-21 15:48:00 +00:00
|
|
|
* Copyright (C) 2001 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
2021-01-13 14:40:30 +00:00
|
|
|
* Copyright (C) 2004-2021 KiCad Developers, see change_log.txt for contributors.
|
2011-11-12 09:51:06 +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
|
|
|
|
*/
|
2008-12-28 18:00:37 +00:00
|
|
|
|
2020-10-31 01:27:16 +00:00
|
|
|
#include <symbol_edit_frame.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <lib_text.h>
|
2020-05-23 15:50:08 +00:00
|
|
|
#include <settings/settings_manager.h>
|
2021-08-06 19:54:26 +00:00
|
|
|
#include <dialog_lib_text_properties.h>
|
2020-10-31 01:27:16 +00:00
|
|
|
#include <symbol_editor/symbol_editor_settings.h>
|
2020-12-12 03:13:52 +00:00
|
|
|
#include <tools/symbol_editor_drawing_tools.h>
|
2022-07-11 02:37:06 +00:00
|
|
|
#include "confirm.h"
|
2008-12-28 18:00:37 +00:00
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
DIALOG_LIB_TEXT_PROPERTIES::DIALOG_LIB_TEXT_PROPERTIES( SYMBOL_EDIT_FRAME* aParent,
|
|
|
|
LIB_TEXT* aText ) :
|
|
|
|
DIALOG_LIB_TEXT_PROPERTIES_BASE( aParent ),
|
|
|
|
m_posX( aParent, m_xPosLabel, m_xPosCtrl, m_xPosUnits, true ),
|
|
|
|
m_posY( aParent, m_yPosLabel, m_yPosCtrl, m_yPosUnits, true ),
|
|
|
|
m_textSize( aParent, m_textSizeLabel, m_textSizeCtrl, m_textSizeUnits, true )
|
2008-12-28 18:00:37 +00:00
|
|
|
{
|
2012-02-21 17:47:30 +00:00
|
|
|
m_parent = aParent;
|
|
|
|
m_graphicText = aText;
|
2018-05-24 07:12:43 +00:00
|
|
|
|
|
|
|
// Disable options for fieldedit, not existing in graphic text
|
|
|
|
m_visible->Show( false );
|
|
|
|
m_TextValueSelectButton->Hide();
|
|
|
|
|
2021-09-27 12:24:53 +00:00
|
|
|
m_note->SetFont( KIUI::GetInfoFont( this ).Italic() );
|
|
|
|
m_note->Show( false );
|
2018-07-18 16:59:05 +00:00
|
|
|
|
2020-05-27 22:28:36 +00:00
|
|
|
SetInitialFocus( m_TextCtrl );
|
|
|
|
m_StyledTextCtrl->Show( false );
|
2018-05-24 07:12:43 +00:00
|
|
|
|
2021-02-10 22:56:26 +00:00
|
|
|
if( !aParent->IsSymbolEditable() || aParent->IsSymbolAlias() )
|
2020-12-22 02:29:27 +00:00
|
|
|
{
|
|
|
|
m_sdbSizerButtonsCancel->SetDefault();
|
|
|
|
m_sdbSizerButtonsOK->SetLabel( _( "Read Only" ) );
|
|
|
|
m_sdbSizerButtonsOK->Enable( false );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_sdbSizerButtonsOK->SetDefault();
|
|
|
|
}
|
2011-11-12 09:51:06 +00:00
|
|
|
|
2016-07-18 07:04:13 +00:00
|
|
|
// Now all widgets have the size fixed, call FinishDialogSettings
|
2020-11-16 11:16:44 +00:00
|
|
|
finishDialogSettings();
|
2008-12-28 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
bool DIALOG_LIB_TEXT_PROPERTIES::TransferDataToWindow()
|
2008-12-28 18:00:37 +00:00
|
|
|
{
|
2017-01-23 20:30:11 +00:00
|
|
|
if( m_graphicText )
|
2009-09-04 18:57:37 +00:00
|
|
|
{
|
2018-07-06 17:03:57 +00:00
|
|
|
m_posX.SetValue( m_graphicText->GetPosition().x );
|
|
|
|
m_posY.SetValue( m_graphicText->GetPosition().y );
|
2018-05-24 07:12:43 +00:00
|
|
|
m_textSize.SetValue( m_graphicText->GetTextWidth() );
|
2020-05-27 22:28:36 +00:00
|
|
|
m_TextCtrl->SetValue( m_graphicText->GetText() );
|
2009-09-04 18:57:37 +00:00
|
|
|
|
2018-07-06 17:03:57 +00:00
|
|
|
m_italic->SetValue( m_graphicText->IsItalic() );
|
|
|
|
m_bold->SetValue( m_graphicText->IsBold() );
|
2018-05-24 07:12:43 +00:00
|
|
|
m_CommonUnit->SetValue( m_graphicText->GetUnit() == 0 );
|
|
|
|
m_CommonConvert->SetValue( m_graphicText->GetConvert() == 0 );
|
2018-07-06 17:03:57 +00:00
|
|
|
m_orientChoice->SetSelection( m_graphicText->GetTextAngle() == TEXT_ANGLE_HORIZ ? 0 : 1 );
|
2009-09-04 18:57:37 +00:00
|
|
|
|
2013-03-18 19:36:07 +00:00
|
|
|
switch ( m_graphicText->GetHorizJustify() )
|
2009-06-11 14:26:17 +00:00
|
|
|
{
|
2018-07-06 17:03:57 +00:00
|
|
|
case GR_TEXT_HJUSTIFY_LEFT: m_hAlignChoice->SetSelection( 0 ); break;
|
|
|
|
case GR_TEXT_HJUSTIFY_CENTER: m_hAlignChoice->SetSelection( 1 ); break;
|
|
|
|
case GR_TEXT_HJUSTIFY_RIGHT: m_hAlignChoice->SetSelection( 2 ); break;
|
2009-06-11 14:26:17 +00:00
|
|
|
}
|
|
|
|
|
2013-03-18 19:36:07 +00:00
|
|
|
switch ( m_graphicText->GetVertJustify() )
|
2009-06-11 14:26:17 +00:00
|
|
|
{
|
2018-07-06 17:03:57 +00:00
|
|
|
case GR_TEXT_VJUSTIFY_TOP: m_vAlignChoice->SetSelection( 0 ); break;
|
|
|
|
case GR_TEXT_VJUSTIFY_CENTER: m_vAlignChoice->SetSelection( 1 ); break;
|
|
|
|
case GR_TEXT_VJUSTIFY_BOTTOM: m_vAlignChoice->SetSelection( 2 ); break;
|
2009-06-11 14:26:17 +00:00
|
|
|
}
|
2009-09-04 18:57:37 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-06-06 22:36:31 +00:00
|
|
|
SYMBOL_EDITOR_SETTINGS* cfg = m_parent->GetSettings();
|
2020-12-12 03:13:52 +00:00
|
|
|
auto* tools = m_parent->GetToolManager()->GetTool<SYMBOL_EDITOR_DRAWING_TOOLS>();
|
2020-05-23 15:50:08 +00:00
|
|
|
|
|
|
|
m_textSize.SetValue( Mils2iu( cfg->m_Defaults.text_size ) );
|
2009-09-04 18:57:37 +00:00
|
|
|
|
2020-05-23 15:50:08 +00:00
|
|
|
m_CommonUnit->SetValue( !tools->GetDrawSpecificUnit() );
|
|
|
|
m_CommonConvert->SetValue( !tools->GetDrawSpecificConvert() );
|
|
|
|
m_orientChoice->SetSelection( tools->GetLastTextAngle() == TEXT_ANGLE_HORIZ ? 0 : 1 );
|
2018-05-24 07:12:43 +00:00
|
|
|
}
|
2015-04-17 18:31:30 +00:00
|
|
|
|
2018-05-24 07:12:43 +00:00
|
|
|
return true;
|
2008-12-28 18:00:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-08-06 19:54:26 +00:00
|
|
|
bool DIALOG_LIB_TEXT_PROPERTIES::TransferDataFromWindow()
|
2008-12-28 18:00:37 +00:00
|
|
|
{
|
2012-02-21 17:47:30 +00:00
|
|
|
if( m_graphicText )
|
2009-09-04 18:57:37 +00:00
|
|
|
{
|
2020-05-27 22:28:36 +00:00
|
|
|
if( m_TextCtrl->GetValue().IsEmpty() )
|
2022-07-11 02:37:06 +00:00
|
|
|
{
|
|
|
|
// Other text items do not have defined extents, and so will disappear if empty
|
|
|
|
DisplayError( this, _( "Text can not be empty." ) );
|
|
|
|
return false;
|
|
|
|
}
|
2018-05-24 07:12:43 +00:00
|
|
|
else
|
2022-07-11 02:37:06 +00:00
|
|
|
{
|
2020-05-27 22:28:36 +00:00
|
|
|
m_graphicText->SetText( m_TextCtrl->GetValue() );
|
2022-07-11 02:37:06 +00:00
|
|
|
}
|
2009-09-04 18:57:37 +00:00
|
|
|
|
2018-07-06 17:03:57 +00:00
|
|
|
m_graphicText->SetPosition( wxPoint( m_posX.GetValue(), m_posY.GetValue() ) );
|
2021-09-03 18:25:23 +00:00
|
|
|
|
|
|
|
if( m_textSize.GetValue() != m_graphicText->GetTextWidth() )
|
|
|
|
m_graphicText->SetTextSize( wxSize( m_textSize.GetValue(), m_textSize.GetValue() ) );
|
2009-09-04 18:57:37 +00:00
|
|
|
|
2020-05-23 15:50:08 +00:00
|
|
|
m_graphicText->SetTextAngle( m_orientChoice->GetSelection() ? TEXT_ANGLE_VERT
|
|
|
|
: TEXT_ANGLE_HORIZ );
|
|
|
|
|
|
|
|
if( !m_CommonUnit->GetValue() )
|
2012-02-21 17:47:30 +00:00
|
|
|
m_graphicText->SetUnit( m_parent->GetUnit() );
|
2009-09-04 18:57:37 +00:00
|
|
|
else
|
2012-02-21 17:47:30 +00:00
|
|
|
m_graphicText->SetUnit( 0 );
|
2009-09-04 18:57:37 +00:00
|
|
|
|
2020-05-23 15:50:08 +00:00
|
|
|
if( !m_CommonConvert->GetValue() )
|
2012-02-21 17:47:30 +00:00
|
|
|
m_graphicText->SetConvert( m_parent->GetConvert() );
|
2009-09-04 18:57:37 +00:00
|
|
|
else
|
2012-02-21 17:47:30 +00:00
|
|
|
m_graphicText->SetConvert( 0 );
|
2009-09-04 18:57:37 +00:00
|
|
|
|
2018-07-06 17:03:57 +00:00
|
|
|
m_graphicText->SetItalic( m_italic->GetValue() );
|
|
|
|
m_graphicText->SetBold( m_bold->GetValue() );
|
2008-12-28 18:00:37 +00:00
|
|
|
|
2018-07-06 17:03:57 +00:00
|
|
|
switch( m_hAlignChoice->GetSelection() )
|
2009-06-11 14:26:17 +00:00
|
|
|
{
|
2018-05-24 07:12:43 +00:00
|
|
|
case 0: m_graphicText->SetHorizJustify( GR_TEXT_HJUSTIFY_LEFT ); break;
|
|
|
|
case 1: m_graphicText->SetHorizJustify( GR_TEXT_HJUSTIFY_CENTER ); break;
|
|
|
|
case 2: m_graphicText->SetHorizJustify( GR_TEXT_HJUSTIFY_RIGHT ); break;
|
2009-06-11 14:26:17 +00:00
|
|
|
}
|
|
|
|
|
2018-07-06 17:03:57 +00:00
|
|
|
switch( m_vAlignChoice->GetSelection() )
|
2009-06-11 14:26:17 +00:00
|
|
|
{
|
2018-05-24 07:12:43 +00:00
|
|
|
case 0: m_graphicText->SetVertJustify( GR_TEXT_VJUSTIFY_TOP ); break;
|
|
|
|
case 1: m_graphicText->SetVertJustify( GR_TEXT_VJUSTIFY_CENTER ); break;
|
|
|
|
case 2: m_graphicText->SetVertJustify( GR_TEXT_VJUSTIFY_BOTTOM ); break;
|
2009-06-11 14:26:17 +00:00
|
|
|
}
|
2020-05-23 15:50:08 +00:00
|
|
|
|
|
|
|
// Record settings used for next time:
|
2020-12-12 03:13:52 +00:00
|
|
|
auto* tools = m_parent->GetToolManager()->GetTool<SYMBOL_EDITOR_DRAWING_TOOLS>();
|
2020-05-23 15:50:08 +00:00
|
|
|
tools->SetLastTextAngle( m_graphicText->GetTextAngle() );
|
|
|
|
tools->SetDrawSpecificConvert( !m_CommonConvert->GetValue() );
|
|
|
|
tools->SetDrawSpecificUnit( !m_CommonUnit->GetValue() );
|
2009-09-04 18:57:37 +00:00
|
|
|
}
|
2008-12-28 18:00:37 +00:00
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
m_parent->SetMsgPanel( m_graphicText );
|
2008-12-28 18:00:37 +00:00
|
|
|
|
2018-05-24 07:12:43 +00:00
|
|
|
return true;
|
2008-12-28 18:00:37 +00:00
|
|
|
}
|