LibreOffice Module apple_remote (master) 1
HIDRemoteControlDevice.h
Go to the documentation of this file.
1/* -*- Mode: ObjC; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*****************************************************************************
3 * HIDRemoteControlDevice.h
4 * RemoteControlWrapper
5 *
6 * Created by Martin Kahr on 11.03.06 under a MIT-style license.
7 * Copyright (c) 2006 martinkahr.com. All rights reserved.
8 *
9 * Code modified and adapted to OpenOffice.org
10 * by Eric Bachard on 11.08.2008 under the same license
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included
20 * in all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
28 * THE SOFTWARE.
29 *
30 *****************************************************************************/
31
33
34#import <IOKit/hid/IOHIDLib.h>
35
36/*
37 Base class for HID based remote control devices
38 */
40{
41 IOHIDDeviceInterface** hidDeviceInterface; // see IOKit/hid/IOHIDLib.h
42 IOHIDQueueInterface** queue; // IOKit/hid/IOHIDLib.h
43 NSMutableArray* allCookies;
44 NSMutableDictionary* cookieToButtonMapping;
45 CFRunLoopSourceRef eventSource;
46
50
52}
53
54// When your application needs too much time on the main thread when processing an event other events
55// may already be received which are put on a backlog. As soon as your main thread
56// has some spare time this backlog is processed and may flood your delegate with calls.
57// Backlog processing is turned off by default.
58- (BOOL)processesBacklog;
59- (void)setProcessesBacklog:(BOOL)value;
60
61// methods that should be overwritten by subclasses
62- (void)setCookieMappingInDictionary:(NSMutableDictionary*)cookieToButtonMapping;
63
64- (void)sendRemoteButtonEvent:(RemoteControlEventIdentifier)event pressedDown:(BOOL)pressedDown;
65
66+ (BOOL)isRemoteAvailable;
67
68@end
69
70/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
RemoteControlEventIdentifier
Definition: RemoteControl.h:54
IOHIDDeviceInterface ** hidDeviceInterface
IOHIDQueueInterface ** queue
CFRunLoopSourceRef eventSource
NSMutableDictionary * cookieToButtonMapping
const wchar_t *typedef BOOL