]> git.sur5r.net Git - minitube/blob - src/channelview.h
Subscriptions context menu
[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 showContextMenu(const QPoint &point);
62     void toggleShowUpdated(bool enable);
63     void setSortBy(SortBy sortBy);
64     void setSortByName() { setSortBy(SortByName); }
65     void setSortByUpdated() { setSortBy(SortByUpdated); }
66     void setSortByAdded() { setSortBy(SortByAdded); }
67     void setSortByLastWatched() { setSortBy(SortByLastWatched); }
68     void setSortByMostWatched() { setSortBy(SortByMostWatched); }
69     void markAllAsWatched();
70     void unwatchedCountChanged(int count);
71     void updateQuery(bool transition = false);
72
73 private:
74     void setupActions();
75
76     ChannelModel *channelsModel;
77     QList<QAction*> statusActions;
78     bool showUpdated;
79     SortBy sortBy;
80     QString errorMessage;
81     QAction *markAsWatchedAction;
82
83 };
84
85 #endif // CHANNELSVIEW_H