mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
--HG-- rename : embedding/components/commandhandler/src/nsBaseCommandController.cpp => embedding/components/commandhandler/nsBaseCommandController.cpp rename : embedding/components/commandhandler/src/nsBaseCommandController.h => embedding/components/commandhandler/nsBaseCommandController.h rename : embedding/components/commandhandler/src/nsCommandGroup.cpp => embedding/components/commandhandler/nsCommandGroup.cpp rename : embedding/components/commandhandler/src/nsCommandGroup.h => embedding/components/commandhandler/nsCommandGroup.h rename : embedding/components/commandhandler/src/nsCommandManager.cpp => embedding/components/commandhandler/nsCommandManager.cpp rename : embedding/components/commandhandler/src/nsCommandManager.h => embedding/components/commandhandler/nsCommandManager.h rename : embedding/components/commandhandler/src/nsCommandParams.cpp => embedding/components/commandhandler/nsCommandParams.cpp rename : embedding/components/commandhandler/src/nsCommandParams.h => embedding/components/commandhandler/nsCommandParams.h rename : embedding/components/commandhandler/src/nsControllerCommandTable.cpp => embedding/components/commandhandler/nsControllerCommandTable.cpp rename : embedding/components/commandhandler/src/nsControllerCommandTable.h => embedding/components/commandhandler/nsControllerCommandTable.h rename : embedding/components/commandhandler/public/nsICommandManager.idl => embedding/components/commandhandler/nsICommandManager.idl rename : embedding/components/commandhandler/public/nsICommandParams.idl => embedding/components/commandhandler/nsICommandParams.idl rename : embedding/components/commandhandler/public/nsIControllerCommand.idl => embedding/components/commandhandler/nsIControllerCommand.idl rename : embedding/components/commandhandler/public/nsIControllerCommandTable.idl => embedding/components/commandhandler/nsIControllerCommandTable.idl rename : embedding/components/commandhandler/public/nsIControllerContext.idl => embedding/components/commandhandler/nsIControllerContext.idl rename : embedding/components/commandhandler/public/nsPICommandUpdater.idl => embedding/components/commandhandler/nsPICommandUpdater.idl
51 lines
1.9 KiB
Text
51 lines
1.9 KiB
Text
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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/. */
|
|
|
|
#include "nsISupports.idl"
|
|
#include "nsICommandParams.idl"
|
|
|
|
/**
|
|
* nsIControllerCommand
|
|
*
|
|
* A generic command interface. You can register an nsIControllerCommand
|
|
* with the nsIControllerCommandTable.
|
|
*/
|
|
|
|
[scriptable, uuid(0eae9a46-1dd2-11b2-aca0-9176f05fe9db)]
|
|
interface nsIControllerCommand : nsISupports
|
|
{
|
|
|
|
/**
|
|
* Returns true if the command is currently enabled. An nsIControllerCommand
|
|
* can implement more than one commands; say, a group of related commands
|
|
* (e.g. delete left/delete right). Because of this, the command name is
|
|
* passed to each method.
|
|
*
|
|
* @param aCommandName the name of the command for which we want the enabled
|
|
* state.
|
|
* @param aCommandContext a cookie held by the nsIControllerCommandTable,
|
|
* allowing the command to get some context information.
|
|
* The contents of this cookie are implementation-defined.
|
|
*/
|
|
boolean isCommandEnabled(in string aCommandName, in nsISupports aCommandContext);
|
|
|
|
void getCommandStateParams(in string aCommandName, in nsICommandParams aParams, in nsISupports aCommandContext);
|
|
|
|
/**
|
|
* Execute the name command.
|
|
*
|
|
* @param aCommandName the name of the command to execute.
|
|
*
|
|
* @param aCommandContext a cookie held by the nsIControllerCommandTable,
|
|
* allowing the command to get some context information.
|
|
* The contents of this cookie are implementation-defined.
|
|
*/
|
|
void doCommand(in string aCommandName, in nsISupports aCommandContext);
|
|
|
|
void doCommandParams(in string aCommandName, in nsICommandParams aParams, in nsISupports aCommandContext);
|
|
|
|
};
|
|
|