]> git.sur5r.net Git - minitube/blobdiff - src/videosourcewidget.h
Imported Upstream version 2.1.3
[minitube] / src / videosourcewidget.h
index b2d923631ec116a3f171a4ad0ef11d7b9a591246..22c7740d38682084701fb382bf97d9193baa6400 100644 (file)
@@ -1,12 +1,33 @@
+/* $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 "gridwidget.h"
 
 class Video;
 class VideoSource;
 
-class VideoSourceWidget : public QWidget {
+class VideoSourceWidget : public GridWidget {
 
     Q_OBJECT
 
@@ -17,13 +38,7 @@ signals:
     void activated(VideoSource *videoSource);
 
 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();
@@ -36,8 +51,6 @@ private:
     QPixmap pixmap;
     Video *video;
 
-    bool hovered;
-    bool pressed;
 };
 
 #endif // VIDEOSOURCEWIDGET_H