]> git.sur5r.net Git - minitube/blob - src/channelview.h
35c709b69da2bb10e141b55849a4ff71d0212247
[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 <QtWidgets>
25
26 #include "view.h"
27
28 class VideoSource;
29 class ChannelModel;
30 class ChannelListView;
31
32 class ChannelView : public View {
33
34     Q_OBJECT
35
36 public:
37     ChannelView(QWidget *parent = 0);
38     
39 signals:
40     void activated(VideoSource *videoSource);
41
42 public slots:
43     void appear();
44     void disappear();
45
46 private:
47     enum SortBy {
48         SortByName = 0,
49         SortByAdded,
50         SortByUpdated,
51         SortByLastWatched,
52         SortByMostWatched
53     };
54
55 private slots:
56     void itemActivated(const QModelIndex &index);
57     void showContextMenu(const QPoint &point);
58     void toggleShowUpdated(bool enable);
59     void setSortBy(SortBy sortBy);
60     void setSortByName() { setSortBy(SortByName); }
61     void setSortByUpdated() { setSortBy(SortByUpdated); }
62     void setSortByAdded() { setSortBy(SortByAdded); }
63     void setSortByLastWatched() { setSortBy(SortByLastWatched); }
64     void setSortByMostWatched() { setSortBy(SortByMostWatched); }
65     void markAllAsWatched();
66     void unwatchedCountChanged(int count);
67     void updateQuery(bool transition = false);
68
69 private:
70     void setupActions();
71     QString noSubscriptionsMessage();
72
73     ChannelListView *listView;
74     ChannelModel *channelsModel;
75     QVector<QAction*> statusActions;
76     bool showUpdated;
77     SortBy sortBy;
78     QAction *markAsWatchedAction;
79
80 };
81
82 #endif // CHANNELSVIEW_H