1 /***************************************************************************
2 * Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
3 * Based on code by Arendt David <admin@prnet.org> *
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. *
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. *
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 ***************************************************************************/
27 #include <linux/input.h>
30 typedef struct input_event EV;
32 class ShuttleThread : public QThread
37 void init(QObject *parent, QString device);
40 unsigned short jogvalue;
47 void handle_event(EV ev);
48 void jogshuttle(unsigned short code, unsigned int value);
49 void jog(unsigned int value);
50 void shuttle(int value);
51 void key(unsigned short code, unsigned int value);
55 class JogShuttle: public QObject
58 explicit JogShuttle(QString device, QObject * parent = 0);
61 void initDevice(QString device);
64 virtual void customEvent(QEvent * e);
67 ShuttleThread m_shuttleProcess;