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 CHANNELMODEL_H
22 #define CHANNELMODEL_H
29 class ChannelModel : public QAbstractListModel {
34 ChannelModel(QObject *parent = 0);
37 ItemTypeRole = Qt::UserRole,
48 void setQuery(const QString &query, const QSqlDatabase &db);
49 QSqlError lastError() const;
50 ItemTypes typeForIndex(const QModelIndex &index) const;
51 YTUser* userForIndex(const QModelIndex &index) const;
52 void setHoveredRow(int row);
54 int rowCount(const QModelIndex &parent = QModelIndex()) const;
55 QVariant data(const QModelIndex &index, int role) const;
60 void updateChannel(YTUser *user);
61 void updateUnwatched();
64 QList<YTUser*> channels;
70 #endif // CHANNELMODEL_H