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.
18 lines
265 B
18 lines
265 B
14 years ago
|
#ifndef VCR_H
|
||
|
#define VCR_H
|
||
|
#include <tqwidget.h>
|
||
|
|
||
|
class Vcr : public TQWidget
|
||
|
{
|
||
|
TQ_OBJECT
|
||
|
public:
|
||
|
Vcr( TQWidget *tqparent = 0, const char *name = 0 );
|
||
|
~Vcr() {}
|
||
|
Q_SIGNALS:
|
||
|
void rewind();
|
||
|
void play();
|
||
|
void next();
|
||
|
void stop();
|
||
|
};
|
||
|
#endif
|