diff options
Diffstat (limited to 'tqtinterface/qt4/tools/designer/examples/vcr/vcr.h')
-rw-r--r-- | tqtinterface/qt4/tools/designer/examples/vcr/vcr.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tqtinterface/qt4/tools/designer/examples/vcr/vcr.h b/tqtinterface/qt4/tools/designer/examples/vcr/vcr.h new file mode 100644 index 0000000..1dccc8c --- /dev/null +++ b/tqtinterface/qt4/tools/designer/examples/vcr/vcr.h @@ -0,0 +1,17 @@ +#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 |