]> git.sur5r.net Git - minitube/blobdiff - src/videosourcewidget.h
Upload 3.9.3-2 to unstable
[minitube] / src / videosourcewidget.h
index b2d923631ec116a3f171a4ad0ef11d7b9a591246..3a491ea6f0017629f196a5c5d0b88a6992558295 100644 (file)
@@ -1,43 +1,62 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+Minitube is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Minitube is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #ifndef VIDEOSOURCEWIDGET_H
 #define VIDEOSOURCEWIDGET_H
 
-#include <QtGui>
+#include <QtWidgets>
+
+#include "emptypromise.h"
+#include "gridwidget.h"
 
 class Video;
 class VideoSource;
 
-class VideoSourceWidget : public QWidget {
+class VideoSourceWidget : public GridWidget {
 
     Q_OBJECT
 
 public:
     VideoSourceWidget(VideoSource *videoSource, QWidget *parent = 0);
+    VideoSource *getVideoSource() { return videoSource; }
+    EmptyPromise *loadPreview();
 
 signals:
     void activated(VideoSource *videoSource);
+    void previewLoaded();
+    void unavailable(VideoSourceWidget *videoSourceWidget);
 
 protected:
-    void paintEvent(QPaintEvent *);
-    void mouseMoveEvent(QMouseEvent *event);
-    void mousePressEvent(QMouseEvent *event);
-    void mouseReleaseEvent(QMouseEvent *event);
-    void enterEvent(QEvent *event);
-    void leaveEvent(QEvent *event);
-    void keyReleaseEvent(QKeyEvent *event);
+    void paintEvent(QPaintEvent *event);
 
 private slots:
     void activate();
-    void previewVideo(QList<Video*> videos);
-    void setPixmapData(QByteArray bytes);
+    void previewVideo(const QVector<Video*> &videos);
+    void setPixmapData(const QByteArray &bytes);
 
 private:
     QPixmap playPixmap();
     VideoSource *videoSource;
     QPixmap pixmap;
-    Video *video;
+    qreal lastPixelRatio;
 
-    bool hovered;
-    bool pressed;
 };
 
 #endif // VIDEOSOURCEWIDGET_H