]> git.sur5r.net Git - minitube/blob - src/channelmodel.h
3d89d4dbc15cb8b400712bdd2be64d1833f80f80
[minitube] / src / channelmodel.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 CHANNELMODEL_H
22 #define CHANNELMODEL_H
23
24 #include <QtCore>
25 #include <QtSql>
26
27 class YTUser;
28
29 class ChannelModel : public QAbstractListModel {
30
31     Q_OBJECT
32
33 public:
34     ChannelModel(QObject *parent = 0);
35
36     enum DataRoles {
37         ItemTypeRole = Qt::UserRole,
38         DataObjectRole,
39         HoveredItemRole
40     };
41
42     enum ItemTypes {
43         ItemChannel = 1,
44         ItemAggregate,
45         ItemUnwatched
46     };
47
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);
53
54     int rowCount(const QModelIndex &parent = QModelIndex()) const;
55     QVariant data(const QModelIndex &index, int role) const;
56
57 public slots:
58     void clearHover();
59     void updateSender();
60     void updateChannel(YTUser *user);
61     void updateUnwatched();
62
63 private:
64     QList<YTUser*> channels;
65     int hoveredRow;
66     QSqlError sqlError;
67
68 };
69
70 #endif // CHANNELMODEL_H