~ubuntu-branches/ubuntu/precise/kactivities/precise-proposed

« back to all changes in this revision

Viewing changes to lib/manager_p.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) 2010 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 ACTIVITIES_MANAGER_P_
 
21
#define ACTIVITIES_MANAGER_P_
 
22
 
 
23
#include "activitymanager_interface.h"
 
24
 
 
25
#include <QDBusServiceWatcher>
 
26
 
 
27
namespace KActivities {
 
28
 
 
29
class Manager: public org::kde::ActivityManager {
 
30
    Q_OBJECT
 
31
public:
 
32
    static Manager * self();
 
33
 
 
34
    static bool isActivityServiceRunning();
 
35
 
 
36
public Q_SLOTS:
 
37
    void serviceOwnerChanged(const QString & serviceName, const QString & oldOwner, const QString & newOwner);
 
38
 
 
39
Q_SIGNALS:
 
40
    void presenceChanged(bool present);
 
41
 
 
42
private:
 
43
    Manager();
 
44
 
 
45
    QDBusServiceWatcher m_watcher;
 
46
 
 
47
    static Manager * s_instance;
 
48
};
 
49
 
 
50
} // namespace KActivities
 
51
 
 
52
#endif // ACTIVITIES_MANAGER_P_