summaryrefslogtreecommitdiffstats
path: root/noatun/library/globalvideo.h
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/library/globalvideo.h')
-rw-r--r--noatun/library/globalvideo.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/noatun/library/globalvideo.h b/noatun/library/globalvideo.h
new file mode 100644
index 00000000..e0f28cb0
--- /dev/null
+++ b/noatun/library/globalvideo.h
@@ -0,0 +1,26 @@
+#ifndef __GLOBALVIDEO_H
+#define __GLOBALVIDEO_H
+
+#include "noatun/video.h"
+
+
+class GlobalVideo : public QWidget
+{
+Q_OBJECT
+ QPopupMenu *menu;
+ VideoFrame *video;
+
+public:
+ GlobalVideo();
+
+public slots:
+ void appear();
+ void hide();
+ void slotAdaptSize(int w, int h);
+
+protected:
+ void mouseReleaseEvent(QMouseEvent *e);
+};
+
+
+#endif