2013-02-08 18:44:26 +01:00
|
|
|
/* ============================================================
|
|
|
|
* 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 "autofillicon.h"
|
2013-02-10 10:28:13 +01:00
|
|
|
#include "autofillwidget.h"
|
2013-02-08 18:44:26 +01:00
|
|
|
|
2013-02-10 12:28:53 +01:00
|
|
|
#include <QContextMenuEvent>
|
|
|
|
|
2013-02-08 18:44:26 +01:00
|
|
|
AutoFillIcon::AutoFillIcon(QWidget* parent)
|
|
|
|
: ClickableLabel(parent)
|
2013-02-10 12:28:53 +01:00
|
|
|
, m_view(0)
|
2013-02-08 18:44:26 +01:00
|
|
|
{
|
|
|
|
setObjectName("locationbar-autofillicon");
|
|
|
|
setCursor(Qt::PointingHandCursor);
|
2013-02-10 10:28:13 +01:00
|
|
|
setToolTip(AutoFillWidget::tr("Choose username to login"));
|
2013-02-08 18:44:26 +01:00
|
|
|
setFocusPolicy(Qt::ClickFocus);
|
2013-02-10 12:28:53 +01:00
|
|
|
|
|
|
|
connect(this, SIGNAL(clicked(QPoint)), this, SLOT(iconClicked()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillIcon::setWebView(WebView* view)
|
|
|
|
{
|
|
|
|
m_view = view;
|
2013-02-08 18:44:26 +01:00
|
|
|
}
|
|
|
|
|
2013-02-26 12:56:11 +01:00
|
|
|
void AutoFillIcon::setFormData(const QVector<AutoFillData> &data)
|
2013-02-08 18:44:26 +01:00
|
|
|
{
|
|
|
|
m_data = data;
|
|
|
|
}
|
|
|
|
|
2013-02-10 12:28:53 +01:00
|
|
|
void AutoFillIcon::iconClicked()
|
2013-02-08 18:44:26 +01:00
|
|
|
{
|
2013-02-10 12:28:53 +01:00
|
|
|
if (!m_view) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoFillWidget* widget = new AutoFillWidget(m_view, this);
|
|
|
|
widget->setFormData(m_data);
|
|
|
|
widget->showAt(parentWidget());
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillIcon::contextMenuEvent(QContextMenuEvent* ev)
|
|
|
|
{
|
|
|
|
// Prevent propagating to LocationBar
|
|
|
|
ev->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutoFillIcon::mousePressEvent(QMouseEvent* ev)
|
|
|
|
{
|
|
|
|
ClickableLabel::mousePressEvent(ev);
|
|
|
|
|
|
|
|
// Prevent propagating to LocationBar
|
|
|
|
ev->accept();
|
2013-02-08 18:44:26 +01:00
|
|
|
}
|