2012-02-20 07:15:19 -08:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
2012-08-16 19:53:45 -07:00
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2012-02-20 07:15:19 -08:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2012-02-23 07:55:48 -08:00
|
|
|
#include "nsIDOMEventTarget.idl"
|
2012-02-20 07:15:19 -08:00
|
|
|
|
2012-07-17 20:41:54 -07:00
|
|
|
interface nsIDOMDOMRequest;
|
|
|
|
interface nsIDOMBluetoothDevice;
|
|
|
|
|
2012-08-17 03:35:59 -07:00
|
|
|
[scriptable, builtinclass, uuid(db6b4dd6-64f1-415d-ac51-ae0fa0fe05ed)]
|
2012-02-23 07:55:48 -08:00
|
|
|
interface nsIDOMBluetoothAdapter : nsIDOMEventTarget
|
2012-02-20 07:15:19 -08:00
|
|
|
{
|
2012-07-17 20:41:54 -07:00
|
|
|
readonly attribute DOMString address;
|
|
|
|
[binaryname(AdapterClass)] readonly attribute unsigned long class;
|
|
|
|
readonly attribute bool enabled;
|
|
|
|
readonly attribute bool discovering;
|
|
|
|
|
|
|
|
[implicit_jscontext]
|
|
|
|
readonly attribute jsval devices;
|
|
|
|
|
2012-07-31 21:53:04 -07:00
|
|
|
[implicit_jscontext]
|
|
|
|
readonly attribute jsval uuids;
|
|
|
|
|
2012-07-17 20:41:54 -07:00
|
|
|
readonly attribute DOMString name;
|
|
|
|
readonly attribute bool discoverable;
|
|
|
|
// Unit: sec
|
|
|
|
readonly attribute unsigned long discoverableTimeout;
|
|
|
|
|
2012-07-31 21:53:04 -07:00
|
|
|
nsIDOMDOMRequest setName(in DOMString name);
|
|
|
|
nsIDOMDOMRequest setDiscoverable(in bool discoverable);
|
|
|
|
nsIDOMDOMRequest setDiscoverableTimeout(in unsigned long timeout);
|
2012-07-17 20:41:54 -07:00
|
|
|
nsIDOMDOMRequest startDiscovery();
|
|
|
|
nsIDOMDOMRequest stopDiscovery();
|
2012-08-17 03:35:59 -07:00
|
|
|
nsIDOMDOMRequest pair(in nsIDOMBluetoothDevice aDevice);
|
|
|
|
nsIDOMDOMRequest unpair(in nsIDOMBluetoothDevice aDevice);
|
2012-08-16 19:53:45 -07:00
|
|
|
nsIDOMDOMRequest getPairedDevices();
|
2012-08-17 03:35:59 -07:00
|
|
|
void setPinCode(in DOMString aDeviceAddress, in DOMString aPinCode);
|
|
|
|
void setPasskey(in DOMString aDeviceAddress, in unsigned long aPasskey);
|
|
|
|
void setPairingConfirmation(in DOMString aDeviceAddress, in bool aConfirmation);
|
|
|
|
void setAuthorization(in DOMString aDeviceAddress, in bool aAllow);
|
|
|
|
|
2012-07-17 20:41:54 -07:00
|
|
|
// Fired when discoverying and any device is discovered.
|
|
|
|
attribute nsIDOMEventListener ondevicefound;
|
|
|
|
// Fired when any device is out of discoverable range.
|
|
|
|
attribute nsIDOMEventListener ondevicedisappeared;
|
|
|
|
// Fired when a property of the adapter is changed
|
|
|
|
attribute nsIDOMEventListener onpropertychanged;
|
2012-08-17 03:35:59 -07:00
|
|
|
// Pairing related events
|
|
|
|
attribute nsIDOMEventListener onrequestconfirmation;
|
|
|
|
attribute nsIDOMEventListener onrequestpincode;
|
|
|
|
attribute nsIDOMEventListener onrequestpasskey;
|
|
|
|
attribute nsIDOMEventListener onauthorize;
|
|
|
|
attribute nsIDOMEventListener oncancel;
|
2012-02-20 07:15:19 -08:00
|
|
|
};
|