2016-04-02 12:25:44 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016 Wayne Stambaugh, stambaughw@gmail.com
|
2017-07-13 17:45:25 +00:00
|
|
|
* Copyright (C) 2016-2017 KiCad Developers, see change_log.txt for contributors.
|
2016-04-02 12:25:44 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file sch_validators.cpp
|
|
|
|
* @brief Implementation of control validators for schematic dialogs.
|
|
|
|
*/
|
|
|
|
|
2019-05-21 02:52:39 +00:00
|
|
|
#include <wx/combo.h>
|
|
|
|
#include <sch_connection.h>
|
2016-04-02 12:25:44 +00:00
|
|
|
#include <sch_validators.h>
|
|
|
|
#include <template_fieldnames.h>
|
|
|
|
|
2018-07-21 20:23:13 +00:00
|
|
|
|
|
|
|
SCH_FIELD_VALIDATOR::SCH_FIELD_VALIDATOR( bool aIsLibEditor, int aFieldId, wxString* aValue ) :
|
2016-04-02 12:25:44 +00:00
|
|
|
wxTextValidator( wxFILTER_EXCLUDE_CHAR_LIST, aValue )
|
|
|
|
{
|
|
|
|
m_fieldId = aFieldId;
|
2018-07-21 20:23:13 +00:00
|
|
|
m_isLibEditor = aIsLibEditor;
|
2016-04-02 12:25:44 +00:00
|
|
|
|
|
|
|
// Fields cannot contain carriage returns, line feeds, or tabs.
|
|
|
|
wxString excludes( "\r\n\t" );
|
|
|
|
|
|
|
|
// The reference field cannot contain spaces.
|
|
|
|
if( aFieldId == REFERENCE )
|
2020-05-03 14:52:31 +00:00
|
|
|
{
|
2016-04-02 12:25:44 +00:00
|
|
|
excludes += " ";
|
2020-05-03 14:52:31 +00:00
|
|
|
}
|
2020-05-08 22:57:23 +00:00
|
|
|
else if( ( aFieldId == VALUE && m_isLibEditor ) || aFieldId == SHEETNAME_V )
|
2020-05-03 14:52:31 +00:00
|
|
|
{
|
2017-12-21 12:56:35 +00:00
|
|
|
excludes += " :/\\";
|
2020-05-03 14:52:31 +00:00
|
|
|
}
|
2016-04-02 12:25:44 +00:00
|
|
|
|
|
|
|
long style = GetStyle();
|
|
|
|
|
2020-05-03 14:52:31 +00:00
|
|
|
// The reference, value sheetname and sheetfilename fields cannot be empty.
|
|
|
|
if( aFieldId == REFERENCE
|
|
|
|
|| aFieldId == VALUE
|
|
|
|
|| aFieldId == SHEETNAME_V
|
|
|
|
|| aFieldId == SHEETFILENAME_V
|
|
|
|
|| aFieldId == FIELD_NAME )
|
|
|
|
{
|
2016-04-02 12:25:44 +00:00
|
|
|
style |= wxFILTER_EMPTY;
|
2020-05-03 14:52:31 +00:00
|
|
|
}
|
2016-04-02 12:25:44 +00:00
|
|
|
|
|
|
|
SetStyle( style );
|
|
|
|
SetCharExcludes( excludes );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SCH_FIELD_VALIDATOR::SCH_FIELD_VALIDATOR( const SCH_FIELD_VALIDATOR& aValidator ) :
|
|
|
|
wxTextValidator( aValidator )
|
|
|
|
{
|
|
|
|
m_fieldId = aValidator.m_fieldId;
|
2016-08-19 16:42:39 +00:00
|
|
|
m_isLibEditor = aValidator.m_isLibEditor;
|
2016-04-02 12:25:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SCH_FIELD_VALIDATOR::Validate( wxWindow *aParent )
|
|
|
|
{
|
|
|
|
// If window is disabled, simply return
|
|
|
|
if( !m_validatorWindow->IsEnabled() )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
wxTextEntry * const text = GetTextEntry();
|
|
|
|
|
|
|
|
if( !text )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
wxString val( text->GetValue() );
|
2019-12-14 10:40:37 +00:00
|
|
|
|
|
|
|
// The format of the error message for not allowed chars
|
|
|
|
wxString fieldCharError;
|
2016-04-02 12:25:44 +00:00
|
|
|
|
|
|
|
switch( m_fieldId )
|
|
|
|
{
|
2019-12-14 10:40:37 +00:00
|
|
|
case REFERENCE:
|
2020-03-17 16:08:29 +00:00
|
|
|
fieldCharError = _( "The reference designator cannot contain %s character(s)." );
|
2019-12-14 10:40:37 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case VALUE:
|
|
|
|
fieldCharError = _( "The value field cannot contain %s character(s)." );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case FOOTPRINT:
|
|
|
|
fieldCharError = _( "The footprint field cannot contain %s character(s)." );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DATASHEET:
|
|
|
|
fieldCharError = _( "The datasheet field cannot contain %s character(s)." );
|
|
|
|
break;
|
|
|
|
|
2020-05-03 14:52:31 +00:00
|
|
|
case SHEETNAME_V:
|
|
|
|
fieldCharError = _( "The sheet name cannot contain %s character(s)." );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SHEETFILENAME_V:
|
|
|
|
fieldCharError = _( "The sheet filename cannot contain %s character(s)." );
|
|
|
|
break;
|
|
|
|
|
2019-12-14 10:40:37 +00:00
|
|
|
default:
|
|
|
|
fieldCharError = _( "The field cannot contain %s character(s)." );
|
|
|
|
break;
|
2016-04-02 12:25:44 +00:00
|
|
|
};
|
|
|
|
|
2018-07-21 20:23:13 +00:00
|
|
|
wxString msg;
|
2016-04-02 12:25:44 +00:00
|
|
|
|
|
|
|
// We can only do some kinds of validation once the input is complete, so
|
|
|
|
// check for them here:
|
|
|
|
if( HasFlag( wxFILTER_EMPTY ) && val.empty() )
|
2019-12-14 10:40:37 +00:00
|
|
|
{
|
|
|
|
// Some fields cannot have an empty value, and user fields require a name:
|
|
|
|
if( m_fieldId == FIELD_NAME )
|
|
|
|
msg.Printf( _( "The name of the field cannot be empty." ) );
|
|
|
|
else // the FIELD_VALUE id or REFERENCE or VALUE
|
|
|
|
msg.Printf( _( "The value of the field cannot be empty." ) );
|
|
|
|
}
|
2016-04-02 12:25:44 +00:00
|
|
|
else if( HasFlag( wxFILTER_EXCLUDE_CHAR_LIST ) && ContainsExcludedCharacters( val ) )
|
|
|
|
{
|
|
|
|
wxArrayString whiteSpace;
|
2020-05-03 14:52:31 +00:00
|
|
|
bool spaceIllegal = m_fieldId == REFERENCE
|
|
|
|
|| ( m_fieldId == VALUE && m_isLibEditor )
|
|
|
|
|| m_fieldId == SHEETNAME_V
|
|
|
|
|| m_fieldId == SHEETFILENAME_V;
|
2016-04-02 12:25:44 +00:00
|
|
|
|
|
|
|
if( val.Find( '\r' ) != wxNOT_FOUND )
|
|
|
|
whiteSpace.Add( _( "carriage return" ) );
|
|
|
|
if( val.Find( '\n' ) != wxNOT_FOUND )
|
|
|
|
whiteSpace.Add( _( "line feed" ) );
|
|
|
|
if( val.Find( '\t' ) != wxNOT_FOUND )
|
|
|
|
whiteSpace.Add( _( "tab" ) );
|
2016-08-19 16:42:39 +00:00
|
|
|
if( spaceIllegal && (val.Find( ' ' ) != wxNOT_FOUND) )
|
2016-04-02 12:25:44 +00:00
|
|
|
whiteSpace.Add( _( "space" ) );
|
|
|
|
|
|
|
|
wxString badChars;
|
|
|
|
|
|
|
|
if( whiteSpace.size() == 1 )
|
|
|
|
badChars = whiteSpace[0];
|
|
|
|
else if( whiteSpace.size() == 2 )
|
|
|
|
badChars.Printf( _( "%s or %s" ), whiteSpace[0], whiteSpace[1] );
|
|
|
|
else if( whiteSpace.size() == 3 )
|
|
|
|
badChars.Printf( _( "%s, %s, or %s" ), whiteSpace[0], whiteSpace[1], whiteSpace[2] );
|
|
|
|
else if( whiteSpace.size() == 4 )
|
|
|
|
badChars.Printf( _( "%s, %s, %s, or %s" ),
|
|
|
|
whiteSpace[0], whiteSpace[1], whiteSpace[2], whiteSpace[3] );
|
|
|
|
else
|
2019-12-14 10:40:37 +00:00
|
|
|
wxCHECK_MSG( false, true, "Invalid illegal character in field validator." );
|
2016-04-02 12:25:44 +00:00
|
|
|
|
2019-12-14 10:40:37 +00:00
|
|
|
msg.Printf( fieldCharError, badChars );
|
2016-04-02 12:25:44 +00:00
|
|
|
}
|
|
|
|
|
2018-07-21 20:23:13 +00:00
|
|
|
if ( !msg.empty() )
|
2016-04-02 12:25:44 +00:00
|
|
|
{
|
|
|
|
m_validatorWindow->SetFocus();
|
|
|
|
|
2018-07-21 20:23:13 +00:00
|
|
|
wxMessageBox( msg, _( "Field Validation Error" ), wxOK | wxICON_EXCLAMATION, aParent );
|
2016-04-02 12:25:44 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2019-05-21 02:52:39 +00:00
|
|
|
|
|
|
|
|
2020-01-06 19:55:39 +00:00
|
|
|
SCH_NETNAME_VALIDATOR::SCH_NETNAME_VALIDATOR( wxString *aVal )
|
|
|
|
: wxValidator(),
|
|
|
|
m_allowSpaces( false )
|
2019-05-21 02:52:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-06 19:55:39 +00:00
|
|
|
SCH_NETNAME_VALIDATOR::SCH_NETNAME_VALIDATOR( const SCH_NETNAME_VALIDATOR& aValidator )
|
|
|
|
: wxValidator(),
|
|
|
|
m_allowSpaces( aValidator.m_allowSpaces )
|
2019-06-20 06:20:33 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-06 19:55:39 +00:00
|
|
|
SCH_NETNAME_VALIDATOR::SCH_NETNAME_VALIDATOR( bool aAllowSpaces )
|
|
|
|
: wxValidator(),
|
|
|
|
m_allowSpaces( aAllowSpaces )
|
2019-05-21 02:52:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxTextEntry *SCH_NETNAME_VALIDATOR::GetTextEntry()
|
|
|
|
{
|
|
|
|
#if wxUSE_TEXTCTRL
|
|
|
|
if( wxDynamicCast( m_validatorWindow, wxTextCtrl ) )
|
|
|
|
return static_cast<wxTextCtrl*>( m_validatorWindow );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if wxUSE_COMBOBOX
|
|
|
|
if( wxDynamicCast( m_validatorWindow, wxComboBox ) )
|
|
|
|
return static_cast<wxComboBox*>( m_validatorWindow );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if wxUSE_COMBOCTRL
|
|
|
|
if( wxDynamicCast( m_validatorWindow, wxComboCtrl ) )
|
|
|
|
return static_cast<wxComboCtrl*>( m_validatorWindow );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
wxFAIL_MSG( "SCH_NETNAME_VALIDATOR can only be used with wxTextCtrl, wxComboBox, or wxComboCtrl" );
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool SCH_NETNAME_VALIDATOR::Validate( wxWindow *aParent )
|
|
|
|
{
|
|
|
|
// If window is disabled, simply return
|
|
|
|
if ( !m_validatorWindow->IsEnabled() )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
wxTextEntry * const text = GetTextEntry();
|
|
|
|
|
|
|
|
if ( !text )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const wxString& errormsg = IsValid( text->GetValue() );
|
|
|
|
|
|
|
|
if( !errormsg.empty() )
|
|
|
|
{
|
|
|
|
m_validatorWindow->SetFocus();
|
|
|
|
wxMessageBox( errormsg, _( "Invalid signal name" ), wxOK | wxICON_EXCLAMATION, aParent );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString SCH_NETNAME_VALIDATOR::IsValid( const wxString& str ) const
|
|
|
|
{
|
2020-05-10 17:38:44 +00:00
|
|
|
if( SCH_CONNECTION::ParseBusGroup( str, nullptr, nullptr ) )
|
2019-05-21 02:52:39 +00:00
|
|
|
return wxString();
|
|
|
|
|
|
|
|
if( ( str.Contains( '[' ) || str.Contains( ']' ) ) &&
|
2020-05-10 17:38:44 +00:00
|
|
|
!SCH_CONNECTION::ParseBusVector( str, nullptr, nullptr ) )
|
2019-05-21 02:52:39 +00:00
|
|
|
return _( "Signal name contains '[' or ']' but is not a valid vector bus name" );
|
|
|
|
|
|
|
|
if( str.Contains( '\r' ) || str.Contains( '\n' ) )
|
|
|
|
return _( "Signal names cannot contain CR or LF characters" );
|
|
|
|
|
2019-06-20 06:20:33 +00:00
|
|
|
if( !m_allowSpaces && ( str.Contains( ' ' ) || str.Contains( '\t' ) ) )
|
2019-05-21 02:52:39 +00:00
|
|
|
return _( "Signal names cannot contain spaces" );
|
|
|
|
|
|
|
|
return wxString();
|
|
|
|
}
|