mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
115 lines
4.0 KiB
C++
115 lines
4.0 KiB
C++
/*
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
This program is libre 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 COPYING file for more details.
|
|
*/
|
|
|
|
#include "ui_generalsettings.h"
|
|
#include "generalform.h"
|
|
#include "widget/form/settingswidget.h"
|
|
#include "widget/widget.h"
|
|
#include "misc/settings.h"
|
|
#include "misc/smileypack.h"
|
|
#include <QMessageBox>
|
|
|
|
GeneralForm::GeneralForm() :
|
|
GenericForm(tr("General Settings"), QPixmap(":/img/settings/general.png"))
|
|
{
|
|
bodyUI = new Ui::GeneralSettings;
|
|
bodyUI->setupUi(this);
|
|
|
|
bodyUI->cbEnableIPv6->setChecked(Settings::getInstance().getEnableIPv6());
|
|
bodyUI->cbUseTranslations->setChecked(Settings::getInstance().getUseTranslations());
|
|
bodyUI->cbMakeToxPortable->setChecked(Settings::getInstance().getMakeToxPortable());
|
|
|
|
for (auto entry : SmileyPack::listSmileyPacks())
|
|
{
|
|
bodyUI->smileyPackBrowser->addItem(entry.first, entry.second);
|
|
}
|
|
bodyUI->smileyPackBrowser->setCurrentIndex(bodyUI->smileyPackBrowser->findData(Settings::getInstance().getSmileyPack()));
|
|
|
|
bodyUI->cbUDPDisabled->setChecked(Settings::getInstance().getForceTCP());
|
|
bodyUI->proxyAddr->setText(Settings::getInstance().getProxyAddr());
|
|
int port = Settings::getInstance().getProxyPort();
|
|
if (port != -1)
|
|
bodyUI->proxyPort->setValue(port);
|
|
|
|
bodyUI->cbUseProxy->setChecked(Settings::getInstance().getUseProxy());
|
|
onUseProxyUpdated();
|
|
|
|
connect(bodyUI->cbEnableIPv6, &QCheckBox::stateChanged, this, &GeneralForm::onEnableIPv6Updated);
|
|
connect(bodyUI->cbUseTranslations, &QCheckBox::stateChanged, this, &GeneralForm::onUseTranslationUpdated);
|
|
connect(bodyUI->cbMakeToxPortable, &QCheckBox::stateChanged, this, &GeneralForm::onMakeToxPortableUpdated);
|
|
connect(bodyUI->smileyPackBrowser, SIGNAL(currentIndexChanged(int)), this, SLOT(onSmileyBrowserIndexChanged(int)));
|
|
// new syntax can't handle overloaded signals... (at least not in a pretty way)
|
|
connect(bodyUI->cbUDPDisabled, &QCheckBox::stateChanged, this, &GeneralForm::onUDPUpdated);
|
|
connect(bodyUI->proxyAddr, &QLineEdit::editingFinished, this, &GeneralForm::onProxyAddrEdited);
|
|
connect(bodyUI->proxyPort, SIGNAL(valueChanged(int)), this, SLOT(onProxyPortEdited(int)));
|
|
connect(bodyUI->cbUseProxy, &QCheckBox::stateChanged, this, &GeneralForm::onUseProxyUpdated);
|
|
}
|
|
|
|
GeneralForm::~GeneralForm()
|
|
{
|
|
delete bodyUI;
|
|
}
|
|
|
|
void GeneralForm::onEnableIPv6Updated()
|
|
{
|
|
Settings::getInstance().setEnableIPv6(bodyUI->cbEnableIPv6->isChecked());
|
|
}
|
|
|
|
void GeneralForm::onUseTranslationUpdated()
|
|
{
|
|
Settings::getInstance().setUseTranslations(bodyUI->cbUseTranslations->isChecked());
|
|
}
|
|
|
|
void GeneralForm::onMakeToxPortableUpdated()
|
|
{
|
|
Settings::getInstance().setMakeToxPortable(bodyUI->cbMakeToxPortable->isChecked());
|
|
}
|
|
|
|
void GeneralForm::onSmileyBrowserIndexChanged(int index)
|
|
{
|
|
QString filename = bodyUI->smileyPackBrowser->itemData(index).toString();
|
|
Settings::getInstance().setSmileyPack(filename);
|
|
}
|
|
|
|
void GeneralForm::onUDPUpdated()
|
|
{
|
|
Settings::getInstance().setForceTCP(bodyUI->cbUDPDisabled->isChecked());
|
|
}
|
|
|
|
void GeneralForm::onProxyAddrEdited()
|
|
{
|
|
Settings::getInstance().setProxyAddr(bodyUI->proxyAddr->text());
|
|
}
|
|
|
|
void GeneralForm::onProxyPortEdited(int port)
|
|
{
|
|
if (port > 0)
|
|
{
|
|
Settings::getInstance().setProxyPort(port);
|
|
} else {
|
|
Settings::getInstance().setProxyPort(-1);
|
|
}
|
|
}
|
|
|
|
void GeneralForm::onUseProxyUpdated()
|
|
{
|
|
bool state = bodyUI->cbUseProxy->isChecked();
|
|
|
|
bodyUI->proxyAddr->setEnabled(state);
|
|
bodyUI->proxyPort->setEnabled(state);
|
|
Settings::getInstance().setUseProxy(state);
|
|
}
|