You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.8 KiB
C++
67 lines
2.8 KiB
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 <tqglobal.h>
|
|
#include <tdeglobal.h>
|
|
#include <kstandarddirs.h>
|
|
#include <tdeglobalsettings.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) : TDEAboutData ("kipi-plugins", pluginName,
|
|
pluginVersion,
|
|
0, licenseType,
|
|
copyrightStatement,
|
|
pluginDescription,
|
|
"http://www.kipi-plugins.org")
|
|
{
|
|
// setProgramLogo is defined from kde 3.4.0 on
|
|
TQString directory;
|
|
TDEGlobal::dirs()->addResourceType("kipi_plugins_logo", TDEGlobal::dirs()->kde_default("data") + "kipi/data");
|
|
directory = TDEGlobal::dirs()->findResourceDir("kipi_plugins_logo", "kipi-plugins_logo.png");
|
|
|
|
// set the kipiplugins logo inside the about dialog
|
|
setProgramLogo(TQImage(directory + "kipi-plugins_logo.png"));
|
|
// set the plugin description into long text description
|
|
setOtherText(pluginDescription);
|
|
|
|
// put the plugin name and version with kipi-plugins and kipi-plugins version
|
|
KipiPluginsVersionString = TQString(pluginName) + " " + TQString(pluginVersion) +
|
|
" - Kipi-plugins " + TQString(kipiplugins_version) ;
|
|
|
|
kdDebug( 51001 ) << "Kipi-plugins - " << KipiPluginsVersionString.ascii() << endl;
|
|
|
|
// and set the string into the short description
|
|
setShortDescription(KipiPluginsVersionString.ascii());
|
|
}
|
|
|
|
}
|