1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2  *
3  * Copyright (C) 2001 Bastien Nocera <hadess@hadess.net>
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
test()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, see <http://www.gnu.org/licenses/>.
17  */
18 
19 #ifndef __MEDIA_KEYS_H__
20 #define __MEDIA_KEYS_H__
21 
22 typedef enum {
23         TOUCHPAD_KEY,
24         TOUCHPAD_ON_KEY,
25         TOUCHPAD_OFF_KEY,
26         MUTE_KEY,
27         VOLUME_DOWN_KEY,
28         VOLUME_UP_KEY,
29         MIC_MUTE_KEY,
30         MUTE_QUIET_KEY,
31         VOLUME_DOWN_QUIET_KEY,
32         VOLUME_UP_QUIET_KEY,
33         VOLUME_DOWN_PRECISE_KEY,
34         VOLUME_UP_PRECISE_KEY,
35         LOGOUT_KEY,
36         EJECT_KEY,
37         HOME_KEY,
38         MEDIA_KEY,
39         CALCULATOR_KEY,
40         SEARCH_KEY,
41         EMAIL_KEY,
42         CONTROL_CENTER_KEY,
43         SCREENSAVER_KEY,
44         HELP_KEY,
45         SCREENSHOT_KEY,
46         WINDOW_SCREENSHOT_KEY,
47         AREA_SCREENSHOT_KEY,
48         SCREENSHOT_CLIP_KEY,
49         WINDOW_SCREENSHOT_CLIP_KEY,
50         AREA_SCREENSHOT_CLIP_KEY,
51         SCREENCAST_KEY,
52         WWW_KEY,
53         PLAY_KEY,
54         PAUSE_KEY,
55         STOP_KEY,
56         PREVIOUS_KEY,
57         NEXT_KEY,
58         REWIND_KEY,
59         FORWARD_KEY,
60         REPEAT_KEY,
61         RANDOM_KEY,
62         ROTATE_VIDEO_LOCK_KEY,
63         MAGNIFIER_KEY,
64         SCREENREADER_KEY,
65         ON_SCREEN_KEYBOARD_KEY,
66         INCREASE_TEXT_KEY,
67         DECREASE_TEXT_KEY,
68         TOGGLE_CONTRAST_KEY,
69         MAGNIFIER_ZOOM_IN_KEY,
70         MAGNIFIER_ZOOM_OUT_KEY,
71         POWER_KEY,
72         SUSPEND_KEY,
73         HIBERNATE_KEY,
74         SCREEN_BRIGHTNESS_UP_KEY,
75         SCREEN_BRIGHTNESS_DOWN_KEY,
76         SCREEN_BRIGHTNESS_CYCLE_KEY,
77         KEYBOARD_BRIGHTNESS_UP_KEY,
78         KEYBOARD_BRIGHTNESS_DOWN_KEY,
79         KEYBOARD_BRIGHTNESS_TOGGLE_KEY,
80         BATTERY_KEY,
81         RFKILL_KEY,
82         BLUETOOTH_RFKILL_KEY,
83         CUSTOM_KEY
84 } MediaKeyType;
85 
86 #endif  /* __MEDIA_KEYS_H__ */
87