2001-09-25 05:32:19 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
1999-06-09 01:58:32 +04:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
[scriptable, uuid(D5B61B82-1DA4-11d3-BF87-00105A1B0627)]
|
|
|
|
interface nsIController : nsISupports {
|
2014-12-09 18:48:27 +03:00
|
|
|
boolean isCommandEnabled(in string command);
|
|
|
|
boolean supportsCommand(in string command);
|
1999-10-14 14:58:25 +04:00
|
|
|
|
2019-03-12 04:57:42 +03:00
|
|
|
[can_run_script]
|
2014-12-09 18:48:27 +03:00
|
|
|
void doCommand(in string command);
|
1999-11-04 04:59:04 +03:00
|
|
|
|
2014-12-09 18:48:27 +03:00
|
|
|
void onEvent(in string eventName);
|
1999-06-09 01:58:32 +04:00
|
|
|
};
|
2002-02-02 08:13:56 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Enhanced controller interface that allows for passing of parameters
|
|
|
|
to commands.
|
2019-05-23 01:37:14 +03:00
|
|
|
|
2002-02-02 08:13:56 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
interface nsICommandParams;
|
|
|
|
|
2014-12-09 18:48:27 +03:00
|
|
|
[scriptable, uuid(EEC0B435-7F53-44FE-B00A-CF3EED65C01A)]
|
2002-02-02 08:13:56 +03:00
|
|
|
interface nsICommandController : nsISupports
|
|
|
|
{
|
2019-05-23 01:37:14 +03:00
|
|
|
|
2002-09-12 23:10:32 +04:00
|
|
|
void getCommandStateWithParams( in string command, in nsICommandParams aCommandParams);
|
2019-05-23 01:37:14 +03:00
|
|
|
|
2019-03-13 03:43:48 +03:00
|
|
|
[can_run_script]
|
2002-09-12 23:10:32 +04:00
|
|
|
void doCommandWithParams(in string command, in nsICommandParams aCommandParams);
|
2002-02-02 08:13:56 +03:00
|
|
|
|
2019-05-21 20:06:06 +03:00
|
|
|
Array<ACString> getSupportedCommands();
|
2002-02-02 08:13:56 +03:00
|
|
|
};
|