2014-09-13 16:32:24 +08:00
|
|
|
/*
|
2015-06-06 09:40:08 +08:00
|
|
|
Copyright © 2014-2015 by The qTox Project
|
|
|
|
|
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"
|
2014-10-08 12:26:25 +08:00
|
|
|
#include "src/widget/widget.h"
|
2015-05-14 10:46:28 +08:00
|
|
|
#include "src/video/camerasource.h"
|
2014-10-08 12:26:25 +08:00
|
|
|
#include "src/widget/form/settings/generalform.h"
|
|
|
|
#include "src/widget/form/settings/privacyform.h"
|
|
|
|
#include "src/widget/form/settings/avform.h"
|
2014-11-13 00:30:55 +08:00
|
|
|
#include "src/widget/form/settings/advancedform.h"
|
2015-06-20 18:59:46 +08:00
|
|
|
#include "src/widget/form/settings/aboutform.h"
|
2015-06-06 07:44:47 +08:00
|
|
|
#include "src/widget/translator.h"
|
2015-06-17 02:25:19 +08:00
|
|
|
#include "src/widget/contentlayout.h"
|
2014-10-15 23:45:41 +08:00
|
|
|
#include <QTabWidget>
|
2015-06-17 02:25:19 +08:00
|
|
|
#include <QLabel>
|
2015-07-20 22:03:01 +08:00
|
|
|
#include <QWindow>
|
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
|
|
|
{
|
2015-06-17 02:25:19 +08:00
|
|
|
body = new QWidget();
|
2014-10-15 23:45:41 +08:00
|
|
|
QVBoxLayout* bodyLayout = new QVBoxLayout();
|
2014-10-06 00:17:01 +08:00
|
|
|
body->setLayout(bodyLayout);
|
2014-09-15 18:45:59 +08:00
|
|
|
|
2014-10-06 02:02:12 +08:00
|
|
|
head = new QWidget(this);
|
2014-10-15 23:45:41 +08:00
|
|
|
QHBoxLayout* headLayout = new QHBoxLayout();
|
2014-10-06 02:02:12 +08:00
|
|
|
head->setLayout(headLayout);
|
|
|
|
|
|
|
|
imgLabel = new QLabel();
|
|
|
|
headLayout->addWidget(imgLabel);
|
|
|
|
|
|
|
|
nameLabel = new QLabel();
|
|
|
|
QFont bold;
|
|
|
|
bold.setBold(true);
|
|
|
|
nameLabel->setFont(bold);
|
|
|
|
headLayout->addWidget(nameLabel);
|
|
|
|
headLayout->addStretch(1);
|
|
|
|
|
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-06 02:02:12 +08:00
|
|
|
|
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);
|
|
|
|
PrivacyForm* pfrm = new PrivacyForm;
|
|
|
|
AVForm* avfrm = new AVForm;
|
2014-11-13 00:30:55 +08:00
|
|
|
AdvancedForm *expfrm = new AdvancedForm;
|
2015-06-20 18:59:46 +08:00
|
|
|
AboutForm *abtfrm = new AboutForm;
|
2014-09-15 18:45:59 +08:00
|
|
|
|
2015-06-20 18:59:46 +08:00
|
|
|
cfgForms = {{ gfrm, 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
|
|
|
{
|
2015-06-06 09:40:08 +08:00
|
|
|
head->setStyle(QStyleFactory::create(style));
|
2014-10-17 00:17:25 +08:00
|
|
|
body->setStyle(QStyleFactory::create(style));
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2015-06-17 02:25:19 +08:00
|
|
|
if (body->isVisible())
|
|
|
|
{
|
2015-07-20 22:03:01 +08:00
|
|
|
body->window()->windowHandle()->alert(0);
|
2015-06-17 02:25:19 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsWidget::show(ContentLayout* contentLayout)
|
|
|
|
{
|
|
|
|
contentLayout->mainContent->layout()->addWidget(body);
|
|
|
|
contentLayout->mainHead->layout()->addWidget(head);
|
2014-10-06 00:17:01 +08:00
|
|
|
body->show();
|
|
|
|
head->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)
|
|
|
|
{
|
2014-10-06 02:02:12 +08:00
|
|
|
this->settingsWidgets->setCurrentIndex(index);
|
2014-10-08 20:25:32 +08:00
|
|
|
GenericForm* currentWidget = static_cast<GenericForm*>(this->settingsWidgets->widget(index));
|
2014-10-06 02:02:12 +08:00
|
|
|
nameLabel->setText(currentWidget->getFormName());
|
|
|
|
imgLabel->setPixmap(currentWidget->getFormIcon().scaledToHeight(40, Qt::SmoothTransformation));
|
2014-10-06 00:30:31 +08:00
|
|
|
}
|
2015-06-06 03:37:01 +08:00
|
|
|
|
|
|
|
void SettingsWidget::retranslateUi()
|
|
|
|
{
|
|
|
|
GenericForm* currentWidget = static_cast<GenericForm*>(settingsWidgets->currentWidget());
|
|
|
|
nameLabel->setText(currentWidget->getFormName());
|
|
|
|
for (size_t i=0; i<cfgForms.size(); i++)
|
|
|
|
settingsWidgets->setTabText(i, cfgForms[i]->getFormName());
|
|
|
|
}
|