summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/common/libkipiplugins/kpaboutdata.cpp
blob: 0ca6a01b17b7ada440ff002c237327267237f14d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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 <tqglobal.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
    TQString 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(TQImage(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 = 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());
  }

}