gecko-dev/layout/xul/base/src/nsMenuFrame.cpp

2062 lines
61 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
1999-07-18 06:36:37 +00:00
*
* 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/
1999-07-18 06:36:37 +00:00
*
* 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.
1999-07-18 06:36:37 +00:00
*
* 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):
* Original Author: David W. Hyatt (hyatt@netscape.com)
* Michael Lowe <michael.lowe@bigfoot.com>
* Pierre Phaneuf <pp@ludusdesign.com>
* Dean Tessman <dean_tessman@hotmail.com>
*
* Alternatively, the contents of this file may be used under the terms of
* either of 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 ***** */
1999-07-18 06:36:37 +00:00
1999-07-20 08:19:47 +00:00
#include "nsXULAtoms.h"
#include "nsHTMLAtoms.h"
#include "nsHTMLParts.h"
1999-07-18 06:36:37 +00:00
#include "nsMenuFrame.h"
1999-07-21 02:56:23 +00:00
#include "nsBoxFrame.h"
1999-07-18 06:36:37 +00:00
#include "nsIContent.h"
#include "prtypes.h"
#include "nsIAtom.h"
#include "nsPresContext.h"
#include "nsIPresShell.h"
#include "nsStyleContext.h"
1999-07-18 06:36:37 +00:00
#include "nsCSSRendering.h"
#include "nsINameSpaceManager.h"
#include "nsLayoutAtoms.h"
#include "nsMenuPopupFrame.h"
1999-07-21 07:42:16 +00:00
#include "nsMenuBarFrame.h"
1999-07-26 02:26:26 +00:00
#include "nsIView.h"
#include "nsIWidget.h"
#include "nsIDocument.h"
#include "nsIDOMNSDocument.h"
#include "nsIDOMDocument.h"
#include "nsIDOMElement.h"
#include "nsISupportsArray.h"
#include "nsIDOMText.h"
#include "nsILookAndFeel.h"
#include "nsIComponentManager.h"
#include "nsWidgetsCID.h"
2000-03-31 07:02:06 +00:00
#include "nsBoxLayoutState.h"
#include "nsIXBLBinding.h"
#include "nsIScrollableFrame.h"
#include "nsIViewManager.h"
#include "nsIBindingManager.h"
#include "nsIServiceManager.h"
#include "nsIXBLService.h"
#include "nsCSSFrameConstructor.h"
#include "nsIDOMKeyEvent.h"
#include "nsIScrollableView.h"
#include "nsXPIDLString.h"
#include "nsReadableUtils.h"
#include "nsUnicharUtils.h"
#include "nsIStringBundle.h"
#include "nsGUIEvent.h"
#include "nsIEventStateManager.h"
#include "nsITimerInternal.h"
#include "nsContentUtils.h"
2000-07-28 22:09:45 +00:00
#define NS_MENU_POPUP_LIST_INDEX 0
#if defined(XP_WIN) || defined(XP_OS2)
#define NSCONTEXTMENUISMOUSEUP 1
#endif
static PRInt32 gEatMouseMove = PR_FALSE;
nsMenuDismissalListener* nsMenuFrame::sDismissalListener = nsnull;
1999-09-21 01:03:00 +00:00
static NS_DEFINE_IID(kLookAndFeelCID, NS_LOOKANDFEEL_CID);
nsrefcnt nsMenuFrame::gRefCnt = 0;
nsString *nsMenuFrame::gShiftText = nsnull;
nsString *nsMenuFrame::gControlText = nsnull;
nsString *nsMenuFrame::gMetaText = nsnull;
nsString *nsMenuFrame::gAltText = nsnull;
nsString *nsMenuFrame::gModifierSeparator = nsnull;
1999-07-18 06:36:37 +00:00
//
// NS_NewMenuFrame
//
// Wrapper for creating a new menu popup container
//
nsresult
NS_NewMenuFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame, PRUint32 aFlags)
1999-07-18 06:36:37 +00:00
{
NS_PRECONDITION(aNewFrame, "null OUT ptr");
if (nsnull == aNewFrame) {
return NS_ERROR_NULL_POINTER;
}
nsMenuFrame* it = new (aPresShell) nsMenuFrame (aPresShell);
1999-07-18 06:36:37 +00:00
if ( !it )
return NS_ERROR_OUT_OF_MEMORY;
*aNewFrame = it;
if (aFlags)
it->SetIsMenu(PR_TRUE);
1999-07-18 06:36:37 +00:00
return NS_OK;
}
1999-07-21 07:42:16 +00:00
NS_IMETHODIMP_(nsrefcnt)
nsMenuFrame::AddRef(void)
{
return NS_OK;
}
NS_IMETHODIMP_(nsrefcnt)
1999-07-21 07:42:16 +00:00
nsMenuFrame::Release(void)
{
return NS_OK;
}
//
// QueryInterface
//
NS_INTERFACE_MAP_BEGIN(nsMenuFrame)
NS_INTERFACE_MAP_ENTRY(nsITimerCallback)
NS_INTERFACE_MAP_ENTRY(nsIMenuFrame)
NS_INTERFACE_MAP_ENTRY(nsIScrollableViewProvider)
NS_INTERFACE_MAP_END_INHERITING(nsBoxFrame)
1999-07-18 06:36:37 +00:00
//
// nsMenuFrame cntr
//
nsMenuFrame::nsMenuFrame(nsIPresShell* aShell):nsBoxFrame(aShell),
mIsMenu(PR_FALSE),
mMenuOpen(PR_FALSE),
mCreateHandlerSucceeded(PR_FALSE),
mChecked(PR_FALSE),
mType(eMenuType_Normal),
mMenuParent(nsnull),
mPresContext(nsnull),
mLastPref(-1,-1),
mFrameConstructor(nsnull)
1999-07-18 06:36:37 +00:00
{
} // cntr
NS_IMETHODIMP
nsMenuFrame::SetParent(const nsIFrame* aParent)
{
nsBoxFrame::SetParent(aParent);
const nsIFrame* currFrame = aParent;
while (!mMenuParent && currFrame) {
// Set our menu parent.
CallQueryInterface(NS_CONST_CAST(nsIFrame*, currFrame), &mMenuParent);
currFrame = currFrame->GetParent();
}
return NS_OK;
}
1999-07-21 07:42:16 +00:00
NS_IMETHODIMP
nsMenuFrame::Init(nsPresContext* aPresContext,
1999-07-21 07:42:16 +00:00
nsIContent* aContent,
nsIFrame* aParent,
nsStyleContext* aContext,
1999-07-21 07:42:16 +00:00
nsIFrame* aPrevInFlow)
{
mPresContext = aPresContext; // Don't addref it. Our lifetime is shorter.
1999-07-21 07:42:16 +00:00
nsresult rv = nsBoxFrame::Init(aPresContext, aContent, aParent, aContext, aPrevInFlow);
2000-05-24 08:26:04 +00:00
nsIFrame* currFrame = aParent;
while (!mMenuParent && currFrame) {
// Set our menu parent.
CallQueryInterface(currFrame, &mMenuParent);
2000-05-24 08:26:04 +00:00
currFrame = currFrame->GetParent();
2000-05-24 08:26:04 +00:00
}
// Do the type="checkbox" magic
UpdateMenuType(aPresContext);
//load the display strings for the keyboard accelerators, but only once
if (gRefCnt++ == 0) {
nsCOMPtr<nsIStringBundleService> bundleService(do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv));
nsCOMPtr<nsIStringBundle> bundle;
if (NS_SUCCEEDED(rv) && bundleService) {
rv = bundleService->CreateBundle( "chrome://global-platform/locale/platformKeys.properties",
getter_AddRefs(bundle));
}
NS_ASSERTION(NS_SUCCEEDED(rv) && bundle, "chrome://global/locale/platformKeys.properties could not be loaded");
nsXPIDLString shiftModifier;
nsXPIDLString metaModifier;
nsXPIDLString altModifier;
nsXPIDLString controlModifier;
nsXPIDLString modifierSeparator;
if (NS_SUCCEEDED(rv) && bundle) {
//macs use symbols for each modifier key, so fetch each from the bundle, which also covers i18n
rv = bundle->GetStringFromName(NS_LITERAL_STRING("VK_SHIFT").get(), getter_Copies(shiftModifier));
rv = bundle->GetStringFromName(NS_LITERAL_STRING("VK_META").get(), getter_Copies(metaModifier));
rv = bundle->GetStringFromName(NS_LITERAL_STRING("VK_ALT").get(), getter_Copies(altModifier));
rv = bundle->GetStringFromName(NS_LITERAL_STRING("VK_CONTROL").get(), getter_Copies(controlModifier));
rv = bundle->GetStringFromName(NS_LITERAL_STRING("MODIFIER_SEPARATOR").get(), getter_Copies(modifierSeparator));
} else {
rv = NS_ERROR_NOT_AVAILABLE;
}
//if any of these don't exist, we get an empty string
gShiftText = new nsString(shiftModifier);
gMetaText = new nsString(metaModifier);
gAltText = new nsString(altModifier);
gControlText = new nsString(controlModifier);
gModifierSeparator = new nsString(modifierSeparator);
}
BuildAcceleratorText();
1999-07-21 07:42:16 +00:00
return rv;
}
nsMenuFrame::~nsMenuFrame()
{
// Clean up shared statics
if (--gRefCnt == 0) {
delete gShiftText;
gShiftText = nsnull;
delete gControlText;
gControlText = nsnull;
delete gMetaText;
gMetaText = nsnull;
delete gAltText;
gAltText = nsnull;
delete gModifierSeparator;
gModifierSeparator = nsnull;
}
}
// The following methods are all overridden to ensure that the menupopup frame
// is placed in the appropriate list.
nsIFrame*
nsMenuFrame::GetFirstChild(nsIAtom* aListName) const
{
if (nsLayoutAtoms::popupList == aListName) {
return mPopupFrames.FirstChild();
}
return nsBoxFrame::GetFirstChild(aListName);
}
NS_IMETHODIMP
nsMenuFrame::SetInitialChildList(nsPresContext* aPresContext,
nsIAtom* aListName,
nsIFrame* aChildList)
{
nsresult rv = NS_OK;
if (nsLayoutAtoms::popupList == aListName) {
mPopupFrames.SetFrames(aChildList);
} else {
1999-07-20 08:19:47 +00:00
nsFrameList frames(aChildList);
// We may have a menupopup in here. Get it out, and move it into
1999-07-20 08:19:47 +00:00
// the popup frame list.
nsIFrame* frame = frames.FirstChild();
while (frame) {
nsIMenuParent *menuPar;
CallQueryInterface(frame, &menuPar);
if (menuPar) {
1999-07-20 08:19:47 +00:00
// Remove this frame from the list and place it in the other list.
frames.RemoveFrame(frame);
mPopupFrames.AppendFrame(this, frame);
nsIFrame* first = frames.FirstChild();
rv = nsBoxFrame::SetInitialChildList(aPresContext, aListName, first);
1999-07-20 08:19:47 +00:00
return rv;
}
frame = frame->GetNextSibling();
1999-07-20 08:19:47 +00:00
}
// Didn't find it.
1999-07-21 02:56:23 +00:00
rv = nsBoxFrame::SetInitialChildList(aPresContext, aListName, aChildList);
}
return rv;
}
nsIAtom*
nsMenuFrame::GetAdditionalChildListName(PRInt32 aIndex) const
{
// don't expose the child frame list, it slows things down
#if 0
2000-07-28 22:09:45 +00:00
if (NS_MENU_POPUP_LIST_INDEX == aIndex) {
return nsLayoutAtoms::popupList;
2000-07-28 22:09:45 +00:00
}
#endif
2000-07-28 22:09:45 +00:00
return nsnull;
}
nsresult
nsMenuFrame::DestroyPopupFrames(nsPresContext* aPresContext)
{
// Remove our frame mappings
if (mFrameConstructor) {
nsIFrame* curFrame = mPopupFrames.FirstChild();
while (curFrame) {
mFrameConstructor->RemoveMappingsForFrameSubtree(aPresContext, curFrame, nsnull);
curFrame = curFrame->GetNextSibling();
}
}
// Cleanup frames in popup child list
mPopupFrames.DestroyFrames(aPresContext);
return NS_OK;
}
NS_IMETHODIMP
nsMenuFrame::Destroy(nsPresContext* aPresContext)
{
DestroyPopupFrames(aPresContext);
1999-07-22 02:24:52 +00:00
return nsBoxFrame::Destroy(aPresContext);
}
// Called to prevent events from going to anything inside the menu.
NS_IMETHODIMP
nsMenuFrame::GetFrameForPoint(nsPresContext* aPresContext,
const nsPoint& aPoint,
2000-03-31 07:02:06 +00:00
nsFramePaintLayer aWhichLayer,
nsIFrame** aFrame)
{
nsresult result = nsBoxFrame::GetFrameForPoint(aPresContext, aPoint, aWhichLayer, aFrame);
if (NS_FAILED(result) || *aFrame == this) {
return result;
}
nsIContent* content = (*aFrame)->GetContent();
if (content) {
// This allows selective overriding for subcontent.
nsAutoString value;
content->GetAttr(kNameSpaceID_None, nsXULAtoms::allowevents, value);
if (value.EqualsLiteral("true"))
return result;
1999-10-15 07:54:43 +00:00
}
if (GetStyleVisibility()->IsVisible()) {
*aFrame = this; // Capture all events so that we can perform selection
return NS_OK;
}
return NS_ERROR_FAILURE;
1999-07-20 08:19:47 +00:00
}
NS_IMETHODIMP
nsMenuFrame::HandleEvent(nsPresContext* aPresContext,
nsGUIEvent* aEvent,
nsEventStatus* aEventStatus)
{
NS_ENSURE_ARG_POINTER(aEventStatus);
2000-08-16 23:14:50 +00:00
*aEventStatus = nsEventStatus_eConsumeDoDefault;
if (aEvent->message == NS_KEY_PRESS && !IsDisabled()) {
2000-02-25 08:37:49 +00:00
nsKeyEvent* keyEvent = (nsKeyEvent*)aEvent;
PRUint32 keyCode = keyEvent->keyCode;
if ((keyCode == NS_VK_F4 && !keyEvent->isAlt) ||
((keyCode == NS_VK_UP || keyCode == NS_VK_DOWN) && keyEvent->isAlt))
OpenMenu(!IsOpen()); // Toggle menulist on unmodified F4 or Alt arrow
2000-02-25 08:37:49 +00:00
}
else if (aEvent->message == NS_MOUSE_LEFT_BUTTON_DOWN && !IsDisabled() && IsMenu() ) {
PRBool isMenuBar = PR_FALSE;
if (mMenuParent)
mMenuParent->IsMenuBar(isMenuBar);
// The menu item was selected. Bring up the menu.
// We have children.
if ( isMenuBar || !mMenuParent ) {
ToggleMenuState();
if (!IsOpen() && mMenuParent) {
// We closed up. The menu bar should always be
// deactivated when this happens.
mMenuParent->SetActive(PR_FALSE);
1999-07-23 08:36:39 +00:00
}
}
else
if ( !IsOpen() ) {
// one of our siblings is probably open and even possibly waiting
// for its close timer to fire. Tell our parent to close it down. Not
// doing this before its timer fires will cause the rollup state to
// get very confused.
if ( mMenuParent )
mMenuParent->KillPendingTimers();
// safe to open up
OpenMenu(PR_TRUE);
}
}
else if (
#ifndef NSCONTEXTMENUISMOUSEUP
aEvent->message == NS_MOUSE_RIGHT_BUTTON_UP &&
#else
aEvent->message == NS_CONTEXTMENU &&
#endif
mMenuParent && !IsMenu() && !IsDisabled()) {
// if this menu is a context menu it accepts right-clicks...fire away!
// Make sure we cancel default processing of the context menu event so
// that it doesn't bubble and get seen again by the popuplistener and show
// another context menu.
//
// Furthermore (there's always more, isn't there?), on some platforms (win32
// being one of them) we get the context menu event on a mouse up while
// on others we get it on a mouse down. For the ones where we get it on a
// mouse down, we must continue listening for the right button up event to
// dismiss the menu.
PRBool isContextMenu = PR_FALSE;
mMenuParent->GetIsContextMenu(isContextMenu);
if ( isContextMenu ) {
*aEventStatus = nsEventStatus_eConsumeNoDefault;
Execute(aEvent);
}
}
else if (aEvent->message == NS_MOUSE_LEFT_BUTTON_UP && !IsMenu() && mMenuParent && !IsDisabled()) {
// Execute the execute event handler.
Execute(aEvent);
}
else if (aEvent->message == NS_MOUSE_EXIT_SYNTH) {
// Kill our timer if one is active.
if (mOpenTimer) {
mOpenTimer->Cancel();
mOpenTimer = nsnull;
}
1999-07-21 07:42:16 +00:00
// Deactivate the menu.
1999-07-23 08:36:39 +00:00
PRBool isActive = PR_FALSE;
PRBool isMenuBar = PR_FALSE;
if (mMenuParent) {
mMenuParent->IsMenuBar(isMenuBar);
PRBool cancel = PR_TRUE;
1999-07-23 08:36:39 +00:00
if (isMenuBar) {
mMenuParent->GetIsActive(isActive);
if (isActive) cancel = PR_FALSE;
1999-07-23 08:36:39 +00:00
}
if (cancel) {
if (IsMenu() && !isMenuBar && mMenuOpen) {
2000-02-13 08:33:39 +00:00
// Submenus don't get closed up immediately.
}
else mMenuParent->SetCurrentMenuItem(nsnull);
}
1999-07-23 08:36:39 +00:00
}
1999-07-21 07:42:16 +00:00
}
1999-07-25 01:14:43 +00:00
else if (aEvent->message == NS_MOUSE_MOVE && mMenuParent) {
if (gEatMouseMove) {
gEatMouseMove = PR_FALSE;
return NS_OK;
}
// we checked for mMenuParent right above
PRBool isMenuBar = PR_FALSE;
1999-07-25 01:14:43 +00:00
mMenuParent->IsMenuBar(isMenuBar);
1999-08-02 07:26:24 +00:00
// Let the menu parent know we're the new item.
mMenuParent->SetCurrentMenuItem(this);
// If we're a menu (and not a menu item),
// kick off the timer.
if (!IsDisabled() && !isMenuBar && IsMenu() && !mMenuOpen && !mOpenTimer) {
2000-02-13 08:33:39 +00:00
PRInt32 menuDelay = 300; // ms
nsCOMPtr<nsILookAndFeel> lookAndFeel(do_CreateInstance(kLookAndFeelCID));
if (lookAndFeel)
lookAndFeel->GetMetric(nsILookAndFeel::eMetric_SubmenuDelay, menuDelay);
// We're a menu, we're built, we're closed, and no timer has been kicked off.
mOpenTimer = do_CreateInstance("@mozilla.org/timer;1");
nsCOMPtr<nsITimerInternal> ti = do_QueryInterface(mOpenTimer);
ti->SetIdle(PR_FALSE);
mOpenTimer->InitWithCallback(this, menuDelay, nsITimer::TYPE_ONE_SHOT);
1999-07-25 01:14:43 +00:00
}
1999-07-21 07:42:16 +00:00
}
2000-08-16 23:14:50 +00:00
return NS_OK;
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
nsMenuFrame::ToggleMenuState()
1999-07-21 07:42:16 +00:00
{
if (mMenuOpen) {
1999-07-21 07:42:16 +00:00
OpenMenu(PR_FALSE);
}
else {
PRBool justRolledUp = PR_FALSE;
if (mMenuParent) {
mMenuParent->RecentlyRolledUp(this, &justRolledUp);
}
if (justRolledUp) {
// Don't let a click reopen a menu that was just rolled up
// from the same click. Otherwise, the user can't click on
// a menubar item to toggle its submenu closed.
OpenMenu(PR_FALSE);
SelectMenu(PR_TRUE);
mMenuParent->SetActive(PR_FALSE);
}
else {
if (mMenuParent) {
mMenuParent->SetActive(PR_TRUE);
}
OpenMenu(PR_TRUE);
}
}
if (mMenuParent) {
// Make sure the current menu which is being toggled on
// the menubar is highlighted
mMenuParent->SetCurrentMenuItem(this);
// We've successfully prevented the same click from both
// dismissing and reopening this menu.
// Clear the recent rollup state so we don't prevent
// this menu from being opened by the next click.
mMenuParent->ClearRecentlyRolledUp();
1999-07-21 07:42:16 +00:00
}
1999-09-21 01:03:00 +00:00
return NS_OK;
1999-07-21 07:42:16 +00:00
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
1999-07-21 07:42:16 +00:00
nsMenuFrame::SelectMenu(PRBool aActivateFlag)
{
if (!mContent) {
return NS_OK;
}
nsAutoString domEventToFire;
1999-07-21 07:42:16 +00:00
if (aActivateFlag) {
// Highlight the menu.
mContent->SetAttr(kNameSpaceID_None, nsXULAtoms::menuactive, NS_LITERAL_STRING("true"), PR_TRUE);
// The menuactivated event is used by accessibility to track the user's movements through menus
domEventToFire.AssignLiteral("DOMMenuItemActive");
}
else {
// Unhighlight the menu.
mContent->UnsetAttr(kNameSpaceID_None, nsXULAtoms::menuactive, PR_TRUE);
domEventToFire.AssignLiteral("DOMMenuItemInactive");
1999-07-21 07:42:16 +00:00
}
1999-09-21 01:03:00 +00:00
FireDOMEvent(mPresContext, domEventToFire);
1999-09-21 01:03:00 +00:00
return NS_OK;
1999-07-21 07:42:16 +00:00
}
PRBool nsMenuFrame::IsGenerated()
1999-07-21 07:42:16 +00:00
{
nsCOMPtr<nsIContent> child;
GetMenuChildrenElement(getter_AddRefs(child));
// Generate the menu if it hasn't been generated already. This
// takes it from display: none to display: block and gives us
// a menu forevermore.
if (child) {
nsString genVal;
child->GetAttr(kNameSpaceID_None, nsXULAtoms::menugenerated, genVal);
if (genVal.IsEmpty())
return PR_FALSE;
}
return PR_TRUE;
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
nsMenuFrame::MarkAsGenerated()
{
1999-07-21 07:42:16 +00:00
nsCOMPtr<nsIContent> child;
GetMenuChildrenElement(getter_AddRefs(child));
// Generate the menu if it hasn't been generated already. This
// takes it from display: none to display: block and gives us
// a menu forevermore.
if (child) {
nsAutoString genVal;
child->GetAttr(kNameSpaceID_None, nsXULAtoms::menugenerated, genVal);
if (genVal.IsEmpty())
child->SetAttr(kNameSpaceID_None, nsXULAtoms::menugenerated, NS_LITERAL_STRING("true"), PR_TRUE);
}
1999-09-21 01:03:00 +00:00
return NS_OK;
}
NS_IMETHODIMP
nsMenuFrame::UngenerateMenu()
{
nsCOMPtr<nsIContent> child;
GetMenuChildrenElement(getter_AddRefs(child));
if (child) {
nsAutoString genVal;
child->GetAttr(kNameSpaceID_None, nsXULAtoms::menugenerated, genVal);
if (!genVal.IsEmpty())
child->UnsetAttr(kNameSpaceID_None, nsXULAtoms::menugenerated, PR_TRUE);
}
return NS_OK;
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
nsMenuFrame::ActivateMenu(PRBool aActivateFlag)
{
nsIFrame* frame = mPopupFrames.FirstChild();
nsMenuPopupFrame* menuPopup = (nsMenuPopupFrame*)frame;
if (!menuPopup)
return NS_OK;
if (aActivateFlag) {
nsRect rect = menuPopup->GetRect();
nsIView* view = menuPopup->GetView();
nsIViewManager* viewManager = view->GetViewManager();
rect.x = rect.y = 0;
viewManager->ResizeView(view, rect);
// make sure the scrolled window is at 0,0
if (mLastPref.height <= rect.height) {
nsIBox* child;
menuPopup->GetChildBox(&child);
nsCOMPtr<nsIScrollableFrame> scrollframe(do_QueryInterface(child));
if (scrollframe) {
scrollframe->ScrollTo(mPresContext, 0, 0);
}
}
viewManager->UpdateView(view, rect, NS_VMREFRESH_IMMEDIATE);
viewManager->SetViewVisibility(view, nsViewVisibility_kShow);
} else {
nsIView* view = menuPopup->GetView();
NS_ASSERTION(view, "View is gone, looks like someone forgot to rollup the popup!");
if (view) {
nsIViewManager* viewManager = view->GetViewManager();
if (viewManager) { // the view manager can be null during widget teardown
viewManager->SetViewVisibility(view, nsViewVisibility_kHide);
viewManager->ResizeView(view, nsRect(0, 0, 0, 0));
}
}
// set here so hide chain can close the menu as well.
mMenuOpen = PR_FALSE;
}
1999-09-21 01:03:00 +00:00
return NS_OK;
}
NS_IMETHODIMP
nsMenuFrame::AttributeChanged(nsPresContext* aPresContext,
nsIContent* aChild,
PRInt32 aNameSpaceID,
nsIAtom* aAttribute,
PRInt32 aModType)
{
nsAutoString value;
if (aAttribute == nsXULAtoms::open) {
aChild->GetAttr(kNameSpaceID_None, aAttribute, value);
if (value.EqualsLiteral("true"))
OpenMenuInternal(PR_TRUE);
else {
OpenMenuInternal(PR_FALSE);
mCreateHandlerSucceeded = PR_FALSE;
}
} else if (aAttribute == nsHTMLAtoms::checked) {
if (mType != eMenuType_Normal)
UpdateMenuSpecialState(aPresContext);
} else if (aAttribute == nsXULAtoms::acceltext) {
// someone reset the accelText attribute, so clear the bit that says *we* set it
AddStateBits(NS_STATE_ACCELTEXT_IS_DERIVED);
BuildAcceleratorText();
} else if (aAttribute == nsXULAtoms::key) {
BuildAcceleratorText();
} else if ( aAttribute == nsHTMLAtoms::type || aAttribute == nsHTMLAtoms::name )
UpdateMenuType(aPresContext);
return NS_OK;
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
nsMenuFrame::OpenMenu(PRBool aActivateFlag)
{
if (!mContent)
return NS_OK;
nsCOMPtr<nsIDOMElement> domElement(do_QueryInterface(mContent));
if (aActivateFlag) {
// Now that the menu is opened, we should have a menupopup child built.
// Mark it as generated, which ensures a frame gets built.
MarkAsGenerated();
domElement->SetAttribute(NS_LITERAL_STRING("open"), NS_LITERAL_STRING("true"));
}
else domElement->RemoveAttribute(NS_LITERAL_STRING("open"));
1999-09-21 01:03:00 +00:00
return NS_OK;
}
void
nsMenuFrame::OpenMenuInternal(PRBool aActivateFlag)
{
gEatMouseMove = PR_TRUE;
if (!mIsMenu)
return;
1999-07-21 07:42:16 +00:00
if (aActivateFlag) {
// Execute the oncreate handler
if (!OnCreate())
return;
mCreateHandlerSucceeded = PR_TRUE;
// Set the focus back to our view's widget.
if (nsMenuFrame::sDismissalListener)
nsMenuFrame::sDismissalListener->EnableListener(PR_FALSE);
// XXX Only have this here because of RDF-generated content.
MarkAsGenerated();
nsIFrame* frame = mPopupFrames.FirstChild();
nsMenuPopupFrame* menuPopup = (nsMenuPopupFrame*)frame;
mMenuOpen = PR_TRUE;
if (menuPopup) {
// inherit whether or not we're a context menu from the parent
if ( mMenuParent ) {
PRBool parentIsContextMenu = PR_FALSE;
mMenuParent->GetIsContextMenu(parentIsContextMenu);
menuPopup->SetIsContextMenu(parentIsContextMenu);
}
// Install a keyboard navigation listener if we're the root of the menu chain.
PRBool onMenuBar = PR_TRUE;
if (mMenuParent)
mMenuParent->IsMenuBar(onMenuBar);
if (mMenuParent && onMenuBar)
mMenuParent->InstallKeyboardNavigator();
else if (!mMenuParent)
menuPopup->InstallKeyboardNavigator();
// Tell the menu bar we're active.
if (mMenuParent)
mMenuParent->SetActive(PR_TRUE);
nsIContent* menuPopupContent = menuPopup->GetContent();
2000-02-25 08:37:49 +00:00
// Sync up the view.
nsAutoString popupAnchor, popupAlign;
menuPopupContent->GetAttr(kNameSpaceID_None, nsXULAtoms::popupanchor, popupAnchor);
menuPopupContent->GetAttr(kNameSpaceID_None, nsXULAtoms::popupalign, popupAlign);
if (onMenuBar) {
if (popupAnchor.IsEmpty())
popupAnchor.AssignLiteral("bottomleft");
if (popupAlign.IsEmpty())
popupAlign.AssignLiteral("topleft");
}
else {
if (popupAnchor.IsEmpty())
popupAnchor.AssignLiteral("topright");
if (popupAlign.IsEmpty())
popupAlign.AssignLiteral("topleft");
}
nsBoxLayoutState state(mPresContext);
// if height never set we need to do an initial reflow.
if (mLastPref.height == -1)
{
menuPopup->MarkDirty(state);
mPresContext->PresShell()->FlushPendingNotifications(Flush_OnlyReflow);
}
nsRect curRect;
2000-06-26 21:00:44 +00:00
menuPopup->GetBounds(curRect);
2000-06-26 21:00:44 +00:00
menuPopup->SetBounds(state, nsRect(0,0,mLastPref.width, mLastPref.height));
nsIView* view = menuPopup->GetView();
nsIViewManager* vm = view->GetViewManager();
if (vm) {
vm->SetViewVisibility(view, nsViewVisibility_kHide);
}
menuPopup->SyncViewWithFrame(mPresContext, popupAnchor, popupAlign, this, -1, -1);
nsRect rect;
2000-06-26 21:00:44 +00:00
menuPopup->GetBounds(rect);
// if the height is different then reflow. It might need scrollbars force a reflow
if (curRect.height != rect.height || mLastPref.height != rect.height)
{
menuPopup->MarkDirty(state);
mPresContext->PresShell()->FlushPendingNotifications(Flush_OnlyReflow);
}
ActivateMenu(PR_TRUE);
nsIMenuParent *childPopup = nsnull;
CallQueryInterface(frame, &childPopup);
UpdateDismissalListener(childPopup);
2001-08-06 21:49:35 +00:00
OnCreated();
}
// Set the focus back to our view's widget.
if (nsMenuFrame::sDismissalListener)
nsMenuFrame::sDismissalListener->EnableListener(PR_TRUE);
}
1999-07-21 07:42:16 +00:00
else {
1999-07-24 22:02:23 +00:00
// Close the menu.
// Execute the ondestroy handler, but only if we're actually open
if ( !mCreateHandlerSucceeded || !OnDestroy() )
return;
mMenuOpen = PR_FALSE;
// Set the focus back to our view's widget.
if (nsMenuFrame::sDismissalListener) {
nsMenuFrame::sDismissalListener->EnableListener(PR_FALSE);
nsMenuFrame::sDismissalListener->SetCurrentMenuParent(mMenuParent);
}
1999-09-21 01:03:00 +00:00
nsIFrame* frame = mPopupFrames.FirstChild();
nsMenuPopupFrame* menuPopup = (nsMenuPopupFrame*)frame;
// Make sure we clear out our own items.
if (menuPopup) {
menuPopup->SetCurrentMenuItem(nsnull);
2000-02-13 08:33:39 +00:00
menuPopup->KillCloseTimer();
PRBool onMenuBar = PR_TRUE;
if (mMenuParent)
mMenuParent->IsMenuBar(onMenuBar);
if (mMenuParent && onMenuBar)
mMenuParent->RemoveKeyboardNavigator();
else if (!mMenuParent)
menuPopup->RemoveKeyboardNavigator();
// XXX, bug 137033, In Windows, if mouse is outside the window when the menupopup closes, no
// mouse_enter/mouse_exit event will be fired to clear current hover state, we should clear it manually.
// This code may not the best solution, but we can leave it here untill we find the better approach.
nsIEventStateManager *esm = mPresContext->EventStateManager();
PRInt32 state;
esm->GetContentState(menuPopup->GetContent(), state);
if (state & NS_EVENT_STATE_HOVER)
esm->SetContentState(nsnull, NS_EVENT_STATE_HOVER);
}
// activate false will also set the mMenuOpen to false.
ActivateMenu(PR_FALSE);
2001-08-06 21:49:35 +00:00
OnDestroyed();
if (nsMenuFrame::sDismissalListener)
nsMenuFrame::sDismissalListener->EnableListener(PR_TRUE);
1999-07-21 07:42:16 +00:00
}
}
void
nsMenuFrame::GetMenuChildrenElement(nsIContent** aResult)
{
if (!mContent)
{
*aResult = nsnull;
return;
}
nsresult rv;
nsCOMPtr<nsIXBLService> xblService =
do_GetService("@mozilla.org/xbl;1", &rv);
PRInt32 dummy;
PRUint32 count = mContent->GetChildCount();
for (PRUint32 i = 0; i < count; i++) {
nsIContent *child = mContent->GetChildAt(i);
nsCOMPtr<nsIAtom> tag;
xblService->ResolveTag(child, &dummy, getter_AddRefs(tag));
if (tag == nsXULAtoms::menupopup) {
*aResult = child;
NS_ADDREF(*aResult);
return;
}
}
}
PRBool
nsMenuFrame::IsSizedToPopup(nsIContent* aContent, PRBool aRequireAlways)
{
PRBool sizeToPopup;
if (aContent->Tag() == nsHTMLAtoms::select)
sizeToPopup = PR_TRUE;
else {
nsAutoString sizedToPopup;
aContent->GetAttr(kNameSpaceID_None, nsXULAtoms::sizetopopup, sizedToPopup);
sizeToPopup = sizedToPopup.EqualsLiteral("always") ||
!aRequireAlways && sizedToPopup.EqualsLiteral("pref");
}
return sizeToPopup;
}
NS_IMETHODIMP
nsMenuFrame::GetMinSize(nsBoxLayoutState& aBoxLayoutState, nsSize& aSize)
{
// Our min size is the popup size (same as the pref size) if
// sizetopopup="always" is set. However, we first need to check
// to see if a min size was set in CSS.
PRBool collapsed = PR_FALSE;
IsCollapsed(aBoxLayoutState, collapsed);
if (collapsed) {
aSize.width = aSize.height = 0;
return NS_OK;
}
nsIFrame* popupChild = mPopupFrames.FirstChild();
if (popupChild && IsSizedToPopup(mContent, PR_TRUE))
return GetPrefSize(aBoxLayoutState, aSize);
return nsBoxFrame::GetMinSize(aBoxLayoutState, aSize);
}
2000-03-31 07:02:06 +00:00
NS_IMETHODIMP
nsMenuFrame::DoLayout(nsBoxLayoutState& aState)
2000-03-31 07:02:06 +00:00
{
nsRect contentRect;
GetContentRect(contentRect);
// lay us out
nsresult rv = nsBoxFrame::DoLayout(aState);
2000-03-31 07:02:06 +00:00
// layout the popup. First we need to get it.
nsIFrame* popupChild = mPopupFrames.FirstChild();
if (popupChild) {
PRBool sizeToPopup = IsSizedToPopup(mContent, PR_FALSE);
2000-03-31 07:02:06 +00:00
nsIBox* ibox = nsnull;
nsresult rv2 = popupChild->QueryInterface(NS_GET_IID(nsIBox), (void**)&ibox);
NS_ASSERTION(NS_SUCCEEDED(rv2) && ibox,"popupChild is not box!!");
// then get its preferred size
nsSize prefSize(0,0);
nsSize minSize(0,0);
nsSize maxSize(0,0);
ibox->GetPrefSize(aState, prefSize);
ibox->GetMinSize(aState, minSize);
ibox->GetMaxSize(aState, maxSize);
BoundsCheck(minSize, prefSize, maxSize);
if (sizeToPopup)
2000-03-31 07:02:06 +00:00
prefSize.width = contentRect.width;
// if the pref size changed then set bounds to be the pref size
// and sync the view. And set new pref size.
if (mLastPref != prefSize) {
ibox->SetBounds(aState, nsRect(0,0,prefSize.width, prefSize.height));
RePositionPopup(aState);
mLastPref = prefSize;
}
// is the new size too small? Make sure we handle scrollbars correctly
nsIBox* child;
ibox->GetChildBox(&child);
nsRect bounds(0,0,0,0);
ibox->GetBounds(bounds);
nsCOMPtr<nsIScrollableFrame> scrollframe(do_QueryInterface(child));
if (scrollframe) {
nsIScrollableFrame::nsScrollPref pref;
scrollframe->GetScrollPreference(aState.PresContext(), &pref);
if (pref == nsIScrollableFrame::Auto)
{
if (bounds.height < prefSize.height) {
// layout the child
ibox->Layout(aState);
nsMargin scrollbars = scrollframe->GetActualScrollbarSizes();
if (bounds.width < prefSize.width + scrollbars.left + scrollbars.right)
{
bounds.width += scrollbars.left + scrollbars.right;
//printf("Width=%d\n",width);
ibox->SetBounds(aState, bounds);
}
}
}
}
// layout the child
ibox->Layout(aState);
// Only size the popups view if open.
if (mMenuOpen) {
nsIView* view = popupChild->GetView();
nsRect r(0, 0, bounds.width, bounds.height);
view->GetViewManager()->ResizeView(view, r);
}
2000-03-31 07:02:06 +00:00
}
SyncLayout(aState);
return rv;
}
NS_IMETHODIMP
nsMenuFrame::MarkChildrenStyleChange()
{
nsresult rv = nsBoxFrame::MarkChildrenStyleChange();
if (NS_FAILED(rv))
return rv;
nsIFrame* popupChild = mPopupFrames.FirstChild();
if (popupChild) {
nsIBox* ibox = nsnull;
nsresult rv2 = popupChild->QueryInterface(NS_GET_IID(nsIBox), (void**)&ibox);
NS_ASSERTION(NS_SUCCEEDED(rv2) && ibox,"popupChild is not box!!");
return ibox->MarkChildrenStyleChange();
}
2000-03-31 07:02:06 +00:00
return rv;
}
#ifdef DEBUG_LAYOUT
NS_IMETHODIMP
2000-03-31 07:02:06 +00:00
nsMenuFrame::SetDebug(nsBoxLayoutState& aState, PRBool aDebug)
{
// see if our state matches the given debug state
PRBool debugSet = mState & NS_STATE_CURRENTLY_IN_DEBUG;
PRBool debugChanged = (!aDebug && debugSet) || (aDebug && !debugSet);
// if it doesn't then tell each child below us the new debug state
if (debugChanged)
{
2000-03-31 07:02:06 +00:00
nsBoxFrame::SetDebug(aState, aDebug);
SetDebug(aState, mPopupFrames.FirstChild(), aDebug);
}
return NS_OK;
}
nsresult
2000-03-31 07:02:06 +00:00
nsMenuFrame::SetDebug(nsBoxLayoutState& aState, nsIFrame* aList, PRBool aDebug)
{
if (!aList)
return NS_OK;
while (aList) {
nsIBox* ibox = nsnull;
if (NS_SUCCEEDED(aList->QueryInterface(NS_GET_IID(nsIBox), (void**)&ibox)) && ibox) {
2000-03-31 07:02:06 +00:00
ibox->SetDebug(aState, aDebug);
}
aList = aList->GetNextSibling();
}
return NS_OK;
}
#endif
2001-08-08 01:38:05 +00:00
static void ConvertPosition(nsIContent* aPopupElt, nsString& aAnchor, nsString& aAlign)
{
nsAutoString position;
aPopupElt->GetAttr(kNameSpaceID_None, nsXULAtoms::position, position);
2001-08-08 01:38:05 +00:00
if (position.IsEmpty())
return;
if (position.EqualsLiteral("before_start")) {
aAnchor.AssignLiteral("topleft");
aAlign.AssignLiteral("bottomleft");
2001-08-08 01:38:05 +00:00
}
else if (position.EqualsLiteral("before_end")) {
aAnchor.AssignLiteral("topright");
aAlign.AssignLiteral("bottomright");
2001-08-08 01:38:05 +00:00
}
else if (position.EqualsLiteral("after_start")) {
aAnchor.AssignLiteral("bottomleft");
aAlign.AssignLiteral("topleft");
2001-08-08 01:38:05 +00:00
}
else if (position.EqualsLiteral("after_end")) {
aAnchor.AssignLiteral("bottomright");
aAlign.AssignLiteral("topright");
2001-08-08 01:38:05 +00:00
}
else if (position.EqualsLiteral("start_before")) {
aAnchor.AssignLiteral("topleft");
aAlign.AssignLiteral("topright");
2001-08-08 01:38:05 +00:00
}
else if (position.EqualsLiteral("start_after")) {
aAnchor.AssignLiteral("bottomleft");
aAlign.AssignLiteral("bottomright");
2001-08-08 01:38:05 +00:00
}
else if (position.EqualsLiteral("end_before")) {
aAnchor.AssignLiteral("topright");
aAlign.AssignLiteral("topleft");
2001-08-08 01:38:05 +00:00
}
else if (position.EqualsLiteral("end_after")) {
aAnchor.AssignLiteral("bottomright");
aAlign.AssignLiteral("bottomleft");
2001-08-08 01:38:05 +00:00
}
else if (position.EqualsLiteral("overlap")) {
aAnchor.AssignLiteral("topleft");
aAlign.AssignLiteral("topleft");
2001-08-08 01:38:05 +00:00
}
}
2000-03-31 07:02:06 +00:00
void
nsMenuFrame::RePositionPopup(nsBoxLayoutState& aState)
2000-03-31 07:02:06 +00:00
{
nsPresContext* presContext = aState.PresContext();
// Sync up the view.
nsIFrame* frame = mPopupFrames.FirstChild();
nsMenuPopupFrame* menuPopup = (nsMenuPopupFrame*)frame;
if (mMenuOpen && menuPopup) {
nsIContent* menuPopupContent = menuPopup->GetContent();
nsAutoString popupAnchor, popupAlign;
menuPopupContent->GetAttr(kNameSpaceID_None, nsXULAtoms::popupanchor, popupAnchor);
menuPopupContent->GetAttr(kNameSpaceID_None, nsXULAtoms::popupalign, popupAlign);
2001-08-08 01:38:05 +00:00
ConvertPosition(menuPopupContent, popupAnchor, popupAlign);
PRBool onMenuBar = PR_TRUE;
if (mMenuParent)
mMenuParent->IsMenuBar(onMenuBar);
if (onMenuBar) {
if (popupAnchor.IsEmpty())
popupAnchor.AssignLiteral("bottomleft");
if (popupAlign.IsEmpty())
popupAlign.AssignLiteral("topleft");
}
else {
if (popupAnchor.IsEmpty())
popupAnchor.AssignLiteral("topright");
if (popupAlign.IsEmpty())
popupAlign.AssignLiteral("topleft");
}
2000-03-31 07:02:06 +00:00
menuPopup->SyncViewWithFrame(presContext, popupAnchor, popupAlign, this, -1, -1);
}
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
nsMenuFrame::ShortcutNavigation(nsIDOMKeyEvent* aKeyEvent, PRBool& aHandledFlag)
{
nsIFrame* frame = mPopupFrames.FirstChild();
if (frame) {
nsMenuPopupFrame* popup = (nsMenuPopupFrame*)frame;
popup->ShortcutNavigation(aKeyEvent, aHandledFlag);
}
1999-09-21 01:03:00 +00:00
return NS_OK;
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
nsMenuFrame::KeyboardNavigation(PRUint32 aKeyCode, PRBool& aHandledFlag)
{
nsIFrame* frame = mPopupFrames.FirstChild();
if (frame) {
nsMenuPopupFrame* popup = (nsMenuPopupFrame*)frame;
popup->KeyboardNavigation(aKeyCode, aHandledFlag);
}
1999-09-21 01:03:00 +00:00
return NS_OK;
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
1999-07-23 08:36:39 +00:00
nsMenuFrame::Escape(PRBool& aHandledFlag)
{
if (mMenuParent) {
mMenuParent->ClearRecentlyRolledUp();
}
1999-07-23 08:36:39 +00:00
nsIFrame* frame = mPopupFrames.FirstChild();
if (frame) {
nsMenuPopupFrame* popup = (nsMenuPopupFrame*)frame;
popup->Escape(aHandledFlag);
}
1999-09-21 01:03:00 +00:00
return NS_OK;
}
//
// Enter
//
// Called when the user hits the <Enter>/<Return> keys or presses the
// shortcut key. If this is a leaf item, the item's action will be executed.
// If it is a submenu parent, open the submenu and select the first time.
// In either case, do nothing if the item is disabled.
//
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
1999-07-24 22:02:23 +00:00
nsMenuFrame::Enter()
{
if (IsDisabled()) {
#ifdef XP_WIN
// behavior on Windows - close the popup chain
if (mMenuParent)
mMenuParent->DismissChain();
#endif // #ifdef XP_WIN
// this menu item was disabled - exit
return NS_OK;
}
1999-07-24 22:02:23 +00:00
if (!mMenuOpen) {
// The enter key press applies to us.
if (!IsMenu() && mMenuParent)
Execute(0); // Execute our event handler
else {
1999-07-24 22:02:23 +00:00
OpenMenu(PR_TRUE);
SelectFirstItem();
}
1999-09-21 01:03:00 +00:00
return NS_OK;
1999-07-24 22:02:23 +00:00
}
nsIFrame* frame = mPopupFrames.FirstChild();
if (frame) {
nsMenuPopupFrame* popup = (nsMenuPopupFrame*)frame;
popup->Enter();
}
1999-09-21 01:03:00 +00:00
return NS_OK;
1999-07-24 22:02:23 +00:00
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
nsMenuFrame::SelectFirstItem()
{
nsIFrame* frame = mPopupFrames.FirstChild();
if (frame) {
nsMenuPopupFrame* popup = (nsMenuPopupFrame*)frame;
1999-09-21 01:03:00 +00:00
nsIMenuFrame* result;
popup->GetNextMenuItem(nsnull, &result);
popup->SetCurrentMenuItem(result);
}
1999-09-21 01:03:00 +00:00
return NS_OK;
}
PRBool
nsMenuFrame::IsMenu()
{
2000-03-13 10:20:34 +00:00
return mIsMenu;
1999-07-25 01:14:43 +00:00
}
NS_IMETHODIMP
1999-07-25 01:14:43 +00:00
nsMenuFrame::Notify(nsITimer* aTimer)
{
// Our timer has fired.
if (aTimer == mOpenTimer.get()) {
if (!mMenuOpen && mMenuParent) {
nsAutoString active;
mContent->GetAttr(kNameSpaceID_None, nsXULAtoms::menuactive, active);
if (active.EqualsLiteral("true")) {
// We're still the active menu. Make sure all submenus/timers are closed
// before opening this one
mMenuParent->KillPendingTimers();
OpenMenu(PR_TRUE);
}
1999-07-25 01:14:43 +00:00
}
mOpenTimer->Cancel();
mOpenTimer = nsnull;
1999-07-25 01:14:43 +00:00
}
1999-07-25 01:14:43 +00:00
mOpenTimer = nsnull;
return NS_OK;
1999-07-25 01:14:43 +00:00
}
PRBool
nsMenuFrame::IsDisabled()
{
nsAutoString disabled;
mContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::disabled, disabled);
if (disabled.EqualsLiteral("true"))
return PR_TRUE;
return PR_FALSE;
}
void
nsMenuFrame::UpdateMenuType(nsPresContext* aPresContext)
{
nsAutoString value;
mContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::type, value);
if (value.EqualsLiteral("checkbox"))
mType = eMenuType_Checkbox;
else if (value.EqualsLiteral("radio")) {
mType = eMenuType_Radio;
mContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::name, mGroupName);
}
else {
if (mType != eMenuType_Normal)
mContent->UnsetAttr(kNameSpaceID_None, nsHTMLAtoms::checked,
PR_TRUE);
mType = eMenuType_Normal;
}
UpdateMenuSpecialState(aPresContext);
}
/* update checked-ness for type="checkbox" and type="radio" */
void
nsMenuFrame::UpdateMenuSpecialState(nsPresContext* aPresContext) {
nsAutoString value;
PRBool newChecked;
mContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::checked,
value);
newChecked = (value.EqualsLiteral("true"));
if (newChecked == mChecked) {
/* checked state didn't change */
if (mType != eMenuType_Radio)
return; // only Radio possibly cares about other kinds of change
if (!mChecked || mGroupName.IsEmpty())
return; // no interesting change
} else {
mChecked = newChecked;
if (mType != eMenuType_Radio || !mChecked)
/*
* Unchecking something requires no further changes, and only
* menuRadio has to do additional work when checked.
*/
return;
}
/*
* If we get this far, we're type=radio, and:
* - our name= changed, or
* - we went from checked="false" to checked="true"
*/
/*
* Behavioural note:
* If we're checked and renamed _into_ an existing radio group, we are
* made the new checked item, and we unselect the previous one.
*
* The only other reasonable behaviour would be to check for another selected
* item in that group. If found, unselect ourselves, otherwise we're the
* selected item. That, however, would be a lot more work, and I don't think
* it's better at all.
*/
/* walk siblings, looking for the other checked item with the same name */
nsIMenuFrame *sibMenu;
nsMenuType sibType;
nsAutoString sibGroup;
PRBool sibChecked;
// get the first sibling in this menu popup. This frame may be it, and if we're
// being called at creation time, this frame isn't yet in the parent's child list.
// All I'm saying is that this may fail, but it's most likely alright.
nsIFrame* sib = GetParent()->GetFirstChild(nsnull);
if ( !sib )
return;
// XXX - egcs 1.1.2 & gcc 2.95.x -Oy builds, where y > 1,
// are known to break if we declare nsCOMPtrs inside this loop.
// Moving the declaration out of the loop works around this problem.
// http://bugzilla.mozilla.org/show_bug.cgi?id=80988
do {
if (NS_FAILED(sib->QueryInterface(NS_GET_IID(nsIMenuFrame),
(void **)&sibMenu)))
continue;
if (sibMenu != (nsIMenuFrame *)this && // correct way to check?
(sibMenu->GetMenuType(sibType), sibType == eMenuType_Radio) &&
(sibMenu->MenuIsChecked(sibChecked), sibChecked) &&
(sibMenu->GetRadioGroupName(sibGroup), sibGroup == mGroupName)) {
/* uncheck the old item */
sib->GetContent()->UnsetAttr(kNameSpaceID_None, nsHTMLAtoms::checked,
PR_TRUE);
/* XXX in DEBUG, check to make sure that there aren't two checked items */
return;
}
} while ((sib = sib->GetNextSibling()) != nsnull);
}
void
nsMenuFrame::BuildAcceleratorText()
{
2000-03-28 00:41:33 +00:00
nsAutoString accelText;
if ((GetStateBits() & NS_STATE_ACCELTEXT_IS_DERIVED) == 0) {
mContent->GetAttr(kNameSpaceID_None, nsXULAtoms::acceltext, accelText);
if (!accelText.IsEmpty())
return;
}
// accelText is definitely empty here.
// Now we're going to compute the accelerator text, so remember that we did.
AddStateBits(NS_STATE_ACCELTEXT_IS_DERIVED);
// If anything below fails, just leave the accelerator text blank.
mContent->UnsetAttr(kNameSpaceID_None, nsXULAtoms::acceltext, PR_FALSE);
// See if we have a key node and use that instead.
2000-03-28 00:41:33 +00:00
nsAutoString keyValue;
mContent->GetAttr(kNameSpaceID_None, nsXULAtoms::key, keyValue);
if (keyValue.IsEmpty())
return;
// Turn the document into a DOM document so we can use getElementById
nsCOMPtr<nsIDOMDocument> domDocument(do_QueryInterface(mContent->GetDocument()));
if (!domDocument)
return;
nsCOMPtr<nsIDOMElement> keyDOMElement;
domDocument->GetElementById(keyValue, getter_AddRefs(keyDOMElement));
if (!keyDOMElement)
return;
nsCOMPtr<nsIContent> keyElement(do_QueryInterface(keyDOMElement));
if (!keyElement)
return;
// get the string to display as accelerator text
// check the key element's attributes in this order:
// |keytext|, |key|, |keycode|
nsAutoString accelString;
keyElement->GetAttr(kNameSpaceID_None, nsXULAtoms::keytext, accelString);
if (accelString.IsEmpty()) {
keyElement->GetAttr(kNameSpaceID_None, nsXULAtoms::key, accelString);
if (!accelString.IsEmpty()) {
ToUpperCase(accelString);
} else {
nsAutoString keyCode;
keyElement->GetAttr(kNameSpaceID_None, nsXULAtoms::keycode, keyCode);
ToUpperCase(keyCode);
nsresult rv;
nsCOMPtr<nsIStringBundleService> bundleService(do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv));
if (NS_SUCCEEDED(rv) && bundleService) {
nsCOMPtr<nsIStringBundle> bundle;
rv = bundleService->CreateBundle("chrome://global/locale/keys.properties",
getter_AddRefs(bundle));
if (NS_SUCCEEDED(rv) && bundle) {
nsXPIDLString keyName;
rv = bundle->GetStringFromName(keyCode.get(), getter_Copies(keyName));
if (keyName)
accelString = keyName;
}
}
// nothing usable found, bail
if (accelString.IsEmpty())
return;
}
}
static PRInt32 accelKey = 0;
2000-09-22 05:02:20 +00:00
if (!accelKey)
{
// Compiled-in defaults, in case we can't get LookAndFeel --
// command for mac, control for all other platforms.
#if defined(XP_MAC) || defined(XP_MACOSX)
accelKey = nsIDOMKeyEvent::DOM_VK_META;
#else
accelKey = nsIDOMKeyEvent::DOM_VK_CONTROL;
#endif
// Get the accelerator key value from prefs, overriding the default:
accelKey = nsContentUtils::GetIntPref("ui.key.accelKey", accelKey);
2000-09-22 05:02:20 +00:00
}
2000-09-22 05:02:20 +00:00
nsAutoString modifiers;
keyElement->GetAttr(kNameSpaceID_None, nsXULAtoms::modifiers, modifiers);
2000-09-22 05:02:20 +00:00
char* str = ToNewCString(modifiers);
2000-09-22 05:02:20 +00:00
char* newStr;
char* token = nsCRT::strtok(str, ", ", &newStr);
while (token) {
2000-09-22 05:02:20 +00:00
if (PL_strcmp(token, "shift") == 0)
accelText += *gShiftText;
2000-09-22 05:02:20 +00:00
else if (PL_strcmp(token, "alt") == 0)
accelText += *gAltText;
2000-09-22 05:02:20 +00:00
else if (PL_strcmp(token, "meta") == 0)
accelText += *gMetaText;
2000-09-22 05:02:20 +00:00
else if (PL_strcmp(token, "control") == 0)
accelText += *gControlText;
2000-09-22 05:02:20 +00:00
else if (PL_strcmp(token, "accel") == 0) {
switch (accelKey)
{
case nsIDOMKeyEvent::DOM_VK_META:
accelText += *gMetaText;
2000-09-22 05:02:20 +00:00
break;
case nsIDOMKeyEvent::DOM_VK_ALT:
accelText += *gAltText;
2000-09-22 05:02:20 +00:00
break;
case nsIDOMKeyEvent::DOM_VK_CONTROL:
default:
accelText += *gControlText;
2000-09-22 05:02:20 +00:00
break;
}
}
accelText += *gModifierSeparator;
token = nsCRT::strtok(newStr, ", ", &newStr);
}
2000-09-22 05:02:20 +00:00
nsMemory::Free(str);
accelText += accelString;
mContent->SetAttr(kNameSpaceID_None, nsXULAtoms::acceltext, accelText, PR_FALSE);
}
void
nsMenuFrame::Execute(nsGUIEvent *aEvent)
{
// flip "checked" state if we're a checkbox menu, or an un-checked radio menu
if (mType == eMenuType_Checkbox || (mType == eMenuType_Radio && !mChecked)) {
nsAutoString value;
mContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::autocheck, value);
if (!value.EqualsLiteral("false")) {
if (mChecked) {
mContent->UnsetAttr(kNameSpaceID_None, nsHTMLAtoms::checked,
PR_TRUE);
}
else {
mContent->SetAttr(kNameSpaceID_None, nsHTMLAtoms::checked, NS_LITERAL_STRING("true"),
PR_TRUE);
}
/* the AttributeChanged code will update all the internal state */
}
}
1999-10-01 04:43:45 +00:00
// Temporarily disable rollup events on this menu. This is
// to suppress this menu getting removed in the case where
// the oncommand handler opens a dialog, etc.
if ( nsMenuFrame::sDismissalListener ) {
nsMenuFrame::sDismissalListener->EnableListener(PR_FALSE);
1999-10-01 04:43:45 +00:00
}
1999-08-13 23:49:53 +00:00
// Get our own content node and hold on to it to keep it from going away.
nsCOMPtr<nsIContent> content = mContent;
1999-10-01 04:43:45 +00:00
2000-10-02 23:23:55 +00:00
// Deselect ourselves.
SelectMenu(PR_FALSE);
// Now hide all of the open menus.
if (mMenuParent) {
mMenuParent->HideChain();
// Since menu was not dismissed via click outside menu
// we don't want to keep track of this rollup.
// Otherwise, we keep track so that the same click
// won't both dismiss and then reopen a menu.
mMenuParent->ClearRecentlyRolledUp();
}
nsEventStatus status = nsEventStatus_eIgnore;
nsMouseEvent event(NS_XUL_COMMAND);
if (aEvent && (aEvent->eventStructType == NS_MOUSE_EVENT ||
aEvent->eventStructType == NS_KEY_EVENT ||
aEvent->eventStructType == NS_ACCESSIBLE_EVENT)) {
event.isShift = NS_STATIC_CAST(nsInputEvent *, aEvent)->isShift;
event.isControl = NS_STATIC_CAST(nsInputEvent *, aEvent)->isControl;
event.isAlt = NS_STATIC_CAST(nsInputEvent *, aEvent)->isAlt;
event.isMeta = NS_STATIC_CAST(nsInputEvent *, aEvent)->isMeta;
}
// The order of the nsIViewManager and nsIPresShell COM pointers is
// important below. We want the pres shell to get released before the
// associated view manager on exit from this function.
// See bug 54233.
nsCOMPtr<nsIViewManager> kungFuDeathGrip = mPresContext->GetViewManager();
// keep a reference so we can safely use this after dispatching the DOM event
nsCOMPtr<nsIPresShell> shell = mPresContext->GetPresShell();
2000-09-03 06:22:21 +00:00
nsIFrame* me = this;
if (shell) {
shell->HandleDOMEventWithTarget(mContent, &event, &status);
// shell may no longer be alive, don't use it here unless you keep a ref
}
1999-08-13 23:49:53 +00:00
// XXX HACK. Just gracefully exit if the node has been removed, e.g., window.close()
// was executed.
2000-09-03 06:22:21 +00:00
nsIFrame* primary = nsnull;
if (shell) shell->GetPrimaryFrameFor(content, &primary);
// Now properly close them all up.
if (content->GetDocument() && // <-- HACK IS HERE. ICK.
(primary == me) && mMenuParent)
mMenuParent->DismissChain();
2000-09-03 06:22:21 +00:00
// END HACK
1999-10-01 04:43:45 +00:00
// Re-enable rollup events on this menu.
if ( nsMenuFrame::sDismissalListener ) {
nsMenuFrame::sDismissalListener->EnableListener(PR_TRUE);
1999-10-01 04:43:45 +00:00
}
}
PRBool
nsMenuFrame::OnCreate()
{
nsEventStatus status = nsEventStatus_eIgnore;
nsMouseEvent event(NS_XUL_POPUP_SHOWING);
nsCOMPtr<nsIContent> child;
GetMenuChildrenElement(getter_AddRefs(child));
nsresult rv = NS_OK;
nsIPresShell *shell = mPresContext->GetPresShell();
if (shell) {
if (child) {
rv = shell->HandleDOMEventWithTarget(child, &event, &status);
}
else {
rv = shell->HandleDOMEventWithTarget(mContent, &event, &status);
}
// shell may no longer be alive, don't use it here unless you keep a ref
}
if ( NS_FAILED(rv) || status == nsEventStatus_eConsumeNoDefault )
return PR_FALSE;
2001-03-21 08:15:49 +00:00
// The menu is going to show, and the create handler has executed.
// We should now walk all of our menu item children, checking to see if any
// of them has a command attribute. If so, then several attributes must
// potentially be updated.
if (child) {
nsCOMPtr<nsIDOMDocument> domDoc(do_QueryInterface(child->GetDocument()));
2001-03-21 08:15:49 +00:00
PRUint32 count = child->GetChildCount();
for (PRUint32 i = 0; i < count; i++) {
nsIContent *grandChild = child->GetChildAt(i);
if (grandChild->Tag() == nsXULAtoms::menuitem) {
2001-03-21 08:15:49 +00:00
// See if we have a command attribute.
nsAutoString command;
grandChild->GetAttr(kNameSpaceID_None, nsXULAtoms::command, command);
2001-03-21 08:15:49 +00:00
if (!command.IsEmpty()) {
// We do! Look it up in our document
nsCOMPtr<nsIDOMElement> commandElt;
domDoc->GetElementById(command, getter_AddRefs(commandElt));
nsCOMPtr<nsIContent> commandContent(do_QueryInterface(commandElt));
if ( commandContent ) {
nsAutoString commandAttr, menuAttr;
commandContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::disabled, commandAttr);
grandChild->GetAttr(kNameSpaceID_None, nsHTMLAtoms::disabled, menuAttr);
if (!commandAttr.Equals(menuAttr)) {
// The menu's disabled state needs to be updated to match the command.
if (commandAttr.IsEmpty())
grandChild->UnsetAttr(kNameSpaceID_None, nsHTMLAtoms::disabled, PR_TRUE);
else grandChild->SetAttr(kNameSpaceID_None, nsHTMLAtoms::disabled, commandAttr, PR_TRUE);
}
// The menu's label, accesskey, and checked states need to be updated to match the command.
// Note that (unlike the disabled state) if the command has *no* label for either, we
2001-04-28 06:38:23 +00:00
// assume the menu is supplying its own.
commandContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::checked, commandAttr);
grandChild->GetAttr(kNameSpaceID_None, nsHTMLAtoms::checked, menuAttr);
if (!commandAttr.Equals(menuAttr)) {
if (!commandAttr.IsEmpty())
grandChild->SetAttr(kNameSpaceID_None, nsHTMLAtoms::checked, commandAttr, PR_TRUE);
2001-04-28 06:38:23 +00:00
}
commandContent->GetAttr(kNameSpaceID_None, nsHTMLAtoms::accesskey, commandAttr);
grandChild->GetAttr(kNameSpaceID_None, nsHTMLAtoms::accesskey, menuAttr);
if (!commandAttr.Equals(menuAttr)) {
if (!commandAttr.IsEmpty())
grandChild->SetAttr(kNameSpaceID_None, nsHTMLAtoms::accesskey, commandAttr, PR_TRUE);
}
commandContent->GetAttr(kNameSpaceID_None, nsXULAtoms::label, commandAttr);
grandChild->GetAttr(kNameSpaceID_None, nsXULAtoms::label, menuAttr);
if (!commandAttr.Equals(menuAttr)) {
if (!commandAttr.IsEmpty())
grandChild->SetAttr(kNameSpaceID_None, nsXULAtoms::label, commandAttr, PR_TRUE);
}
2001-03-21 08:15:49 +00:00
}
}
}
}
}
return PR_TRUE;
}
2001-08-06 21:49:35 +00:00
PRBool
nsMenuFrame::OnCreated()
{
nsEventStatus status = nsEventStatus_eIgnore;
nsMouseEvent event(NS_XUL_POPUP_SHOWN);
2001-08-06 21:49:35 +00:00
nsCOMPtr<nsIContent> child;
GetMenuChildrenElement(getter_AddRefs(child));
nsresult rv = NS_OK;
nsIPresShell *shell = mPresContext->GetPresShell();
if (shell) {
2001-08-06 21:49:35 +00:00
if (child) {
rv = shell->HandleDOMEventWithTarget(child, &event, &status);
}
else {
rv = shell->HandleDOMEventWithTarget(mContent, &event, &status);
}
// shell may no longer be alive, don't use it here unless you keep a ref
2001-08-06 21:49:35 +00:00
}
if ( NS_FAILED(rv) || status == nsEventStatus_eConsumeNoDefault )
return PR_FALSE;
return PR_TRUE;
}
PRBool
nsMenuFrame::OnDestroy()
{
nsEventStatus status = nsEventStatus_eIgnore;
nsMouseEvent event(NS_XUL_POPUP_HIDING);
2001-08-06 21:49:35 +00:00
nsCOMPtr<nsIContent> child;
GetMenuChildrenElement(getter_AddRefs(child));
nsresult rv = NS_OK;
nsIPresShell *shell = mPresContext->GetPresShell();
if (shell) {
2001-08-06 21:49:35 +00:00
if (child) {
rv = shell->HandleDOMEventWithTarget(child, &event, &status);
}
else {
rv = shell->HandleDOMEventWithTarget(mContent, &event, &status);
}
// shell may no longer be alive, don't use it here unless you keep a ref
2001-08-06 21:49:35 +00:00
}
if ( NS_FAILED(rv) || status == nsEventStatus_eConsumeNoDefault )
return PR_FALSE;
return PR_TRUE;
}
PRBool
nsMenuFrame::OnDestroyed()
{
nsEventStatus status = nsEventStatus_eIgnore;
nsMouseEvent event(NS_XUL_POPUP_HIDDEN);
nsCOMPtr<nsIContent> child;
GetMenuChildrenElement(getter_AddRefs(child));
nsresult rv = NS_OK;
nsIPresShell *shell = mPresContext->GetPresShell();
if (shell) {
if (child) {
rv = shell->HandleDOMEventWithTarget(child, &event, &status);
}
else {
rv = shell->HandleDOMEventWithTarget(mContent, &event, &status);
}
// shell may no longer be alive, don't use it here unless you keep a ref
}
if ( NS_FAILED(rv) || status == nsEventStatus_eConsumeNoDefault )
return PR_FALSE;
return PR_TRUE;
}
NS_IMETHODIMP
nsMenuFrame::RemoveFrame(nsPresContext* aPresContext,
nsIPresShell& aPresShell,
nsIAtom* aListName,
nsIFrame* aOldFrame)
{
1999-08-19 03:51:25 +00:00
nsresult rv;
if (mPopupFrames.ContainsFrame(aOldFrame)) {
// Go ahead and remove this frame.
mPopupFrames.DestroyFrame(aPresContext, aOldFrame);
2000-03-31 07:02:06 +00:00
nsBoxLayoutState state(aPresContext);
rv = MarkDirtyChildren(state);
1999-08-19 03:51:25 +00:00
} else {
rv = nsBoxFrame::RemoveFrame(aPresContext, aPresShell, aListName, aOldFrame);
}
1999-08-19 03:51:25 +00:00
return rv;
}
NS_IMETHODIMP
nsMenuFrame::InsertFrames(nsPresContext* aPresContext,
nsIPresShell& aPresShell,
nsIAtom* aListName,
nsIFrame* aPrevFrame,
nsIFrame* aFrameList)
{
1999-08-19 03:51:25 +00:00
nsresult rv;
nsIMenuParent *menuPar;
if (aFrameList && NS_SUCCEEDED(CallQueryInterface(aFrameList, &menuPar))) {
nsIBox *menupopup;
CallQueryInterface(aFrameList, &menupopup);
NS_ASSERTION(menupopup,"Popup is not a box!!!");
menupopup->SetParentBox(this);
mPopupFrames.InsertFrames(nsnull, nsnull, aFrameList);
2000-03-31 07:02:06 +00:00
nsBoxLayoutState state(aPresContext);
#ifdef DEBUG_LAYOUT
2000-03-31 07:02:06 +00:00
SetDebug(state, aFrameList, mState & NS_STATE_CURRENTLY_IN_DEBUG);
#endif
2000-03-31 07:02:06 +00:00
rv = MarkDirtyChildren(state);
1999-08-19 03:51:25 +00:00
} else {
rv = nsBoxFrame::InsertFrames(aPresContext, aPresShell, aListName, aPrevFrame, aFrameList);
}
1999-08-19 03:51:25 +00:00
return rv;
}
NS_IMETHODIMP
nsMenuFrame::AppendFrames(nsPresContext* aPresContext,
nsIPresShell& aPresShell,
nsIAtom* aListName,
nsIFrame* aFrameList)
{
if (!aFrameList)
return NS_OK;
1999-08-19 03:51:25 +00:00
nsresult rv;
nsIMenuParent *menuPar;
if (aFrameList && NS_SUCCEEDED(CallQueryInterface(aFrameList, &menuPar))) {
nsIBox *menupopup;
CallQueryInterface(aFrameList, &menupopup);
NS_ASSERTION(menupopup,"Popup is not a box!!!");
menupopup->SetParentBox(this);
mPopupFrames.AppendFrames(nsnull, aFrameList);
2000-03-31 07:02:06 +00:00
nsBoxLayoutState state(aPresContext);
#ifdef DEBUG_LAYOUT
2000-03-31 07:02:06 +00:00
SetDebug(state, aFrameList, mState & NS_STATE_CURRENTLY_IN_DEBUG);
#endif
2000-03-31 07:02:06 +00:00
rv = MarkDirtyChildren(state);
1999-08-19 03:51:25 +00:00
} else {
rv = nsBoxFrame::AppendFrames(aPresContext, aPresShell, aListName, aFrameList);
}
1999-08-19 03:51:25 +00:00
return rv;
}
1999-09-21 01:03:00 +00:00
void
nsMenuFrame::UpdateDismissalListener(nsIMenuParent* aMenuParent)
{
if (!nsMenuFrame::sDismissalListener) {
if (!aMenuParent)
return;
1999-09-21 01:03:00 +00:00
// Create the listener and attach it to the outermost window.
aMenuParent->CreateDismissalListener();
}
// Make sure the menu dismissal listener knows what the current
// innermost menu popup frame is.
nsMenuFrame::sDismissalListener->SetCurrentMenuParent(aMenuParent);
1999-09-21 01:03:00 +00:00
}
2000-02-25 08:37:49 +00:00
2000-03-31 07:02:06 +00:00
NS_IMETHODIMP
nsMenuFrame::GetPrefSize(nsBoxLayoutState& aState, nsSize& aSize)
{
aSize.width = 0;
aSize.height = 0;
nsresult rv = nsBoxFrame::GetPrefSize(aState, aSize);
if (IsSizedToPopup(mContent, PR_FALSE)) {
2000-11-28 08:52:36 +00:00
nsSize tmpSize(-1,0);
nsIBox::AddCSSPrefSize(aState, this, tmpSize);
nscoord flex;
GetFlex(aState, flex);
if (tmpSize.width == -1 && flex==0) {
nsIFrame* frame = mPopupFrames.FirstChild();
if (!frame) {
MarkAsGenerated();
frame = mPopupFrames.FirstChild();
// No child - just return
if (!frame) return NS_OK;
2000-03-31 07:02:06 +00:00
}
2000-11-28 08:52:36 +00:00
nsIBox* ibox = nsnull;
nsresult rv2 = frame->QueryInterface(NS_GET_IID(nsIBox), (void**)&ibox);
NS_ASSERTION(NS_SUCCEEDED(rv2) && ibox,"popupChild is not box!!");
2000-03-31 07:02:06 +00:00
2000-11-28 08:52:36 +00:00
ibox->GetPrefSize(aState, tmpSize);
aSize.width = tmpSize.width;
// We now need to ensure that aSize is within the min size - max size range.
// If we are using sizetopopup="always", we know the min size will be the same
// as the pref size, and do not need to call GetMinSize (in fact, doing so will
// result in infinite recursion).
nsSize minSize, maxSize;
if (IsSizedToPopup(mContent, PR_TRUE))
minSize = aSize;
else
GetMinSize(aState, minSize);
GetMaxSize(aState, maxSize);
BoundsCheck(minSize, aSize, maxSize);
2000-11-28 08:52:36 +00:00
}
2000-03-31 07:02:06 +00:00
}
return rv;
}
2000-08-17 09:15:51 +00:00
NS_IMETHODIMP
nsMenuFrame::GetActiveChild(nsIDOMElement** aResult)
{
nsIFrame* frame = mPopupFrames.FirstChild();
nsMenuPopupFrame* menuPopup = (nsMenuPopupFrame*)frame;
if (!frame)
return NS_ERROR_FAILURE;
nsIMenuFrame* menuFrame;
menuPopup->GetCurrentMenuItem(&menuFrame);
if (!menuFrame) {
*aResult = nsnull;
}
else {
nsIFrame* f;
menuFrame->QueryInterface(NS_GET_IID(nsIFrame), (void**)&f);
nsCOMPtr<nsIDOMElement> elt(do_QueryInterface(f->GetContent()));
2000-08-17 09:15:51 +00:00
*aResult = elt;
NS_IF_ADDREF(*aResult);
}
return NS_OK;
}
NS_IMETHODIMP
nsMenuFrame::SetActiveChild(nsIDOMElement* aChild)
{
nsIFrame* frame = mPopupFrames.FirstChild();
nsMenuPopupFrame* menuPopup = (nsMenuPopupFrame*)frame;
if (!frame)
return NS_ERROR_FAILURE;
if (!aChild) {
// Remove the current selection
menuPopup->SetCurrentMenuItem(nsnull);
return NS_OK;
}
2000-08-17 09:15:51 +00:00
nsCOMPtr<nsIContent> child(do_QueryInterface(aChild));
nsIFrame* kid;
mPresContext->PresShell()->GetPrimaryFrameFor(child, &kid);
2000-08-17 09:15:51 +00:00
if (!kid)
return NS_ERROR_FAILURE;
nsCOMPtr<nsIMenuFrame> menuFrame(do_QueryInterface(kid));
if (!menuFrame)
return NS_ERROR_FAILURE;
menuPopup->SetCurrentMenuItem(menuFrame);
return NS_OK;
}
NS_IMETHODIMP
nsMenuFrame::GetScrollableView(nsPresContext* aPresContext, nsIScrollableView** aView)
{
*aView = nsnull;
if (!mPopupFrames.FirstChild())
return NS_OK;
nsMenuPopupFrame* popup = (nsMenuPopupFrame*) mPopupFrames.FirstChild();
nsIFrame* childFrame = popup->GetFirstChild(nsnull);
if (childFrame) {
*aView = popup->GetScrollableView(childFrame);
}
return NS_OK;
}
2000-08-17 09:15:51 +00:00
2000-03-31 07:02:06 +00:00
/* Need to figure out what this does.
2000-02-25 08:37:49 +00:00
NS_IMETHODIMP
nsMenuFrame::GetBoxInfo(nsPresContext* aPresContext, const nsHTMLReflowState& aReflowState, nsBoxInfo& aSize)
2000-02-25 08:37:49 +00:00
{
nsresult rv = nsBoxFrame::GetBoxInfo(aPresContext, aReflowState, aSize);
nsCOMPtr<nsIDOMXULMenuListElement> menulist(do_QueryInterface(mContent));
if (menulist) {
2000-03-31 07:02:06 +00:00
nsCalculatedBoxInfo boxInfo(this);
2000-02-25 08:37:49 +00:00
boxInfo.prefSize.width = NS_UNCONSTRAINEDSIZE;
boxInfo.prefSize.height = NS_UNCONSTRAINEDSIZE;
boxInfo.flex = 0;
GetRedefinedMinPrefMax(aPresContext, this, boxInfo);
if (boxInfo.prefSize.width == NS_UNCONSTRAINEDSIZE &&
boxInfo.prefSize.height == NS_UNCONSTRAINEDSIZE &&
boxInfo.flex == 0) {
nsIFrame* frame = mPopupFrames.FirstChild();
if (!frame) {
MarkAsGenerated();
frame = mPopupFrames.FirstChild();
}
nsIBox *box;
CallQueryInterface(frame, &box);
2000-03-31 07:02:06 +00:00
nsCalculatedBoxInfo childInfo(frame);
2000-02-25 08:37:49 +00:00
box->GetBoxInfo(aPresContext, aReflowState, childInfo);
GetRedefinedMinPrefMax(aPresContext, this, childInfo);
aSize.prefSize.width = childInfo.prefSize.width;
}
2000-03-13 10:20:34 +00:00
2000-03-17 11:27:01 +00:00
// This retrieval guarantess that the selectedItem will
// be set before we lay out.
2000-03-13 10:20:34 +00:00
nsCOMPtr<nsIDOMElement> element;
menulist->GetSelectedItem(getter_AddRefs(element));
2000-02-25 08:37:49 +00:00
}
return rv;
}
2000-03-31 07:02:06 +00:00
*/