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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
/*
SPDX-FileCopyrightText: 2012 Miha Čančula <miha@noughmad.eu>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "templateoptionspage.h"
#include "templateclassassistant.h"
#include "debug.h"
#include <language/codegen/sourcefiletemplate.h>
#include <KLocalizedString>
#include <QLineEdit>
#include <QSpinBox>
#include <QGroupBox>
#include <QVBoxLayout>
#include <QFormLayout>
#include <QLabel>
#include <QCheckBox>
#include <QComboBox>
using namespace KDevelop;
class KDevelop::TemplateOptionsPagePrivate
{
public:
QVector<SourceFileTemplate::ConfigOption> entries;
QHash<QString, QWidget*> controls;
QHash<QString, QByteArray> typeProperties;
QWidget *firstEditWidget;
QList<QWidget*> groupBoxes;
};
TemplateOptionsPage::TemplateOptionsPage(QWidget* parent)
: QWidget(parent)
, d(new TemplateOptionsPagePrivate)
{
d->firstEditWidget = nullptr;
d->typeProperties.insert(QStringLiteral("String"), "text");
d->typeProperties.insert(QStringLiteral("Enum"), "currentText");
d->typeProperties.insert(QStringLiteral("Int"), "value");
d->typeProperties.insert(QStringLiteral("Bool"), "checked");
}
TemplateOptionsPage::~TemplateOptionsPage()
{
delete d;
}
void TemplateOptionsPage::load(const SourceFileTemplate& fileTemplate, TemplateRenderer* renderer)
{
// TODO: keep any old changed values, as it comes by surprise to have them lost
// when going back and forward
// clear anything as there is on reentering the page
d->entries.clear();
d->controls.clear();
// clear any old option group boxes & the base layout
d->firstEditWidget = nullptr;
qDeleteAll(d->groupBoxes);
d->groupBoxes.clear();
delete layout();
auto* layout = new QVBoxLayout();
layout->setContentsMargins(0, 0, 0, 0);
const auto customOptions = fileTemplate.customOptions(renderer);
d->groupBoxes.reserve(customOptions.size());
d->entries.reserve(customOptions.size());
for (const auto& optionGroup : customOptions) {
auto* box = new QGroupBox(this);
d->groupBoxes.append(box);
box->setTitle(optionGroup.name);
auto* formLayout = new QFormLayout;
d->entries << optionGroup.options;
for (const auto& entry : optionGroup.options) {
QWidget* control = nullptr;
const QString type = entry.type;
if (type == QLatin1String("String"))
{
control = new QLineEdit(entry.value.toString(), box);
}
else if (type == QLatin1String("Enum"))
{
auto input = new QComboBox(box);
input->addItems(entry.values);
input->setCurrentText(entry.value.toString());
control = input;
}
else if (type == QLatin1String("Int"))
{
auto input = new QSpinBox(box);
input->setValue(entry.value.toInt());
if (!entry.minValue.isEmpty())
{
input->setMinimum(entry.minValue.toInt());
}
if (!entry.maxValue.isEmpty())
{
input->setMaximum(entry.maxValue.toInt());
}
control = input;
}
else if (type == QLatin1String("Bool"))
{
bool checked = (QString::compare(entry.value.toString(), QStringLiteral("true"), Qt::CaseInsensitive) == 0);
auto* checkBox = new QCheckBox(box);
checkBox->setCheckState(checked ? Qt::Checked : Qt::Unchecked);
control = checkBox;
}
else
{
qCDebug(PLUGIN_FILETEMPLATES) << "Unrecognized option type" << entry.type;
}
if (control)
{
const QString entryLabelText = i18nc("@label", "%1:", entry.label);
auto* label = new QLabel(entryLabelText, box);
if (!entry.context.isEmpty()) {
label->setToolTip(entry.context);
control->setToolTip(entry.context);
}
formLayout->addRow(label, control);
d->controls.insert(entry.name, control);
if (d->firstEditWidget == nullptr) {
d->firstEditWidget = control;
}
}
}
box->setLayout(formLayout);
layout->addWidget(box);
}
layout->addStretch();
setLayout(layout);
}
QVariantHash TemplateOptionsPage::templateOptions() const
{
QVariantHash values;
for (const SourceFileTemplate::ConfigOption& entry : std::as_const(d->entries)) {
Q_ASSERT(d->controls.contains(entry.name));
Q_ASSERT(d->typeProperties.contains(entry.type));
values.insert(entry.name, d->controls[entry.name]->property(d->typeProperties[entry.type].constData()));
}
qCDebug(PLUGIN_FILETEMPLATES) << values.size() << d->entries.size();
return values;
}
void TemplateOptionsPage::setFocusToFirstEditWidget()
{
if (d->firstEditWidget) {
d->firstEditWidget->setFocus();
}
}
#include "moc_templateoptionspage.cpp"
|