2010-06-15 20:31:28 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Robert Bieber
|
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "projectmodel.h"
|
2010-06-15 06:54:58 +00:00
|
|
|
#include "configdocument.h"
|
|
|
|
#include "ui_configdocument.h"
|
|
|
|
|
2010-06-15 20:31:28 +00:00
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
2010-06-15 06:54:58 +00:00
|
|
|
ConfigDocument::ConfigDocument(QMap<QString, QString>& settings, QString file,
|
|
|
|
QWidget *parent)
|
|
|
|
: TabContent(parent),
|
|
|
|
ui(new Ui::ConfigDocument),
|
|
|
|
filePath(file)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
2010-06-16 07:47:03 +00:00
|
|
|
/* Populating the known keys list */
|
|
|
|
QFile fin(":/resources/configkeys");
|
|
|
|
fin.open(QFile::ReadOnly);
|
|
|
|
|
|
|
|
QStringList* container = &primaryKeys;
|
|
|
|
while(!fin.atEnd())
|
|
|
|
{
|
|
|
|
QString current = QString(fin.readLine());
|
|
|
|
if(current == "-\n")
|
|
|
|
container = &secondaryKeys;
|
|
|
|
else if(current != "\n")
|
|
|
|
container->append(current.trimmed());
|
|
|
|
}
|
|
|
|
|
2010-06-15 06:54:58 +00:00
|
|
|
QMap<QString, QString>::iterator i;
|
|
|
|
for(i = settings.begin(); i != settings.end(); i++)
|
2010-06-16 07:47:03 +00:00
|
|
|
if(i.key() != "themebase")
|
|
|
|
addRow(i.key(), i.value());
|
2010-06-15 06:54:58 +00:00
|
|
|
|
|
|
|
saved = toPlainText();
|
|
|
|
|
|
|
|
QObject::connect(ui->addKeyButton, SIGNAL(pressed()),
|
|
|
|
this, SLOT(addClicked()));
|
|
|
|
}
|
|
|
|
|
|
|
|
ConfigDocument::~ConfigDocument()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigDocument::changeEvent(QEvent *e)
|
|
|
|
{
|
|
|
|
QWidget::changeEvent(e);
|
|
|
|
switch (e->type()) {
|
|
|
|
case QEvent::LanguageChange:
|
|
|
|
ui->retranslateUi(this);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString ConfigDocument::title() const
|
|
|
|
{
|
|
|
|
QStringList decompose = filePath.split("/");
|
|
|
|
return decompose.last();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigDocument::save()
|
|
|
|
{
|
2010-06-15 20:31:28 +00:00
|
|
|
QFile fout(filePath);
|
|
|
|
|
|
|
|
if(!fout.exists())
|
|
|
|
{
|
|
|
|
saveAs();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fout.open(QFile::WriteOnly);
|
|
|
|
fout.write(toPlainText().toAscii());
|
|
|
|
fout.close();
|
|
|
|
|
|
|
|
saved = toPlainText();
|
|
|
|
emit titleChanged(title());
|
2010-06-15 06:54:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigDocument::saveAs()
|
|
|
|
{
|
2010-06-15 20:31:28 +00:00
|
|
|
/* Determining the directory to open */
|
|
|
|
QString directory = filePath;
|
|
|
|
|
|
|
|
QSettings settings;
|
|
|
|
settings.beginGroup("ProjectModel");
|
|
|
|
if(directory == "")
|
|
|
|
directory = settings.value("defaultDirectory", "").toString();
|
|
|
|
|
|
|
|
filePath = QFileDialog::getSaveFileName(this, tr("Save Document"),
|
|
|
|
directory,
|
|
|
|
ProjectModel::fileFilter());
|
|
|
|
directory = filePath;
|
|
|
|
if(filePath == "")
|
|
|
|
return;
|
|
|
|
|
|
|
|
directory.chop(filePath.length() - filePath.lastIndexOf('/') - 1);
|
|
|
|
settings.setValue("defaultDirectory", directory);
|
|
|
|
settings.endGroup();
|
|
|
|
|
|
|
|
QFile fout(filePath);
|
|
|
|
fout.open(QFile::WriteOnly);
|
|
|
|
fout.write(toPlainText().toAscii());
|
|
|
|
fout.close();
|
|
|
|
|
|
|
|
saved = toPlainText();
|
|
|
|
emit titleChanged(title());
|
2010-06-15 20:55:56 +00:00
|
|
|
emit configFileChanged(file());
|
2010-06-15 06:54:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ConfigDocument::requestClose()
|
|
|
|
{
|
2010-06-15 20:31:28 +00:00
|
|
|
if(toPlainText() != saved)
|
|
|
|
{
|
|
|
|
/* Spawning the "Are you sure?" dialog */
|
|
|
|
QMessageBox confirm(this);
|
|
|
|
confirm.setWindowTitle(tr("Confirm Close"));
|
|
|
|
confirm.setText(title() + tr(" has been modified."));
|
|
|
|
confirm.setInformativeText(tr("Do you want to save your changes?"));
|
|
|
|
confirm.setStandardButtons(QMessageBox::Save | QMessageBox::Discard
|
|
|
|
| QMessageBox::Cancel);
|
|
|
|
confirm.setDefaultButton(QMessageBox::Save);
|
|
|
|
int confirmation = confirm.exec();
|
|
|
|
|
|
|
|
switch(confirmation)
|
|
|
|
{
|
|
|
|
case QMessageBox::Save:
|
|
|
|
save();
|
|
|
|
/* After calling save, make sure the user actually went through */
|
|
|
|
if(toPlainText() != saved)
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case QMessageBox::Discard:
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case QMessageBox::Cancel:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-06-15 20:55:56 +00:00
|
|
|
return true;
|
2010-06-15 06:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString ConfigDocument::toPlainText() const
|
|
|
|
{
|
|
|
|
QString buffer = "";
|
|
|
|
|
|
|
|
for(int i = 0; i < keys.count(); i++)
|
|
|
|
{
|
2010-06-16 07:47:03 +00:00
|
|
|
buffer += keys[i]->currentText();
|
2010-06-15 06:54:58 +00:00
|
|
|
buffer += ":";
|
|
|
|
buffer += values[i]->text();
|
|
|
|
buffer += "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigDocument::addRow(QString key, QString value)
|
|
|
|
{
|
|
|
|
QHBoxLayout* layout = new QHBoxLayout();
|
2010-06-16 07:47:03 +00:00
|
|
|
QComboBox* keyEdit = new QComboBox(this);
|
2010-06-15 06:54:58 +00:00
|
|
|
QLineEdit* valueEdit = new QLineEdit(value, this);
|
|
|
|
QPushButton* delButton = new QPushButton(tr("-"), this);
|
2010-06-16 07:47:03 +00:00
|
|
|
QLabel* label = new QLabel(":");
|
|
|
|
|
|
|
|
/* Loading the combo box options */
|
|
|
|
keyEdit->setInsertPolicy(QComboBox::InsertAlphabetically);
|
|
|
|
keyEdit->setEditable(true);
|
|
|
|
keyEdit->addItems(primaryKeys);
|
|
|
|
keyEdit->insertSeparator(keyEdit->count());
|
|
|
|
keyEdit->addItems(secondaryKeys);
|
|
|
|
if(keyEdit->findText(key) != -1)
|
|
|
|
keyEdit->setCurrentIndex(keyEdit->findText(key));
|
|
|
|
else
|
|
|
|
keyEdit->setEditText(key);
|
2010-06-15 06:54:58 +00:00
|
|
|
|
|
|
|
layout->addWidget(keyEdit);
|
2010-06-16 07:47:03 +00:00
|
|
|
layout->addWidget(label);
|
2010-06-15 06:54:58 +00:00
|
|
|
layout->addWidget(valueEdit);
|
|
|
|
layout->addWidget(delButton);
|
|
|
|
|
|
|
|
delButton->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Fixed);
|
|
|
|
delButton->setMaximumWidth(35);
|
|
|
|
|
|
|
|
QObject::connect(delButton, SIGNAL(clicked()),
|
|
|
|
this, SLOT(deleteClicked()));
|
2010-06-16 07:47:03 +00:00
|
|
|
QObject::connect(keyEdit, SIGNAL(currentIndexChanged(QString)),
|
|
|
|
this, SLOT(textChanged()));
|
2010-06-15 20:55:56 +00:00
|
|
|
QObject::connect(keyEdit, SIGNAL(textChanged(QString)),
|
|
|
|
this, SLOT(textChanged()));
|
|
|
|
QObject::connect(valueEdit, SIGNAL(textChanged(QString)),
|
|
|
|
this, SLOT(textChanged()));
|
|
|
|
|
2010-06-15 06:54:58 +00:00
|
|
|
ui->configBoxes->addLayout(layout);
|
|
|
|
|
|
|
|
containers.append(layout);
|
|
|
|
keys.append(keyEdit);
|
|
|
|
values.append(valueEdit);
|
|
|
|
deleteButtons.append(delButton);
|
2010-06-16 07:47:03 +00:00
|
|
|
labels.append(label);
|
2010-06-15 06:54:58 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigDocument::deleteClicked()
|
|
|
|
{
|
|
|
|
QPushButton* button = dynamic_cast<QPushButton*>(sender());
|
|
|
|
int row = deleteButtons.indexOf(button);
|
|
|
|
|
|
|
|
deleteButtons[row]->deleteLater();
|
|
|
|
keys[row]->deleteLater();
|
|
|
|
values[row]->deleteLater();
|
|
|
|
containers[row]->deleteLater();
|
2010-06-16 07:47:03 +00:00
|
|
|
labels[row]->deleteLater();
|
2010-06-15 06:54:58 +00:00
|
|
|
|
|
|
|
deleteButtons.removeAt(row);
|
|
|
|
keys.removeAt(row);
|
|
|
|
values.removeAt(row);
|
|
|
|
containers.removeAt(row);
|
2010-06-16 07:47:03 +00:00
|
|
|
labels.removeAt(row);
|
2010-06-15 06:54:58 +00:00
|
|
|
|
|
|
|
if(saved != toPlainText())
|
|
|
|
emit titleChanged(title() + "*");
|
|
|
|
else
|
|
|
|
emit titleChanged(title());
|
|
|
|
}
|
|
|
|
|
|
|
|
void ConfigDocument::addClicked()
|
|
|
|
{
|
|
|
|
addRow(tr("Key"), tr("Value"));
|
|
|
|
}
|
2010-06-15 20:55:56 +00:00
|
|
|
|
|
|
|
void ConfigDocument::textChanged()
|
|
|
|
{
|
|
|
|
if(toPlainText() != saved)
|
|
|
|
emit titleChanged(title() + "*");
|
|
|
|
else
|
|
|
|
emit titleChanged(title());
|
|
|
|
}
|