1998-09-29 02:37:16 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1998-09-29 02:37:16 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03: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.
|
1998-09-29 02:37:16 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-09-29 02:37:16 +04:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:40:37 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-09-29 02:37:16 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef nsIMenuItem_h__
|
|
|
|
#define nsIMenuItem_h__
|
|
|
|
|
1999-04-24 02:39:32 +04:00
|
|
|
#include "prtypes.h"
|
1998-09-29 02:37:16 +04:00
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
1999-04-19 12:27:57 +04:00
|
|
|
#include "nsIWebShell.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
|
2000-05-26 04:15:33 +04:00
|
|
|
|
1998-09-29 02:37:16 +04:00
|
|
|
// {7F045771-4BEB-11d2-8DBB-00609703C14E}
|
|
|
|
#define NS_IMENUITEM_IID \
|
|
|
|
{ 0x7f045771, 0x4beb, 0x11d2, \
|
|
|
|
{ 0x8d, 0xbb, 0x0, 0x60, 0x97, 0x3, 0xc1, 0x4e } }
|
|
|
|
|
|
|
|
class nsIMenu;
|
1998-09-30 01:30:31 +04:00
|
|
|
class nsIPopUpMenu;
|
1998-10-07 23:49:36 +04:00
|
|
|
class nsIWidget;
|
1999-02-17 17:29:51 +03:00
|
|
|
class nsIMenuListener;
|
2000-05-26 04:15:33 +04:00
|
|
|
class nsIChangeManager;
|
1998-09-29 02:37:16 +04:00
|
|
|
|
1999-07-03 03:27:22 +04:00
|
|
|
enum {
|
|
|
|
knsMenuItemNoModifier = 0,
|
|
|
|
knsMenuItemShiftModifier = (1 << 0),
|
|
|
|
knsMenuItemAltModifier = (1 << 1),
|
|
|
|
knsMenuItemControlModifier = (1 << 2),
|
|
|
|
knsMenuItemCommandModifier = (1 << 3)
|
|
|
|
};
|
|
|
|
|
1998-09-29 02:37:16 +04:00
|
|
|
/**
|
|
|
|
* MenuItem widget
|
|
|
|
*/
|
|
|
|
class nsIMenuItem : public nsISupports {
|
|
|
|
|
|
|
|
public:
|
1999-07-15 18:54:02 +04:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IMENUITEM_IID)
|
1999-03-03 18:17:33 +03:00
|
|
|
|
2000-02-22 07:47:12 +03:00
|
|
|
enum EMenuItemType { eRegular = 0, eCheckbox, eRadio } ;
|
|
|
|
|
1998-09-29 02:37:16 +04:00
|
|
|
/**
|
1998-09-30 01:30:31 +04:00
|
|
|
* Creates the MenuItem
|
1998-09-29 02:37:16 +04:00
|
|
|
*
|
|
|
|
*/
|
2000-05-26 04:15:33 +04:00
|
|
|
NS_IMETHOD Create ( nsIMenu* aParent, const nsString & aLabel, PRBool isSeparator,
|
|
|
|
EMenuItemType aItemType, PRBool aEnabled,
|
|
|
|
nsIChangeManager* aManager, nsIWebShell* aShell, nsIDOMNode* aNode ) = 0;
|
1999-02-18 18:17:11 +03:00
|
|
|
|
1998-09-29 02:37:16 +04:00
|
|
|
/**
|
|
|
|
* Get the MenuItem label
|
|
|
|
*
|
|
|
|
*/
|
1998-09-30 01:30:31 +04:00
|
|
|
NS_IMETHOD GetLabel(nsString &aText) = 0;
|
1998-09-29 02:37:16 +04:00
|
|
|
|
1999-07-03 03:27:22 +04:00
|
|
|
/**
|
|
|
|
* Set the Menu shortcut char
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetShortcutChar(const nsString &aText) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Menu shortcut char
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetShortcutChar(nsString &aText) = 0;
|
1999-02-21 17:31:19 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets whether the item is enabled or disabled
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetEnabled(PRBool *aIsEnabled) = 0;
|
|
|
|
|
|
|
|
/**
|
1999-09-03 03:48:39 +04:00
|
|
|
* Sets whether the item is checked or not
|
1999-02-21 17:31:19 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetChecked(PRBool aIsEnabled) = 0;
|
|
|
|
|
|
|
|
/**
|
1999-09-03 03:48:39 +04:00
|
|
|
* Gets whether the item is checked or not
|
1999-02-21 17:31:19 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetChecked(PRBool *aIsEnabled) = 0;
|
|
|
|
|
1999-09-03 03:48:39 +04:00
|
|
|
/**
|
2000-02-22 07:47:12 +03:00
|
|
|
* Gets whether the item is a checkbox or radio
|
1999-09-03 03:48:39 +04:00
|
|
|
*
|
|
|
|
*/
|
2000-02-22 07:47:12 +03:00
|
|
|
NS_IMETHOD GetMenuItemType(EMenuItemType *aType) = 0;
|
1999-09-03 03:48:39 +04:00
|
|
|
|
1998-10-07 23:49:36 +04:00
|
|
|
/**
|
|
|
|
* Gets the target for MenuItem
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetTarget(nsIWidget *& aTarget) = 0;
|
1998-09-29 02:37:16 +04:00
|
|
|
|
1998-09-29 18:15:32 +04:00
|
|
|
/**
|
|
|
|
* Gets Native Menu Handle
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetNativeData(void*& aData) = 0;
|
1998-09-29 02:37:16 +04:00
|
|
|
|
1999-02-17 17:29:51 +03:00
|
|
|
/**
|
|
|
|
* Adds menu listener
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD AddMenuListener(nsIMenuListener * aMenuListener) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes menu listener
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD RemoveMenuListener(nsIMenuListener * aMenuListener) = 0;
|
|
|
|
|
1999-02-18 18:17:11 +03:00
|
|
|
/**
|
|
|
|
* Indicates whether it is a separator
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD IsSeparator(PRBool & aIsSep) = 0;
|
|
|
|
|
1999-04-19 12:27:57 +04:00
|
|
|
/**
|
|
|
|
* Executes the "cached" JavaScript Command
|
|
|
|
* @return NS_OK if the command was executed properly, otherwise an error code
|
|
|
|
*/
|
|
|
|
NS_IMETHOD DoCommand() = 0;
|
|
|
|
|
1999-07-03 03:27:22 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetModifiers(PRUint8 aModifiers) = 0;
|
|
|
|
NS_IMETHOD GetModifiers(PRUint8 * aModifiers) = 0;
|
1998-09-29 02:37:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|