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

« back to all changes in this revision

Viewing changes to src/libtomahawk/jobview/JobStatusView.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 2011, Leo Franchi <lfranchi@kde.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 JOBSTATUSVIEW_H
 
21
#define JOBSTATUSVIEW_H
 
22
 
 
23
#include "Typedefs.h"
 
24
#include "widgets/AnimatedSplitter.h"
 
25
#include "DllMacro.h"
 
26
 
 
27
class QAbstractItemModel;
 
28
class QListView;
 
29
class JobStatusSortModel;
 
30
class JobStatusItem;
 
31
class StreamConnection;
 
32
class QStyledItemDelegate;
 
33
 
 
34
class DLLEXPORT JobStatusView : public AnimatedWidget
 
35
{
 
36
Q_OBJECT
 
37
 
 
38
public:
 
39
    static JobStatusView* instance() {
 
40
        return s_instance;
 
41
    }
 
42
 
 
43
    explicit JobStatusView( AnimatedSplitter* parent );
 
44
    virtual ~JobStatusView()
 
45
    {
 
46
    }
 
47
 
 
48
    QSize sizeHint() const;
 
49
 
 
50
    void setModel( JobStatusSortModel* model );
 
51
 
 
52
    JobStatusSortModel* model() { return m_model; }
 
53
 
 
54
private slots:
 
55
    void checkCount();
 
56
    void customDelegateJobInserted( int row, JobStatusItem* item );
 
57
    void customDelegateJobRemoved( int row );
 
58
    void refreshDelegates();
 
59
 
 
60
private:
 
61
    QListView* m_view;
 
62
    JobStatusSortModel* m_model;
 
63
    AnimatedSplitter* m_parent;
 
64
    mutable int m_cachedHeight;
 
65
 
 
66
    static JobStatusView* s_instance;
 
67
};
 
68
 
 
69
#endif // JOBSTATUSVIEW_H