]> git.sur5r.net Git - minitube/blob - src/videosource.h
New upstream version 3.5
[minitube] / src / videosource.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 VIDEOSOURCE_H
22 #define VIDEOSOURCE_H
23
24 #include <QAction>
25 #include <QtCore>
26
27 class Video;
28
29 class VideoSource : public QObject {
30     Q_OBJECT
31
32 public:
33     VideoSource(QObject *parent = 0) : QObject(parent) {}
34     virtual void loadVideos(int max, int startIndex) = 0;
35     virtual bool hasMoreVideos() { return true; }
36     virtual void abort() = 0;
37     virtual QString getName() = 0;
38     virtual const QList<QAction *> &getActions() {
39         static const QList<QAction *> noActions;
40         return noActions;
41     }
42     virtual int maxResults() { return 0; }
43
44 public slots:
45     void setParam(const QString &name, const QVariant &value);
46
47 signals:
48     void gotVideos(const QVector<Video *> &videos);
49     void finished(int total);
50     void error(QString message);
51     void nameChanged(QString name);
52 };
53
54 #endif // VIDEOSOURCE_H