~ps-jenkins/telepathy-ofono/ubuntu-vivid-proposed

« back to all changes in this revision

Viewing changes to mmsdservice.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 MMSDSERVICE_H
 
20
#define MMSDSERVICE_H
 
21
 
 
22
#include <QObject>
 
23
#include <QVariantMap>
 
24
#include <QDBusObjectPath>
 
25
#include <QStringList>
 
26
 
 
27
#include "dbustypes.h"
 
28
#include "connection.h"
 
29
#include "mmsdmessage.h"
 
30
 
 
31
class MMSDService : public QObject
 
32
{
 
33
    Q_OBJECT
 
34
public:
 
35
    MMSDService(QString objectPath, oFonoConnection *connection, QObject *parent=0);
 
36
    ~MMSDService();
 
37
 
 
38
    QVariantMap properties() const;
 
39
    MessageList messages() const;
 
40
    QString path() const;
 
41
 
 
42
    QDBusObjectPath sendMessage(QStringList recipients, QString smil, AttachmentList attachments);
 
43
 
 
44
Q_SIGNALS:
 
45
    void messageAdded(const QString &messagePath, const QVariantMap &properties);
 
46
    void messageRemoved(const QString &messagePath);
 
47
 
 
48
private Q_SLOTS:
 
49
    void onMessageAdded(const QDBusObjectPath &path, const QVariantMap &properties);
 
50
    void onMessageRemoved(const QDBusObjectPath &path);
 
51
 
 
52
private:
 
53
    QVariantMap m_properties;
 
54
    QString m_servicePath;
 
55
    MessageList m_messages;
 
56
};
 
57
 
 
58
#endif