2019-11-22 13:54:28 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Felix Geyer <debfx@fobos.de>
|
2020-10-05 20:41:00 -04:00
|
|
|
* Copyright (C) 2020 KeePassXC Team <team@keepassxc.org>
|
2019-11-22 13:54:28 +02: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 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "URLEdit.h"
|
|
|
|
|
|
|
|
#include "core/Tools.h"
|
2020-10-05 20:41:00 -04:00
|
|
|
#include "gui/Icons.h"
|
2020-07-19 09:59:40 -04:00
|
|
|
#include "gui/styles/StateColorPalette.h"
|
2019-11-22 13:54:28 +02:00
|
|
|
|
|
|
|
URLEdit::URLEdit(QWidget* parent)
|
|
|
|
: QLineEdit(parent)
|
|
|
|
{
|
2020-10-05 20:41:00 -04:00
|
|
|
const QIcon errorIcon = icons()->icon("dialog-error");
|
2019-11-22 13:54:28 +02:00
|
|
|
m_errorAction = addAction(errorIcon, QLineEdit::TrailingPosition);
|
|
|
|
m_errorAction->setVisible(false);
|
|
|
|
m_errorAction->setToolTip(tr("Invalid URL"));
|
|
|
|
|
|
|
|
updateStylesheet();
|
|
|
|
}
|
|
|
|
|
|
|
|
void URLEdit::enableVerifyMode()
|
|
|
|
{
|
|
|
|
updateStylesheet();
|
|
|
|
|
|
|
|
connect(this, SIGNAL(textChanged(QString)), SLOT(updateStylesheet()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void URLEdit::updateStylesheet()
|
|
|
|
{
|
|
|
|
const QString stylesheetTemplate("QLineEdit { background: %1; }");
|
|
|
|
|
|
|
|
if (!Tools::checkUrlValid(text())) {
|
2020-07-19 09:59:40 -04:00
|
|
|
StateColorPalette statePalette;
|
|
|
|
QColor color = statePalette.color(StateColorPalette::ColorRole::Error);
|
|
|
|
setStyleSheet(stylesheetTemplate.arg(color.name()));
|
2019-11-22 13:54:28 +02:00
|
|
|
m_errorAction->setVisible(true);
|
|
|
|
} else {
|
|
|
|
m_errorAction->setVisible(false);
|
|
|
|
setStyleSheet("");
|
|
|
|
}
|
|
|
|
}
|