diff options
Diffstat (limited to 'dgedit/canvastoollisten.h')
-rw-r--r-- | dgedit/canvastoollisten.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dgedit/canvastoollisten.h b/dgedit/canvastoollisten.h index dfbea97..22daafd 100644 --- a/dgedit/canvastoollisten.h +++ b/dgedit/canvastoollisten.h @@ -30,6 +30,7 @@ #include "canvastool.h" #include <QThread> +#include <QTimer> #include <ao/ao.h> @@ -59,10 +60,15 @@ public: bool mouseReleaseEvent(QMouseEvent *event); void paintEvent(QPaintEvent *event, QPainter &painter); +public slots: + void update(); + private: Canvas *canvas; Player player; + QTimer timer; + size_t lastpos; }; #endif/*__DRUMGIZMO_CANVASTOOLLISTEN_H__*/ |