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 nsIMenu_h__
|
|
|
|
#define nsIMenu_h__
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsString.h"
|
1999-04-19 12:27:57 +04:00
|
|
|
#include "nsIWebShell.h"
|
1998-09-29 02:37:16 +04:00
|
|
|
|
1998-09-30 01:30:31 +04:00
|
|
|
class nsIMenuBar;
|
|
|
|
class nsIMenu;
|
1998-10-07 23:49:36 +04:00
|
|
|
class nsIMenuItem;
|
1999-03-01 20:08:13 +03:00
|
|
|
class nsIMenuListener;
|
2000-05-26 04:15:33 +04:00
|
|
|
class nsIChangeManager;
|
2001-03-22 06:59:49 +03:00
|
|
|
class nsIContent;
|
1998-09-30 01:30:31 +04:00
|
|
|
|
2001-02-13 03:10:33 +03:00
|
|
|
// {ab6cea83-00ff-11d5-bb6f-f432a43ead7c}
|
1998-09-29 02:37:16 +04:00
|
|
|
#define NS_IMENU_IID \
|
2001-02-13 03:10:33 +03:00
|
|
|
{ 0xab6cea83, 0x00ff, 0x11d5, \
|
|
|
|
{ 0xbb, 0x6f, 0xf4, 0x32, 0xa4, 0x3e, 0xad, 0x7c } };
|
1998-09-29 02:37:16 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Menu widget
|
|
|
|
*/
|
|
|
|
class nsIMenu : public nsISupports {
|
|
|
|
|
|
|
|
public:
|
1999-07-15 18:54:02 +04:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(NS_IMENU_IID)
|
1999-03-03 18:17:33 +03:00
|
|
|
|
1998-09-30 01:30:31 +04:00
|
|
|
/**
|
1999-03-20 05:28:14 +03:00
|
|
|
* Creates the Menu
|
1998-09-29 02:37:16 +04:00
|
|
|
*
|
|
|
|
*/
|
2000-09-08 03:09:22 +04:00
|
|
|
NS_IMETHOD Create ( nsISupports * aParent, const nsAReadableString &aLabel, const nsAReadableString &aAccessKey,
|
2001-03-22 06:59:49 +03:00
|
|
|
nsIChangeManager* aManager, nsIWebShell* aShell, nsIContent* aNode ) = 0;
|
1998-10-07 23:49:36 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the Menu's Parent
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetParent(nsISupports *&aParent) = 0;
|
|
|
|
|
1998-09-29 02:37:16 +04:00
|
|
|
/**
|
|
|
|
* Get the Menu label
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetLabel(nsString &aText) = 0;
|
|
|
|
|
1999-01-27 10:51:20 +03:00
|
|
|
/**
|
|
|
|
* Set the Menu label
|
|
|
|
*
|
|
|
|
*/
|
2000-09-08 03:09:22 +04:00
|
|
|
NS_IMETHOD SetLabel(const nsAReadableString &aText) = 0;
|
1999-01-27 10:51:20 +03:00
|
|
|
|
1999-07-02 06:11:10 +04:00
|
|
|
/**
|
|
|
|
* Get the Menu Access Key
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetAccessKey(nsString &aText) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the Menu Access Key
|
|
|
|
*
|
|
|
|
*/
|
2000-09-08 03:09:22 +04:00
|
|
|
NS_IMETHOD SetAccessKey(const nsAReadableString &aText) = 0;
|
1999-07-02 06:11:10 +04:00
|
|
|
|
1999-09-01 12:40:18 +04:00
|
|
|
/**
|
|
|
|
* Set the Menu enabled state
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetEnabled(PRBool aIsEnabled) = 0;
|
|
|
|
|
1999-09-03 03:48:39 +04:00
|
|
|
/**
|
|
|
|
* Get the Menu enabled state
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetEnabled(PRBool* aIsEnabled) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Query if this is the help menu. Mostly for MacOS voodoo.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD IsHelpMenu(PRBool* aIsHelpMenu) = 0;
|
|
|
|
|
1999-07-02 06:11:10 +04:00
|
|
|
/**
|
1998-09-29 02:37:16 +04:00
|
|
|
* Adds a Menu Item
|
|
|
|
*
|
|
|
|
*/
|
1999-03-20 05:28:14 +03:00
|
|
|
NS_IMETHOD AddItem(nsISupports* aItem) = 0;
|
|
|
|
|
1998-09-29 02:37:16 +04:00
|
|
|
/**
|
1999-03-20 05:28:14 +03:00
|
|
|
* Adds a separator
|
1998-09-29 02:37:16 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD AddSeparator() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the number of menu items
|
1999-03-20 05:28:14 +03:00
|
|
|
* This does count separators as items
|
1998-09-29 02:37:16 +04:00
|
|
|
*/
|
|
|
|
NS_IMETHOD GetItemCount(PRUint32 &aCount) = 0;
|
|
|
|
|
|
|
|
/**
|
1999-02-17 17:29:15 +03:00
|
|
|
* Returns a Menu or Menu Item at a specified Index
|
1998-09-29 02:37:16 +04:00
|
|
|
*
|
|
|
|
*/
|
1999-02-18 18:17:11 +03:00
|
|
|
NS_IMETHOD GetItemAt(const PRUint32 aPos, nsISupports *& aMenuItem) = 0;
|
1998-09-29 02:37:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Inserts a Menu Item at a specified Index
|
|
|
|
*
|
|
|
|
*/
|
1999-02-18 18:17:11 +03:00
|
|
|
NS_IMETHOD InsertItemAt(const PRUint32 aPos, nsISupports * aMenuItem) = 0;
|
1998-09-29 02:37:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes an Menu Item from a specified Index
|
|
|
|
*
|
|
|
|
*/
|
1999-02-18 18:17:11 +03:00
|
|
|
NS_IMETHOD RemoveItem(const PRUint32 aPos) = 0;
|
1998-09-29 02:37:16 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Removes all the Menu Items
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD RemoveAll() = 0;
|
|
|
|
|
1998-09-29 18:15:32 +04:00
|
|
|
/**
|
|
|
|
* Gets Native MenuHandle
|
|
|
|
*
|
|
|
|
*/
|
1999-03-20 05:28:14 +03:00
|
|
|
NS_IMETHOD GetNativeData(void** aData) = 0;
|
1999-03-01 19:22:40 +03:00
|
|
|
|
1999-08-26 02:53:25 +04:00
|
|
|
/**
|
|
|
|
* Sets Native MenuHandle
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetNativeData(void* aData) = 0;
|
|
|
|
|
1999-03-01 19:22:40 +03:00
|
|
|
/**
|
1999-03-20 05:28:14 +03:00
|
|
|
* Adds menu listener for dynamic construction
|
1999-03-01 19:22:40 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD AddMenuListener(nsIMenuListener * aMenuListener) = 0;
|
|
|
|
|
|
|
|
/**
|
1999-03-20 05:28:14 +03:00
|
|
|
* Removes menu listener for dynamic construction
|
1999-03-01 19:22:40 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
NS_IMETHOD RemoveMenuListener(nsIMenuListener * aMenuListener) = 0;
|
|
|
|
|
2000-05-12 07:53:54 +04:00
|
|
|
/**
|
2001-03-22 06:59:49 +03:00
|
|
|
* Get GetMenuContent
|
2000-05-12 07:53:54 +04:00
|
|
|
*
|
|
|
|
*/
|
2001-03-22 06:59:49 +03:00
|
|
|
NS_IMETHOD GetMenuContent(nsIContent ** aMenuContent) = 0;
|
2000-05-12 07:53:54 +04:00
|
|
|
|
1998-09-29 02:37:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|