You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/noatun/library/globalvideo.h

27 lines
332 B

#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