aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.7/packages/api-utils/docs/window/utils.md
blob: 276a17aa610389a5d80eaad3217aa19995871f7c (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!-- 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 `window/utils` module provides helper functions for working with
application windows.

### getInnerId

Returns the ID of the given window's current inner window.

### getOuterId

Returns the ID of the given window's outer window.

### getXULWindow

Module provides `getXULWindow` function that can be used get access
[nsIXULWindow](https://developer.mozilla.org/en/nsIDOMWindow) for the given
[nsIDOMWindow](https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsIXULWindow):

    let { Ci } = require('chrome');
    let utils = require('api-utils/window-utils');
    let active = utils.activeBrowserWindow;
    active instanceof Ci.nsIXULWindow // => false
    utils.getXULWindow(active) instanceof Ci.nsIXULWindow // => true

### getBaseWindow

Module provides `getBaseWindow` function that can be used get access
[nsIBaseWindow](http://mxr.mozilla.org/mozilla-central/source/widget/nsIBaseWindow.idl)
for the given [nsIDOMWindow](https://developer.mozilla.org/en/nsIDOMWindow):

    let { Ci } = require('chrome');
    let utils = require('api-utils/window-utils');
    let active = utils.activeBrowserWindow;
    active instanceof Ci.nsIBaseWindow // => false
    utils.getBaseWindow(active) instanceof Ci.nsIBaseWindow // => true

### open

Module exports `open` function that may be used to open top level
(application) windows. Function takes `uri` of the window document as a first
argument and optional hash of `options` as second argument.

    let { open } = require('api-utils/window-utils');
    let window = open('data:text/html,Hello Window');

Following options may be provided to configure created window behavior:

- `parent`
If provided must be `nsIDOMWindow` and will be used as parent for the created
window.

- `name`
Optional name that will be assigned to the window.

- `features`
Hash of options that will be serialized to features string. See
[features documentation](https://developer.mozilla.org/en/DOM/window.open#Position_and_size_features)
for more details.

        let { open } = require('api-utils/window/utils');
        let window = open('data:text/html,Hello Window', {
          name: 'jetpack window',
          features: {
            width: 200,
            height: 50,
            popup: true
          }
        });

### backgroundify

Module exports `backgroundify` function that takes `nsIDOMWindow` and
removes it from the application's window registry, so that they won't appear
in the OS specific window lists for the application.

    let { backgroundify, open } = require('api-utils/window/utils');
    let bgwin = backgroundify(open('data:text/html,Hello backgroundy'));

Optionally more configuration options via second `options` argument. If
`options.close` is `false` unregistered window won't automatically
be closed on application quit, preventing application from quitting. While this
is possible you should make sure to close all such windows manually:

    let { backgroundify, open } = require('api-utils/window-utils');
    let bgwin = backgroundify(open('data:text/html,Foo'), {
      close: false
    });