mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=40: */
|
|
/* 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/. */
|
|
|
|
#include "nsIDOMEventTarget.idl"
|
|
|
|
interface nsIDOMDOMRequest;
|
|
interface nsIDOMBluetoothDevice;
|
|
|
|
[scriptable, builtinclass, uuid(86e9fe78-ce64-476e-a357-333f7d3c8980)]
|
|
interface nsIDOMBluetoothAdapter : nsIDOMEventTarget
|
|
{
|
|
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;
|
|
|
|
[implicit_jscontext]
|
|
readonly attribute jsval uuids;
|
|
|
|
readonly attribute DOMString name;
|
|
readonly attribute bool discoverable;
|
|
// Unit: sec
|
|
readonly attribute unsigned long discoverableTimeout;
|
|
|
|
nsIDOMDOMRequest setName(in DOMString name);
|
|
nsIDOMDOMRequest setDiscoverable(in bool discoverable);
|
|
nsIDOMDOMRequest setDiscoverableTimeout(in unsigned long timeout);
|
|
nsIDOMDOMRequest startDiscovery();
|
|
nsIDOMDOMRequest stopDiscovery();
|
|
// 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;
|
|
};
|