~ubuntu-branches/ubuntu/quantal/qtmobility/quantal

« back to all changes in this revision

Viewing changes to plugins/declarative/contacts/details/qdeclarativecontactringtone_p.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-16 16:18:07 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20101116161807-k2dzt2nyse975r3l
Tags: 1.1.0-0ubuntu1
* New upstream release
* Syncronise with Debian, no remaining changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 
4
** All rights reserved.
 
5
** Contact: Nokia Corporation (qt-info@nokia.com)
 
6
**
 
7
** This file is part of the Qt Mobility Components.
 
8
**
 
9
** $QT_BEGIN_LICENSE:LGPL$
 
10
** Commercial Usage
 
11
** Licensees holding valid Qt Commercial licenses may use this file in 
 
12
** accordance with the Qt Commercial License Agreement provided with
 
13
** the Software or, alternatively, in accordance with the terms
 
14
** contained in a written agreement between you and Nokia.
 
15
**
 
16
** GNU Lesser General Public License Usage
 
17
** Alternatively, this file may be used under the terms of the GNU Lesser
 
18
** General Public License version 2.1 as published by the Free Software
 
19
** Foundation and appearing in the file LICENSE.LGPL included in the
 
20
** packaging of this file.  Please review the following information to
 
21
** ensure the GNU Lesser General Public License version 2.1 requirements
 
22
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
23
**
 
24
** In addition, as a special exception, Nokia gives you certain additional
 
25
** rights.  These rights are described in the Nokia Qt LGPL Exception
 
26
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
27
**
 
28
** GNU General Public License Usage
 
29
** Alternatively, this file may be used under the terms of the GNU
 
30
** General Public License version 3.0 as published by the Free Software
 
31
** Foundation and appearing in the file LICENSE.GPL included in the
 
32
** packaging of this file.  Please review the following information to
 
33
** ensure the GNU General Public License version 3.0 requirements will be
 
34
** met: http://www.gnu.org/copyleft/gpl.html.
 
35
**
 
36
** If you are unsure which license is appropriate for your use, please
 
37
** contact the sales department at qt-sales@nokia.com.
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
#ifndef QDECLARATIVECONTACTRINGTONE_H
 
43
#define QDECLARATIVECONTACTRINGTONE_H
 
44
 
 
45
#include <QUrl>
 
46
 
 
47
#include "qdeclarativecontactdetail_p.h"
 
48
#include "qcontactringtone.h"
 
49
 
 
50
class QDeclarativeContactRingtone : public QDeclarativeContactDetail
 
51
{
 
52
    Q_OBJECT
 
53
 
 
54
    Q_PROPERTY(QUrl audioRingtoneUrl READ audioRingtoneUrl WRITE setAudioRingtoneUrl NOTIFY fieldsChanged)
 
55
    Q_PROPERTY(QUrl videoRingtoneUrl READ videoRingtoneUrl WRITE setVideoRingtoneUrl NOTIFY fieldsChanged)
 
56
    Q_PROPERTY(QUrl vibrationRingtoneUrl READ vibrationRingtoneUrl WRITE setVibrationRingtoneUrl NOTIFY fieldsChanged)
 
57
    Q_ENUMS(FieldType)
 
58
    Q_CLASSINFO("DefaultProperty", "audioRingtoneUrl")
 
59
public:
 
60
    enum FieldType {
 
61
        AudioRingtoneUrl = 0,
 
62
        VideoRingtoneUrl,
 
63
        VibrationRingtoneUrl
 
64
    };
 
65
 
 
66
    QDeclarativeContactRingtone(QObject* parent = 0)
 
67
        :QDeclarativeContactDetail(parent)
 
68
    {
 
69
        setDetail(QContactRingtone());
 
70
        connect(this, SIGNAL(fieldsChanged()), SIGNAL(valueChanged()));
 
71
    }
 
72
    ContactDetailType detailType() const
 
73
    {
 
74
        return QDeclarativeContactDetail::Ringtone;
 
75
    }
 
76
    static QString fieldNameFromFieldType(int fieldType)
 
77
    {
 
78
        switch (fieldType) {
 
79
        case AudioRingtoneUrl:
 
80
            return QContactRingtone::FieldAudioRingtoneUrl;
 
81
        case VideoRingtoneUrl:
 
82
            return QContactRingtone::FieldVideoRingtoneUrl;
 
83
        case VibrationRingtoneUrl:
 
84
            return QContactRingtone::FieldVibrationRingtoneUrl;
 
85
        default:
 
86
            break;
 
87
        }
 
88
        //qWarning
 
89
        return QString();
 
90
    }
 
91
    void setAudioRingtoneUrl(const QUrl& v)
 
92
    {
 
93
        if (!readOnly() && v != audioRingtoneUrl()) {
 
94
            detail().setValue(QContactRingtone::FieldAudioRingtoneUrl, v);
 
95
            emit fieldsChanged();
 
96
        }
 
97
    }
 
98
    QUrl audioRingtoneUrl() const {return detail().value(QContactRingtone::FieldAudioRingtoneUrl);}
 
99
 
 
100
    void setVideoRingtoneUrl(const QUrl& v)
 
101
    {
 
102
        if (!readOnly() && v != videoRingtoneUrl()) {
 
103
            detail().setValue(QContactRingtone::FieldVideoRingtoneUrl, v);
 
104
            emit fieldsChanged();
 
105
        }
 
106
    }
 
107
    QUrl videoRingtoneUrl() const {return detail().value(QContactRingtone::FieldVideoRingtoneUrl);}
 
108
 
 
109
    void setVibrationRingtoneUrl(const QUrl& v)
 
110
    {
 
111
        if (!readOnly() && v != vibrationRingtoneUrl()) {
 
112
            detail().setValue(QContactRingtone::FieldVibrationRingtoneUrl, v);
 
113
            emit fieldsChanged();
 
114
        }
 
115
    }
 
116
    QUrl vibrationRingtoneUrl() const {return detail().value(QContactRingtone::FieldVibrationRingtoneUrl);}
 
117
signals:
 
118
    void fieldsChanged();
 
119
 
 
120
};
 
121
QML_DECLARE_TYPE(QDeclarativeContactRingtone)
 
122
#endif