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.
28 lines
338 B
28 lines
338 B
#ifndef __GLOBALVIDEO_H
|
|
#define __GLOBALVIDEO_H
|
|
|
|
#include "noatun/video.h"
|
|
|
|
|
|
class GlobalVideo : public TQWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
TQPopupMenu *menu;
|
|
VideoFrame *video;
|
|
|
|
public:
|
|
GlobalVideo();
|
|
|
|
public slots:
|
|
void appear();
|
|
void hide();
|
|
void slotAdaptSize(int w, int h);
|
|
|
|
protected:
|
|
void mouseReleaseEvent(TQMouseEvent *e);
|
|
};
|
|
|
|
|
|
#endif
|