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
|
/***************************************************************************
* Copyright (C) 2003-2005 by liuspider *
* liuspider@users.sourceforge.net *
* *
* 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. *
***************************************************************************/
#ifndef SKIMPLUGININFO_H
#define SKIMPLUGININFO_H
#include <kplugininfo.h>
class KAction;
struct SkimPluginActionInfo {
QString name;
QString internalName;
QString icon;
QString slot;
QString type;
int id;
};
class SkimPluginInfo : public KPluginInfo
{
public:
typedef QValueList< SkimPluginInfo * > List;
SkimPluginInfo (const KService::Ptr service);
SkimPluginInfo (const QString &filename, const char *resource=0);
~SkimPluginInfo();
bool isNoDisplay() const;
bool isHasActions() const;
bool isOnDemand() const;
QStringList & overloadedModules() const;
QValueList<SkimPluginActionInfo> & actions() const;
int weight() const;
static SkimPluginInfo::List fromServices(const KService::List &services, KConfig *config=0, const QString &group=QString::null);
private:
void init();
void readActions();
class SkimPluginInfoPrivate;
SkimPluginInfoPrivate * const d;
};
#endif
|