summaryrefslogtreecommitdiffstats
path: root/tools/designer/examples/vcr/vcr.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/designer/examples/vcr/vcr.h')
-rw-r--r--tools/designer/examples/vcr/vcr.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/designer/examples/vcr/vcr.h b/tools/designer/examples/vcr/vcr.h
new file mode 100644
index 0000000..c24086e
--- /dev/null
+++ b/tools/designer/examples/vcr/vcr.h
@@ -0,0 +1,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