~ubuntu-branches/ubuntu/trusty/tomahawk/trusty-proposed

« back to all changes in this revision

Viewing changes to src/libtomahawk/widgets/infowidgets/SourceInfoWidget.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-03-07 21:50:13 UTC
  • Revision ID: package-import@ubuntu.com-20130307215013-6gdjkdds7i9uenvs
Tags: upstream-0.6.0+dfsg
ImportĀ upstreamĀ versionĀ 0.6.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
 
2
 *
 
3
 *   Copyright 2010-2011, Christian Muehlhaeuser <muesli@tomahawk-player.org>
 
4
 *   Copyright 2010-2011, Jeff Mitchell <jeff@tomahawk-player.org>
 
5
 *
 
6
 *   Tomahawk is free software: you can redistribute it and/or modify
 
7
 *   it under the terms of the GNU General Public License as published by
 
8
 *   the Free Software Foundation, either version 3 of the License, or
 
9
 *   (at your option) any later version.
 
10
 *
 
11
 *   Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#ifndef SOURCEINFOWIDGET_H
 
21
#define SOURCEINFOWIDGET_H
 
22
 
 
23
#include <QWidget>
 
24
 
 
25
#include "PlaylistInterface.h"
 
26
#include "ViewPage.h"
 
27
 
 
28
#include "DllMacro.h"
 
29
 
 
30
class AlbumModel;
 
31
class CollectionFlatModel;
 
32
class RecentlyAddedModel;
 
33
class RecentlyPlayedModel;
 
34
 
 
35
namespace Ui
 
36
{
 
37
    class SourceInfoWidget;
 
38
}
 
39
 
 
40
class DLLEXPORT SourceInfoWidget : public QWidget, public Tomahawk::ViewPage
 
41
{
 
42
Q_OBJECT
 
43
 
 
44
public:
 
45
    SourceInfoWidget( const Tomahawk::source_ptr& source, QWidget* parent = 0 );
 
46
    ~SourceInfoWidget();
 
47
 
 
48
    virtual QWidget* widget() { return this; }
 
49
    virtual Tomahawk::playlistinterface_ptr playlistInterface() const { return Tomahawk::playlistinterface_ptr(); }
 
50
 
 
51
    virtual QString title() const { return m_title; }
 
52
    virtual QString description() const { return m_description; }
 
53
    virtual QPixmap pixmap() const;
 
54
 
 
55
    virtual bool jumpToCurrentTrack() { return false; }
 
56
 
 
57
protected:
 
58
    void changeEvent( QEvent* e );
 
59
 
 
60
private slots:
 
61
    void loadRecentAdditions();
 
62
 
 
63
    void onCollectionChanged();
 
64
 
 
65
private:
 
66
    Ui::SourceInfoWidget *ui;
 
67
 
 
68
    RecentlyAddedModel* m_recentTracksModel;
 
69
    RecentlyPlayedModel* m_historyModel;
 
70
    AlbumModel* m_recentAlbumModel;
 
71
 
 
72
    Tomahawk::source_ptr m_source;
 
73
 
 
74
    QString m_title;
 
75
    QString m_description;
 
76
};
 
77
 
 
78
#endif // SOURCEINFOWIDGET_H