3 This file is part of Minitube.
4 Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
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.
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.
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/>.
21 #ifndef CHANNELSVIEW_H
22 #define CHANNELSVIEW_H
25 #if QT_VERSION >= 0x050000
33 class ChannelView : public QListView, public View {
38 ChannelView(QWidget *parent = 0);
41 void activated(VideoSource *videoSource);
48 void mousePressEvent(QMouseEvent *event);
49 void mouseMoveEvent(QMouseEvent *event);
50 void leaveEvent(QEvent *event);
51 void paintEvent(QPaintEvent *event);
63 void itemEntered(const QModelIndex &index);
64 void itemActivated(const QModelIndex &index);
65 void showContextMenu(const QPoint &point);
66 void toggleShowUpdated(bool enable);
67 void setSortBy(SortBy sortBy);
68 void setSortByName() { setSortBy(SortByName); }
69 void setSortByUpdated() { setSortBy(SortByUpdated); }
70 void setSortByAdded() { setSortBy(SortByAdded); }
71 void setSortByLastWatched() { setSortBy(SortByLastWatched); }
72 void setSortByMostWatched() { setSortBy(SortByMostWatched); }
73 void markAllAsWatched();
74 void unwatchedCountChanged(int count);
75 void updateQuery(bool transition = false);
80 ChannelModel *channelsModel;
81 QList<QAction*> statusActions;
85 QAction *markAsWatchedAction;
89 #endif // CHANNELSVIEW_H