summaryrefslogtreecommitdiffstats
path: root/dom/webidl/TreeColumns.webidl
blob: 417669aa1fc0188c1f5e298201076389154dc183 (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
/* 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/. */

[ChromeOnly,
 Exposed=Window]
interface TreeColumns {
  /**
   * The tree widget for these columns.
   */
  readonly attribute XULTreeElement? tree;

  /**
   * The number of columns.
   */
  readonly attribute unsigned long count;

  /**
   * An alias for count (for the benefit of scripts which treat this as an
   * array).
   */
  readonly attribute unsigned long length;

  /**
   * Get the first/last column.
   */
  TreeColumn? getFirstColumn();
  TreeColumn? getLastColumn();

  /**
   * Attribute based column getters.
   */
  TreeColumn? getPrimaryColumn();
  TreeColumn? getSortedColumn();
  TreeColumn? getKeyColumn();

  /**
   * Get the column for the given element.
   */
  TreeColumn? getColumnFor(Element? element);

  /**
   * Parametric column getters.
   */
  getter TreeColumn? getNamedColumn(DOMString name);
  getter TreeColumn? getColumnAt(unsigned long index);

  /**
   * This method is called whenever a treecol is added or removed and
   * the column cache needs to be rebuilt.
   */
  undefined invalidateColumns();
};