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

« back to all changes in this revision

Viewing changes to src/socialpreview.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 "socialpreview.h"
 
21
#include "socialpreviewcomment.h"
 
22
#include "iconutils.h"
 
23
 
 
24
#include <QDebug>
 
25
 
 
26
SocialPreview::SocialPreview(QObject *parent):
 
27
    Preview(parent),
 
28
    m_unitySocialPreview(nullptr)
 
29
{
 
30
}
 
31
 
 
32
QString SocialPreview::sender() const
 
33
{
 
34
    if (m_unitySocialPreview) {
 
35
        return QString::fromStdString(m_unitySocialPreview->sender());
 
36
    } else {
 
37
        qWarning() << "Preview not set";
 
38
    }
 
39
    return QString();
 
40
}
 
41
 
 
42
QString SocialPreview::content() const
 
43
{
 
44
    if (m_unitySocialPreview) {
 
45
        return QString::fromStdString(m_unitySocialPreview->content());
 
46
    } else {
 
47
        qWarning() << "Preview not set";
 
48
    }
 
49
    return QString();
 
50
}
 
51
 
 
52
QString SocialPreview::avatar() const
 
53
{
 
54
    if (m_unitySocialPreview) {
 
55
        auto giconString = g_icon_to_string(m_unitySocialPreview->avatar());
 
56
        QString result(gIconToDeclarativeImageProviderString(QString::fromUtf8(giconString)));
 
57
        g_free(giconString);
 
58
        return result;
 
59
    } else {
 
60
        qWarning() << "Preview not set";
 
61
    }
 
62
    return QString();
 
63
}
 
64
 
 
65
QVariant SocialPreview::comments()
 
66
{
 
67
    return QVariant::fromValue(m_comments);
 
68
}
 
69
 
 
70
void SocialPreview::setUnityPreview(unity::dash::Preview::Ptr unityPreview)
 
71
{
 
72
    m_unitySocialPreview = std::dynamic_pointer_cast<unity::dash::SocialPreview>(unityPreview);
 
73
    qDeleteAll(m_comments);
 
74
    m_comments.clear();
 
75
 
 
76
    if (m_unitySocialPreview) {
 
77
        for (auto unityComment: m_unitySocialPreview->GetComments()) {
 
78
            auto comment = new SocialPreviewComment(this);
 
79
            comment->setUnityComment(unityComment);
 
80
            m_comments.append(comment);
 
81
 
 
82
            Q_EMIT previewChanged();
 
83
        }
 
84
    } else {
 
85
        qWarning() << "Incorrect preview type";
 
86
    }
 
87
}