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

83 lines
2.4 KiB
C++
Raw Normal View History

/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2013 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 QList<AutoFillData> &data)
{
m_data = data;
for (int i = 0; i < data.count(); ++i) {
const AutoFillData d = data.at(i);
if (d.username.isEmpty()) {
continue;
}
QPushButton* button = new QPushButton(this);
button->setText(tr("Login"));
button->setToolTip(d.username);
button->setProperty("data-index", i);
QLabel* label = new QLabel(this);
label->setText(tr("Login as <b>%1</b>").arg(d.username));
ui->gridLayout->addWidget(label, i, 0);
ui->gridLayout->addWidget(button, i, 1);
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::listContainsIndex(m_data, index)) {
const AutoFillData data = m_data.at(index);
PageFormCompleter completer(m_view->page());
completer.completePage(data.postData);
}
close();
}
AutoFillWidget::~AutoFillWidget()
{
delete ui;
}