summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/vcr/vcr.h
blob: 39f3481fc7c3b5e5a26d74cc13312ff912d4cbb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef VCR_H
#define VCR_H
#include <qwidget.h>

class Vcr : public TQWidget
{
    Q_OBJECT
public:
    Vcr( TQWidget *parent = 0, const char *name = 0 );
    ~Vcr() {}
signals:
    void rewind();
    void play();
    void next();
    void stop();
};
#endif