2009-05-01 16:01:41 +00:00
|
|
|
/*
|
2020-06-15 17:42:37 +02:00
|
|
|
Copyright 2006-2020 The QElectroTech Team
|
2009-05-01 16:01:41 +00:00
|
|
|
This file is part of QElectroTech.
|
2020-09-18 23:05:42 +02:00
|
|
|
|
2009-05-01 16:01:41 +00:00
|
|
|
QElectroTech 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.
|
2020-09-18 23:05:42 +02:00
|
|
|
|
2009-05-01 16:01:41 +00:00
|
|
|
QElectroTech 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.
|
2020-09-18 23:05:42 +02:00
|
|
|
|
2009-05-01 16:01:41 +00:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2009-04-03 19:30:25 +00:00
|
|
|
#include "qfilenameedit.h"
|
|
|
|
#include "qetregexpvalidator.h"
|
|
|
|
#include <QKeyEvent>
|
2020-09-18 23:05:42 +02:00
|
|
|
#include <QRegularExpression>
|
2009-04-03 19:30:25 +00:00
|
|
|
#include <QToolTip>
|
|
|
|
|
|
|
|
/**
|
|
|
|
Constructeur
|
|
|
|
@param parent QWidget parent de ce champ de texte
|
|
|
|
*/
|
|
|
|
QFileNameEdit::QFileNameEdit(QWidget *parent) : QLineEdit(parent) {
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Constructeur
|
|
|
|
@param contents Contenu initial du champ
|
|
|
|
@param parent QWidget parent de ce champ de texte
|
|
|
|
*/
|
|
|
|
QFileNameEdit::QFileNameEdit(const QString &contents, QWidget *parent) : QLineEdit(parent) {
|
|
|
|
init();
|
2020-09-18 23:05:42 +02:00
|
|
|
if (!contents.isEmpty() && regexp_==QRegularExpression(contents)) {
|
2009-04-03 19:30:25 +00:00
|
|
|
setText(contents);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Destructeur
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
QFileNameEdit::~QFileNameEdit()
|
|
|
|
{
|
2009-04-03 19:30:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
@return true si le champ de texte est vide, false sinon
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
bool QFileNameEdit::isEmpty()
|
|
|
|
{
|
2009-04-03 19:30:25 +00:00
|
|
|
return(text().isEmpty());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
@return true si le champ de texte n'est pas vide et est valide
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
bool QFileNameEdit::isValid()
|
|
|
|
{
|
2020-09-18 23:05:42 +02:00
|
|
|
return(regexp_==QRegularExpression(text()));
|
2009-04-03 19:30:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Construit l'objet
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
void QFileNameEdit::init()
|
|
|
|
{
|
2020-09-18 23:05:42 +02:00
|
|
|
regexp_ = QRegularExpression("^[0-9a-z_\\-\\.]+$");
|
2009-04-03 19:30:25 +00:00
|
|
|
validator_ = new QETRegExpValidator(regexp_, this);
|
|
|
|
setValidator(validator_);
|
|
|
|
tooltip_text_ = QString(
|
|
|
|
tr(
|
2015-03-02 20:14:56 +00:00
|
|
|
"Les caractères autorisés sont : \n"
|
2009-04-03 19:30:25 +00:00
|
|
|
" - les chiffres [0-9]\n"
|
|
|
|
" - les minuscules [a-z]\n"
|
|
|
|
" - le tiret [-], l'underscore [_] et le point [.]\n",
|
|
|
|
"tooltip content when editing a filename"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
connect(validator_, SIGNAL(validationFailed()), this, SLOT(validationFailed()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Affiche l'info-bulle informant l'utilisateur des caracteres autorises.
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
void QFileNameEdit::displayToolTip()
|
|
|
|
{
|
2009-04-03 19:30:25 +00:00
|
|
|
QToolTip::showText(
|
|
|
|
mapToGlobal(QPoint(x() + width(), 0)),
|
|
|
|
tooltip_text_,
|
|
|
|
this,
|
|
|
|
QRect()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Gere le fait que la validation du champ de texte ait echoue.
|
|
|
|
*/
|
2020-09-07 22:03:40 +02:00
|
|
|
void QFileNameEdit::validationFailed()
|
|
|
|
{
|
2009-04-03 19:30:25 +00:00
|
|
|
displayToolTip();
|
|
|
|
}
|