summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/common/libkipiplugins/kpaboutdata.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/common/libkipiplugins/kpaboutdata.cpp')
-rw-r--r--kipi-plugins/common/libkipiplugins/kpaboutdata.cpp69
1 files changed, 69 insertions, 0 deletions
diff --git a/kipi-plugins/common/libkipiplugins/kpaboutdata.cpp b/kipi-plugins/common/libkipiplugins/kpaboutdata.cpp
new file mode 100644
index 0000000..dad65dc
--- /dev/null
+++ b/kipi-plugins/common/libkipiplugins/kpaboutdata.cpp
@@ -0,0 +1,69 @@
+//////////////////////////////////////////////////////////////////////////////
+//
+// KPABOUTDATA.CPP
+//
+// Copyright (C) 2006 Angelo Naselli <anaselli at linux dot it>
+//
+// 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 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, Cambridge, MA 02110-1301, USA.
+//
+//////////////////////////////////////////////////////////////////////////////
+
+#include <qglobal.h>
+#include <kglobal.h>
+#include <kstandarddirs.h>
+#include <kglobalsettings.h>
+#include <kdeversion.h>
+
+#include "kpaboutdata.h"
+#include "pluginsversion.h"
+#include "kdebug.h"
+
+namespace KIPIPlugins
+{
+
+ KPAboutData::KPAboutData(const char *pluginName,
+ const char *pluginVersion,
+ int licenseType,
+ const char *pluginDescription,
+ const char *copyrightStatement) : KAboutData ("kipi-plugins", pluginName,
+ pluginVersion,
+ 0, licenseType,
+ copyrightStatement,
+ pluginDescription,
+ "http://www.kipi-plugins.org")
+ {
+#if KDE_IS_VERSION(3,4,0)
+ // setProgramLogo is defined from kde 3.4.0 on
+ QString directory;
+ KGlobal::dirs()->addResourceType("kipi_plugins_logo", KGlobal::dirs()->kde_default("data") + "kipi/data");
+ directory = KGlobal::dirs()->findResourceDir("kipi_plugins_logo", "kipi-plugins_logo.png");
+
+ // set the kipiplugins logo inside the about dialog
+ setProgramLogo(QImage(directory + "kipi-plugins_logo.png"));
+#endif
+ // set the plugin description into long text description
+ setOtherText(pluginDescription);
+
+ // put the plugin name and version with kipi-plugins and kipi-plugins version
+ KipiPluginsVersionString = QString(pluginName) + " " + QString(pluginVersion) +
+ " - Kipi-plugins " + QString(kipiplugins_version) ;
+
+ kdDebug( 51001 ) << "Kipi-plugins - " << KipiPluginsVersionString.ascii() << endl;
+
+ // and set the string into the short description
+ setShortDescription(KipiPluginsVersionString.ascii());
+ }
+
+}