~ubuntu-branches/ubuntu/quantal/kactivities/quantal

« back to all changes in this revision

Viewing changes to service/Plugin.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-13 11:53:27 UTC
  • Revision ID: package-import@ubuntu.com-20111213115327-vqhdel92qx65us8y
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   Copyright (C) 2011 Ivan Cukic <ivan.cukic(at)kde.org>
 
3
 *
 
4
 *   This program is free software; you can redistribute it and/or modify
 
5
 *   it under the terms of the GNU General Public License version 2,
 
6
 *   or (at your option) any later version, as published by the Free
 
7
 *   Software Foundation
 
8
 *
 
9
 *   This program 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
 
12
 *   GNU General Public License for more details
 
13
 *
 
14
 *   You should have received a copy of the GNU General Public
 
15
 *   License along with this program; if not, write to the
 
16
 *   Free Software Foundation, Inc.,
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
 */
 
19
 
 
20
#ifndef EVENT_BACKEND_H_
 
21
#define EVENT_BACKEND_H_
 
22
 
 
23
#include <kdemacros.h>
 
24
#include <KPluginFactory>
 
25
#include <KPluginLoader>
 
26
 
 
27
#include "Event.h"
 
28
#include "SharedInfo.h"
 
29
 
 
30
#define KAMD_EXPORT_PLUGIN(ClassName, AboutData)                       \
 
31
    K_PLUGIN_FACTORY(ClassName##Factory, registerPlugin<ClassName>();) \
 
32
    K_EXPORT_PLUGIN(ClassName##Factory("AboutData"))
 
33
 
 
34
 
 
35
/**
 
36
 *
 
37
 */
 
38
class KDE_EXPORT Plugin: public QObject {
 
39
    Q_OBJECT
 
40
 
 
41
public:
 
42
    Plugin(QObject * parent);
 
43
    virtual ~Plugin();
 
44
 
 
45
    virtual void addEvents(const EventList & events);
 
46
    virtual void setResourceMimeType(const QString & uri, const QString & mimetype);
 
47
 
 
48
    virtual void setSharedInfo(SharedInfo * sharedInfo);
 
49
    SharedInfo * sharedInfo() const;
 
50
 
 
51
    virtual bool init();
 
52
 
 
53
private:
 
54
    class Private;
 
55
    Private * const d;
 
56
};
 
57
 
 
58
#endif // EVENT_BACKEND_H_
 
59