2018-06-06 10:05:56 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004-2018 Jean-Pierre Charras jp.charras at wanadoo.fr
|
2021-07-19 23:56:05 +00:00
|
|
|
* Copyright (C) 2010-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2018-06-06 10:05:56 +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
|
|
|
|
*/
|
|
|
|
|
2019-03-27 12:36:28 +00:00
|
|
|
#include <dialog_text_properties.h>
|
2018-06-06 10:05:56 +00:00
|
|
|
#include <confirm.h>
|
|
|
|
#include <widgets/unit_binder.h>
|
2019-03-27 12:36:28 +00:00
|
|
|
#include <board_commit.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <board.h>
|
|
|
|
#include <footprint.h>
|
2021-07-29 09:56:22 +00:00
|
|
|
#include <string_utils.h>
|
2020-10-04 23:34:59 +00:00
|
|
|
#include <pcb_text.h>
|
|
|
|
#include <fp_text.h>
|
2021-06-06 12:24:49 +00:00
|
|
|
#include <pcbnew.h>
|
2019-03-27 12:36:28 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
|
|
|
#include <pcb_layer_box_selector.h>
|
|
|
|
#include <wx/valnum.h>
|
2020-01-07 17:12:59 +00:00
|
|
|
#include <math/util.h> // for KiROUND
|
2021-06-24 22:50:57 +00:00
|
|
|
#include <scintilla_tricks.h>
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2021-07-19 23:56:05 +00:00
|
|
|
|
2019-05-28 23:23:58 +00:00
|
|
|
DIALOG_TEXT_PROPERTIES::DIALOG_TEXT_PROPERTIES( PCB_BASE_EDIT_FRAME* aParent, BOARD_ITEM* aItem ) :
|
2018-06-06 10:05:56 +00:00
|
|
|
DIALOG_TEXT_PROPERTIES_BASE( aParent ),
|
2019-08-04 16:30:18 +00:00
|
|
|
m_Parent( aParent ),
|
|
|
|
m_item( aItem ),
|
|
|
|
m_edaText( nullptr ),
|
2020-10-04 23:34:59 +00:00
|
|
|
m_fpText( nullptr ),
|
2019-08-04 16:30:18 +00:00
|
|
|
m_pcbText( nullptr ),
|
2021-03-12 15:12:49 +00:00
|
|
|
m_textWidth( aParent, m_SizeXLabel, m_SizeXCtrl, m_SizeXUnits ),
|
|
|
|
m_textHeight( aParent, m_SizeYLabel, m_SizeYCtrl, m_SizeYUnits ),
|
|
|
|
m_thickness( aParent, m_ThicknessLabel, m_ThicknessCtrl, m_ThicknessUnits ),
|
2018-06-06 10:05:56 +00:00
|
|
|
m_posX( aParent, m_PositionXLabel, m_PositionXCtrl, m_PositionXUnits ),
|
|
|
|
m_posY( aParent, m_PositionYLabel, m_PositionYCtrl, m_PositionYUnits ),
|
2021-03-12 15:12:49 +00:00
|
|
|
m_orientation( aParent, m_OrientLabel, m_OrientCtrl, nullptr )
|
2018-06-06 10:05:56 +00:00
|
|
|
{
|
2018-07-21 12:49:19 +00:00
|
|
|
wxString title;
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2020-07-06 14:41:29 +00:00
|
|
|
// Configure display origin transforms
|
|
|
|
m_posX.SetCoordType( ORIGIN_TRANSFORMS::ABS_X_COORD );
|
|
|
|
m_posY.SetCoordType( ORIGIN_TRANSFORMS::ABS_Y_COORD );
|
|
|
|
|
2020-04-18 20:40:54 +00:00
|
|
|
m_MultiLineText->SetEOLMode( wxSTC_EOL_LF );
|
2020-04-19 19:09:26 +00:00
|
|
|
|
2021-06-28 10:19:12 +00:00
|
|
|
m_scintillaTricks = new SCINTILLA_TRICKS( m_MultiLineText, wxT( "{}" ), false,
|
|
|
|
[this]()
|
|
|
|
{
|
|
|
|
wxPostEvent( this, wxCommandEvent( wxEVT_COMMAND_BUTTON_CLICKED, wxID_OK ) );
|
|
|
|
} );
|
2021-06-24 22:50:57 +00:00
|
|
|
|
2020-04-19 19:09:26 +00:00
|
|
|
// A hack which causes Scintilla to auto-size the text editor canvas
|
|
|
|
// See: https://github.com/jacobslusser/ScintillaNET/issues/216
|
|
|
|
m_MultiLineText->SetScrollWidth( 1 );
|
|
|
|
m_MultiLineText->SetScrollWidthTracking( true );
|
2020-04-18 20:40:54 +00:00
|
|
|
|
2020-10-04 14:19:33 +00:00
|
|
|
if( m_item->Type() == PCB_FP_TEXT_T )
|
2018-06-06 10:05:56 +00:00
|
|
|
{
|
2020-10-04 23:34:59 +00:00
|
|
|
m_fpText = (FP_TEXT*) m_item;
|
|
|
|
m_edaText = static_cast<EDA_TEXT*>( m_fpText );
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2021-10-31 16:32:24 +00:00
|
|
|
switch( m_fpText->GetType() )
|
|
|
|
{
|
|
|
|
case FP_TEXT::TEXT_is_REFERENCE: title = _( "Footprint Reference Properties" ); break;
|
|
|
|
case FP_TEXT::TEXT_is_VALUE: title = _( "Footprint Value Properties" ); break;
|
|
|
|
case FP_TEXT::TEXT_is_DIVERS: title = _( "Footprint Text Properties" ); break;
|
|
|
|
}
|
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
switch( m_fpText->GetType() )
|
2018-06-06 10:05:56 +00:00
|
|
|
{
|
2020-10-04 23:34:59 +00:00
|
|
|
case FP_TEXT::TEXT_is_REFERENCE: m_TextLabel->SetLabel( _( "Reference:" ) ); break;
|
|
|
|
case FP_TEXT::TEXT_is_VALUE: m_TextLabel->SetLabel( _( "Value:" ) ); break;
|
|
|
|
case FP_TEXT::TEXT_is_DIVERS: m_TextLabel->SetLabel( _( "Text:" ) ); break;
|
2018-06-06 10:05:56 +00:00
|
|
|
}
|
2018-07-21 12:49:19 +00:00
|
|
|
|
|
|
|
SetInitialFocus( m_SingleLineText );
|
|
|
|
m_MultiLineSizer->Show( false );
|
2021-10-31 16:32:24 +00:00
|
|
|
|
|
|
|
// Do not allow locking items in the footprint editor
|
|
|
|
m_cbLocked->Show( false );
|
2018-06-06 10:05:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
title = _( "Text Properties" );
|
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
m_pcbText = (PCB_TEXT*) aItem;
|
2018-06-06 10:05:56 +00:00
|
|
|
m_edaText = static_cast<EDA_TEXT*>( m_pcbText );
|
2018-07-21 12:49:19 +00:00
|
|
|
|
|
|
|
SetInitialFocus( m_MultiLineText );
|
|
|
|
m_SingleLineSizer->Show( false );
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2021-01-18 14:31:56 +00:00
|
|
|
// This option makes sense only for footprint texts; texts on board are always visible.
|
2018-12-02 09:30:48 +00:00
|
|
|
m_Visible->SetValue( true );
|
2021-10-31 16:32:24 +00:00
|
|
|
m_Visible->Show( false );
|
2018-12-02 09:30:48 +00:00
|
|
|
|
2018-06-06 10:05:56 +00:00
|
|
|
m_KeepUpright->Show( false );
|
2018-07-21 12:49:19 +00:00
|
|
|
m_statusLine->Show( false );
|
2018-06-06 10:05:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SetTitle( title );
|
|
|
|
m_hash_key = title;
|
|
|
|
|
|
|
|
// Configure the layers list selector. Note that footprints are built outside the current
|
|
|
|
// board and so we may need to show all layers if the text is on an unactivated layer.
|
|
|
|
if( !m_Parent->GetBoard()->IsLayerEnabled( m_item->GetLayer() ) )
|
|
|
|
m_LayerSelectionCtrl->ShowNonActivatedLayers( true );
|
|
|
|
|
|
|
|
m_LayerSelectionCtrl->SetLayersHotkeys( false );
|
|
|
|
m_LayerSelectionCtrl->SetBoardFrame( m_Parent );
|
|
|
|
m_LayerSelectionCtrl->Resync();
|
|
|
|
|
|
|
|
m_OrientValue = 0.0;
|
2020-12-11 15:23:40 +00:00
|
|
|
m_orientation.SetUnits( EDA_UNITS::DEGREES );
|
|
|
|
m_orientation.SetPrecision( 3 );
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2021-01-01 23:42:44 +00:00
|
|
|
// Set predefined rotations in combo dropdown, according to the locale floating point
|
|
|
|
// separator notation
|
2020-12-11 15:23:40 +00:00
|
|
|
double rot_list[] = { 0.0, 90.0, -90.0, 180.0 };
|
|
|
|
|
|
|
|
for( size_t ii = 0; ii < m_OrientCtrl->GetCount() && ii < 4; ++ii )
|
|
|
|
m_OrientCtrl->SetString( ii, wxString::Format( "%.1f", rot_list[ii] ) );
|
2018-12-05 18:08:06 +00:00
|
|
|
|
2018-07-17 21:14:02 +00:00
|
|
|
// Set font sizes
|
2021-09-11 19:07:33 +00:00
|
|
|
m_statusLine->SetFont( KIUI::GetInfoFont( this ) );
|
2018-07-17 21:14:02 +00:00
|
|
|
|
2018-06-06 10:05:56 +00:00
|
|
|
m_sdbSizerOK->SetDefault();
|
|
|
|
|
2019-08-26 17:36:35 +00:00
|
|
|
// We can't set the tab order through wxWidgets due to shortcomings in their mnemonics
|
|
|
|
// implementation on MSW
|
|
|
|
m_tabOrder = {
|
2019-03-27 12:36:28 +00:00
|
|
|
m_LayerLabel,
|
|
|
|
m_LayerSelectionCtrl,
|
|
|
|
m_SizeXCtrl,
|
|
|
|
m_SizeYCtrl,
|
|
|
|
m_ThicknessCtrl,
|
|
|
|
m_PositionXCtrl,
|
|
|
|
m_PositionYCtrl,
|
|
|
|
m_Visible,
|
|
|
|
m_Italic,
|
|
|
|
m_JustifyChoice,
|
|
|
|
m_OrientCtrl,
|
|
|
|
m_Mirrored,
|
|
|
|
m_KeepUpright,
|
2019-08-26 17:36:35 +00:00
|
|
|
m_sdbSizerOK,
|
|
|
|
m_sdbSizerCancel
|
|
|
|
};
|
2019-03-27 12:36:28 +00:00
|
|
|
|
2018-06-06 10:05:56 +00:00
|
|
|
// wxTextCtrls fail to generate wxEVT_CHAR events when the wxTE_MULTILINE flag is set,
|
|
|
|
// so we have to listen to wxEVT_CHAR_HOOK events instead.
|
2021-07-19 23:56:05 +00:00
|
|
|
Connect( wxEVT_CHAR_HOOK, wxKeyEventHandler( DIALOG_TEXT_PROPERTIES::OnCharHook ),
|
|
|
|
nullptr, this );
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2020-11-16 11:16:44 +00:00
|
|
|
finishDialogSettings();
|
2018-06-06 10:05:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DIALOG_TEXT_PROPERTIES::~DIALOG_TEXT_PROPERTIES()
|
|
|
|
{
|
2021-07-19 23:56:05 +00:00
|
|
|
Disconnect( wxEVT_CHAR_HOOK, wxKeyEventHandler( DIALOG_TEXT_PROPERTIES::OnCharHook ),
|
|
|
|
nullptr, this );
|
2021-06-24 22:50:57 +00:00
|
|
|
|
|
|
|
delete m_scintillaTricks;
|
2018-06-06 10:05:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-14 23:37:26 +00:00
|
|
|
void PCB_BASE_EDIT_FRAME::ShowTextPropertiesDialog( BOARD_ITEM* aText )
|
2018-06-06 10:05:56 +00:00
|
|
|
{
|
2019-05-28 23:23:58 +00:00
|
|
|
DIALOG_TEXT_PROPERTIES dlg( this, aText );
|
2021-02-20 13:06:12 +00:00
|
|
|
dlg.ShowQuasiModal();
|
2018-06-06 10:05:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-25 16:25:26 +00:00
|
|
|
void DIALOG_TEXT_PROPERTIES::OnSetFocusText( wxFocusEvent& event )
|
|
|
|
{
|
|
|
|
#ifdef __WXGTK__
|
|
|
|
// Force an update of the text control before setting the text selection
|
|
|
|
// This is needed because GTK seems to ignore the selection on first update
|
|
|
|
//
|
|
|
|
// Note that we can't do this on OSX as it tends to provoke Apple's
|
|
|
|
// "[NSAlert runModal] may not be invoked inside of transaction begin/commit pair"
|
|
|
|
// bug. See: https://bugs.launchpad.net/kicad/+bug/1837225
|
2020-11-25 23:07:49 +00:00
|
|
|
if( m_fpText->GetType() == FP_TEXT::TEXT_is_REFERENCE )
|
2020-11-26 00:05:57 +00:00
|
|
|
m_SingleLineText->Update();
|
2020-11-25 16:25:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if( m_fpText->GetType() == FP_TEXT::TEXT_is_REFERENCE )
|
|
|
|
KIUI::SelectReferenceNumber( static_cast<wxTextEntry*>( m_SingleLineText ) );
|
|
|
|
else
|
|
|
|
m_SingleLineText->SetSelection( -1, -1 );
|
|
|
|
|
|
|
|
event.Skip();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-21 12:49:19 +00:00
|
|
|
bool DIALOG_TEXT_PROPERTIES::TransferDataToWindow()
|
|
|
|
{
|
2018-06-06 10:05:56 +00:00
|
|
|
if( m_SingleLineText->IsShown() )
|
|
|
|
{
|
|
|
|
m_SingleLineText->SetValue( m_edaText->GetText() );
|
2018-10-13 23:06:41 +00:00
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
if( m_fpText && m_fpText->GetType() == FP_TEXT::TEXT_is_REFERENCE )
|
2020-10-25 16:41:38 +00:00
|
|
|
KIUI::SelectReferenceNumber( static_cast<wxTextEntry*>( m_SingleLineText ) );
|
2018-10-13 23:06:41 +00:00
|
|
|
else
|
|
|
|
m_SingleLineText->SetSelection( -1, -1 );
|
2018-06-06 10:05:56 +00:00
|
|
|
}
|
2018-07-21 12:49:19 +00:00
|
|
|
else if( m_MultiLineText->IsShown() )
|
2018-06-06 10:05:56 +00:00
|
|
|
{
|
2020-09-19 19:41:54 +00:00
|
|
|
BOARD* board = m_Parent->GetBoard();
|
2021-10-06 20:22:16 +00:00
|
|
|
wxString converted = board->ConvertKIIDsToCrossReferences(
|
|
|
|
UnescapeString( m_edaText->GetText() ) );
|
2020-09-19 19:41:54 +00:00
|
|
|
|
|
|
|
m_MultiLineText->SetValue( converted );
|
2018-06-06 10:05:56 +00:00
|
|
|
m_MultiLineText->SetSelection( -1, -1 );
|
|
|
|
}
|
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
if( m_item->Type() == PCB_FP_TEXT_T && m_fpText )
|
2018-06-06 10:05:56 +00:00
|
|
|
{
|
2020-11-13 15:15:52 +00:00
|
|
|
FOOTPRINT* footprint = dynamic_cast<FOOTPRINT*>( m_fpText->GetParent() );
|
|
|
|
wxString msg;
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2020-11-13 11:17:15 +00:00
|
|
|
if( footprint )
|
2018-06-06 10:05:56 +00:00
|
|
|
{
|
2020-11-13 11:17:15 +00:00
|
|
|
msg.Printf( _( "Footprint %s (%s), %s, rotated %.1f deg"),
|
|
|
|
footprint->GetReference(),
|
|
|
|
footprint->GetValue(),
|
|
|
|
footprint->IsFlipped() ? _( "back side (mirrored)" ) : _( "front side" ),
|
|
|
|
footprint->GetOrientation() / 10.0 );
|
2018-06-06 10:05:56 +00:00
|
|
|
}
|
|
|
|
|
2018-07-21 12:49:19 +00:00
|
|
|
m_statusLine->SetLabel( msg );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_statusLine->Show( false );
|
|
|
|
}
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2021-01-12 09:00:21 +00:00
|
|
|
m_cbLocked->SetValue( m_item->IsLocked() );
|
|
|
|
|
2020-10-13 17:46:48 +00:00
|
|
|
m_LayerSelectionCtrl->SetLayerSelection( m_item->GetLayer() );
|
2018-06-06 10:05:56 +00:00
|
|
|
|
|
|
|
m_textWidth.SetValue( m_edaText->GetTextSize().x );
|
|
|
|
m_textHeight.SetValue( m_edaText->GetTextSize().y );
|
2020-04-14 12:25:00 +00:00
|
|
|
m_thickness.SetValue( m_edaText->GetTextThickness() );
|
2018-06-06 10:05:56 +00:00
|
|
|
m_posX.SetValue( m_edaText->GetTextPos().x );
|
|
|
|
m_posY.SetValue( m_edaText->GetTextPos().y );
|
|
|
|
|
|
|
|
m_Visible->SetValue( m_edaText->IsVisible() );
|
|
|
|
m_Italic->SetValue( m_edaText->IsItalic() );
|
|
|
|
EDA_TEXT_HJUSTIFY_T hJustify = m_edaText->GetHorizJustify();
|
|
|
|
m_JustifyChoice->SetSelection( (int) hJustify + 1 );
|
2020-12-11 15:23:40 +00:00
|
|
|
m_OrientValue = m_edaText->GetTextAngle();
|
|
|
|
m_orientation.SetDoubleValue( m_OrientValue );
|
2018-06-06 10:05:56 +00:00
|
|
|
m_Mirrored->SetValue( m_edaText->IsMirrored() );
|
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
if( m_fpText )
|
|
|
|
m_KeepUpright->SetValue( m_fpText->IsKeepUpright() );
|
2018-06-06 10:05:56 +00:00
|
|
|
|
|
|
|
return DIALOG_TEXT_PROPERTIES_BASE::TransferDataToWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool DIALOG_TEXT_PROPERTIES::TransferDataFromWindow()
|
|
|
|
{
|
|
|
|
if( !DIALOG_TEXT_PROPERTIES_BASE::TransferDataFromWindow() )
|
|
|
|
return false;
|
|
|
|
|
2018-11-29 18:59:38 +00:00
|
|
|
if( !m_textWidth.Validate( TEXTS_MIN_SIZE, TEXTS_MAX_SIZE )
|
|
|
|
|| !m_textHeight.Validate( TEXTS_MIN_SIZE, TEXTS_MAX_SIZE ) )
|
2021-01-01 23:42:44 +00:00
|
|
|
{
|
2018-06-06 10:05:56 +00:00
|
|
|
return false;
|
2021-01-01 23:42:44 +00:00
|
|
|
}
|
2018-06-06 10:05:56 +00:00
|
|
|
|
|
|
|
BOARD_COMMIT commit( m_Parent );
|
|
|
|
commit.Modify( m_item );
|
|
|
|
|
|
|
|
// If no other command in progress, prepare undo command
|
|
|
|
// (for a command in progress, will be made later, at the completion of command)
|
2019-04-22 08:58:06 +00:00
|
|
|
bool pushCommit = ( m_item->GetEditFlags() == 0 );
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2021-01-01 23:42:44 +00:00
|
|
|
// Set IN_EDIT flag to force undo/redo/abort proper operation and avoid new calls to
|
|
|
|
// SaveCopyInUndoList for the same text if is moved, and then rotated, edited, etc....
|
2018-09-18 10:52:15 +00:00
|
|
|
if( !pushCommit )
|
2018-06-06 10:05:56 +00:00
|
|
|
m_item->SetFlags( IN_EDIT );
|
|
|
|
|
|
|
|
// Set the new text content
|
2018-07-21 12:49:19 +00:00
|
|
|
if( m_SingleLineText->IsShown() )
|
|
|
|
{
|
|
|
|
if( !m_SingleLineText->GetValue().IsEmpty() )
|
|
|
|
m_edaText->SetText( m_SingleLineText->GetValue() );
|
|
|
|
}
|
|
|
|
else if( m_MultiLineText->IsShown() )
|
|
|
|
{
|
|
|
|
if( !m_MultiLineText->GetValue().IsEmpty() )
|
2019-09-10 08:57:04 +00:00
|
|
|
{
|
2020-09-19 19:41:54 +00:00
|
|
|
BOARD* board = m_Parent->GetBoard();
|
2021-01-01 23:42:44 +00:00
|
|
|
wxString txt = board->ConvertCrossReferencesToKIIDs( m_MultiLineText->GetValue() );
|
2020-04-06 13:06:57 +00:00
|
|
|
|
2021-06-15 12:20:52 +00:00
|
|
|
#ifdef __WXMAC__
|
|
|
|
// On macOS CTRL+Enter produces '\r' instead of '\n' regardless of EOL setting.
|
|
|
|
// Replace it now.
|
|
|
|
txt.Replace( "\r", "\n" );
|
2021-06-15 14:21:01 +00:00
|
|
|
#elif defined( __WINDOWS__ )
|
2021-01-01 23:42:44 +00:00
|
|
|
// On Windows, a new line is coded as \r\n. We use only \n in kicad files and in
|
|
|
|
// drawing routines so strip the \r char.
|
2019-09-10 08:57:04 +00:00
|
|
|
txt.Replace( "\r", "" );
|
|
|
|
#endif
|
2021-01-01 23:42:44 +00:00
|
|
|
m_edaText->SetText( EscapeString( txt, CTX_QUOTED_STR ) );
|
2019-09-10 08:57:04 +00:00
|
|
|
}
|
2018-07-21 12:49:19 +00:00
|
|
|
}
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2021-01-12 09:00:21 +00:00
|
|
|
m_item->SetLocked( m_cbLocked->GetValue() );
|
|
|
|
|
2018-06-06 10:05:56 +00:00
|
|
|
m_item->SetLayer( ToLAYER_ID( m_LayerSelectionCtrl->GetLayerSelection() ) );
|
|
|
|
|
|
|
|
m_edaText->SetTextSize( wxSize( m_textWidth.GetValue(), m_textHeight.GetValue() ) );
|
2020-04-14 12:25:00 +00:00
|
|
|
m_edaText->SetTextThickness( m_thickness.GetValue() );
|
2018-06-06 10:05:56 +00:00
|
|
|
m_edaText->SetTextPos( wxPoint( m_posX.GetValue(), m_posY.GetValue() ) );
|
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
if( m_fpText )
|
|
|
|
m_fpText->SetLocalCoord();
|
2018-07-19 22:25:58 +00:00
|
|
|
|
2018-06-06 10:05:56 +00:00
|
|
|
// Test for acceptable values for thickness and size and clamp if fails
|
2020-04-14 12:25:00 +00:00
|
|
|
int maxPenWidth = Clamp_Text_PenSize( m_edaText->GetTextThickness(), m_edaText->GetTextSize() );
|
2018-06-06 10:05:56 +00:00
|
|
|
|
2020-04-14 12:25:00 +00:00
|
|
|
if( m_edaText->GetTextThickness() > maxPenWidth )
|
2018-06-06 10:05:56 +00:00
|
|
|
{
|
2018-07-21 12:49:19 +00:00
|
|
|
DisplayError( this, _( "The text thickness is too large for the text size.\n"
|
2018-06-06 10:05:56 +00:00
|
|
|
"It will be clamped." ) );
|
2020-04-14 12:25:00 +00:00
|
|
|
m_edaText->SetTextThickness( maxPenWidth );
|
2018-06-06 10:05:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_edaText->SetVisible( m_Visible->GetValue() );
|
|
|
|
m_edaText->SetItalic( m_Italic->GetValue() );
|
2020-12-11 15:23:40 +00:00
|
|
|
m_OrientValue = m_orientation.GetDoubleValue();
|
|
|
|
m_edaText->SetTextAngle( m_OrientValue );
|
2018-06-06 10:05:56 +00:00
|
|
|
m_edaText->SetMirrored( m_Mirrored->GetValue() );
|
|
|
|
|
2020-10-04 23:34:59 +00:00
|
|
|
if( m_fpText )
|
|
|
|
m_fpText->SetKeepUpright( m_KeepUpright->GetValue() );
|
2018-06-06 10:05:56 +00:00
|
|
|
|
|
|
|
switch( m_JustifyChoice->GetSelection() )
|
|
|
|
{
|
|
|
|
case 0: m_edaText->SetHorizJustify( GR_TEXT_HJUSTIFY_LEFT ); break;
|
|
|
|
case 1: m_edaText->SetHorizJustify( GR_TEXT_HJUSTIFY_CENTER ); break;
|
|
|
|
case 2: m_edaText->SetHorizJustify( GR_TEXT_HJUSTIFY_RIGHT ); break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( pushCommit )
|
|
|
|
commit.Push( _( "Change text properties" ) );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2021-11-20 01:23:43 +00:00
|
|
|
|
|
|
|
|
2021-11-27 09:08:30 +00:00
|
|
|
void DIALOG_TEXT_PROPERTIES::onMultiLineTCLostFocus( wxFocusEvent& event )
|
2021-11-20 01:23:43 +00:00
|
|
|
{
|
|
|
|
if( m_scintillaTricks )
|
|
|
|
m_scintillaTricks->CancelAutocomplete();
|
2021-11-27 09:08:30 +00:00
|
|
|
|
|
|
|
event.Skip();
|
2021-11-20 01:23:43 +00:00
|
|
|
}
|