2012-03-04 18:30:34 +01:00
|
|
|
/* ============================================================
|
2017-08-25 17:11:29 +02:00
|
|
|
* Mouse Gestures plugin for Falkon
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2012-2014 David Rosca <nowrep@gmail.com>
|
2012-03-04 18:30:34 +01: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/>.
|
|
|
|
* ============================================================ */
|
2012-02-24 21:03:44 +01:00
|
|
|
#include "mousegesturessettingsdialog.h"
|
|
|
|
#include "ui_mousegesturessettingsdialog.h"
|
2012-03-04 18:30:34 +01:00
|
|
|
#include "licenseviewer.h"
|
2014-04-05 17:46:05 +02:00
|
|
|
#include "mousegestures.h"
|
2012-02-24 21:03:44 +01:00
|
|
|
|
2012-09-09 12:31:55 +02:00
|
|
|
#include <QLabel>
|
|
|
|
|
2014-04-05 17:46:05 +02:00
|
|
|
MouseGesturesSettingsDialog::MouseGesturesSettingsDialog(MouseGestures* gestures, QWidget* parent)
|
2012-02-24 21:03:44 +01:00
|
|
|
: QDialog(parent)
|
|
|
|
, ui(new Ui::MouseGesturesSettingsDialog)
|
2014-04-05 17:46:05 +02:00
|
|
|
, m_gestures(gestures)
|
2012-02-24 21:03:44 +01:00
|
|
|
{
|
2012-09-11 11:31:28 +02:00
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
2012-02-24 21:03:44 +01:00
|
|
|
ui->setupUi(this);
|
2012-09-09 12:31:55 +02:00
|
|
|
|
|
|
|
if (QApplication::isRightToLeft()) {
|
2012-09-09 18:03:04 +02:00
|
|
|
ui->label_5->setPixmap(QPixmap(":/mousegestures/data/right.gif"));
|
|
|
|
ui->label_6->setPixmap(QPixmap(":/mousegestures/data/left.gif"));
|
|
|
|
ui->label_18->setPixmap(QPixmap(":/mousegestures/data/up-right.gif"));
|
|
|
|
ui->label_20->setPixmap(QPixmap(":/mousegestures/data/up-left.gif"));
|
2012-09-09 12:31:55 +02:00
|
|
|
}
|
|
|
|
|
2014-04-05 17:46:05 +02:00
|
|
|
m_gestures->loadSettings();
|
|
|
|
ui->mouseButtonComboBox->setCurrentIndex(m_gestures->buttonToIndex());
|
|
|
|
ui->enableRockerNavigation->setChecked(m_gestures->rockerNavigationEnabled());
|
|
|
|
|
2012-02-24 21:03:44 +01:00
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
|
2014-04-05 17:46:05 +02:00
|
|
|
connect(ui->buttonBox, SIGNAL(accepted()), this, SLOT(accepted()));
|
|
|
|
connect(ui->buttonBox, SIGNAL(rejected()), this, SLOT(close()));
|
2012-02-24 21:03:44 +01:00
|
|
|
connect(ui->licenseButton, SIGNAL(clicked()), this, SLOT(showLicense()));
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseGesturesSettingsDialog::~MouseGesturesSettingsDialog()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MouseGesturesSettingsDialog::showLicense()
|
|
|
|
{
|
2012-03-04 18:30:34 +01:00
|
|
|
LicenseViewer* v = new LicenseViewer(this);
|
|
|
|
v->setLicenseFile(":mousegestures/data/copyright");
|
|
|
|
|
|
|
|
v->show();
|
2012-02-24 21:03:44 +01:00
|
|
|
}
|
2014-04-05 17:46:05 +02:00
|
|
|
|
|
|
|
void MouseGesturesSettingsDialog::accepted()
|
|
|
|
{
|
|
|
|
m_gestures->setGestureButtonByIndex(ui->mouseButtonComboBox->currentIndex());
|
|
|
|
m_gestures->setRockerNavigationEnabled(ui->enableRockerNavigation->isChecked());
|
|
|
|
m_gestures->saveSettings();
|
|
|
|
close();
|
|
|
|
}
|