19 #include <QPushButton>
20 #include <QRegExpValidator>
21 #include <QSizePolicy>
27 const QStringList &extensions,
const QStringList &existing,
28 const QRegExp ®exp, Qt::CaseSensitivity cs,
29 QWidget *parent, Qt::WindowFlags flags )
30 :
QgsDialog( parent, flags, QDialogButtonBox::Ok | QDialogButtonBox::Cancel )
31 , mExiting( existing )
32 , mExtensions( extensions )
33 , mCaseSensitivity( cs )
36 setWindowTitle( tr(
"New Name" ) );
38 layout()->setSizeConstraint( QLayout::SetMinimumSize );
42 QString nameDesc =
mExtensions.isEmpty() ? tr(
"name" ) : tr(
"base name" );
43 if ( source.isEmpty() )
45 hintString = tr(
"Enter new %1" ).arg( nameDesc );
49 hintString = tr(
"Enter new %1 for %2" ).arg( nameDesc, source );
54 mLineEdit =
new QLineEdit( initial,
this );
55 if ( !regexp.isEmpty() )
57 QRegExpValidator *validator =
new QRegExpValidator( regexp,
this );
62 #if QT_VERSION < QT_VERSION_CHECK(5, 11, 0)
63 mLineEdit->setMinimumWidth(
mLineEdit->fontMetrics().width( QStringLiteral(
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" ) ) );
71 mNamesLabel =
new QLabel( QStringLiteral(
" " ),
this );
72 mNamesLabel->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum );
79 mErrorLabel =
new QLabel( QStringLiteral(
" " ),
this );
80 mErrorLabel->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Minimum );
114 return "<b>" + text +
"</b>";
120 QString namesString = tr(
"Full names" ) +
": ";
126 QPushButton *okButton =
buttonBox()->button( QDialogButtonBox::Ok );
128 okButton->setEnabled(
true );
130 QString newName =
name();
132 if ( newName.length() == 0 || ( !
mRegexp.isEmpty() && !
mRegexp.exactMatch( newName ) ) )
135 okButton->setEnabled(
false );
142 namesString +=
' ' + newNames.join( QStringLiteral(
", " ) );
148 if ( !conflicts.isEmpty() )
151 : tr(
"%n Name(s) %1 exists",
nullptr, conflicts.size() ).arg( conflicts.join( QStringLiteral(
", " ) ) );
155 okButton->setText( tr(
"Overwrite" ) );
159 okButton->setEnabled(
false );
173 const auto constExtensions = extensions;
174 for (
const QString &ext : constExtensions )
179 if ( list.isEmpty() )
187 Qt::CaseSensitivity cs )
191 const auto constNewNames = newNames;
192 for (
const QString &newName : constNewNames )
194 const auto constExistingNames = existingNames;
195 for (
const QString &existingName : constExistingNames )
197 if ( existingName.compare( newName, cs ) == 0 )
199 list << existingName;
207 const QStringList &existing, Qt::CaseSensitivity cs )
210 QStringList conflicts =
matching( newNames, existing, cs );
211 return !conflicts.isEmpty();