summaryrefslogtreecommitdiff
path: root/dom/webidl/TVSource.webidl
blob: 99cc8bea03822539cc8006a21d8078c0d6f15a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/.
 *
 * The origin of this IDL file is
 * http://seanyhlin.github.io/TV-Manager-API/
 */

enum TVSourceType {
  "dvb-t",
  "dvb-t2",
  "dvb-c",
  "dvb-c2",
  "dvb-s",
  "dvb-s2",
  "dvb-h",
  "dvb-sh",
  "atsc",
  "atsc-m/h",
  "isdb-t",
  "isdb-tb",
  "isdb-s",
  "isdb-c",
  "1seg",
  "dtmb",
  "cmmb",
  "t-dmb",
  "s-dmb"
};

dictionary TVStartScanningOptions {
  boolean isRescanned;
};

[Pref="dom.tv.enabled", CheckPermissions="tv", Func="Navigator::HasTVSupport"]
interface TVSource : EventTarget {
  [Throws]
  Promise<sequence<TVChannel>> getChannels();

  [Throws]
  Promise<void> setCurrentChannel(DOMString channelNumber);

  [Throws]
  Promise<void> startScanning(optional TVStartScanningOptions options);

  [Throws]
  Promise<void> stopScanning();

  readonly attribute TVTuner tuner;

  readonly attribute TVSourceType type;

  readonly attribute boolean isScanning;

  readonly attribute TVChannel? currentChannel;

  attribute EventHandler oncurrentchannelchanged;
  attribute EventHandler oneitbroadcasted;
  attribute EventHandler onscanningstatechanged;
};