kicad/eeschema/dialogs/dialog_edit_label.cpp

245 lines
6.2 KiB
C++
Raw Normal View History

2007-05-06 16:03:28 +00:00
/////////////////////////////////////////////////////////////////////////////
// Name: dialog_edit_label.cpp
// Author: jean-pierre Charras
2008-03-20 01:50:21 +00:00
// Modified by:
// Created: 18/12/2008 15:46:26
// Licence: GPL
2007-05-06 16:03:28 +00:00
/////////////////////////////////////////////////////////////////////////////
#include "fctsys.h"
#include "wx/valgen.h"
#include "wxEeschemaStruct.h"
2007-05-06 16:03:28 +00:00
#include "class_drawpanel.h"
#include "general.h"
2009-12-27 14:01:21 +00:00
#include "drawtxt.h"
#include "confirm.h"
#include "sch_text.h"
2007-05-06 16:03:28 +00:00
#include "dialog_edit_label.h"
2009-12-27 14:01:21 +00:00
/* Edit the properties of the text (Label, Global label, graphic text).. )
* pointed by "aTextStruct"
2009-12-27 14:01:21 +00:00
*/
void SCH_EDIT_FRAME::EditSchematicText( SCH_TEXT* aTextItem )
{
if( aTextItem == NULL )
2009-12-27 14:01:21 +00:00
return;
DialogLabelEditor dialog( this, aTextItem );
dialog.ShowModal();
}
DialogLabelEditor::DialogLabelEditor( SCH_EDIT_FRAME* aParent, SCH_TEXT* aTextItem ) :
DialogLabelEditor_Base( aParent )
2007-05-06 16:03:28 +00:00
{
m_Parent = aParent;
m_CurrentText = aTextItem;
2009-12-27 14:01:21 +00:00
InitDialog();
GetSizer()->SetSizeHints( this );
Layout();
Fit();
SetMinSize( GetBestSize() );
2009-12-27 14:01:21 +00:00
Centre();
2007-05-06 16:03:28 +00:00
}
2009-02-09 20:27:16 +00:00
2009-12-27 14:01:21 +00:00
void DialogLabelEditor::InitDialog()
2007-05-06 16:03:28 +00:00
{
2009-02-09 20:27:16 +00:00
wxString msg;
bool multiLine = false;
2009-11-02 20:36:20 +00:00
if( m_CurrentText->m_MultilineAllowed )
{
m_textLabel = m_textLabelMultiLine;
m_textLabelSingleLine->Show(false);
multiLine = true;
}
else
{
m_textLabel = m_textLabelSingleLine;
m_textLabelMultiLine->Show(false);
}
2008-03-20 01:50:21 +00:00
m_textLabel->SetValue( m_CurrentText->m_Text );
m_textLabel->SetFocus();
2008-03-20 01:50:21 +00:00
switch( m_CurrentText->Type() )
{
case SCH_GLOBAL_LABEL_T:
2009-02-09 20:27:16 +00:00
SetTitle( _( "Global Label Properties" ) );
break;
case SCH_HIERARCHICAL_LABEL_T:
SetTitle( _( "Hierarchical Label Properties" ) );
2009-02-09 20:27:16 +00:00
break;
2008-03-20 01:50:21 +00:00
case SCH_LABEL_T:
2009-02-09 20:27:16 +00:00
SetTitle( _( "Label Properties" ) );
break;
case SCH_SHEET_PIN_T:
SetTitle( _( "Hierarchical Sheet Pin Properties." ) );
break;
2009-02-09 20:27:16 +00:00
default:
SetTitle( _( "Text Properties" ) );
m_textLabel->Disconnect( wxEVT_COMMAND_TEXT_ENTER,
wxCommandEventHandler ( DialogLabelEditor::OnEnterKey ),
NULL, this );
2009-02-09 20:27:16 +00:00
break;
}
2008-03-20 01:50:21 +00:00
2010-12-22 14:11:01 +00:00
int MINTEXTWIDTH = 40; // M's are big characters, a few establish a lot of width
2008-03-20 01:50:21 +00:00
2010-12-22 14:11:01 +00:00
int max_len = 0;
if ( !multiLine )
2009-02-09 20:27:16 +00:00
{
2010-12-22 14:11:01 +00:00
max_len =m_CurrentText->m_Text.Length();
2008-03-20 01:50:21 +00:00
}
else
{
// calculate the length of the biggest line
// we cannot use the length of the entire text that has no meaning
2010-12-22 14:11:01 +00:00
int curr_len = MINTEXTWIDTH;
int imax = m_CurrentText->m_Text.Len();
for( int count = 0; count < imax; count++ )
{
if( m_CurrentText->m_Text[count] == '\n' ||
m_CurrentText->m_Text[count] == '\r' ) // new line
{
curr_len = 0;
}
else
{
curr_len++;
if ( max_len < curr_len )
max_len = curr_len;
}
}
}
2010-12-22 14:11:01 +00:00
if( max_len < MINTEXTWIDTH )
max_len = MINTEXTWIDTH;
wxString textWidth;
textWidth.Append( 'M', MINTEXTWIDTH );
EnsureTextCtrlWidth( m_textLabel, &textWidth );
2009-02-09 20:27:16 +00:00
// Set validators
m_TextOrient->SetSelection( m_CurrentText->GetOrientation() );
2009-02-09 20:27:16 +00:00
m_TextShape->SetSelection( m_CurrentText->m_Shape );
2008-03-20 01:50:21 +00:00
int style = 0;
2009-02-09 20:27:16 +00:00
if( m_CurrentText->m_Italic )
style = 1;
2009-05-28 17:39:40 +00:00
if( m_CurrentText->m_Bold )
style += 2;
2009-02-09 20:27:16 +00:00
m_TextStyle->SetSelection( style );
2008-03-20 01:50:21 +00:00
wxString units = ReturnUnitSymbol( g_UserUnit, wxT( "(%s)" ) );
msg = _( "H" ) + units + _( " x W" ) + units;
m_staticSizeUnits->SetLabel( msg );
2008-03-20 01:50:21 +00:00
msg = ReturnStringFromValue( g_UserUnit, m_CurrentText->m_Size.x,
m_Parent->m_InternalUnits );
2009-02-09 20:27:16 +00:00
m_TextSize->SetValue( msg );
2008-12-20 17:28:25 +00:00
if( m_CurrentText->Type() != SCH_GLOBAL_LABEL_T
&& m_CurrentText->Type() != SCH_HIERARCHICAL_LABEL_T )
2009-02-09 20:27:16 +00:00
{
m_TextShape->Show( false );
}
m_sdbSizer1OK->SetDefault();
2007-05-06 16:03:28 +00:00
}
/*!
* wxTE_PROCESS_ENTER event handler for m_textLabel
*/
void DialogLabelEditor::OnEnterKey( wxCommandEvent& aEvent )
{
TextPropertiesAccept( aEvent );
}
2007-05-06 16:03:28 +00:00
/*!
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_OK
*/
void DialogLabelEditor::OnOkClick( wxCommandEvent& aEvent )
2007-05-06 16:03:28 +00:00
{
TextPropertiesAccept( aEvent );
2007-05-06 16:03:28 +00:00
}
2009-02-09 20:27:16 +00:00
2007-05-06 16:03:28 +00:00
/*!
2007-11-07 04:24:25 +00:00
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL
2007-05-06 16:03:28 +00:00
*/
void DialogLabelEditor::OnCancelClick( wxCommandEvent& aEvent )
2007-05-06 16:03:28 +00:00
{
m_Parent->DrawPanel->MoveCursorToCrossHair();
2009-11-02 20:36:20 +00:00
EndModal( wxID_CANCEL );
2007-05-06 16:03:28 +00:00
}
void DialogLabelEditor::TextPropertiesAccept( wxCommandEvent& aEvent )
2009-12-27 14:01:21 +00:00
{
wxString text;
int value;
/* save old text in undo list if not already in edit */
if( m_CurrentText->m_Flags == 0 )
m_Parent->SaveCopyInUndoList( m_CurrentText, UR_CHANGED );
m_Parent->DrawPanel->RefreshDrawingRect( m_CurrentText->GetBoundingBox() );
2009-12-27 14:01:21 +00:00
text = m_textLabel->GetValue();
2009-12-27 14:01:21 +00:00
if( !text.IsEmpty() )
m_CurrentText->m_Text = text;
else if( (m_CurrentText->m_Flags & IS_NEW) == 0 )
DisplayError( this, _( "Empty Text!" ) );
m_CurrentText->SetOrientation( m_TextOrient->GetSelection() );
2009-12-27 14:01:21 +00:00
text = m_TextSize->GetValue();
value = ReturnValueFromString( g_UserUnit, text, m_Parent->m_InternalUnits );
2009-12-27 14:01:21 +00:00
m_CurrentText->m_Size.x = m_CurrentText->m_Size.y = value;
if( m_TextShape )
m_CurrentText->m_Shape = m_TextShape->GetSelection();
int style = m_TextStyle->GetSelection();
if( ( style & 1 ) )
m_CurrentText->m_Italic = 1;
else
m_CurrentText->m_Italic = 0;
if( ( style & 2 ) )
{
m_CurrentText->m_Bold = true;
m_CurrentText->m_Thickness = GetPenSizeForBold( m_CurrentText->m_Size.x );
2009-12-27 14:01:21 +00:00
}
else
{
m_CurrentText->m_Bold = false;
m_CurrentText->m_Thickness = 0;
2009-12-27 14:01:21 +00:00
}
m_Parent->OnModify();
2009-12-27 14:01:21 +00:00
/* Make the text size as new default size if it is a new text */
if( (m_CurrentText->m_Flags & IS_NEW) != 0 )
g_DefaultTextLabelSize = m_CurrentText->m_Size.x;
m_Parent->DrawPanel->RefreshDrawingRect( m_CurrentText->GetBoundingBox() );
m_Parent->DrawPanel->MoveCursorToCrossHair();
EndModal( wxID_OK );
2009-12-27 14:01:21 +00:00
}