summaryrefslogtreecommitdiffstats
path: root/scribus/plugins/newfromtemplateplugin/nftsettings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scribus/plugins/newfromtemplateplugin/nftsettings.cpp')
-rw-r--r--scribus/plugins/newfromtemplateplugin/nftsettings.cpp101
1 files changed, 101 insertions, 0 deletions
diff --git a/scribus/plugins/newfromtemplateplugin/nftsettings.cpp b/scribus/plugins/newfromtemplateplugin/nftsettings.cpp
new file mode 100644
index 0000000..1365ecd
--- /dev/null
+++ b/scribus/plugins/newfromtemplateplugin/nftsettings.cpp
@@ -0,0 +1,101 @@
+/*
+For general Scribus (>=1.3.2) copyright and licensing information please refer
+to the COPYING file provided with the program. Following this notice may exist
+a copyright and/or license notice that predates the release of Scribus 1.3.2
+for which a new license (GPL+exception) is in place.
+*/
+/***************************************************************************
+ * Riku Leino, tsoots@gmail.com *
+ ***************************************************************************/
+#include "nftsettings.h"
+#include "scpaths.h"
+
+nftsettings::nftsettings(QString guilang, QString templateDir)
+{
+ lang = guilang;
+ scribusShare = ScPaths::instance().templateDir();
+ scribusUserHome = QDir::toNativeSeparators(ScPaths::getApplicationDataDir());
+ userTemplateDir = templateDir;
+ if (userTemplateDir.right(1) == "/")
+ userTemplateDir = userTemplateDir.left(userTemplateDir.length() - 1);
+ read();
+}
+
+void nftsettings::read()
+{
+ handler = new nftrcreader(&templates,scribusUserHome);
+ reader = new QXmlSimpleReader();
+ reader->setContentHandler(handler);
+
+ addTemplates(scribusShare);
+ addTemplates(scribusUserHome+"/templates");
+ if ((!userTemplateDir.isNull()) && (!userTemplateDir.isEmpty()))
+ addTemplates(userTemplateDir);
+}
+
+void nftsettings::addTemplates(QString dir) // dir will be searched for a sub folder called templates
+{
+ // Add templates from the dir itself
+ QString tmplFile = findTemplateXml(dir);
+ QFile* tmplxml = new QFile(QDir::toNativeSeparators(tmplFile));
+ handler->setSourceDir(dir);
+ handler->setSourceFile(tmplFile);
+ if (tmplxml->exists())
+ {
+ QXmlInputSource* source = new QXmlInputSource(tmplxml);
+ reader->parse(source);
+ delete source;
+ }
+ delete tmplxml;
+
+
+ // And from all the subdirectories. template.xml file is only searched one dir level deeper than the dir
+ QDir tmpldir(dir);
+ if (tmpldir.exists())
+ {
+ tmpldir.setFilter(QDir::Dirs);
+ QStringList dirs = tmpldir.entryList();
+ for (int i = 0; i < dirs.size(); ++i)
+ {
+ if ((dirs[i] != ".") && (dirs[i] != "..")) {
+ tmplFile = findTemplateXml(dir + "/" + dirs[i]);
+ QFile* tmplxml = new QFile(QDir::toNativeSeparators(tmplFile));
+ handler->setSourceDir(dir+"/"+dirs[i]);
+ handler->setSourceFile(tmplFile);
+ if (tmplxml->exists())
+ {
+ QXmlInputSource* source = new QXmlInputSource(tmplxml);
+ reader->parse(source);
+ delete source;
+ }
+ delete tmplxml;
+ }
+ }
+ }
+}
+
+QString nftsettings::findTemplateXml(QString dir)
+{
+ QString tmp = dir + "/template." + lang + ".xml";
+ if (QFile(tmp).exists())
+ return tmp;
+
+ if (lang.length() > 2)
+ {
+ tmp = dir + "/template." + lang.left(2) + ".xml";
+ if (QFile(tmp).exists())
+ return tmp;
+ }
+ return dir + "/template.xml";
+}
+
+nftsettings::~ nftsettings()
+{
+ delete reader;
+ delete handler;
+ for (uint i = 0; i < templates.size(); ++i)
+ {
+ if (templates[i] != NULL)
+ delete templates[i];
+ }
+}