summaryrefslogtreecommitdiffstats
path: root/lib/interfaces/kdevplugininfo.cpp
blob: 81d58902736a6ad8f39039a9a3b1a9c6786e450c (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/* This file is part of the KDE project
   Copyright (C) 2004 Alexander Dymo <adymo@tdevelop.org>

   This library 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 of the License, or (at your option) any later version.

   This library 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
   Boston, MA 02110-1301, USA.
*/
#include "kdevplugininfo.h"

#include <tqvariant.h>

#include <kservice.h>
#include <kdebug.h>

#include "kdevplugincontroller.h"

struct KDevPluginInfo::Private {
    TQString m_pluginName;
    TQString m_rawGenericName;
    
    TQString m_genericName;
    TQString m_description;
    TQString m_icon;
    
    TQString m_version;
    int m_licenseType;
    TQString m_copyrightStatement;
    TQString m_homePageAddress;
    TQString m_bugsEmailAddress;
    
    TQValueList<KAboutPerson> m_authors;
    TQValueList<KAboutPerson> m_credits;
    
    KAboutData *m_data;
};


KDevPluginInfo::KDevPluginInfo(const TQString &pluginName)
    :d(new Private())
{
    d->m_pluginName = pluginName;
    
    KService::Ptr offer = KService::serviceByDesktopName(pluginName);
    if (offer != 0)
    {
        d->m_genericName = offer->genericName();
        d->m_icon = offer->icon();
        d->m_description = offer->comment();
        
        d->m_rawGenericName = offer->untranslatedGenericName();
        
        d->m_version = offer->property("X-TDevelop-Plugin-Version").toString();
        d->m_homePageAddress = offer->property("X-TDevelop-Plugin-Homepage").toString();
        d->m_bugsEmailAddress = offer->property("X-TDevelop-Plugin-BugsEmailAddress").toString();
        d->m_copyrightStatement = offer->property("X-TDevelop-Plugin-Copyright").toString();
        
        TQString lic = offer->property("X-TDevelop-Plugin-License").toString();
        if (lic == "GPL")
            d->m_licenseType = KAboutData::License_GPL;
        else if (lic == "LGPL")
            d->m_licenseType = KAboutData::License_LGPL;
        else if (lic == "BSD")
            d->m_licenseType = KAboutData::License_BSD;
        else if (lic == "QPL")
            d->m_licenseType = KAboutData::License_QPL;
        else if (lic == "Artistic")
            d->m_licenseType = KAboutData::License_Artistic;
        else if (lic == "Custom")
            d->m_licenseType = KAboutData::License_Custom;
        else
            d->m_licenseType = KAboutData::License_Unknown;            

        d->m_data = new KAboutData(d->m_pluginName.ascii(), d->m_rawGenericName.ascii(), "1", 0, d->m_licenseType);
    }
    else
	kdDebug() << "Unable to load information for plugin: " << pluginName 
	    << ". Check if " << pluginName << ".desktop exists." << endl;
}


KDevPluginInfo::operator KAboutData *() const
{
    return d->m_data;
}

TQString KDevPluginInfo::pluginName() const
{
    return d->m_pluginName;
}

TQString KDevPluginInfo::genericName() const
{
    return d->m_genericName;
}

TQString KDevPluginInfo::icon() const
{
    return d->m_icon;
}

TQString KDevPluginInfo::description() const
{
    return d->m_description;
}

TQString KDevPluginInfo::version() const
{
    return d->m_version;
}

int KDevPluginInfo::licenseType() const
{
    return d->m_licenseType;
}

TQString KDevPluginInfo::license() const
{
    KDevPluginInfo &info = *const_cast<KDevPluginInfo*>(this);
//    return KAboutData(info).license();
    KAboutData *data = info;
    return data->license();
}

TQString KDevPluginInfo::copyrightStatement() const
{
    return d->m_copyrightStatement;
}

TQString KDevPluginInfo::homePageAddress() const
{
    return d->m_homePageAddress;
}

TQString KDevPluginInfo::bugsEmailAddress() const
{
    return d->m_bugsEmailAddress;
}

TQVariant KDevPluginInfo::property(const TQString &name) const
{
    KTrader::OfferList offers = KDevPluginController::queryPlugins(TQString("Name='%1'").arg(d->m_pluginName));
    if (offers.count() == 1)
        return offers.first()->property(name);
    return TQVariant();
}

TQVariant KDevPluginInfo::operator [](const TQString &name) const
{
    return property(name);
}

TQStringList KDevPluginInfo::propertyNames( ) const
{
    KTrader::OfferList offers = KDevPluginController::queryPlugins(TQString("Name='%1'").arg(d->m_pluginName));
    if (offers.count() == 1)
        return offers.first()->propertyNames();
    return TQStringList();
}

void KDevPluginInfo::addAuthor(const char *name, const char *task,
    const char *emailAddress, const char *webAddress)
{
    d->m_authors.append(KAboutPerson(name, task, emailAddress, webAddress));
}

void KDevPluginInfo::addCredit(const char *name, const char *task,
    const char *emailAddress, const char *webAddress)
{
    d->m_credits.append(KAboutPerson(name, task, emailAddress, webAddress));
}