gecko-dev/xpfc/chrome/inc/nsXPFCMenuContainer.h

83 строки
2.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.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/
*
* 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.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*/
#ifndef __NS_XPFCMENU_CONTAINER
#define __NS_XPFCMENU_CONTAINER
#include "nsIXPFCMenuContainer.h"
#include "nsIXPFCMenuBar.h"
#include "nsXPFCMenuItem.h"
#include "nsIArray.h"
#include "nsIIterator.h"
#include "nsIXPFCCommandReceiver.h"
class nsXPFCMenuContainer : public nsIXPFCMenuContainer,
public nsIXPFCMenuBar,
public nsIXPFCCommandReceiver,
public nsXPFCMenuItem
{
public:
/**
* Constructor and Destructor
*/
nsXPFCMenuContainer();
~nsXPFCMenuContainer();
/**
* ISupports Interface
*/
NS_DECL_ISUPPORTS
/**
* Initialize Method
* @result The result of the initialization, NS_OK if no errors
*/
NS_IMETHOD Init();
NS_IMETHOD AddMenuItem(nsIXPFCMenuItem * aMenuItem);
NS_IMETHOD_(void*) GetNativeHandle();
// nsIXMLParserObject methods
NS_IMETHOD SetParameter(nsString& aKey, nsString& aValue) ;
NS_IMETHOD AddChild(nsIXPFCMenuItem * aItem);
NS_IMETHOD Update() ;
NS_IMETHOD SetShellContainer(nsIShellInstance * aShellInstance,nsIWebViewerContainer * aWebViewerContainer) ;
NS_IMETHOD_(nsIXPFCMenuItem *) MenuItemFromID(PRUint32 aID) ;
NS_IMETHOD_(nsEventStatus) Action(nsIXPFCCommand * aCommand) ;
private:
NS_IMETHOD ProcessActionCommand(nsString& aAction);
protected:
nsIArray * mChildMenus ;
nsIShellInstance * mShellInstance;
nsIWebViewerContainer * mWebViewerContainer;
};
#endif