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