kicad/eeschema/dialog_edit_label.cpp

158 lines
3.7 KiB
C++
Raw Normal View History

2007-05-06 16:03:28 +00:00
/////////////////////////////////////////////////////////////////////////////
2009-02-09 20:27:16 +00:00
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"
2007-05-06 16:03:28 +00:00
#include "common.h"
#include "class_drawpanel.h"
#include "program.h"
#include "libcmp.h"
#include "general.h"
2007-05-06 16:03:28 +00:00
#include "dialog_edit_label.h"
int DialogLabelEditor::ShowModally( WinEDA_SchematicFrame* parent, SCH_TEXT * CurrentText )
{
int ret;
bool multiline;
switch( CurrentText->Type() )
{
case TYPE_SCH_GLOBALLABEL:
case TYPE_SCH_HIERLABEL:
case TYPE_SCH_LABEL:
multiline = false;
break;
default:
multiline = true;
break;
}
DialogLabelEditor* dialog = new DialogLabelEditor( parent, CurrentText, multiline );
// doing any post construction resizing is better done here than in
// OnInitDialog() since it tends to flash/redraw the dialog less.
dialog->init();
ret = dialog->ShowModal();
dialog->Destroy();
return ret;
}
DialogLabelEditor::DialogLabelEditor( WinEDA_SchematicFrame* parent, SCH_TEXT* CurrentText,bool multiline ) :
DialogLabelEditor_Base( parent,wxID_ANY,multiline )
2007-05-06 16:03:28 +00:00
{
m_Parent = parent;
2009-02-09 20:27:16 +00:00
m_CurrentText = CurrentText;
2007-05-06 16:03:28 +00:00
}
2009-02-09 20:27:16 +00:00
void DialogLabelEditor::init()
2007-05-06 16:03:28 +00:00
{
2009-02-09 20:27:16 +00:00
wxString msg;
2008-03-20 01:50:21 +00:00
2009-02-09 20:27:16 +00:00
m_TextLabel->SetValue( m_CurrentText->m_Text );
2008-03-20 01:50:21 +00:00
m_TextLabel->SetFocus();
2008-03-20 01:50:21 +00:00
switch( m_CurrentText->Type() )
{
2009-02-09 20:27:16 +00:00
case TYPE_SCH_GLOBALLABEL:
SetTitle( _( "Global Label Properties" ) );
break;
case TYPE_SCH_HIERLABEL:
SetTitle( _( "Hierarchal Label Properties" ) );
2009-03-22 11:34:14 +00:00
m_TextShape->SetLabel( _("Hlabel Shape") );
2009-02-09 20:27:16 +00:00
break;
2008-03-20 01:50:21 +00:00
2009-02-09 20:27:16 +00:00
case TYPE_SCH_LABEL:
SetTitle( _( "Label Properties" ) );
break;
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
2009-02-09 20:27:16 +00:00
unsigned MINTEXTWIDTH = 30; // M's are big characters, a few establish a lot of width
2008-03-20 01:50:21 +00:00
2009-02-09 20:27:16 +00:00
if( m_CurrentText->m_Text.Length() < MINTEXTWIDTH )
{
wxString textWidth;
textWidth.Append( 'M', MINTEXTWIDTH );
EnsureTextCtrlWidth( m_TextLabel, &textWidth );
2008-03-20 01:50:21 +00:00
}
2009-02-09 20:27:16 +00:00
else
EnsureTextCtrlWidth( m_TextLabel );
// Set validators
m_TextOrient->SetSelection( m_CurrentText->m_Orient );
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-02-09 20:27:16 +00:00
if( m_CurrentText->m_Width > 1 )
style += 2;
2009-02-09 20:27:16 +00:00
m_TextStyle->SetSelection( style );
2008-03-20 01:50:21 +00:00
msg = m_SizeTitle->GetLabel() + ReturnUnitSymbol();
2009-02-09 20:27:16 +00:00
m_SizeTitle->SetLabel( msg );
2008-03-20 01:50:21 +00:00
2009-02-09 20:27:16 +00:00
msg = ReturnStringFromValue( g_UnitMetric, m_CurrentText->m_Size.x, m_Parent->m_InternalUnits );
m_TextSize->SetValue( msg );
2008-12-20 17:28:25 +00:00
2009-02-09 20:27:16 +00:00
if( m_CurrentText->Type() != TYPE_SCH_GLOBALLABEL
&& m_CurrentText->Type() != TYPE_SCH_HIERLABEL )
{
m_TextShape->Show( false );
}
2007-05-06 16:03:28 +00:00
2009-02-09 20:27:16 +00:00
if( GetSizer() )
{
2009-02-09 20:27:16 +00:00
GetSizer()->SetSizeHints( this );
}
2007-05-06 16:03:28 +00:00
}
/*!
* wxTE_PROCESS_ENTER event handler for m_TextLabel
*/
void DialogLabelEditor::onEnterKey( wxCommandEvent& event )
{
TextPropertiesAccept( event );
}
2007-05-06 16:03:28 +00:00
/*!
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_OK
*/
void DialogLabelEditor::OnButtonOKClick( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
2009-02-09 20:27:16 +00:00
TextPropertiesAccept( event );
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::OnButtonCANCEL_Click( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
2007-11-07 04:24:25 +00:00
m_Parent->DrawPanel->MouseToCursorSchema();
EndModal( -1 );
2007-05-06 16:03:28 +00:00
}