~andreas-pokorny/telepathy-ofono/control-proximity-handling-in-powerd

« back to all changes in this revision

Viewing changes to mmsdmanager.h

  • Committer: Tiago Salem Herrmann
  • Date: 2013-07-08 15:55:12 UTC
  • mto: This revision was merged to the branch mainline in revision 37.
  • Revision ID: tiago.herrmann@canonical.com-20130708155512-0n61cdowordh9sev
add initial mms support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it under
 
5
 * the terms of the GNU Lesser General Public License version 3, as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 
10
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors: Tiago Salem Herrmann <tiago.herrmann@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef MMSDMANAGER_H
 
20
#define MMSDMANAGER_H
 
21
 
 
22
#include <QObject>
 
23
#include <QVariantMap>
 
24
#include <QDBusObjectPath>
 
25
#include <QStringList>
 
26
 
 
27
class MMSDManager : public QObject
 
28
{
 
29
    Q_OBJECT
 
30
public:
 
31
    MMSDManager(QObject *parent=0);
 
32
    ~MMSDManager();
 
33
 
 
34
    QStringList services() const;
 
35
 
 
36
Q_SIGNALS:
 
37
    void serviceAdded(const QString &servicePath);
 
38
    void serviceRemoved(const QString &servicePath);
 
39
 
 
40
private Q_SLOTS:
 
41
    void onServiceAdded(const QDBusObjectPath &path, const QVariantMap &properties);
 
42
    void onServiceRemoved(const QDBusObjectPath &path);
 
43
 
 
44
private:
 
45
    QStringList m_services;
 
46
};
 
47
 
 
48
#endif