]> git.sur5r.net Git - minitube/blob - src/channelview.h
Imported Upstream version 2.2
[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 mousePressEvent(QMouseEvent *event);
46     void mouseMoveEvent(QMouseEvent *event);
47     void leaveEvent(QEvent *event);
48     void paintEvent(QPaintEvent *event);
49
50 private:
51     enum SortBy {
52         SortByName = 0,
53         SortByAdded,
54         SortByUpdated,
55         SortByLastWatched,
56         SortByMostWatched
57     };
58
59 private slots:
60     void itemEntered(const QModelIndex &index);
61     void itemActivated(const QModelIndex &index);
62     void showContextMenu(const QPoint &point);
63     void toggleShowUpdated(bool enable);
64     void setSortBy(SortBy sortBy);
65     void setSortByName() { setSortBy(SortByName); }
66     void setSortByUpdated() { setSortBy(SortByUpdated); }
67     void setSortByAdded() { setSortBy(SortByAdded); }
68     void setSortByLastWatched() { setSortBy(SortByLastWatched); }
69     void setSortByMostWatched() { setSortBy(SortByMostWatched); }
70     void markAllAsWatched();
71     void unwatchedCountChanged(int count);
72     void updateQuery(bool transition = false);
73
74 private:
75     void setupActions();
76
77     ChannelModel *channelsModel;
78     QList<QAction*> statusActions;
79     bool showUpdated;
80     SortBy sortBy;
81     QString errorMessage;
82     QAction *markAsWatchedAction;
83
84 };
85
86 #endif // CHANNELSVIEW_H