Fix wrong connect
[kdepim.git] / calendarsupport / plugin.h
blob8d00f61b56374d559ec9378cf70c2d7bd7e20855
1 /*
2 Copyright (c) 2001,2003 Cornelius Schumacher <schumacher@kde.org>
4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
19 #ifndef CALENDARSUPPORT_PLUGIN_H
20 #define CALENDARSUPPORT_PLUGIN_H
22 #include <KPluginFactory>
24 namespace CalendarSupport
27 /**
28 @class Plugin
30 @brief Specifies the plugin interface.
32 This class is shared between korganizer's print plugins and
33 calendarview's decoration plugins.
35 class Plugin
38 enum {
39 INTERFACE_VERSION = 2
42 public:
43 static int interfaceVersion()
45 return INTERFACE_VERSION;
48 static QString serviceType()
50 return QStringLiteral("Calendar/Plugin");
53 Plugin() {}
54 virtual ~Plugin() {}
56 virtual QString info() const = 0;
58 virtual void configure(QWidget *) {}
61 class PluginFactory : public KPluginFactory
63 public:
64 virtual Plugin *createPluginFactory() = 0;
66 protected:
67 virtual QObject *createObject(QObject *, const char *, const QStringList &)
69 return 0;
75 #endif