]> git.sesse.net Git - kdenlive/blob - src/lib/external/media_ctrl/mediactrl.h
652b4ffe1b445fd3dc53a0b629c1639b76faa1a7
[kdenlive] / src / lib / external / media_ctrl / mediactrl.h
1 /*
2 * mediactrl.c -- Jog Shuttle device support
3 * Copyright (C) 2001-2007 Dan Dennedy <dan@dennedy.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 Free Software Foundation,
17 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19 #ifndef _MEDIA_CTRL_H
20 #define _MEDIA_CTRL_H
21
22
23 // just to make the code more readable
24 #define KEY_RELEASE                     0x00
25 #define KEY_PRESS                       0x01
26
27 // not used yet
28 #define MEDIA_ST_ACTIVE                 0x02
29 #define MEDIA_ST_INACTIVE               0x01
30
31 // media ctrl event types
32 #define MEDIA_CTRL_EVENT_NONE           0x00
33 #define MEDIA_CTRL_EVENT_KEY            0x01
34 #define MEDIA_CTRL_EVENT_JOG            0x02
35 #define MEDIA_CTRL_EVENT_SHUTTLE        0x03
36 #define MEDIA_CTRL_EVENT_STICK          0x04
37
38 // the disconnect event - not used yet
39 #define MEDIA_CTRL_DISCONNECT           0x01
40
41 #define MEDIA_CTRL_SHIFT                0x01
42
43 #define MEDIA_CTRL_PLAY                 0x10
44 #define MEDIA_CTRL_PLAY_FWD             0x10
45 #define MEDIA_CTRL_REVERSE              0x11
46 #define MEDIA_CTRL_PLAY_REV             0x11
47 #define MEDIA_CTRL_STOP                 0x12
48 #define MEDIA_CTRL_PAUSE                0x13
49 #define MEDIA_CTRL_NEXT                 0x14
50 #define MEDIA_CTRL_PREV                 0x15
51 #define MEDIA_CTRL_RECORD               0x16
52 #define MEDIA_CTRL_FAST_FORWARD         0x17
53 #define MEDIA_CTRL_REWIND               0x18
54
55 #define MEDIA_CTRL_STICK_LEFT           0x20
56 #define MEDIA_CTRL_STICK_RIGHT          0x21
57 #define MEDIA_CTRL_STICK_UP             0x22
58 #define MEDIA_CTRL_STICK_DOWN           0x23
59
60 /* function keys, usually at top of device */
61 #define MEDIA_CTRL_F1                   0x100
62 #define MEDIA_CTRL_F2                   0x101
63 #define MEDIA_CTRL_F3                   0x102
64 #define MEDIA_CTRL_F4                   0x103
65 #define MEDIA_CTRL_F5                   0x104
66 #define MEDIA_CTRL_F6                   0x105
67 #define MEDIA_CTRL_F7                   0x106
68 #define MEDIA_CTRL_F8                   0x107
69 #define MEDIA_CTRL_F9                   0x108
70 #define MEDIA_CTRL_F10                  0x109
71 #define MEDIA_CTRL_F11                  0x10a
72 #define MEDIA_CTRL_F12                  0x10b
73 #define MEDIA_CTRL_F13                  0x10c
74 #define MEDIA_CTRL_F14                  0x10d
75 #define MEDIA_CTRL_F15                  0x10e
76 #define MEDIA_CTRL_F16                  0x10f
77
78 #define MEDIA_CTRL_B1                   0x110
79 #define MEDIA_CTRL_B2                   0x111
80 #define MEDIA_CTRL_B3                   0x112
81 #define MEDIA_CTRL_B4                   0x113
82 #define MEDIA_CTRL_B5                   0x114
83 #define MEDIA_CTRL_B6                   0x115
84 #define MEDIA_CTRL_B7                   0x116
85 #define MEDIA_CTRL_B8                   0x117
86 #define MEDIA_CTRL_B9                   0x118
87 #define MEDIA_CTRL_B10                  0x119
88 #define MEDIA_CTRL_B11                  0x11a
89 #define MEDIA_CTRL_B12                  0x11b
90 #define MEDIA_CTRL_B13                  0x11c
91 #define MEDIA_CTRL_B14                  0x11d
92 #define MEDIA_CTRL_B15                  0x11e
93 #define MEDIA_CTRL_B16                  0x11f
94
95 #ifdef __cplusplus
96 extern "C" {
97 #endif
98
99 struct media_ctrl_device;
100
101 struct media_ctrl_key {
102         int key;  // internal keycode - do not use
103         const char *name;
104         int code; // eventcode
105         int action;
106 };
107
108 struct media_ctrl_event {
109         struct timeval time;
110         unsigned short type;
111         unsigned short code;
112         char *name;
113         int value;
114         unsigned short index;
115 };
116
117 struct media_ctrl {
118         
119         int fd;
120         int eventno;
121         
122         int status;
123
124         struct media_ctrl_device *device;
125
126         long jogpos;
127         int  shuttlepos;
128         
129         int lastval;
130         int lastshu;
131         
132         int jogrel; // accumulate relative values if events come too fast
133         unsigned long last_jog_time; // last jog event
134
135 };
136
137 struct media_ctrl_device {
138         int vendor;
139         int product;
140         const char *name;
141         struct media_ctrl_key *keys;
142         void (*translate)(struct media_ctrl *ctrl, struct input_event *ev, struct media_ctrl_event *me);
143 };
144
145 void media_ctrl_open(struct media_ctrl *);
146 void media_ctrl_open2(struct media_ctrl *, const char *devname);
147 void media_ctrl_close(struct media_ctrl *);
148 void media_ctrl_read_event(struct media_ctrl *, struct media_ctrl_event *);
149
150 struct  media_ctrl_key *media_ctrl_get_keys(struct media_ctrl *);
151
152 #ifdef __cplusplus
153 }
154 #endif
155
156 #endif