2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
25 #include <IOKit/hidsystem/IOHIPointing.h>
26 #include <IOKit/hidsystem/IOLLEvent.h>
28 class IOHITabletPointer
;
30 #define kIOHIVendorID "VendorID"
31 #define kIOHISystemTabletID "SystemTabletID"
32 #define kIOHIVendorTabletID "VendorTabletID"
34 typedef void (*TabletEventAction
)(OSObject
*target
,
35 NXEventData
*tabletData
, // Do we want to parameterize this?
38 typedef void (*ProximityEventAction
)(OSObject
*target
,
39 NXEventData
*proximityData
, // or this?
42 class IOHITablet
: public IOHIPointing
44 OSDeclareDefaultStructors(IOHITablet
);
47 UInt16 _systemTabletID
;
50 OSObject
* _tabletEventTarget
;
51 TabletEventAction _tabletEventAction
;
52 OSObject
* _proximityEventTarget
;
53 ProximityEventAction _proximityEventAction
;
56 virtual void dispatchTabletEvent(NXEventData
*tabletEvent
,
59 virtual void dispatchProximityEvent(NXEventData
*proximityEvent
,
62 virtual bool startTabletPointer(IOHITabletPointer
*pointer
, OSDictionary
*properties
);
65 static UInt16
generateTabletID();
67 virtual bool init(OSDictionary
* propTable
);
68 virtual bool open(IOService
* client
,
70 RelativePointerEventAction rpeAction
,
71 AbsolutePointerEventAction apeAction
,
72 ScrollWheelEventAction sweAction
,
73 TabletEventAction tabletAction
,
74 ProximityEventAction proximityAction
);
78 #endif /* !_IOHITABLET_H */