1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/lib/autofill/autofillwidget.cpp

82 lines
2.4 KiB
C++
Raw Normal View History

/* ============================================================
* QupZilla - WebKit based browser
2014-01-11 16:11:42 +01:00
* Copyright (C) 2013-2014 David Rosca <nowrep@gmail.com>
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#include "autofillwidget.h"
#include "ui_autofillwidget.h"
#include "pageformcompleter.h"
#include "autofill.h"
#include "qztools.h"
#include "webview.h"
#include "webpage.h"
#include <QPushButton>
AutoFillWidget::AutoFillWidget(WebView* view, QWidget* parent)
: LocationBarPopup(parent)
, ui(new Ui::AutoFillWidget)
, m_view(view)
{
ui->setupUi(this);
}
void AutoFillWidget::setFormData(const QVector<PasswordEntry> &data)
{
m_data = data;
for (int i = 0; i < data.count(); ++i) {
const PasswordEntry d = data.at(i);
if (d.username.isEmpty()) {
continue;
}
QPushButton* button = new QPushButton(this);
2014-01-08 16:59:21 +01:00
button->setIcon(QIcon(":icons/other/login.png"));
button->setStyleSheet("text-align:left;font-weight:bold;");
button->setText(d.username);
button->setProperty("data-index", i);
2014-01-08 16:59:21 +01:00
button->setFlat(true);
2014-01-08 16:59:21 +01:00
ui->gridLayout->addWidget(button, i, 0);
connect(button, SIGNAL(clicked()), this, SLOT(loginToPage()));
}
}
void AutoFillWidget::loginToPage()
{
QPushButton* button = qobject_cast<QPushButton*>(sender());
if (!button || !m_view) {
return;
}
bool ok;
int index = button->property("data-index").toInt(&ok);
if (ok && QzTools::containsIndex(m_data, index)) {
const PasswordEntry entry = m_data.at(index);
PageFormCompleter completer(m_view->page());
completer.completePage(entry.data);
}
close();
}
AutoFillWidget::~AutoFillWidget()
{
delete ui;
}