~saiarcot895/ubuntu/trusty/qtconnectivity-opensource-src/enable-bluetooth

« back to all changes in this revision

Viewing changes to examples/nfc/annotatedurl/annotatedurl.cpp

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-08-20 08:46:41 UTC
  • Revision ID: package-import@ubuntu.com-20130820084641-09v00451dpna7ydk
Tags: upstream-5.0~git20130802
ImportĀ upstreamĀ versionĀ 5.0~git20130802

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/legal
 
5
**
 
6
** This file is part of the QtNfc module.
 
7
**
 
8
** $QT_BEGIN_LICENSE:BSD$
 
9
** You may use this file under the terms of the BSD license as follows:
 
10
**
 
11
** "Redistribution and use in source and binary forms, with or without
 
12
** modification, are permitted provided that the following conditions are
 
13
** met:
 
14
**   * Redistributions of source code must retain the above copyright
 
15
**     notice, this list of conditions and the following disclaimer.
 
16
**   * Redistributions in binary form must reproduce the above copyright
 
17
**     notice, this list of conditions and the following disclaimer in
 
18
**     the documentation and/or other materials provided with the
 
19
**     distribution.
 
20
**   * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
 
21
**     of its contributors may be used to endorse or promote products derived
 
22
**     from this software without specific prior written permission.
 
23
**
 
24
**
 
25
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
26
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
27
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
28
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
29
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
30
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
31
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
32
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
33
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
34
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
35
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
 
36
**
 
37
** $QT_END_LICENSE$
 
38
**
 
39
****************************************************************************/
 
40
 
 
41
#include "annotatedurl.h"
 
42
 
 
43
#include <qnearfieldtarget.h>
 
44
#include <qndefmessage.h>
 
45
#include <qndefrecord.h>
 
46
#include <qndefnfctextrecord.h>
 
47
#include <qndefnfcurirecord.h>
 
48
 
 
49
#include <QtCore/QUrl>
 
50
#include <QtCore/QLocale>
 
51
 
 
52
#include <QGridLayout>
 
53
#include <QLabel>
 
54
#include <QMouseEvent>
 
55
#include <QDesktopServices>
 
56
 
 
57
AnnotatedUrl::AnnotatedUrl(QObject *parent)
 
58
:   QObject(parent)
 
59
{
 
60
}
 
61
 
 
62
AnnotatedUrl::~AnnotatedUrl()
 
63
{
 
64
}
 
65
 
 
66
void AnnotatedUrl::handleMessage(const QNdefMessage &message, QNearFieldTarget *target)
 
67
{
 
68
    Q_UNUSED(target);
 
69
 
 
70
    enum {
 
71
        MatchedNone,
 
72
        MatchedFirst,
 
73
        MatchedEnglish,
 
74
        MatchedLanguage,
 
75
        MatchedLanguageAndCountry
 
76
    } bestMatch = MatchedNone;
 
77
 
 
78
    QLocale defaultLocale;
 
79
 
 
80
    QString title;
 
81
    QUrl url;
 
82
    QPixmap pixmap;
 
83
 
 
84
    foreach (const QNdefRecord &record, message) {
 
85
        if (record.isRecordType<QNdefNfcTextRecord>()) {
 
86
            QNdefNfcTextRecord textRecord(record);
 
87
 
 
88
            QLocale locale(textRecord.locale());
 
89
 
 
90
            // already found best match
 
91
            if (bestMatch == MatchedLanguageAndCountry) {
 
92
                // do nothing
 
93
            } else if (bestMatch <= MatchedLanguage && locale == defaultLocale) {
 
94
                title = textRecord.text();
 
95
                bestMatch = MatchedLanguageAndCountry;
 
96
            } else if (bestMatch <= MatchedEnglish &&
 
97
                       locale.language() == defaultLocale.language()) {
 
98
                title = textRecord.text();
 
99
                bestMatch = MatchedLanguage;
 
100
            } else if (bestMatch <= MatchedFirst && locale.language() == QLocale::English) {
 
101
                title = textRecord.text();
 
102
                bestMatch = MatchedEnglish;
 
103
            } else if (bestMatch == MatchedNone) {
 
104
                title = textRecord.text();
 
105
                bestMatch = MatchedFirst;
 
106
            }
 
107
        } else if (record.isRecordType<QNdefNfcUriRecord>()) {
 
108
            QNdefNfcUriRecord uriRecord(record);
 
109
 
 
110
            url = uriRecord.uri();
 
111
        } else if (record.typeNameFormat() == QNdefRecord::Mime &&
 
112
                   record.type().startsWith("image/")) {
 
113
            pixmap = QPixmap::fromImage(QImage::fromData(record.payload()));
 
114
        }
 
115
    }
 
116
 
 
117
    emit annotatedUrl(url, title, pixmap);
 
118
}
 
119