summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/vcr/vcr.h
blob: c24086e3d23f2b20df2ff11fd4608b3e1ff22ab4 (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 QWidget
{
    Q_OBJECT
public:
    Vcr( QWidget *parent = 0, const char *name = 0 );
    ~Vcr() {}
signals:
    void rewind();
    void play();
    void next();
    void stop();
};
#endif