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