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

« back to all changes in this revision

Viewing changes to src/moviepreview.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 "moviepreview.h"
 
22
 
 
23
// Qt
 
24
#include <QDebug>
 
25
 
 
26
MoviePreview::MoviePreview(QObject *parent):
 
27
    Preview(parent),
 
28
    m_unityMoviePreview(nullptr)
 
29
{
 
30
}
 
31
 
 
32
QString MoviePreview::year() const
 
33
{
 
34
    if (m_unityMoviePreview) {
 
35
        return QString::fromStdString(m_unityMoviePreview->year());
 
36
    } else {
 
37
        qWarning() << "Preview not set";
 
38
    }
 
39
    return QString();
 
40
}
 
41
 
 
42
float MoviePreview::rating() const
 
43
{
 
44
    if (m_unityMoviePreview) {
 
45
        return m_unityMoviePreview->rating();
 
46
    } else {
 
47
        qWarning() << "Preview not set";
 
48
    }
 
49
    return 0.0f;
 
50
}
 
51
 
 
52
unsigned int MoviePreview::numRatings() const
 
53
{
 
54
    if (m_unityMoviePreview) {
 
55
        return m_unityMoviePreview->num_ratings();
 
56
    } else {
 
57
        qWarning() << "Preview not set";
 
58
    }
 
59
    return 0;
 
60
}
 
61
 
 
62
void MoviePreview::setUnityPreview(unity::dash::Preview::Ptr unityPreview)
 
63
{
 
64
    m_unityMoviePreview = std::dynamic_pointer_cast<unity::dash::MoviePreview>(unityPreview);
 
65
 
 
66
    Q_EMIT previewChanged();
 
67
}