105 lines
3.2 KiB
C++
105 lines
3.2 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
|
|
#ifndef nsMenuItem_h__
|
|
#define nsMenuItem_h__
|
|
|
|
|
|
#include "nsIMenuItem.h"
|
|
#include "nsString.h"
|
|
#include "nsIMenuListener.h"
|
|
|
|
class nsIMenu;
|
|
class nsIPopUpMenu;
|
|
class nsIWidget;
|
|
|
|
/**
|
|
* Native Motif MenuItem wrapper
|
|
*/
|
|
|
|
class nsMenuItem : public nsIMenuItem, public nsIMenuListener
|
|
{
|
|
|
|
public:
|
|
nsMenuItem();
|
|
virtual ~nsMenuItem();
|
|
|
|
// nsISupports
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_IMETHOD Create(nsIMenu *aParent,
|
|
const nsString &aLabel,
|
|
PRBool aIsSeparator);
|
|
|
|
NS_IMETHOD Create(nsIPopUpMenu *aParent,
|
|
const nsString &aLabel,
|
|
PRUint32 aCommand) ;
|
|
NS_IMETHOD Create(nsIMenu * aParent);
|
|
NS_IMETHOD Create(nsIPopUpMenu * aParent);
|
|
|
|
// nsIMenuBar Methods
|
|
NS_IMETHOD GetLabel(nsString &aText);
|
|
NS_IMETHOD SetLabel(nsString &aText);
|
|
NS_IMETHOD SetEnabled(PRBool aIsEnabled);
|
|
NS_IMETHOD GetEnabled(PRBool *aIsEnabled);
|
|
NS_IMETHOD SetChecked(PRBool aIsEnabled);
|
|
NS_IMETHOD GetChecked(PRBool *aIsEnabled);
|
|
NS_IMETHOD GetCommand(PRUint32 & aCommand);
|
|
NS_IMETHOD GetTarget(nsIWidget *& aTarget);
|
|
NS_IMETHOD GetNativeData(void*& aData);
|
|
NS_IMETHOD AddMenuListener(nsIMenuListener * aMenuListener);
|
|
NS_IMETHOD RemoveMenuListener(nsIMenuListener * aMenuListener);
|
|
NS_IMETHOD IsSeparator(PRBool & aIsSep);
|
|
|
|
NS_IMETHOD SetCommand(const nsString & aStrCmd);
|
|
NS_IMETHOD DoCommand();
|
|
NS_IMETHOD SetDOMElement(nsIDOMElement * aDOMElement);
|
|
NS_IMETHOD GetDOMElement(nsIDOMElement ** aDOMElement);
|
|
NS_IMETHOD SetWebShell(nsIWebShell * aWebShell);
|
|
|
|
// nsIMenuListener interface
|
|
nsEventStatus MenuItemSelected(const nsMenuEvent & aMenuEvent);
|
|
nsEventStatus MenuSelected(const nsMenuEvent & aMenuEvent);
|
|
nsEventStatus MenuDeselected(const nsMenuEvent & aMenuEvent);
|
|
nsEventStatus MenuConstruct(
|
|
const nsMenuEvent & aMenuEvent,
|
|
nsIWidget * aParentWindow,
|
|
void * menuNode,
|
|
void * aWebShell);
|
|
nsEventStatus MenuDestruct(const nsMenuEvent & aMenuEvent);
|
|
|
|
protected:
|
|
//void Create(nsIWidget * aMBParent, Widget aParent,
|
|
//const nsString &aLabel, PRUint32 aCommand);
|
|
nsIWidget * GetMenuBarParent(nsISupports * aParentSupports);
|
|
//Widget GetNativeParent();
|
|
|
|
nsString mLabel;
|
|
PRUint32 mCommand;
|
|
|
|
nsIMenu * mMenuParent;
|
|
nsIPopUpMenu * mPopUpParent;
|
|
nsIWidget * mTarget;
|
|
|
|
nsIMenuListener * mXULCommandListener;
|
|
PRBool mIsSeparator;
|
|
nsIMenuListener * mListener;
|
|
};
|
|
|
|
#endif // nsMenuItem_h__
|