2010-01-27 06:14:40 +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/. */
|
2010-01-27 06:14:40 +00:00
|
|
|
|
|
|
|
#include "nsMenuGroupOwnerX.h"
|
|
|
|
#include "nsMenuBarX.h"
|
|
|
|
#include "nsMenuX.h"
|
|
|
|
#include "nsMenuItemX.h"
|
|
|
|
#include "nsMenuUtilsX.h"
|
|
|
|
#include "nsCocoaUtils.h"
|
|
|
|
#include "nsCocoaWindow.h"
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsGUIEvent.h"
|
|
|
|
#include "nsObjCExceptions.h"
|
|
|
|
#include "nsHashtable.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
|
2010-08-24 07:05:56 +00:00
|
|
|
#include "mozilla/dom/Element.h"
|
2010-01-27 06:14:40 +00:00
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
|
|
|
|
#include "nsINode.h"
|
|
|
|
|
2010-08-24 07:05:56 +00:00
|
|
|
namespace dom = mozilla::dom;
|
|
|
|
|
2010-01-27 06:14:40 +00:00
|
|
|
NS_IMPL_ISUPPORTS1(nsMenuGroupOwnerX, nsIMutationObserver)
|
|
|
|
|
|
|
|
|
|
|
|
nsMenuGroupOwnerX::nsMenuGroupOwnerX()
|
|
|
|
: mCurrentCommandID(eCommand_ID_Last),
|
2012-07-30 14:20:58 +00:00
|
|
|
mDocument(nullptr)
|
2010-01-27 06:14:40 +00:00
|
|
|
{
|
|
|
|
mContentToObserverTable.Init();
|
|
|
|
mCommandToMenuObjectTable.Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsMenuGroupOwnerX::~nsMenuGroupOwnerX()
|
|
|
|
{
|
|
|
|
// make sure we unregister ourselves as a document observer
|
|
|
|
if (mDocument)
|
|
|
|
mDocument->RemoveMutationObserver(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsresult nsMenuGroupOwnerX::Create(nsIContent* aContent)
|
|
|
|
{
|
|
|
|
if (!aContent)
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
|
|
|
|
mContent = aContent;
|
|
|
|
|
2011-10-18 10:53:36 +00:00
|
|
|
nsIDocument* doc = aContent->OwnerDoc();
|
2010-01-27 06:14:40 +00:00
|
|
|
if (!doc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
doc->AddMutationObserver(this);
|
|
|
|
mDocument = doc;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// nsIMutationObserver
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::CharacterDataWillChange(nsIDocument* aDocument,
|
|
|
|
nsIContent* aContent,
|
|
|
|
CharacterDataChangeInfo* aInfo)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::CharacterDataChanged(nsIDocument* aDocument,
|
|
|
|
nsIContent* aContent,
|
|
|
|
CharacterDataChangeInfo* aInfo)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::ContentAppended(nsIDocument* aDocument,
|
|
|
|
nsIContent* aContainer,
|
2010-05-11 01:12:34 +00:00
|
|
|
nsIContent* aFirstNewContent,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t /* unused */)
|
2010-01-27 06:14:40 +00:00
|
|
|
{
|
2010-05-11 01:12:34 +00:00
|
|
|
for (nsIContent* cur = aFirstNewContent; cur; cur = cur->GetNextSibling()) {
|
2011-06-02 22:37:18 +00:00
|
|
|
ContentInserted(aDocument, aContainer, cur, 0);
|
2010-01-27 06:14:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::NodeWillBeDestroyed(const nsINode * aNode)
|
|
|
|
{
|
|
|
|
// our menu bar node is being destroyed
|
2012-07-30 14:20:58 +00:00
|
|
|
mDocument = nullptr;
|
2010-01-27 06:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::AttributeWillChange(nsIDocument* aDocument,
|
2010-08-24 07:06:20 +00:00
|
|
|
dom::Element* aContent,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aNameSpaceID,
|
2010-01-27 06:14:40 +00:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aModType)
|
2010-01-27 06:14:40 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-24 07:05:56 +00:00
|
|
|
void nsMenuGroupOwnerX::AttributeChanged(nsIDocument* aDocument,
|
|
|
|
dom::Element* aElement,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aNameSpaceID,
|
2010-08-24 07:05:56 +00:00
|
|
|
nsIAtom* aAttribute,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aModType)
|
2010-01-27 06:14:40 +00:00
|
|
|
{
|
2010-07-21 15:33:32 +00:00
|
|
|
nsCOMPtr<nsIMutationObserver> kungFuDeathGrip(this);
|
2010-08-24 07:05:56 +00:00
|
|
|
nsChangeObserver* obs = LookupContentChangeObserver(aElement);
|
2010-01-27 06:14:40 +00:00
|
|
|
if (obs)
|
2010-08-24 07:05:56 +00:00
|
|
|
obs->ObserveAttributeChanged(aDocument, aElement, aAttribute);
|
2010-01-27 06:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::ContentRemoved(nsIDocument * aDocument,
|
|
|
|
nsIContent * aContainer,
|
|
|
|
nsIContent * aChild,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aIndexInContainer,
|
2010-07-21 22:05:17 +00:00
|
|
|
nsIContent * aPreviousSibling)
|
2010-01-27 06:14:40 +00:00
|
|
|
{
|
2010-08-13 06:33:09 +00:00
|
|
|
if (!aContainer) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-07-21 15:37:41 +00:00
|
|
|
nsCOMPtr<nsIMutationObserver> kungFuDeathGrip(this);
|
2010-01-29 01:06:54 +00:00
|
|
|
nsChangeObserver* obs = LookupContentChangeObserver(aContainer);
|
|
|
|
if (obs)
|
|
|
|
obs->ObserveContentRemoved(aDocument, aChild, aIndexInContainer);
|
2010-08-13 06:33:09 +00:00
|
|
|
else if (aContainer != mContent) {
|
2010-01-29 01:06:54 +00:00
|
|
|
// We do a lookup on the parent container in case things were removed
|
|
|
|
// under a "menupopup" item. That is basically a wrapper for the contents
|
|
|
|
// of a "menu" node.
|
|
|
|
nsCOMPtr<nsIContent> parent = aContainer->GetParent();
|
|
|
|
if (parent) {
|
|
|
|
obs = LookupContentChangeObserver(parent);
|
|
|
|
if (obs)
|
|
|
|
obs->ObserveContentRemoved(aDocument, aChild, aIndexInContainer);
|
2010-01-27 06:14:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::ContentInserted(nsIDocument * aDocument,
|
|
|
|
nsIContent * aContainer,
|
|
|
|
nsIContent * aChild,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t /* unused */)
|
2010-01-27 06:14:40 +00:00
|
|
|
{
|
2010-08-13 06:33:09 +00:00
|
|
|
if (!aContainer) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-07-21 15:33:32 +00:00
|
|
|
nsCOMPtr<nsIMutationObserver> kungFuDeathGrip(this);
|
2010-01-29 01:06:54 +00:00
|
|
|
nsChangeObserver* obs = LookupContentChangeObserver(aContainer);
|
|
|
|
if (obs)
|
2011-06-02 22:37:18 +00:00
|
|
|
obs->ObserveContentInserted(aDocument, aContainer, aChild);
|
2010-01-29 01:06:54 +00:00
|
|
|
else if (aContainer != mContent) {
|
|
|
|
// We do a lookup on the parent container in case things were removed
|
|
|
|
// under a "menupopup" item. That is basically a wrapper for the contents
|
|
|
|
// of a "menu" node.
|
|
|
|
nsCOMPtr<nsIContent> parent = aContainer->GetParent();
|
|
|
|
if (parent) {
|
|
|
|
obs = LookupContentChangeObserver(parent);
|
|
|
|
if (obs)
|
2011-06-02 22:37:18 +00:00
|
|
|
obs->ObserveContentInserted(aDocument, aContainer, aChild);
|
2010-01-27 06:14:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::ParentChainChanged(nsIContent *aContent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// For change management, we don't use a |nsSupportsHashtable| because
|
|
|
|
// we know that the lifetime of all these items is bounded by the
|
|
|
|
// lifetime of the menubar. No need to add any more strong refs to the
|
|
|
|
// picture because the containment hierarchy already uses strong refs.
|
|
|
|
void nsMenuGroupOwnerX::RegisterForContentChanges(nsIContent *aContent,
|
|
|
|
nsChangeObserver *aMenuObject)
|
|
|
|
{
|
|
|
|
mContentToObserverTable.Put(aContent, aMenuObject);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::UnregisterForContentChanges(nsIContent *aContent)
|
|
|
|
{
|
|
|
|
mContentToObserverTable.Remove(aContent);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsChangeObserver* nsMenuGroupOwnerX::LookupContentChangeObserver(nsIContent* aContent)
|
|
|
|
{
|
|
|
|
nsChangeObserver * result;
|
|
|
|
if (mContentToObserverTable.Get(aContent, &result))
|
|
|
|
return result;
|
|
|
|
else
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2010-01-27 06:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Given a menu item, creates a unique 4-character command ID and
|
|
|
|
// maps it to the item. Returns the id for use by the client.
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t nsMenuGroupOwnerX::RegisterForCommand(nsMenuItemX* inMenuItem)
|
2010-01-27 06:14:40 +00:00
|
|
|
{
|
|
|
|
// no real need to check for uniqueness. We always start afresh with each
|
|
|
|
// window at 1. Even if we did get close to the reserved Apple command id's,
|
|
|
|
// those don't start until at least ' ', which is integer 538976288. If
|
|
|
|
// we have that many menu items in one window, I think we have other
|
|
|
|
// problems.
|
|
|
|
|
|
|
|
// make id unique
|
|
|
|
++mCurrentCommandID;
|
|
|
|
|
|
|
|
mCommandToMenuObjectTable.Put(mCurrentCommandID, inMenuItem);
|
|
|
|
|
|
|
|
return mCurrentCommandID;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Removes the mapping between the given 4-character command ID
|
|
|
|
// and its associated menu item.
|
2012-08-22 15:56:38 +00:00
|
|
|
void nsMenuGroupOwnerX::UnregisterCommand(uint32_t inCommandID)
|
2010-01-27 06:14:40 +00:00
|
|
|
{
|
|
|
|
mCommandToMenuObjectTable.Remove(inCommandID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsMenuItemX* nsMenuGroupOwnerX::GetMenuItemForCommandID(uint32_t inCommandID)
|
2010-01-27 06:14:40 +00:00
|
|
|
{
|
|
|
|
nsMenuItemX * result;
|
|
|
|
if (mCommandToMenuObjectTable.Get(inCommandID, &result))
|
|
|
|
return result;
|
|
|
|
else
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2010-01-27 06:14:40 +00:00
|
|
|
}
|