/* Copyright (c) 2013, 2014 Montel Laurent This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "templatemanager.h" #include "templatewidgets/templatelistwidget.h" #include #include #include #include #include using namespace PimCommon; TemplateManager::TemplateManager(const QString &relativeTemplateDir, PimCommon::TemplateListWidget *templateListWidget) : QObject(templateListWidget), mTemplateListWidget(templateListWidget) { mDirWatch = new KDirWatch( this ); initTemplatesDirectories(relativeTemplateDir); connect( mDirWatch, SIGNAL(dirty(QString)), SLOT(slotDirectoryChanged()) ); loadTemplates(); } TemplateManager::~TemplateManager() { } void TemplateManager::slotDirectoryChanged() { mTemplateListWidget->loadTemplates(); loadTemplates(); } void TemplateManager::initTemplatesDirectories(const QString &templatesRelativePath) { if (!templatesRelativePath.isEmpty()) { mTemplatesDirectories = KGlobal::dirs()->findDirs("data", templatesRelativePath); if (mTemplatesDirectories.count() < 2) { //Make sure to add local directory const QString localDirectory = KStandardDirs::locateLocal("data", templatesRelativePath); if (!mTemplatesDirectories.contains(localDirectory)) { mTemplatesDirectories.append(localDirectory); } } } } void TemplateManager::loadTemplates() { if ( !mTemplatesDirectories.isEmpty() ) { Q_FOREACH (const QString &directory, mTemplatesDirectories) { mDirWatch->removeDir( directory ); } } else { return; } Q_FOREACH (const QString &directory, mTemplatesDirectories) { QDirIterator dirIt( directory, QStringList(), QDir::AllDirs | QDir::NoDotAndDotDot ); while ( dirIt.hasNext() ) { dirIt.next(); TemplateInfo info = loadTemplate(dirIt.filePath(), QLatin1String("template.desktop")); if (info.isValid()) { mTemplateListWidget->addDefaultTemplate(info.name, info.script); } } mDirWatch->addDir( directory ); } mDirWatch->startScan(); } TemplateInfo TemplateManager::loadTemplate(const QString &themePath, const QString &defaultDesktopFileName) { TemplateInfo info; const QString themeInfoFile = themePath + QDir::separator() + defaultDesktopFileName; KConfig config( themeInfoFile ); KConfigGroup group( &config, QLatin1String( "Desktop Entry" ) ); info.name = group.readEntry( "Name", QString() ); const QString filename = group.readEntry( "FileName" , QString() ); if (!filename.isEmpty()) { QFile file(themePath + QDir::separator() + filename); if (file.exists()) { if (file.open(QIODevice::ReadOnly)) { info.script = QString::fromUtf8(file.readAll()); } } } return info; } #include "moc_templatemanager.cpp"