aboutsummaryrefslogtreecommitdiff
path: root/lib/settings/settingsdialog.cpp
blob: fea9ab924f5f6c909b61be8df8bc54710191307b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*******************************************************************************
 **
 ** nyamp: yet another media player
 ** Copyright (C) 2017  Aqua-sama
 **
 ** This program is free 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
 ** GNU General Public License for more details.
 **
 ** You should have received a copy of the GNU General Public License
 ** along with this program.  If not, see <http://www.gnu.org/licenses/>.
 **
 ******************************************************************************/

#include "settingsdialog.h"
#include "ui_settingsdialog.h"
#include "configuration.h"
#include <QFormLayout>
#include <QHBoxLayout>
#include <QLineEdit>
#include <QToolButton>
#include <QGroupBox>

inline QHBoxLayout *createEntry(const QString &value, QWidget *widget);

SettingsDialog::SettingsDialog(std::shared_ptr<Configuration> &settings, QWidget *parent) :
    QDialog(parent),
    ui(new Ui::SettingsDialog)
{
    ui->setupUi(this);

    for(const std::string &group : settings->childrenGroups("")) {
        QWidget *widget = widgetForGroup(settings, group, this);
        ui->tabWidget->addTab(widget, QString::fromStdString(group));
    }
}

SettingsDialog::~SettingsDialog()
{
    delete ui;
}

QWidget *widgetForGroup(std::shared_ptr<Configuration> &settings, const std::string &group, QWidget *parent)
{
    QWidget *widget = new QWidget(parent);
    QVBoxLayout *layout = new QVBoxLayout();
    widget->setLayout(layout);

    // add entry for every key
    QFormLayout *form = new QFormLayout();
    for(const std::string &key : settings->childrenSettings(group.c_str())) {
        QHBoxLayout *hBox = createEntry(QString::fromStdString(settings->value<std::string>((group + '.' + key).c_str()).value()), widget);
        form->addRow(parent->tr(key.c_str()), hBox);
    }
    layout->addLayout(form);

    // TODO: iterate through groups
    for(const std::string &childGroup : settings->childrenGroups(group.c_str())) {
        QGroupBox *groupBox = new QGroupBox(QString::fromStdString(childGroup), widget);
        layout->addWidget(groupBox);
        QFormLayout *boxForm = new QFormLayout(groupBox);
        groupBox->setLayout(boxForm);

        const std::string groupPath = group + '.' + childGroup;
        for(const std::string &key : settings->childrenSettings(groupPath.c_str())) {
            QHBoxLayout *hBox = createEntry(QString::fromStdString(settings->value<std::string>((groupPath + '.' + key).c_str()).value()), groupBox);
            boxForm->addRow(parent->tr(key.c_str()), hBox);
        }
    }

    return widget;
}

inline QHBoxLayout *createEntry(const QString &value, QWidget *widget)
{
    QLineEdit *lineEdit = new QLineEdit(widget);
    lineEdit->setText(value);
    QToolButton *resetButton = new QToolButton(widget);
    resetButton->setIcon(widget->style()->standardIcon(QStyle::SP_DialogResetButton));

    QHBoxLayout *hBox = new QHBoxLayout();
    hBox->addWidget(lineEdit);
    hBox->addWidget(resetButton);

    return hBox;
}