]> git.sesse.net Git - kdenlive/blob - src/jogshuttle.h
d1cf185b3a22941499e303f74897920ce71a5844
[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>
25 #include <QObject>
26 #include <QMap>
27
28 #include <linux/input.h>
29
30
31 typedef struct input_event EV;
32
33 class ShuttleThread : public QThread
34 {
35
36 public:
37     virtual void run();
38     void init(QObject *parent, const QString &device);
39     QObject *m_parent;
40     int shuttlevalue;
41     int shuttlecounter;
42     unsigned short jogvalue;
43     bool isWorking();
44     volatile bool stop_me;
45     QString m_device;
46
47 private:
48     bool m_isWorking;
49     void handle_event(EV ev);
50     void jog(unsigned int value);
51     void shuttle(int value);
52     void key(unsigned short code, unsigned int value);
53 };
54
55 typedef QMap<QString, QString> DeviceMap;
56 typedef QMap<QString, QString>::iterator DeviceMapIter;
57
58 class JogShuttle: public QObject
59 {
60     Q_OBJECT
61 public:
62     explicit JogShuttle(const QString &device, QObject * parent = 0);
63     ~JogShuttle();
64     void stopDevice();
65     void initDevice(const QString &device);
66     static QString enumerateDevice(const QString& device);
67     static DeviceMap enumerateDevices(const QString& devPath);
68
69 protected:
70     virtual void customEvent(QEvent * e);
71
72 private:
73     ShuttleThread m_shuttleProcess;
74
75 signals:
76     void jogBack();
77     void jogForward();
78     void shuttlePos(int);
79     void button(int);
80 };
81
82 #endif