]> git.sur5r.net Git - minitube/blob - src/channelview.h
a5013c9571b9bd35c49cb6a605df8e5c09eecd07
[minitube] / src / channelview.h
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube 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 Minitube 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 Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #ifndef CHANNELSVIEW_H
22 #define CHANNELSVIEW_H
23
24 #include <QtGui>
25 #include "view.h"
26
27 class VideoSource;
28 class ChannelModel;
29
30 class ChannelView : public QListView, public View {
31
32     Q_OBJECT
33
34 public:
35     ChannelView(QWidget *parent = 0);
36     
37 signals:
38     void activated(VideoSource *videoSource);
39
40 public slots:
41     void appear();
42     void disappear();
43
44 protected:
45     void mouseMoveEvent(QMouseEvent *event);
46     void leaveEvent(QEvent *event);
47     void paintEvent(QPaintEvent *event);
48
49 private:
50     enum SortBy {
51         SortByName = 0,
52         SortByAdded,
53         SortByUpdated,
54         SortByLastWatched,
55         SortByMostWatched
56     };
57
58 private slots:
59     void itemEntered(const QModelIndex &index);
60     void itemActivated(const QModelIndex &index);
61     void toggleShowUpdated(bool enable);
62     void setSortBy(SortBy sortBy);
63     void setSortByName() { setSortBy(SortByName); }
64     void setSortByUpdated() { setSortBy(SortByUpdated); }
65     void setSortByAdded() { setSortBy(SortByAdded); }
66     void setSortByLastWatched() { setSortBy(SortByLastWatched); }
67     void setSortByMostWatched() { setSortBy(SortByMostWatched); }
68     void markAllAsWatched();
69     void unwatchedCountChanged(int count);
70
71 private:
72     void updateQuery(bool transition = false);
73     void setupActions();
74
75     ChannelModel *channelsModel;
76     QList<QAction*> statusActions;
77     bool showUpdated;
78     SortBy sortBy;
79     QString errorMessage;
80     QAction *markAsWatchedAction;
81
82 };
83
84 #endif // CHANNELSVIEW_H