~stolowski/unity-scopes-shell/single-preview

« back to all changes in this revision

Viewing changes to src/socialpreviewcomment.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
// local
 
21
#include "socialpreviewcomment.h"
 
22
 
 
23
SocialPreviewComment::SocialPreviewComment(QObject *parent) :
 
24
    QObject(parent)
 
25
{
 
26
}
 
27
 
 
28
void SocialPreviewComment::setUnityComment(unity::dash::SocialPreview::CommentPtr unityComment)
 
29
{
 
30
    m_unityComment = unityComment;
 
31
}
 
32
 
 
33
QString SocialPreviewComment::id() const
 
34
{
 
35
    if (m_unityComment) {
 
36
        return QString::fromStdString(m_unityComment->id);
 
37
    }
 
38
    return QString();
 
39
}
 
40
 
 
41
QString SocialPreviewComment::displayName() const
 
42
{
 
43
    if (m_unityComment) {
 
44
        return QString::fromStdString(m_unityComment->display_name);
 
45
    }
 
46
    return QString();
 
47
}
 
48
 
 
49
QString SocialPreviewComment::content() const
 
50
{
 
51
    if (m_unityComment) {
 
52
        return QString::fromStdString(m_unityComment->content);
 
53
    }
 
54
    return QString();
 
55
}
 
56
 
 
57
QString SocialPreviewComment::time() const
 
58
{
 
59
    if (m_unityComment) {
 
60
        return QString::fromStdString(m_unityComment->time);
 
61
    }
 
62
    return QString();
 
63
}