summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/tools/designer/examples/vcr/vcr.h
blob: d3f6459f77fb370780f0e0f666b557a3ba24c345 (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 <tqwidget.h>

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