2001-11-06 15:35:24 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-11-06 15:35:24 +00:00
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#ifndef nsMenuX_h_
|
|
|
|
#define nsMenuX_h_
|
2001-11-06 15:35:24 +00:00
|
|
|
|
2008-06-27 06:52:18 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2016-04-19 22:29:16 +00:00
|
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
#include "mozilla/UniquePtr.h"
|
2008-06-28 07:55:30 +00:00
|
|
|
#include "nsMenuBaseX.h"
|
|
|
|
#include "nsMenuBarX.h"
|
2010-01-27 06:14:40 +00:00
|
|
|
#include "nsMenuGroupOwnerX.h"
|
2008-06-28 07:55:30 +00:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsChangeObserver.h"
|
2001-11-06 15:35:24 +00:00
|
|
|
|
2005-10-19 21:16:05 +00:00
|
|
|
class nsMenuX;
|
2007-04-22 01:42:17 +00:00
|
|
|
class nsMenuItemIconX;
|
2008-06-28 07:55:30 +00:00
|
|
|
class nsMenuItemX;
|
|
|
|
class nsIWidget;
|
2001-11-06 15:35:24 +00:00
|
|
|
|
2010-07-31 19:07:16 +00:00
|
|
|
// MenuDelegate is used to receive Cocoa notifications for setting
|
|
|
|
// up carbon events. Protocol is defined as of 10.6 SDK.
|
|
|
|
@interface MenuDelegate : NSObject < NSMenuDelegate >
|
2005-10-19 21:16:05 +00:00
|
|
|
{
|
|
|
|
nsMenuX* mGeckoMenu; // weak ref
|
|
|
|
}
|
|
|
|
- (id)initWithGeckoMenu:(nsMenuX*)geckoMenu;
|
|
|
|
@end
|
2001-11-06 15:35:24 +00:00
|
|
|
|
2008-06-28 07:55:30 +00:00
|
|
|
// Once instantiated, this object lives until its DOM node or its parent window is destroyed.
|
|
|
|
// Do not hold references to this, they can become invalid any time the DOM node can be destroyed.
|
|
|
|
class nsMenuX : public nsMenuObjectX,
|
2008-01-23 04:04:15 +00:00
|
|
|
public nsChangeObserver
|
2001-11-06 15:35:24 +00:00
|
|
|
{
|
|
|
|
public:
|
2008-06-28 07:55:30 +00:00
|
|
|
nsMenuX();
|
|
|
|
virtual ~nsMenuX();
|
|
|
|
|
|
|
|
// If > 0, the OS is indexing all the app's menus (triggered by opening
|
|
|
|
// Help menu on Leopard and higher). There are some things that are
|
|
|
|
// unsafe to do while this is happening.
|
2012-08-22 15:56:38 +00:00
|
|
|
static int32_t sIndexingMenuLevel;
|
2008-06-28 07:55:30 +00:00
|
|
|
|
|
|
|
NS_DECL_CHANGEOBSERVER
|
|
|
|
|
|
|
|
// nsMenuObjectX
|
2015-03-21 16:28:04 +00:00
|
|
|
void* NativeData() override {return (void*)mNativeMenu;}
|
|
|
|
nsMenuObjectTypeX MenuObjectType() override {return eSubmenuObjectType;}
|
|
|
|
void IconUpdated() override { mParent->IconUpdated(); }
|
2008-06-28 07:55:30 +00:00
|
|
|
|
|
|
|
// nsMenuX
|
2010-01-27 06:14:40 +00:00
|
|
|
nsresult Create(nsMenuObjectX* aParent, nsMenuGroupOwnerX* aMenuGroupOwner, nsIContent* aNode);
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t GetItemCount();
|
|
|
|
nsMenuObjectX* GetItemAt(uint32_t aPos);
|
|
|
|
nsresult GetVisibleItemCount(uint32_t &aCount);
|
|
|
|
nsMenuObjectX* GetVisibleItemAt(uint32_t aPos);
|
2009-08-14 00:01:57 +00:00
|
|
|
nsEventStatus MenuOpened();
|
|
|
|
void MenuClosed();
|
2011-09-29 06:19:26 +00:00
|
|
|
void SetRebuild(bool aMenuEvent);
|
2008-06-28 07:55:30 +00:00
|
|
|
NSMenuItem* NativeMenuItem();
|
2014-07-18 19:06:54 +00:00
|
|
|
nsresult SetupIcon();
|
2001-11-06 15:35:24 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool IsXULHelpMenu(nsIContent* aMenuContent);
|
2010-01-08 22:34:51 +00:00
|
|
|
|
2001-11-06 15:35:24 +00:00
|
|
|
protected:
|
2008-07-28 04:46:33 +00:00
|
|
|
void MenuConstruct();
|
2008-06-28 07:55:30 +00:00
|
|
|
nsresult RemoveAll();
|
2011-09-29 06:19:26 +00:00
|
|
|
nsresult SetEnabled(bool aIsEnabled);
|
|
|
|
nsresult GetEnabled(bool* aIsEnabled);
|
2008-06-28 07:55:30 +00:00
|
|
|
void GetMenuPopupContent(nsIContent** aResult);
|
2011-09-29 06:19:26 +00:00
|
|
|
bool OnOpen();
|
|
|
|
bool OnClose();
|
2008-06-28 07:55:30 +00:00
|
|
|
nsresult AddMenuItem(nsMenuItemX* aMenuItem);
|
2016-04-19 22:51:49 +00:00
|
|
|
nsMenuX* AddMenu(mozilla::UniquePtr<nsMenuX> aMenu);
|
2016-07-22 08:56:13 +00:00
|
|
|
void LoadMenuItem(nsIContent* inMenuItemContent);
|
2008-06-28 07:55:30 +00:00
|
|
|
void LoadSubMenu(nsIContent* inMenuContent);
|
|
|
|
GeckoNSMenu* CreateMenuWithGeckoString(nsString& menuTitle);
|
|
|
|
|
2016-04-19 22:29:16 +00:00
|
|
|
nsTArray<mozilla::UniquePtr<nsMenuObjectX>> mMenuObjectsArray;
|
2008-06-28 07:55:30 +00:00
|
|
|
nsString mLabel;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mVisibleItemsCount; // cache
|
2008-06-28 07:55:30 +00:00
|
|
|
nsMenuObjectX* mParent; // [weak]
|
2010-01-27 06:14:40 +00:00
|
|
|
nsMenuGroupOwnerX* mMenuGroupOwner; // [weak]
|
2009-02-20 21:55:25 +00:00
|
|
|
// The icon object should never outlive its creating nsMenuX object.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsMenuItemIconX> mIcon;
|
2008-07-28 04:46:33 +00:00
|
|
|
GeckoNSMenu* mNativeMenu; // [strong]
|
2008-06-28 07:55:30 +00:00
|
|
|
MenuDelegate* mMenuDelegate; // [strong]
|
2009-02-20 21:55:25 +00:00
|
|
|
// nsMenuX objects should always have a valid native menu item.
|
2008-06-28 07:55:30 +00:00
|
|
|
NSMenuItem* mNativeMenuItem; // [strong]
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsEnabled;
|
|
|
|
bool mDestroyHandlerCalled;
|
|
|
|
bool mNeedsRebuild;
|
|
|
|
bool mConstructed;
|
|
|
|
bool mVisible;
|
|
|
|
bool mXBLAttached;
|
2001-11-06 15:35:24 +00:00
|
|
|
};
|
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#endif // nsMenuX_h_
|