summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-06-15 20:31:28 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-06-15 20:31:28 +0000
commit0c26a790ee2a5702a8c87a9cd1af666d17afcc05 (patch)
treea1c612163c1d2b9c34806ea40e1c6a5bc17ce4e5
parent738d83c59b2adc480751e0e70ccd75adc3d5903d (diff)
Theme Editor: Added copyright headers to ConfigDocument files, continued work on configuration editing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26862 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--utils/themeeditor/configdocument.cpp98
-rw-r--r--utils/themeeditor/configdocument.h21
2 files changed, 118 insertions, 1 deletions
diff --git a/utils/themeeditor/configdocument.cpp b/utils/themeeditor/configdocument.cpp
index 95daec0b60..c212cc52ce 100644
--- a/utils/themeeditor/configdocument.cpp
+++ b/utils/themeeditor/configdocument.cpp
@@ -1,6 +1,33 @@
+/***************************************************************************
+ * __________ __ ___.
+ * 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"
#include "configdocument.h"
#include "ui_configdocument.h"
+#include <QMessageBox>
+#include <QFile>
+#include <QSettings>
+#include <QFileDialog>
+
ConfigDocument::ConfigDocument(QMap<QString, QString>& settings, QString file,
QWidget *parent)
: TabContent(parent),
@@ -44,17 +71,86 @@ QString ConfigDocument::title() const
void ConfigDocument::save()
{
+ QFile fout(filePath);
+
+ if(!fout.exists())
+ {
+ saveAs();
+ return;
+ }
+
+ fout.open(QFile::WriteOnly);
+ fout.write(toPlainText().toAscii());
+ fout.close();
+
+ saved = toPlainText();
+ emit titleChanged(title());
}
void ConfigDocument::saveAs()
{
+ /* 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());
}
bool ConfigDocument::requestClose()
{
-
+ 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;
+ }
+ }
+ return false;
}
QString ConfigDocument::toPlainText() const
diff --git a/utils/themeeditor/configdocument.h b/utils/themeeditor/configdocument.h
index 2f4c2501a1..9aa1a63da5 100644
--- a/utils/themeeditor/configdocument.h
+++ b/utils/themeeditor/configdocument.h
@@ -1,3 +1,24 @@
+/***************************************************************************
+ * __________ __ ___.
+ * 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.
+ *
+ ****************************************************************************/
+
#ifndef CONFIGDOCUMENT_H
#define CONFIGDOCUMENT_H