/* Copyright (c) 2015 Montel Laurent This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "potentialphishingemailwarning.h" #include "potentialphishingdetaildialog.h" #include #include #include PotentialPhishingEmailWarning::PotentialPhishingEmailWarning(QWidget *parent) : KMessageWidget(parent) { setVisible(false); setCloseButtonVisible(true); setMessageType(Warning); setWordWrap(true); setText(i18n("Some address mail seems a potential phishing email (Details...)")); connect(this, SIGNAL(linkActivated(QString)), SLOT(slotShowDetails(QString))); QAction *action = new QAction(i18n("Send Now"), this); connect(action, SIGNAL(triggered(bool)), SIGNAL(sendNow())); addAction(action); } PotentialPhishingEmailWarning::~PotentialPhishingEmailWarning() { } void PotentialPhishingEmailWarning::slotShowDetails(const QString &link) { if (link == QLatin1String("phishingdetails")) { QPointer dlg = new PotentialPhishingDetailDialog(this); dlg->fillList(mPotentialPhishingEmails); dlg->exec(); delete dlg; } } void PotentialPhishingEmailWarning::setPotentialPhisingEmail(const QStringList &lst) { mPotentialPhishingEmails = lst; if (!mPotentialPhishingEmails.isEmpty()) { animatedShow(); } }