99 lines
2.4 KiB
C++
99 lines
2.4 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: dialog_edit_label.cpp
|
|
// Author: jean-pierre Charras
|
|
// Modified by:
|
|
// Created: 18/12/2008 15:46:26
|
|
// Licence: GPL
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "fctsys.h"
|
|
#include "wx/valgen.h"
|
|
|
|
#include "common.h"
|
|
#include "program.h"
|
|
#include "libcmp.h"
|
|
#include "general.h"
|
|
#include "dialog_edit_label.h"
|
|
|
|
DialogLabelEditor::DialogLabelEditor( WinEDA_SchematicFrame* parent, SCH_TEXT * CurrentText)
|
|
: DialogLabelEditor_Base ( parent )
|
|
{
|
|
m_Parent = parent;
|
|
m_CurrentText= CurrentText;
|
|
}
|
|
|
|
void DialogLabelEditor::OnInitDialog( wxInitDialogEvent& event )
|
|
{
|
|
wxString msg;
|
|
|
|
SetFont(*g_DialogFont);
|
|
|
|
m_TextLabel->SetValue(m_CurrentText->m_Text);
|
|
m_TextLabel->SetFocus();
|
|
|
|
// Set validators
|
|
m_TextOrient->SetSelection( m_CurrentText->m_Orient );
|
|
m_TextShape->SetSelection( m_CurrentText->m_Shape );
|
|
|
|
switch( m_CurrentText->Type() )
|
|
{
|
|
case TYPE_SCH_GLOBALLABEL:
|
|
SetTitle(_("Global Label properties"));
|
|
break;
|
|
|
|
case TYPE_SCH_HIERLABEL:
|
|
SetTitle(_("Hierarchal Label properties"));
|
|
break;
|
|
|
|
case TYPE_SCH_LABEL:
|
|
SetTitle(_("Label properties"));
|
|
break;
|
|
|
|
default:
|
|
SetTitle(_("Text properties"));
|
|
break;
|
|
}
|
|
|
|
int style = 0;
|
|
if ( m_CurrentText->m_Italic )
|
|
style = 1;
|
|
if ( m_CurrentText->m_Width > 1 )
|
|
style += 2;
|
|
m_TextStyle->SetSelection(style);
|
|
|
|
msg = m_SizeTitle->GetLabel() + ReturnUnitSymbol();
|
|
m_SizeTitle->SetLabel(msg);
|
|
|
|
msg = ReturnStringFromValue(g_UnitMetric, m_CurrentText->m_Size.x, m_Parent->m_InternalUnits);
|
|
m_TextSize->SetValue(msg);
|
|
|
|
if (m_CurrentText->Type() != TYPE_SCH_GLOBALLABEL &&
|
|
m_CurrentText->Type() != TYPE_SCH_HIERLABEL)
|
|
m_TextShape->Show(false);
|
|
|
|
if (GetSizer())
|
|
{
|
|
GetSizer()->SetSizeHints(this);
|
|
}
|
|
}
|
|
|
|
|
|
/*!
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_OK
|
|
*/
|
|
|
|
void DialogLabelEditor::OnButtonOKClick( wxCommandEvent& event )
|
|
{
|
|
TextPropertiesAccept(event);
|
|
}
|
|
|
|
/*!
|
|
* wxEVT_COMMAND_BUTTON_CLICKED event handler for wxID_CANCEL
|
|
*/
|
|
|
|
void DialogLabelEditor::OnButtonCANCEL_Click( wxCommandEvent& event )
|
|
{
|
|
m_Parent->DrawPanel->MouseToCursorSchema();
|
|
EndModal( -1 );
|
|
}
|