~ps-jenkins/unity-scopes-shell/ubuntu-rtm-14.09-proposed

« back to all changes in this revision

Viewing changes to src/previewinfohint.cpp

  • Committer: Michal Hruby
  • Date: 2013-11-07 17:48:16 UTC
  • Revision ID: michal.mhr@gmail.com-20131107174816-w1vqq6juarrawx23
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Pawel Stolowski <pawel.stolowski@canonical.com>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#include <deelistmodel.h>
 
21
// local
 
22
#include "previewinfohint.h"
 
23
 
 
24
PreviewInfoHint::PreviewInfoHint(QObject *parent):
 
25
    QObject(parent),
 
26
    m_unityInfoHint(nullptr)
 
27
{
 
28
}
 
29
 
 
30
void PreviewInfoHint::setUnityInfoHint(unity::dash::Preview::InfoHintPtr unityInfoHint)
 
31
{
 
32
    m_unityInfoHint = unityInfoHint;
 
33
 
 
34
    Q_EMIT previewInfoHintChanged();
 
35
}
 
36
 
 
37
QString PreviewInfoHint::id() const
 
38
{
 
39
    if (m_unityInfoHint) {
 
40
        return QString::fromStdString(m_unityInfoHint->id);
 
41
    }
 
42
    return QString();
 
43
}
 
44
 
 
45
QString PreviewInfoHint::displayName() const
 
46
{
 
47
    if (m_unityInfoHint) {
 
48
        return QString::fromStdString(m_unityInfoHint->display_name);
 
49
    }
 
50
    return QString();
 
51
}
 
52
 
 
53
QString PreviewInfoHint::iconHint() const
 
54
{
 
55
   if (m_unityInfoHint) {
 
56
       return QString::fromStdString(m_unityInfoHint->icon_hint);
 
57
   }
 
58
   return QString();
 
59
}
 
60
 
 
61
QVariant PreviewInfoHint::value() const
 
62
{
 
63
    if (m_unityInfoHint) {
 
64
        return DeeListModel::VariantForData(m_unityInfoHint->value);
 
65
    }
 
66
    return QVariant();
 
67
}