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

« back to all changes in this revision

Viewing changes to mmsdmessage.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 MMSDMESSAGE_H
 
20
#define MMSDMESSAGE_H
 
21
 
 
22
#include <QObject>
 
23
#include <QVariantMap>
 
24
#include <QDBusObjectPath>
 
25
#include <QStringList>
 
26
 
 
27
class MMSDMessage : public QObject
 
28
{
 
29
    Q_OBJECT
 
30
public:
 
31
    MMSDMessage(QString objectPath, QVariantMap properties, QObject *parent=0);
 
32
    ~MMSDMessage();
 
33
 
 
34
    QVariantMap properties() const;
 
35
    QString path() const;
 
36
    void markRead() const;
 
37
    // it should be called delete, but it is a reserved keyword in c++
 
38
    void remove() const;
 
39
 
 
40
Q_SIGNALS:
 
41
    void propertyChanged(const QString&, const QVariant&);
 
42
 
 
43
private Q_SLOTS:
 
44
    void onPropertyChanged(const QString&, const QVariant&);
 
45
 
 
46
private:
 
47
    QVariantMap m_properties;
 
48
    QString m_messagePath;
 
49
};
 
50
 
 
51
#endif