2010-01-27 06:14:40 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
*
|
|
|
|
* 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 the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Josh Aas <josh@mozilla.com>
|
|
|
|
* Thomas K. Dyas <tom.dyas@gmail.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#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),
|
|
|
|
mDocument(nsnull)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
|
|
|
nsIDocument* doc = aContent->GetOwnerDoc();
|
|
|
|
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,
|
2011-06-02 22:37:18 +00:00
|
|
|
PRInt32 /* 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
|
|
|
|
mDocument = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void nsMenuGroupOwnerX::AttributeWillChange(nsIDocument* aDocument,
|
2010-08-24 07:06:20 +00:00
|
|
|
dom::Element* aContent,
|
2010-01-27 06:14:40 +00:00
|
|
|
PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aModType)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-24 07:05:56 +00:00
|
|
|
void nsMenuGroupOwnerX::AttributeChanged(nsIDocument* aDocument,
|
|
|
|
dom::Element* aElement,
|
2010-01-27 06:14:40 +00:00
|
|
|
PRInt32 aNameSpaceID,
|
2010-08-24 07:05:56 +00:00
|
|
|
nsIAtom* aAttribute,
|
2010-01-27 06:14:40 +00:00
|
|
|
PRInt32 aModType)
|
|
|
|
{
|
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,
|
2010-07-21 22:05:17 +00:00
|
|
|
PRInt32 aIndexInContainer,
|
|
|
|
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,
|
2011-06-02 22:37:18 +00:00
|
|
|
PRInt32 /* 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
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
PRUint32 nsMenuGroupOwnerX::RegisterForCommand(nsMenuItemX* inMenuItem)
|
|
|
|
{
|
|
|
|
// 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.
|
|
|
|
void nsMenuGroupOwnerX::UnregisterCommand(PRUint32 inCommandID)
|
|
|
|
{
|
|
|
|
mCommandToMenuObjectTable.Remove(inCommandID);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsMenuItemX* nsMenuGroupOwnerX::GetMenuItemForCommandID(PRUint32 inCommandID)
|
|
|
|
{
|
|
|
|
nsMenuItemX * result;
|
|
|
|
if (mCommandToMenuObjectTable.Get(inCommandID, &result))
|
|
|
|
return result;
|
|
|
|
else
|
|
|
|
return nsnull;
|
|
|
|
}
|