You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pytde/sip/tdeutils/kplugininfo.sip

149 lines
4.4 KiB

//
// Copyright 2006 Jim Bublitz <jbublitz@nwinternet.com>
// Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson
// may also apply
// Generated by preSip
// module tdeutils version KDE 3.5.3
// This software 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 software 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 library; see the file COPYING.
// If not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
%If ( KDE_3_3_0 - )
class KPluginInfo
{
%TypeHeaderCode
#include <kplugininfo.h>
%End
public:
typedef TQValueList<KPluginInfo*> List;
KPluginInfo (const TQString&, const char* = 0);
KPluginInfo (const KService::Ptr);
static KPluginInfo::List fromServices (const KService::List&, TDEConfig* = 0, const TQString& = TQString ::null );
static KPluginInfo::List fromFiles (const TQStringList&, TDEConfig* = 0, const TQString& = TQString ::null );
static KPluginInfo::List fromKPartsInstanceName (const TQString&, TDEConfig* = 0, const TQString& = TQString ::null );
bool isHidden () const;
virtual void setPluginEnabled (bool);
virtual bool isPluginEnabled () const;
bool isPluginEnabledByDefault () const;
TQVariant property (const TQString&) const;
//ig TQVariant operator [] (const TQString&) const;
const TQString& name () const;
const TQString& comment () const;
const TQString& icon () const;
const TQString& specfile () const;
const TQString& author () const;
const TQString& email () const;
const TQString& category () const;
const TQString& pluginName () const;
const TQString& version () const;
const TQString& website () const;
const TQString& license () const;
const TQStringList& dependencies () const;
KService::Ptr service () const;
//ig const TQValueList<KService::Ptr>& kcmServices () const;
void setConfig (TDEConfig*, const TQString&);
TDEConfig* config () const;
const TQString& configgroup () const;
virtual void save (TDEConfigGroup* = 0);
virtual void load (TDEConfigGroup* = 0);
virtual void defaults ();
private:
KPluginInfo (const KPluginInfo&);
}; // class KPluginInfo
%End
%If (KDE_3_3_0 - )
%MappedType KPluginInfo::List
//converts a Python list of KPluginInfo
{
%TypeHeaderCode
#include <tqvaluelist.h>
#include <kplugininfo.h>
%End
%ConvertFromTypeCode
if (!sipCpp)
return PyList_New(0);
// Create the list
PyObject *pylist;
if ((pylist = PyList_New(0)) == NULL)
return NULL;
TQValueList<KPluginInfo *> *cpplist = (TQValueList<KPluginInfo *> *)sipCpp;
PyObject *inst;
// Get it.
TQValueList<KPluginInfo *>::Iterator it;
for( it = cpplist->begin(); it != cpplist->end(); ++it )
{
if (((inst = sipConvertFromInstance ((KPluginInfo *)(*it), sipClass_KPluginInfo, sipTransferObj)) == NULL)
|| PyList_Append (pylist, inst) < 0)
{
Py_DECREF (pylist);
return NULL;
}
}
return pylist;
%End
%ConvertToTypeCode
if (sipIsErr == NULL)
return PyList_Check(sipPy);
TQValueList<KPluginInfo *> *cpplist = new TQValueList<KPluginInfo *>;
PyObject *elem;
KPluginInfo *cpp;
int iserr = 0;
for (int i = 0; i < PyList_Size (sipPy); i++)
{
elem = PyList_GET_ITEM (sipPy, i);
cpp = (KPluginInfo *)sipForceConvertToType(elem, sipType_KPluginInfo, sipTransferObj, SIP_NO_CONVERTORS, NULL, &iserr);
if (iserr)
{
*sipIsErr = 1;
delete cpplist;
return 0;
}
cpplist->append (cpp);
}
*sipCppPtr = cpplist;
return 1;
%End
};
%End