1 /* -*- Mode: ObjC; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*****************************************************************************
6 * Created by Martin Kahr on 11.03.06 under a MIT-style license.
7 * Copyright (c) 2006 martinkahr.com. All rights reserved.
9 * Code modified and adapted to OpenOffice.org
10 * by Eric Bachard on 11.08.2008 under the same License
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:
19 * The above copyright notice and this permission notice shall be included
20 * in all copies or substantial portions of the Software.
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
30 *****************************************************************************/
32 #import <apple_remote/RemoteControl.h>
34 // notifaction names that are being used to signal that an application wants to
35 // have access to the remote control device or if the application has finished
36 // using the remote control device
37 NSString* REQUEST_FOR_REMOTE_CONTROL_NOTIFCATION = @"mac.remotecontrols.RequestForRemoteControl";
38 NSString* FINISHED_USING_REMOTE_CONTROL_NOTIFICATION = @"mac.remotecontrols.FinishedUsingRemoteControl";
40 // keys used in user objects for distributed notifications
41 NSString* kRemoteControlDeviceName = @"RemoteControlDeviceName";
42 NSString* kApplicationIdentifier = @"CFBundleIdentifier";
43 // bundle identifier of the application that should get access to the remote control
44 // this key is being used in the FINISHED notification only
45 NSString* kTargetApplicationIdentifier = @"TargetBundleIdentifier";
48 @implementation RemoteControl
50 // returns nil if the remote control device is not available
51 - (id) initWithDelegate: (id) _remoteControlDelegate {
52 if ( (self = [super init]) ) {
53 delegate = [_remoteControlDelegate retain];
55 NSLog(@"RemoteControl initWithDelegate ok");
66 - (void) setListeningToRemote: (BOOL) value {
68 NSLog(@"setListeningToRemote ok");
72 - (BOOL) isListeningToRemote {
76 - (void) startListening: (id) sender {
78 NSLog(@"startListening ok");
82 - (void) stopListening: (id) sender {
84 NSLog(@"stopListening ok");
89 - (BOOL) isOpenInExclusiveMode {
92 - (void) setOpenInExclusiveMode: (BOOL) value {
96 - (BOOL) sendsEventForButtonIdentifier: (RemoteControlEventIdentifier) identifier {
98 NSLog(@"sending event for button identifier \n");
104 + (void) sendDistributedNotification: (NSString*) notificationName targetBundleIdentifier: (NSString*) targetIdentifier
106 NSDictionary* userInfo = [NSDictionary dictionaryWithObjectsAndKeys: [NSString stringWithCString:[self remoteControlDeviceName] encoding:NSASCIIStringEncoding],
107 kRemoteControlDeviceName /* key = RemoteControlDeviceName -> OK */,
108 [[NSBundle mainBundle] bundleIdentifier] /* value = org.openoffice.script -> OK */,
109 kApplicationIdentifier/* key = CFBundleIdentifier -> OK */,
110 targetIdentifier /*value = AppleIRController -> OK */,
111 kTargetApplicationIdentifier /*targetBundleIdentifier -> does not appear, since the peer is nil*/,
114 // Debug purpose: returns all the existing dictionary keys.
116 NSEnumerator *e = [userInfo keyEnumerator];
117 while ( (s = [e nextObject]) ) {
118 NSLog(@"key = %@ ",s);
120 NSEnumerator *f = [userInfo objectEnumerator ];
121 while ( (s = [f nextObject]) ) {
122 NSLog(@"value = %@ ",s);
124 NSLog(@"sendDistributedNotification ...");
127 [[NSDistributedNotificationCenter defaultCenter] postNotificationName:notificationName
130 deliverImmediately:YES];
133 + (void) sendFinishedNotifcationForAppIdentifier: (NSString*) identifier {
134 [self sendDistributedNotification:FINISHED_USING_REMOTE_CONTROL_NOTIFICATION targetBundleIdentifier:identifier];
136 NSLog(@"sendFinishedNotifcationForAppIdentifier ...");
139 + (void) sendRequestForRemoteControlNotification {
140 [self sendDistributedNotification:REQUEST_FOR_REMOTE_CONTROL_NOTIFCATION targetBundleIdentifier:nil];
142 NSLog(@"sendRequestForRemoteControlNotification ...");
146 + (const char*) remoteControlDeviceName {
152 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */