2001-09-19 20:09:47 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ----- BEGIN LICENSE BLOCK -----
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2000-02-16 01:33:03 +00:00
|
|
|
*
|
2001-09-19 20:09:47 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public
|
2000-02-16 01:33:03 +00:00
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
2001-09-19 20:09:47 +00:00
|
|
|
* the License at http://www.mozilla.org/MPL/
|
2000-02-16 01:33:03 +00:00
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
2001-09-19 20:09:47 +00:00
|
|
|
* The Initial Developer of the Original Code is Netscape Communications Corporation.
|
|
|
|
* Portions created by Netscape Communications Corporation are
|
2000-02-16 01:33:03 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
2001-09-19 20:09:47 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the LGPL or the GPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ----- END LICENSE BLOCK ----- */
|
2000-02-16 01:33:03 +00:00
|
|
|
|
|
|
|
#ifndef nsIEditorCommand_h_
|
|
|
|
#define nsIEditorCommand_h_
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIControllerCommand.h"
|
|
|
|
#include "nsIAtom.h"
|
|
|
|
|
2000-05-05 23:20:21 +00:00
|
|
|
// This is a virtual base class for commands registered with the editor controller.
|
|
|
|
// Note that such commands can be shared by more than on editor instance, so
|
|
|
|
// MUST be stateless. Any state must be stored via the refCon (an nsIEditor).
|
|
|
|
class nsBaseEditorCommand : public nsIControllerCommand
|
2000-02-16 01:33:03 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2000-05-05 23:20:21 +00:00
|
|
|
nsBaseEditorCommand();
|
|
|
|
virtual ~nsBaseEditorCommand() {}
|
2000-02-16 01:33:03 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2001-04-04 23:48:03 +00:00
|
|
|
NS_IMETHOD IsCommandEnabled(const nsAReadableString & aCommandName, nsISupports *aCommandRefCon, PRBool *_retval) = 0;
|
|
|
|
NS_IMETHOD DoCommand(const nsAReadableString & aCommandName, nsISupports *aCommandRefCon) = 0;
|
2000-02-16 01:33:03 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-05-01 21:49:52 +00:00
|
|
|
#define NS_DECL_EDITOR_COMMAND(_cmd) \
|
2000-05-05 23:20:21 +00:00
|
|
|
class _cmd : public nsBaseEditorCommand \
|
2000-05-01 21:49:52 +00:00
|
|
|
{ \
|
|
|
|
public: \
|
2001-04-04 23:48:03 +00:00
|
|
|
NS_IMETHOD IsCommandEnabled(const nsAReadableString & aCommandName, nsISupports *aCommandRefCon, PRBool *_retval); \
|
|
|
|
NS_IMETHOD DoCommand(const nsAReadableString & aCommandName, nsISupports *aCommandRefCon); \
|
2000-02-16 01:33:03 +00:00
|
|
|
};
|
|
|
|
|
2000-05-01 21:49:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
// basic editor commands
|
2000-02-16 01:33:03 +00:00
|
|
|
NS_DECL_EDITOR_COMMAND(nsUndoCommand)
|
|
|
|
NS_DECL_EDITOR_COMMAND(nsRedoCommand)
|
|
|
|
|
|
|
|
NS_DECL_EDITOR_COMMAND(nsCutCommand)
|
2001-02-15 21:51:25 +00:00
|
|
|
NS_DECL_EDITOR_COMMAND(nsCutOrDeleteCommand)
|
2000-02-16 01:33:03 +00:00
|
|
|
NS_DECL_EDITOR_COMMAND(nsCopyCommand)
|
2001-02-15 21:51:25 +00:00
|
|
|
NS_DECL_EDITOR_COMMAND(nsCopyOrDeleteCommand)
|
2000-02-16 01:33:03 +00:00
|
|
|
NS_DECL_EDITOR_COMMAND(nsPasteCommand)
|
|
|
|
NS_DECL_EDITOR_COMMAND(nsDeleteCommand)
|
|
|
|
NS_DECL_EDITOR_COMMAND(nsSelectAllCommand)
|
|
|
|
|
|
|
|
NS_DECL_EDITOR_COMMAND(nsSelectionMoveCommands)
|
|
|
|
|
|
|
|
|
2000-05-01 21:49:52 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
// template for new command
|
|
|
|
NS_IMETHODIMP
|
2001-04-04 23:48:03 +00:00
|
|
|
nsFooCommand::IsCommandEnabled(const nsAReadableString & aCommandName, nsISupports *aCommandRefCon, PRBool *_retval)
|
2000-05-01 21:49:52 +00:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2001-04-04 23:48:03 +00:00
|
|
|
nsFooCommand::DoCommand(const nsAReadableString & aCommandName, const nsAReadableString & aCommandParams, nsISupports *aCommandRefCon)
|
2000-05-01 21:49:52 +00:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2000-02-16 01:33:03 +00:00
|
|
|
#endif // nsIEditorCommand_h_
|