kicad/eeschema/dialogs/dialog_lib_edit_text.cpp

219 lines
6.4 KiB
C++
Raw Normal View History

/**
* @file dialog_lib_edit_text.cpp
* @brief dialog to editing graphic texts (not fields) in bodu components.
*/
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 20011 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
* Copyright (C) 2004-2011 KiCad Developers, see change_log.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, you may find one here:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
* or you may search the http://www.gnu.org website for the version 2 license,
* or you may write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "fctsys.h"
#include "gr_basic.h"
#include "common.h"
#include "class_drawpanel.h"
#include "general.h"
2010-02-16 16:21:52 +00:00
#include "libeditframe.h"
#include "class_libentry.h"
#include "lib_text.h"
2010-11-17 21:47:27 +00:00
#include "dialog_lib_edit_text.h"
DIALOG_LIB_EDIT_TEXT::DIALOG_LIB_EDIT_TEXT( LIB_EDIT_FRAME* aParent, LIB_TEXT* aText ) :
2010-11-17 21:47:27 +00:00
DIALOG_LIB_EDIT_TEXT_BASE( aParent )
{
m_Parent = aParent;
2010-11-17 21:47:27 +00:00
m_GraphicText = aText;
initDlg();
GetSizer()->SetSizeHints(this);
Centre();
}
void DIALOG_LIB_EDIT_TEXT::initDlg( )
{
wxString msg;
m_TextValue->SetFocus();
if ( m_GraphicText )
{
msg = ReturnStringFromValue( g_UserUnit, m_GraphicText->m_Size.x,
m_Parent->GetInternalUnits() );
m_TextSize->SetValue( msg );
m_TextValue->SetValue( m_GraphicText->m_Text );
if ( m_GraphicText->GetUnit() == 0 )
m_CommonUnit->SetValue( TRUE );
if ( m_GraphicText->GetConvert() == 0 )
m_CommonConvert->SetValue( TRUE );
if ( m_GraphicText->m_Orient == TEXT_ORIENT_VERT )
m_Orient->SetValue( TRUE );
int shape = 0;
if ( m_GraphicText->m_Italic )
shape = 1;
if ( m_GraphicText->m_Bold )
shape |= 2;
m_TextShapeOpt->SetSelection( shape );
switch ( m_GraphicText->m_HJustify )
{
case GR_TEXT_HJUSTIFY_LEFT:
2010-11-17 21:47:27 +00:00
m_TextHJustificationOpt->SetSelection( 0 );
break;
case GR_TEXT_HJUSTIFY_CENTER:
2010-11-17 21:47:27 +00:00
m_TextHJustificationOpt->SetSelection( 1 );
break;
case GR_TEXT_HJUSTIFY_RIGHT:
2010-11-17 21:47:27 +00:00
m_TextHJustificationOpt->SetSelection( 2 );
break;
}
switch ( m_GraphicText->m_VJustify )
{
case GR_TEXT_VJUSTIFY_BOTTOM:
2010-11-17 21:47:27 +00:00
m_TextVJustificationOpt->SetSelection( 0 );
break;
case GR_TEXT_VJUSTIFY_CENTER:
2010-11-17 21:47:27 +00:00
m_TextVJustificationOpt->SetSelection( 1 );
break;
case GR_TEXT_VJUSTIFY_TOP:
2010-11-17 21:47:27 +00:00
m_TextVJustificationOpt->SetSelection( 2 );
break;
}
}
else
{
msg = ReturnStringFromValue( g_UserUnit, m_Parent->m_textSize,
m_Parent->GetInternalUnits() );
m_TextSize->SetValue( msg );
if ( ! m_Parent->m_drawSpecificUnit )
m_CommonUnit->SetValue( TRUE );
if ( ! m_Parent->m_drawSpecificConvert )
m_CommonConvert->SetValue( TRUE );
if ( m_Parent->m_textOrientation == TEXT_ORIENT_VERT )
m_Orient->SetValue( TRUE );
}
msg = m_TextSizeText->GetLabel() + ReturnUnitSymbol();
m_TextSizeText->SetLabel( msg );
2011-04-19 16:30:28 +00:00
m_sdbSizerButtonsOK->SetDefault();
}
2010-11-17 21:47:27 +00:00
void DIALOG_LIB_EDIT_TEXT::OnCancelClick( wxCommandEvent& event )
{
EndModal(wxID_CANCEL);
}
/* Updates the different parameters for the component being edited */
2010-11-17 21:47:27 +00:00
void DIALOG_LIB_EDIT_TEXT::OnOkClick( wxCommandEvent& event )
{
wxString Line;
Line = m_TextValue->GetValue();
m_Parent->m_textOrientation = m_Orient->GetValue() ? TEXT_ORIENT_VERT : TEXT_ORIENT_HORIZ;
wxString msg = m_TextSize->GetValue();
m_Parent->m_textSize = ReturnValueFromString( g_UserUnit, msg, m_Parent->GetInternalUnits() );
m_Parent->m_drawSpecificConvert = m_CommonConvert->GetValue() ? false : true;
m_Parent->m_drawSpecificUnit = m_CommonUnit->GetValue() ? false : true;
2010-11-17 21:47:27 +00:00
if( m_GraphicText )
{
2010-11-17 21:47:27 +00:00
if( ! Line.IsEmpty() )
m_GraphicText->SetText( Line );
else
m_GraphicText->SetText( wxT( "[null]" ) );
m_GraphicText->m_Size.x = m_GraphicText->m_Size.y = m_Parent->m_textSize;
m_GraphicText->m_Orient = m_Parent->m_textOrientation;
if( m_Parent->m_drawSpecificUnit )
m_GraphicText->SetUnit( m_Parent->GetUnit() );
else
m_GraphicText->SetUnit( 0 );
if( m_Parent->m_drawSpecificConvert )
m_GraphicText->SetConvert( m_Parent->GetConvert() );
else
m_GraphicText->SetConvert( 0 );
2010-11-17 21:47:27 +00:00
if( ( m_TextShapeOpt->GetSelection() & 1 ) != 0 )
m_GraphicText->m_Italic = true;
else
m_GraphicText->m_Italic = false;
2010-11-17 21:47:27 +00:00
if( ( m_TextShapeOpt->GetSelection() & 2 ) != 0 )
m_GraphicText->m_Bold = true;
else
m_GraphicText->m_Bold = false;
2010-11-17 21:47:27 +00:00
switch( m_TextHJustificationOpt->GetSelection() )
{
case 0:
m_GraphicText->m_HJustify = GR_TEXT_HJUSTIFY_LEFT;
break;
case 1:
m_GraphicText->m_HJustify = GR_TEXT_HJUSTIFY_CENTER;
break;
case 2:
m_GraphicText->m_HJustify = GR_TEXT_HJUSTIFY_RIGHT;
break;
}
2010-11-17 21:47:27 +00:00
switch( m_TextVJustificationOpt->GetSelection() )
{
case 0:
m_GraphicText->m_VJustify = GR_TEXT_VJUSTIFY_BOTTOM;
break;
case 1:
m_GraphicText->m_VJustify = GR_TEXT_VJUSTIFY_CENTER;
break;
case 2:
m_GraphicText->m_VJustify = GR_TEXT_VJUSTIFY_TOP;
break;
}
}
2010-11-17 21:47:27 +00:00
if( m_Parent->GetDrawItem() )
m_Parent->GetDrawItem()->DisplayInfo( m_Parent );
EndModal(wxID_OK);
}