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

89 lines
2.8 KiB
C++
Raw Normal View History

/*
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 "settingswidget.h"
2014-10-08 12:26:25 +08:00
#include "src/widget/widget.h"
#include "ui_mainwindow.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 <QTabWidget>
2014-10-08 20:25:32 +08:00
SettingsWidget::SettingsWidget(QWidget* parent)
2014-10-06 00:17:01 +08:00
: QWidget(parent)
{
2014-10-06 02:02:12 +08:00
body = new QWidget(this);
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;
GenericForm* cfgForms[] = { gfrm, pfrm, avfrm, expfrm };
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);
}
2014-10-06 00:17:01 +08:00
SettingsWidget::~SettingsWidget()
{
}
2014-10-17 01:24:16 +08:00
void SettingsWidget::setBodyHeadStyle(QString style)
2014-10-17 00:17:25 +08:00
{
2014-10-17 01:24:16 +08:00
head->setStyle(QStyleFactory::create(style));
2014-10-17 00:17:25 +08:00
body->setStyle(QStyleFactory::create(style));
}
2014-10-06 00:17:01 +08:00
void SettingsWidget::show(Ui::MainWindow& ui)
2014-09-15 02:42:27 +08:00
{
2014-10-06 00:17:01 +08:00
ui.mainContent->layout()->addWidget(body);
ui.mainHead->layout()->addWidget(head);
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
}