~ubuntu-branches/ubuntu/trusty/unity-scopes-shell/trusty-proposed

« back to all changes in this revision

Viewing changes to src/Unity/musicpreview.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2013-11-20 12:52:16 UTC
  • Revision ID: package-import@ubuntu.com-20131120125216-8vhqqz0s234c3pg1
Tags: upstream-0.1+14.04.20131120
ImportĀ upstreamĀ versionĀ 0.1+14.04.20131120

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 "musicpreview.h"
 
21
#include <QDebug>
 
22
 
 
23
// dee-qt
 
24
#include "deelistmodel.h"
 
25
 
 
26
MusicPreview::MusicPreview(QObject *parent):
 
27
    Preview(parent),
 
28
    m_unityMusicPreview(nullptr)
 
29
{
 
30
    m_tracks = new DeeListModel(this);
 
31
}
 
32
 
 
33
void MusicPreview::setUnityPreview(unity::dash::Preview::Ptr unityPreview)
 
34
{
 
35
    m_unityMusicPreview = std::dynamic_pointer_cast<unity::dash::MusicPreview>(unityPreview);
 
36
    m_tracks->setModel(m_unityMusicPreview->GetTracksModel()->model());
 
37
    m_unityMusicPreview->GetTracksModel()->model.changed.connect(sigc::mem_fun(this, &MusicPreview::onTracksModelChanged));
 
38
 
 
39
    Q_EMIT previewChanged();
 
40
    Q_EMIT tracksChanged();
 
41
}
 
42
 
 
43
DeeListModel* MusicPreview::tracks() const
 
44
{
 
45
    if (m_unityMusicPreview == nullptr) {
 
46
        qWarning() << "Preview not set";
 
47
    }
 
48
    return m_tracks;
 
49
}
 
50
 
 
51
void MusicPreview::onTracksModelChanged(unity::glib::Object<DeeModel> /* model */)
 
52
{
 
53
    m_tracks->setModel(m_unityMusicPreview->GetTracksModel()->model());
 
54
}