2012-08-17 20:56:01 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2012-08-17 20:56:01 +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 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 "useragentdialog.h"
|
|
|
|
#include "ui_useragentdialog.h"
|
|
|
|
#include "useragentmanager.h"
|
2013-01-22 19:04:22 +01:00
|
|
|
#include "qztools.h"
|
2012-08-17 20:56:01 +02:00
|
|
|
#include "mainapplication.h"
|
|
|
|
#include "settings.h"
|
|
|
|
|
|
|
|
#include <QFormLayout>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QLabel>
|
|
|
|
|
|
|
|
UserAgentDialog::UserAgentDialog(QWidget* parent)
|
|
|
|
: QDialog(parent)
|
|
|
|
, ui(new Ui::UserAgentDialog)
|
2014-03-10 00:47:07 +01:00
|
|
|
, m_manager(mApp->userAgentManager())
|
2012-08-17 20:56:01 +02:00
|
|
|
{
|
2014-11-07 18:08:12 +01:00
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
|
2012-08-17 20:56:01 +02:00
|
|
|
ui->setupUi(this);
|
2013-07-11 18:18:32 +02:00
|
|
|
ui->globalComboBox->setLayoutDirection(Qt::LeftToRight);
|
|
|
|
ui->table->setLayoutDirection(Qt::LeftToRight);
|
2012-08-17 20:56:01 +02:00
|
|
|
|
2013-12-30 13:43:48 +01:00
|
|
|
const QString os = QzTools::operatingSystem();
|
2013-11-11 22:06:45 +01:00
|
|
|
m_knownUserAgents << QString("Opera/9.80 (%1) Presto/2.12.388 Version/12.14").arg(os)
|
|
|
|
<< QString("Mozilla/5.0 (%1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.116 Safari/537.36").arg(os)
|
|
|
|
<< QString("Mozilla/5.0 (%1) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0.6 Safari/536.26").arg(os)
|
|
|
|
<< QString("Mozilla/5.0 (%1; rv:24.0) Gecko/20131101 Firefox/24.1.0").arg(os);
|
2012-08-17 20:56:01 +02:00
|
|
|
|
|
|
|
ui->globalComboBox->addItems(m_knownUserAgents);
|
|
|
|
|
2013-12-30 13:43:48 +01:00
|
|
|
const QString globalUserAgent = m_manager->globalUserAgent();
|
2012-08-17 20:56:01 +02:00
|
|
|
ui->changeGlobal->setChecked(!globalUserAgent.isEmpty());
|
|
|
|
ui->globalComboBox->lineEdit()->setText(globalUserAgent);
|
|
|
|
ui->globalComboBox->lineEdit()->setCursorPosition(0);
|
|
|
|
|
|
|
|
ui->changePerSite->setChecked(m_manager->usePerDomainUserAgents());
|
|
|
|
|
|
|
|
QHashIterator<QString, QString> i(m_manager->perDomainUserAgentsList());
|
|
|
|
while (i.hasNext()) {
|
|
|
|
i.next();
|
|
|
|
|
|
|
|
QTableWidgetItem* siteItem = new QTableWidgetItem(i.key());
|
|
|
|
QTableWidgetItem* userAgentItem = new QTableWidgetItem(i.value());
|
|
|
|
|
|
|
|
int row = ui->table->rowCount();
|
|
|
|
|
|
|
|
ui->table->insertRow(row);
|
|
|
|
ui->table->setItem(row, 0, siteItem);
|
|
|
|
ui->table->setItem(row, 1, userAgentItem);
|
|
|
|
}
|
|
|
|
|
2012-09-01 13:56:00 +02:00
|
|
|
ui->table->sortByColumn(-1);
|
|
|
|
|
2012-08-17 20:56:01 +02:00
|
|
|
connect(ui->add, SIGNAL(clicked()), this, SLOT(addSite()));
|
|
|
|
connect(ui->remove, SIGNAL(clicked()), this, SLOT(removeSite()));
|
|
|
|
connect(ui->edit, SIGNAL(clicked()), this, SLOT(editSite()));
|
|
|
|
connect(ui->table, SIGNAL(itemDoubleClicked(QTableWidgetItem*)), this, SLOT(editSite()));
|
|
|
|
|
|
|
|
connect(ui->changeGlobal, SIGNAL(clicked(bool)), this, SLOT(enableGlobalComboBox(bool)));
|
|
|
|
connect(ui->changePerSite, SIGNAL(clicked(bool)), this, SLOT(enablePerSiteFrame(bool)));
|
|
|
|
|
|
|
|
enableGlobalComboBox(ui->changeGlobal->isChecked());
|
|
|
|
enablePerSiteFrame(ui->changePerSite->isChecked());
|
2015-10-06 10:10:27 +02:00
|
|
|
|
|
|
|
#if !QTWEBENGINE_DISABLED
|
|
|
|
ui->perSiteFrame->setVisible(false);
|
|
|
|
ui->changePerSite->setVisible(false);
|
|
|
|
#endif
|
2012-08-17 20:56:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void UserAgentDialog::addSite()
|
|
|
|
{
|
|
|
|
QString site;
|
|
|
|
QString userAgent;
|
|
|
|
|
|
|
|
if (showEditDialog(tr("Add new site"), &site, &userAgent)) {
|
|
|
|
QTableWidgetItem* siteItem = new QTableWidgetItem(site);
|
|
|
|
QTableWidgetItem* userAgentItem = new QTableWidgetItem(userAgent);
|
|
|
|
|
|
|
|
int row = ui->table->rowCount();
|
|
|
|
|
|
|
|
ui->table->insertRow(row);
|
|
|
|
ui->table->setItem(row, 0, siteItem);
|
|
|
|
ui->table->setItem(row, 1, userAgentItem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UserAgentDialog::removeSite()
|
|
|
|
{
|
|
|
|
int row = ui->table->currentRow();
|
|
|
|
|
|
|
|
QTableWidgetItem* siteItem = ui->table->item(row, 0);
|
|
|
|
QTableWidgetItem* userAgentItem = ui->table->item(row, 1);
|
|
|
|
|
|
|
|
if (siteItem && userAgentItem) {
|
|
|
|
delete siteItem;
|
|
|
|
delete userAgentItem;
|
|
|
|
|
|
|
|
ui->table->removeRow(row);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UserAgentDialog::editSite()
|
|
|
|
{
|
|
|
|
int row = ui->table->currentRow();
|
|
|
|
|
|
|
|
QTableWidgetItem* siteItem = ui->table->item(row, 0);
|
|
|
|
QTableWidgetItem* userAgentItem = ui->table->item(row, 1);
|
|
|
|
|
|
|
|
if (siteItem && userAgentItem) {
|
|
|
|
QString site = siteItem->text();
|
|
|
|
QString userAgent = userAgentItem->text();
|
|
|
|
|
|
|
|
if (showEditDialog(tr("Edit site"), &site, &userAgent)) {
|
|
|
|
siteItem->setText(site);
|
|
|
|
userAgentItem->setText(userAgent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UserAgentDialog::accept()
|
|
|
|
{
|
|
|
|
QString globalUserAgent = ui->changeGlobal->isChecked() ? ui->globalComboBox->currentText() : QString();
|
|
|
|
QStringList domainList;
|
|
|
|
QStringList userAgentsList;
|
|
|
|
|
|
|
|
for (int i = 0; i < ui->table->rowCount(); ++i) {
|
|
|
|
QTableWidgetItem* siteItem = ui->table->item(i, 0);
|
|
|
|
QTableWidgetItem* userAgentItem = ui->table->item(i, 1);
|
|
|
|
|
|
|
|
if (!siteItem || !userAgentItem) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString domain = siteItem->text().trimmed();
|
|
|
|
QString userAgent = userAgentItem->text().trimmed();
|
|
|
|
|
|
|
|
if (domain.isEmpty() || userAgent.isEmpty()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
domainList.append(domain);
|
|
|
|
userAgentsList.append(userAgent);
|
|
|
|
}
|
|
|
|
|
|
|
|
Settings settings;
|
|
|
|
settings.beginGroup("Web-Browser-Settings");
|
|
|
|
settings.setValue("UserAgent", globalUserAgent);
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
settings.beginGroup("User-Agent-Settings");
|
|
|
|
settings.setValue("UsePerDomainUA", ui->changePerSite->isChecked());
|
|
|
|
settings.setValue("DomainList", domainList);
|
|
|
|
settings.setValue("UserAgentsList", userAgentsList);
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
m_manager->loadSettings();
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void UserAgentDialog::enableGlobalComboBox(bool enable)
|
|
|
|
{
|
|
|
|
ui->globalComboBox->setEnabled(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UserAgentDialog::enablePerSiteFrame(bool enable)
|
|
|
|
{
|
|
|
|
ui->perSiteFrame->setEnabled(enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool UserAgentDialog::showEditDialog(const QString &title, QString* rSite, QString* rUserAgent)
|
|
|
|
{
|
2014-02-01 19:21:49 +01:00
|
|
|
if (!rSite || !rUserAgent) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-17 20:56:01 +02:00
|
|
|
QDialog* dialog = new QDialog(this);
|
|
|
|
QFormLayout* layout = new QFormLayout(dialog);
|
|
|
|
QLineEdit* editSite = new QLineEdit(dialog);
|
|
|
|
QComboBox* editAgent = new QComboBox(dialog);
|
2013-07-11 18:18:32 +02:00
|
|
|
editAgent->setLayoutDirection(Qt::LeftToRight);
|
2012-08-17 20:56:01 +02:00
|
|
|
editAgent->setEditable(true);
|
|
|
|
editAgent->addItems(m_knownUserAgents);
|
|
|
|
|
|
|
|
QDialogButtonBox* box = new QDialogButtonBox(dialog);
|
|
|
|
box->addButton(QDialogButtonBox::Ok);
|
|
|
|
box->addButton(QDialogButtonBox::Cancel);
|
|
|
|
|
|
|
|
connect(box, SIGNAL(rejected()), dialog, SLOT(reject()));
|
|
|
|
connect(box, SIGNAL(accepted()), dialog, SLOT(accept()));
|
|
|
|
|
|
|
|
layout->addRow(new QLabel(tr("Site domain: ")), editSite);
|
|
|
|
layout->addRow(new QLabel(tr("User Agent: ")), editAgent);
|
|
|
|
layout->addRow(box);
|
|
|
|
|
2014-02-01 19:21:49 +01:00
|
|
|
editSite->setText(*rSite);
|
|
|
|
editAgent->lineEdit()->setText(*rUserAgent);
|
2012-08-17 20:56:01 +02:00
|
|
|
|
2014-02-01 19:21:49 +01:00
|
|
|
editSite->setFocus();
|
|
|
|
editAgent->lineEdit()->setCursorPosition(0);
|
2012-08-17 20:56:01 +02:00
|
|
|
|
|
|
|
dialog->setWindowTitle(title);
|
|
|
|
dialog->setMinimumSize(550, 100);
|
2012-08-24 14:55:06 +02:00
|
|
|
dialog->setMaximumWidth(550);
|
2012-08-17 20:56:01 +02:00
|
|
|
|
|
|
|
if (dialog->exec()) {
|
|
|
|
*rSite = editSite->text();
|
|
|
|
*rUserAgent = editAgent->currentText();
|
|
|
|
|
|
|
|
return !rSite->isEmpty() && !rUserAgent->isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
UserAgentDialog::~UserAgentDialog()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|