2014-09-13 16:32:24 +08:00
|
|
|
/*
|
2016-11-28 21:33:38 +08:00
|
|
|
Copyright © 2014-2015 by The qTox Project Contributors
|
2015-06-06 09:40:08 +08:00
|
|
|
|
2014-09-13 16:32:24 +08:00
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
2014-09-13 16:32:24 +08:00
|
|
|
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.
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
2014-09-13 16:32:24 +08:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-06-06 09:40:08 +08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-09-13 16:32:24 +08:00
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
2014-09-13 16:32:24 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "settingswidget.h"
|
2016-07-02 07:28:08 +08:00
|
|
|
|
|
|
|
#include <QLabel>
|
2017-02-26 19:52:45 +08:00
|
|
|
#include <QTabWidget>
|
2016-07-02 07:28:08 +08:00
|
|
|
#include <QWindow>
|
|
|
|
|
2016-12-19 10:26:26 +08:00
|
|
|
#include "src/video/camerasource.h"
|
2017-02-26 19:52:45 +08:00
|
|
|
#include "src/widget/contentlayout.h"
|
|
|
|
#include "src/widget/form/settings/aboutform.h"
|
|
|
|
#include "src/widget/form/settings/advancedform.h"
|
|
|
|
#include "src/widget/form/settings/avform.h"
|
2016-12-19 10:26:26 +08:00
|
|
|
#include "src/widget/form/settings/generalform.h"
|
|
|
|
#include "src/widget/form/settings/privacyform.h"
|
2017-02-26 19:52:45 +08:00
|
|
|
#include "src/widget/form/settings/userinterfaceform.h"
|
2016-12-19 10:26:26 +08:00
|
|
|
#include "src/widget/translator.h"
|
2017-02-26 19:52:45 +08:00
|
|
|
#include "src/widget/widget.h"
|
2014-09-13 16:32:24 +08:00
|
|
|
|
2014-10-08 20:25:32 +08:00
|
|
|
SettingsWidget::SettingsWidget(QWidget* parent)
|
2015-09-23 17:57:50 +08:00
|
|
|
: QWidget(parent, Qt::Window)
|
2014-09-13 16:32:24 +08:00
|
|
|
{
|
2016-08-19 17:00:06 +08:00
|
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
2016-07-14 17:27:14 +08:00
|
|
|
|
2014-10-15 23:45:41 +08:00
|
|
|
QVBoxLayout* bodyLayout = new QVBoxLayout();
|
2014-10-06 02:02:12 +08:00
|
|
|
|
2014-10-15 23:45:41 +08:00
|
|
|
settingsWidgets = new QTabWidget(this);
|
2015-05-11 05:40:08 +08:00
|
|
|
settingsWidgets->setTabPosition(QTabWidget::North);
|
2014-10-15 23:45:41 +08:00
|
|
|
bodyLayout->addWidget(settingsWidgets);
|
2014-09-15 18:45:59 +08:00
|
|
|
|
2014-10-15 23:45:41 +08:00
|
|
|
GeneralForm* gfrm = new GeneralForm(this);
|
2016-07-02 07:28:08 +08:00
|
|
|
UserInterfaceForm* uifrm = new UserInterfaceForm(this);
|
|
|
|
PrivacyForm* pfrm = new PrivacyForm();
|
|
|
|
AVForm* avfrm = new AVForm();
|
2017-02-26 19:52:45 +08:00
|
|
|
AdvancedForm* expfrm = new AdvancedForm();
|
|
|
|
AboutForm* abtfrm = new AboutForm();
|
2014-09-15 18:45:59 +08:00
|
|
|
|
2017-02-26 19:52:45 +08:00
|
|
|
cfgForms = {{gfrm, uifrm, pfrm, avfrm, expfrm, abtfrm}};
|
2014-10-15 23:45:41 +08:00
|
|
|
for (GenericForm* cfgForm : cfgForms)
|
|
|
|
settingsWidgets->addTab(cfgForm, cfgForm->getFormIcon(), cfgForm->getFormName());
|
2014-10-06 00:30:31 +08:00
|
|
|
|
2014-10-15 23:45:41 +08:00
|
|
|
connect(settingsWidgets, &QTabWidget::currentChanged, this, &SettingsWidget::onTabChanged);
|
2015-06-06 03:37:01 +08:00
|
|
|
|
|
|
|
Translator::registerHandler(std::bind(&SettingsWidget::retranslateUi, this), this);
|
2014-09-15 18:45:59 +08:00
|
|
|
}
|
|
|
|
|
2014-10-06 00:17:01 +08:00
|
|
|
SettingsWidget::~SettingsWidget()
|
2014-09-15 18:45:59 +08:00
|
|
|
{
|
2015-06-06 03:37:01 +08:00
|
|
|
Translator::unregister(this);
|
2014-09-15 18:45:59 +08:00
|
|
|
}
|
|
|
|
|
2014-10-17 01:24:16 +08:00
|
|
|
void SettingsWidget::setBodyHeadStyle(QString style)
|
2014-10-17 00:17:25 +08:00
|
|
|
{
|
2016-07-10 04:50:27 +08:00
|
|
|
settingsWidgets->setStyle(QStyleFactory::create(style));
|
2014-10-17 00:17:25 +08:00
|
|
|
}
|
|
|
|
|
2015-07-02 01:12:50 +08:00
|
|
|
void SettingsWidget::showAbout()
|
|
|
|
{
|
|
|
|
onTabChanged(settingsWidgets->count() - 1);
|
|
|
|
}
|
|
|
|
|
2015-06-17 02:25:19 +08:00
|
|
|
bool SettingsWidget::isShown() const
|
2014-09-15 02:42:27 +08:00
|
|
|
{
|
2017-02-26 19:52:45 +08:00
|
|
|
if (settingsWidgets->isVisible()) {
|
2016-07-10 04:50:27 +08:00
|
|
|
settingsWidgets->window()->windowHandle()->alert(0);
|
2015-06-17 02:25:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsWidget::show(ContentLayout* contentLayout)
|
|
|
|
{
|
2016-07-10 04:50:27 +08:00
|
|
|
contentLayout->mainContent->layout()->addWidget(settingsWidgets);
|
|
|
|
settingsWidgets->show();
|
2014-10-15 23:45:41 +08:00
|
|
|
onTabChanged(settingsWidgets->currentIndex());
|
2014-09-13 16:32:24 +08:00
|
|
|
}
|
2014-10-06 00:30:31 +08:00
|
|
|
|
|
|
|
void SettingsWidget::onTabChanged(int index)
|
|
|
|
{
|
2016-07-10 04:50:27 +08:00
|
|
|
settingsWidgets->setCurrentIndex(index);
|
2014-10-06 00:30:31 +08:00
|
|
|
}
|
2015-06-06 03:37:01 +08:00
|
|
|
|
|
|
|
void SettingsWidget::retranslateUi()
|
|
|
|
{
|
2016-10-30 06:48:03 +08:00
|
|
|
for (size_t i = 0; i < cfgForms.size(); ++i)
|
2015-06-06 03:37:01 +08:00
|
|
|
settingsWidgets->setTabText(i, cfgForms[i]->getFormName());
|
|
|
|
}
|