1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/widget/form/settingswidget.cpp

131 lines
3.9 KiB
C++
Raw Normal View History

/*
Copyright © 2014-2015 by The qTox Project
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox 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.
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
*/
#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"
#include "src/widget/form/settings/aboutform.h"
2015-06-06 07:44:47 +08:00
#include "src/widget/translator.h"
#include "src/widget/contentlayout.h"
#include <QTabWidget>
#include <QLabel>
#include <QWindow>
2014-10-08 20:25:32 +08:00
SettingsWidget::SettingsWidget(QWidget* parent)
: QWidget(parent, Qt::Window)
{
// block all signals during initialization, including child widgets
blockSignals(true);
body = new QWidget();
QVBoxLayout* bodyLayout = new QVBoxLayout();
2014-10-06 00:17:01 +08:00
body->setLayout(bodyLayout);
2014-10-06 02:02:12 +08:00
head = new QWidget(this);
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);
settingsWidgets = new QTabWidget(this);
settingsWidgets->setTabPosition(QTabWidget::North);
2014-10-06 02:02:12 +08:00
bodyLayout->addWidget(settingsWidgets);
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;
AboutForm *abtfrm = new AboutForm;
cfgForms = {{ gfrm, pfrm, avfrm, expfrm, abtfrm }};
for (GenericForm* cfgForm : cfgForms)
settingsWidgets->addTab(cfgForm, cfgForm->getFormIcon(), cfgForm->getFormName());
2014-10-06 00:30:31 +08:00
connect(settingsWidgets, &QTabWidget::currentChanged, this, &SettingsWidget::onTabChanged);
Translator::registerHandler(std::bind(&SettingsWidget::retranslateUi, this), this);
blockSignals(false);
}
2014-10-06 00:17:01 +08:00
SettingsWidget::~SettingsWidget()
{
Translator::unregister(this);
}
2014-10-17 01:24:16 +08:00
void SettingsWidget::setBodyHeadStyle(QString style)
2014-10-17 00:17:25 +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);
}
bool SettingsWidget::isShown() const
2014-09-15 02:42:27 +08:00
{
if (body->isVisible())
{
body->window()->windowHandle()->alert(0);
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();
onTabChanged(settingsWidgets->currentIndex());
}
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
}
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());
}