|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* vim:set ts=2 sw=2 sts=2 et cindent: */ |
|
3 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
4 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
6 |
|
7 #include "nsIWebBrowserChrome.idl" |
|
8 |
|
9 /** |
|
10 * nsIWebBrowserChrome2 is an extension to nsIWebBrowserChrome. |
|
11 */ |
|
12 [scriptable, uuid(2585a7b1-7b47-43c4-bf17-c6bf84e09b7b)] |
|
13 interface nsIWebBrowserChrome2 : nsIWebBrowserChrome |
|
14 { |
|
15 /** |
|
16 * Called when the status text in the chrome needs to be updated. This |
|
17 * method may be called instead of nsIWebBrowserChrome::SetStatus. An |
|
18 * implementor of this method, should still implement SetStatus. |
|
19 * |
|
20 * @param statusType |
|
21 * Indicates what is setting the text. |
|
22 * @param status |
|
23 * Status string. Null is an acceptable value meaning no status. |
|
24 * @param contextNode |
|
25 * An object that provides context pertaining to the status type. |
|
26 * If statusType is STATUS_LINK, then statusContext may be a DOM |
|
27 * node corresponding to the source of the link. This value can |
|
28 * be null if there is no context. |
|
29 */ |
|
30 void setStatusWithContext(in unsigned long statusType, |
|
31 in AString statusText, |
|
32 in nsISupports statusContext); |
|
33 }; |