|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 |
|
6 #include "nsISupports.idl" |
|
7 #include "domstubs.idl" |
|
8 |
|
9 /* |
|
10 The nsPICommandUpdater interface is used by modules that implement |
|
11 commands, to tell the command manager that commands need updating. |
|
12 This is a private interface; embedders should not use it. |
|
13 |
|
14 Command-implementing modules should get one of these by a QI |
|
15 from an nsICommandManager. |
|
16 */ |
|
17 |
|
18 [scriptable, uuid(B135F602-0BFE-11D5-A73C-F0E420E8293C)] |
|
19 interface nsPICommandUpdater : nsISupports |
|
20 { |
|
21 |
|
22 /* |
|
23 * Init the command updater, passing an nsIDOMWindow which |
|
24 * is the window that the command updater lives on. |
|
25 * |
|
26 */ |
|
27 void init(in nsIDOMWindow aWindow); |
|
28 |
|
29 /* |
|
30 * Notify the command manager that the status of a command |
|
31 * changed. It may have changed from enabled to disabled, |
|
32 * or vice versa, or become toggled etc. |
|
33 */ |
|
34 void commandStatusChanged(in string aCommandName); |
|
35 |
|
36 }; |
|
37 |
|
38 |