VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/inpututils.h@ 62425

最後變更 在這個檔案從62425是 40349,由 vboxsync 提交於 13 年 前

Additions/xorg: support X.Org Server 1.12.

  • 屬性 svn:eol-style 設為 native
檔案大小: 2.7 KB
 
1/*
2 * Copyright © 2010 Red Hat, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 */
24
25#ifdef HAVE_DIX_CONFIG_H
26#include "dix-config.h"
27#endif
28
29#ifndef INPUTUTILS_H
30#define INPUTUTILS_H
31
32#include "input.h"
33#include <X11/extensions/XI2proto.h>
34
35extern Mask event_filters[MAXDEVICES][MAXEVENTS];
36
37struct _ValuatorMask {
38 int8_t last_bit; /* highest bit set in mask */
39 uint8_t mask[(MAX_VALUATORS + 7)/8];
40 double valuators[MAX_VALUATORS]; /* valuator data */
41};
42
43extern void verify_internal_event(const InternalEvent *ev);
44extern void init_device_event(DeviceEvent *event, DeviceIntPtr dev, Time ms);
45extern int event_get_corestate(DeviceIntPtr mouse, DeviceIntPtr kbd);
46extern void event_set_state(DeviceIntPtr mouse, DeviceIntPtr kbd, DeviceEvent *event);
47extern Mask event_get_filter_from_type(DeviceIntPtr dev, int evtype);
48extern Mask event_get_filter_from_xi2type(int evtype);
49
50FP3232 double_to_fp3232(double in);
51FP1616 double_to_fp1616(double in);
52double fp1616_to_double(FP1616 in);
53double fp3232_to_double(FP3232 in);
54
55
56XI2Mask* xi2mask_new(void);
57XI2Mask* xi2mask_new_with_size(size_t, size_t); /* don't use it */
58void xi2mask_free(XI2Mask** mask);
59Bool xi2mask_isset(XI2Mask* mask, const DeviceIntPtr dev, int event_type);
60void xi2mask_set(XI2Mask *mask, int deviceid, int event_type);
61void xi2mask_zero(XI2Mask *mask, int deviceid);
62void xi2mask_merge(XI2Mask *dest, const XI2Mask *source);
63size_t xi2mask_num_masks(const XI2Mask *mask);
64size_t xi2mask_mask_size(const XI2Mask *mask);
65void xi2mask_set_one_mask(XI2Mask *xi2mask, int deviceid, const unsigned char *mask, size_t mask_size);
66const unsigned char* xi2mask_get_one_mask(const XI2Mask *xi2mask, int deviceid);
67#endif
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette