]> git.sesse.net Git - kdenlive/blob - src/jogshuttle.h
Initial support for Jog Shuttle devices
[kdenlive] / src / jogshuttle.h
1 /***************************************************************************
2  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *   Based on code by Arendt David <admin@prnet.org>                       *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21 #ifndef SHUTTLE_H
22 #define SHUTTLE_H
23
24 #include <qthread.h>
25 #include <QObject>
26
27 #include <linux/input.h>
28
29
30 typedef struct input_event EV;
31
32 class ShuttleThread : public QThread {
33
34 public:
35     virtual void run();
36     void init(QObject *parent, QString device);
37     QObject *m_parent;
38     int shuttlevalue;
39     unsigned short jogvalue;
40     bool isWorking();
41     bool stop_me;
42
43 private:
44     QString m_device;
45     bool m_isWorking;
46     void handle_event(EV ev);
47     void jogshuttle(unsigned short code, unsigned int value);
48     void jog(unsigned int value);
49     void shuttle(int value);
50     void key(unsigned short code, unsigned int value);
51 };
52
53
54 class JogShuttle: public QObject {
55 Q_OBJECT public:
56     JogShuttle(QString device, QObject * parent = 0);
57     ~JogShuttle();
58     void stopDevice();
59     void initDevice(QString device);
60
61 protected:
62     virtual void customEvent(QEvent * e);
63
64 private:
65     ShuttleThread m_shuttleProcess;
66
67 signals:
68     void rewind1();
69     void forward1();
70     void rewind(double);
71     void forward(double);
72     void stop();
73     void button(int);
74 };
75
76 #endif