1 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
16 * The Original Code is the Mozilla browser.
18 * The Initial Developer of the Original Code is
19 * Netscape Communications, Inc.
20 * Portions created by the Initial Developer are Copyright (C) 1999
21 * the Initial Developer. All Rights Reserved.
24 * Chris Saari <saari@netscape.com>
25 * Dan Rosen <dr@netscape.com>
27 * Alternatively, the contents of this file may be used under the terms of
28 * either the GNU General Public License Version 2 or later (the "GPL"), or
29 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
30 * in which case the provisions of the GPL or the LGPL are applicable instead
31 * of those above. If you wish to allow use of your version of this file only
32 * under the terms of either the GPL or the LGPL, and not to allow others to
33 * use your version of this file under the terms of the MPL, indicate your
34 * decision by deleting the provisions above and replace them with the notice
35 * and other provisions required by the GPL or the LGPL. If you do not delete
36 * the provisions above, a recipient may use your version of this file under
37 * the terms of any one of the MPL, the GPL or the LGPL.
39 * ***** END LICENSE BLOCK ***** */
41 interface nsIDOMWindow
;
42 interface nsIDOMElement
;
44 #include
"nsISupports.idl"
48 * Interface that embedders use for controlling and interacting
49 * with the browser focus management. The embedded browser can be focused by
50 * clicking in it or tabbing into it. If the browser is currently focused and
51 * the embedding application's top level window is disabled, deactivate() must
52 * be called, and activate() called again when the top level window is
53 * reactivated for the browser's focus memory to work correctly.
58 [scriptable
, uuid(9c5d3c58
-1dd1
-11b2
-a1c9
-f3699284657a
)]
59 interface nsIWebBrowserFocus
: nsISupports
63 * activate() is a mandatory call that must be made to the browser
64 * when the embedding application's window is activated *and* the
65 * browser area was the last thing in focus. This method can also be called
66 * if the embedding application wishes to give the browser area focus,
67 * without affecting the currently focused element within the browser.
70 * If you fail to make this call, mozilla focus memory will not work
77 * deactivate() is a mandatory call that must be made to the browser
78 * when the embedding application's window is deactivated *and* the
79 * browser area was the last thing in focus. On non-windows platforms,
80 * deactivate() should also be called when focus moves from the browser
81 * to the embedding chrome.
84 * If you fail to make this call, mozilla focus memory will not work
90 * Give the first element focus within mozilla
91 * (i.e. TAB was pressed and focus should enter mozilla)
93 void setFocusAtFirstElement
();
96 * Give the last element focus within mozilla
97 * (i.e. SHIFT-TAB was pressed and focus should enter mozilla)
99 void setFocusAtLastElement
();
102 * The currently focused nsDOMWindow when the browser is active,
103 * or the last focused nsDOMWindow when the browser is inactive.
105 attribute nsIDOMWindow focusedWindow
;
108 * The currently focused nsDOMElement when the browser is active,
109 * or the last focused nsDOMElement when the browser is inactive.
111 attribute nsIDOMElement focusedElement
;