From 07a9b076b67b0820e754b0dd1d815ecb23f6d0de Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Fri, 9 Apr 2010 01:02:03 +0000 Subject: [PATCH] layout template packages svn path=/trunk/KDE/kdebase/workspace/; revision=1112736 --- layouttemplatepackagestructure.cpp | 42 ++++++++++++++++++++++++++++++ layouttemplatepackagestructure.h | 41 +++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 layouttemplatepackagestructure.cpp create mode 100644 layouttemplatepackagestructure.h diff --git a/layouttemplatepackagestructure.cpp b/layouttemplatepackagestructure.cpp new file mode 100644 index 000000000..827d7f172 --- /dev/null +++ b/layouttemplatepackagestructure.cpp @@ -0,0 +1,42 @@ +/* + * Copyright 2010 Aaron Seigo + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2, or + * (at your option) any later version. + * + * 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 Library 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 "layouttemplatepackagestructure.h" + +LayoutTemplatePackageStructure::LayoutTemplatePackageStructure(QObject *parent) + : Plasma::PackageStructure(parent) +{ + setServicePrefix("plasma-layout-template"); + setDefaultPackageRoot("plasma/layout-templates"); + addFileDefinition("mainscript", "main.js", i18n("Main Script File")); + setRequired("mainscript", true); +} + +LayoutTemplatePackageStructure::~LayoutTemplatePackageStructure() +{ + +} + +/* + bool installPackage(const QString &archivePath, const QString &packageRoot); + bool uninstallPackage(const QString &packageName, const QString &packageRoot); + */ + +#include "layouttemplatepackagestructure.moc" + diff --git a/layouttemplatepackagestructure.h b/layouttemplatepackagestructure.h new file mode 100644 index 000000000..36d32bf30 --- /dev/null +++ b/layouttemplatepackagestructure.h @@ -0,0 +1,41 @@ +/* + * Copyright 2010 Aaron Seigo + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2, or + * (at your option) any later version. + * + * 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 Library 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. + */ + +#ifndef TEMPLATETEMPLATEPACKAGE_H +#define TEMPLATETEMPLATEPACKAGE_H + +#include +#include "../plasmagenericshell_export.h" + +class PLASMAGENERICSHELL_EXPORT LayoutTemplatePackageStructure : public Plasma::PackageStructure +{ + Q_OBJECT + +public: + LayoutTemplatePackageStructure(QObject *parent = 0); + ~LayoutTemplatePackageStructure(); +/* + bool installPackage(const QString &archivePath, const QString &packageRoot); + bool uninstallPackage(const QString &packageName, const QString &packageRoot); + */ +}; + + +#endif +