mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
55 lines
1.5 KiB
Plaintext
55 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=80: */
|
|
/* 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/. */
|
|
|
|
[CheckPermissions="bluetooth"]
|
|
interface BluetoothDevice : EventTarget
|
|
{
|
|
readonly attribute DOMString address;
|
|
readonly attribute BluetoothClassOfDevice cod;
|
|
readonly attribute DOMString name;
|
|
readonly attribute boolean paired;
|
|
readonly attribute BluetoothDeviceType type;
|
|
|
|
[Cached, Pure]
|
|
readonly attribute sequence<DOMString> uuids;
|
|
|
|
// Fired when attribute(s) of BluetoothDevice changed
|
|
attribute EventHandler onattributechanged;
|
|
|
|
/**
|
|
* Fetch the up-to-date UUID list of each bluetooth service that the device
|
|
* provides and refresh the cache value of attribute uuids if it is updated.
|
|
*
|
|
* If the operation succeeds, the promise will be resolved with up-to-date
|
|
* UUID list which is identical to attribute uuids.
|
|
*/
|
|
[NewObject, Throws]
|
|
Promise<sequence<DOMString>> fetchUuids();
|
|
};
|
|
|
|
enum BluetoothDeviceType
|
|
{
|
|
"unknown",
|
|
"classic",
|
|
"le",
|
|
"dual"
|
|
};
|
|
|
|
/*
|
|
* Possible device attributes that attributechanged event reports.
|
|
* Note "address" and "type" are excluded since they never change once
|
|
* BluetoothDevice is created.
|
|
*/
|
|
enum BluetoothDeviceAttribute
|
|
{
|
|
"unknown",
|
|
"cod",
|
|
"name",
|
|
"paired",
|
|
"uuids"
|
|
};
|
|
|