2014-09-13 16:32:24 +08:00
|
|
|
/*
|
|
|
|
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 "settingswidget.h"
|
2014-10-08 12:26:25 +08:00
|
|
|
#include "src/widget/widget.h"
|
2014-09-13 16:32:24 +08:00
|
|
|
#include "ui_mainwindow.h"
|
2014-10-24 04:07:44 +08:00
|
|
|
#include "src/video/camera.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"
|
2014-10-15 23:45:41 +08:00
|
|
|
#include <QTabWidget>
|
2014-09-13 16:32:24 +08:00
|
|
|
|
2014-10-08 20:25:32 +08:00
|
|
|
SettingsWidget::SettingsWidget(QWidget* parent)
|
2014-10-06 00:17:01 +08:00
|
|
|
: QWidget(parent)
|
2014-09-13 16:32:24 +08:00
|
|
|
{
|
2014-10-06 02:02:12 +08:00
|
|
|
body = new QWidget(this);
|
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);
|
|
|
|
settingsWidgets->setTabPosition(QTabWidget::South);
|
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;
|
2014-09-15 18:45:59 +08:00
|
|
|
|
2015-03-04 04:29:01 +08:00
|
|
|
GenericForm* cfgForms[] = { gfrm, pfrm, avfrm, expfrm };
|
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);
|
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
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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();
|
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));
|
|
|
|
currentWidget->present();
|
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
|
|
|
}
|