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

892 lines
24 KiB
C++
Raw Normal View History

/* -*- 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):
*/
#include "nsMenuPopupFrame.h"
#include "nsXULAtoms.h"
1999-07-20 09:50:48 +00:00
#include "nsHTMLAtoms.h"
#include "nsIContent.h"
#include "prtypes.h"
#include "nsIAtom.h"
#include "nsIPresContext.h"
#include "nsIStyleContext.h"
#include "nsCSSRendering.h"
#include "nsINameSpaceManager.h"
#include "nsIViewManager.h"
#include "nsWidgetsCID.h"
#include "nsMenuFrame.h"
1999-09-21 01:03:00 +00:00
#include "nsIPopupSetFrame.h"
1999-11-23 03:02:01 +00:00
#include "nsIDOMWindow.h"
#include "nsIDOMScreen.h"
#include "nsIScriptGlobalObject.h"
#include "nsIPresShell.h"
#include "nsIScriptObjectOwner.h"
#include "nsIDocument.h"
#include "nsIDeviceContext.h"
#include "nsRect.h"
const PRInt32 kMaxZ = 0x7fffffff; //XXX: Shouldn't there be a define somewhere for MaxInt for PRInt32
1999-09-21 01:03:00 +00:00
static NS_DEFINE_IID(kIFrameIID, NS_IFRAME_IID);
// NS_NewMenuPopupFrame
//
// Wrapper for creating a new menu popup container
//
nsresult
NS_NewMenuPopupFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame)
{
NS_PRECONDITION(aNewFrame, "null OUT ptr");
if (nsnull == aNewFrame) {
return NS_ERROR_NULL_POINTER;
}
nsMenuPopupFrame* it = new (aPresShell) nsMenuPopupFrame;
if ( !it )
return NS_ERROR_OUT_OF_MEMORY;
*aNewFrame = it;
return NS_OK;
}
1999-07-21 07:42:16 +00:00
NS_IMETHODIMP_(nsrefcnt)
nsMenuPopupFrame::AddRef(void)
{
return NS_OK;
}
NS_IMETHODIMP_(nsrefcnt)
nsMenuPopupFrame::Release(void)
{
return NS_OK;
}
//
// QueryInterface
//
// Since we inherit from a base class with its own implementation of QI, we
// need to rely on that for the other interfaces supported, yet we still want
// to use the map macros. Currently, there is no macro to let you use the
// inherited version of QI, so we cheat. Hopefully this will change in the near
// future (pinkerton)
//
NS_INTERFACE_MAP_BEGIN(nsMenuPopupFrame)
NS_INTERFACE_MAP_ENTRY(nsIMenuParent)
foundInterface = 0;
nsresult status;
if ( !foundInterface )
status = nsBoxFrame::QueryInterface(aIID, NS_REINTERPRET_CAST(void**,&foundInterface)); \
else
{
NS_ADDREF(foundInterface);
status = NS_OK;
}
*aInstancePtr = foundInterface;
return status;
}
//
// nsMenuPopupFrame cntr
//
nsMenuPopupFrame::nsMenuPopupFrame()
1999-09-21 01:03:00 +00:00
:mCurrentMenu(nsnull)
{
} // cntr
NS_IMETHODIMP
nsMenuPopupFrame::Init(nsIPresContext* aPresContext,
nsIContent* aContent,
nsIFrame* aParent,
nsIStyleContext* aContext,
nsIFrame* aPrevInFlow)
{
1999-07-21 02:56:23 +00:00
nsresult rv = nsBoxFrame::Init(aPresContext, aContent, aParent, aContext, aPrevInFlow);
1999-07-20 09:50:48 +00:00
// XXX Hack
mPresContext = aPresContext;
CreateViewForFrame(aPresContext, this, aContext, PR_TRUE);
// Now that we've made a view, remove it and insert it at the correct
// position in the view hierarchy (as the root view). We do this so that we
// can draw the menus outside the confines of the window.
nsIView* ourView;
GetView(aPresContext, &ourView);
nsIFrame* parent;
aParent->GetParentWithView(aPresContext, &parent);
nsIView* parentView;
parent->GetView(aPresContext, &parentView);
nsCOMPtr<nsIViewManager> viewManager;
parentView->GetViewManager(*getter_AddRefs(viewManager));
// Remove the view from its old position.
viewManager->RemoveChild(parentView, ourView);
// Reinsert ourselves as the root view with a maximum z-index.
nsIView* rootView;
viewManager->GetRootView(rootView);
viewManager->InsertChild(rootView, ourView, kMaxZ);
// XXX Hack. Change our transparency to be non-transparent
// until the bug related to update of transparency on show/hide
// is fixed.
viewManager->SetViewContentTransparency(ourView, PR_FALSE);
// Create a widget for ourselves.
nsWidgetInitData widgetData;
ourView->SetZIndex(kMaxZ);
1999-07-27 04:27:17 +00:00
widgetData.mWindowType = eWindowType_popup;
widgetData.mBorderStyle = eBorderStyle_default;
// XXX make sure we are hidden (shouldn't this be done automatically?)
ourView->SetVisibility(nsViewVisibility_kHide);
#ifdef XP_MAC
printf("XP Popups: This is a nag to indicate that an inconsistent hack is being done on the Mac for popups.\n");
static NS_DEFINE_IID(kCPopupCID, NS_POPUP_CID);
ourView->CreateWidget(kCPopupCID, &widgetData, nsnull);
#else
static NS_DEFINE_IID(kCChildCID, NS_CHILD_CID);
ourView->CreateWidget(kCChildCID, &widgetData, nsnull);
#endif
1999-09-21 01:03:00 +00:00
return rv;
}
PRBool
nsMenuPopupFrame::GetInitialAlignment()
{
// by default we are vertical unless horizontal is specifically specified
nsString value;
mContent->GetAttribute(kNameSpaceID_None, nsHTMLAtoms::align, value);
if (value.EqualsIgnoreCase("horizontal"))
return PR_TRUE;
else
return PR_FALSE;
}
void
nsMenuPopupFrame::GetViewOffset(nsIViewManager* aManager, nsIView* aView,
nsPoint& aPoint)
{
aPoint.x = 0;
aPoint.y = 0;
nsIView *parent;
nsRect bounds;
parent = aView;
while (nsnull != parent) {
parent->GetBounds(bounds);
aPoint.x += bounds.x;
aPoint.y += bounds.y;
parent->GetParent(parent);
}
}
1999-09-10 08:47:12 +00:00
void
nsMenuPopupFrame::GetNearestEnclosingView(nsIPresContext* aPresContext, nsIFrame* aStartFrame, nsIView** aResult)
1999-09-10 08:47:12 +00:00
{
*aResult = nsnull;
aStartFrame->GetView(aPresContext, aResult);
1999-09-10 08:47:12 +00:00
if (!*aResult) {
nsIFrame* parent;
aStartFrame->GetParentWithView(aPresContext, &parent);
1999-09-10 08:47:12 +00:00
if (parent)
parent->GetView(aPresContext, aResult);
1999-09-10 08:47:12 +00:00
}
}
nsresult
nsMenuPopupFrame::SyncViewWithFrame(nsIPresContext* aPresContext,
const nsString& aPopupAnchor,
const nsString& aPopupAlign,
1999-09-10 08:47:12 +00:00
nsIFrame* aFrame,
PRInt32 aXPos, PRInt32 aYPos)
{
NS_ENSURE_ARG(aPresContext);
nsPoint parentPos;
nsCOMPtr<nsIViewManager> viewManager;
1999-09-10 08:47:12 +00:00
//Get the nearest enclosing parent view to aFrame.
nsIView* parentView = nsnull;
GetNearestEnclosingView(aPresContext, aFrame, &parentView);
1999-09-10 08:47:12 +00:00
if (!parentView)
return NS_OK;
parentView->GetViewManager(*getter_AddRefs(viewManager));
GetViewOffset(viewManager, parentView, parentPos);
nsIView* view = nsnull;
GetView(aPresContext, &view);
nsIView* containingView = nsnull;
nsPoint offset;
aFrame->GetOffsetFromView(aPresContext, offset, &containingView);
nsRect parentRect;
1999-09-10 08:47:12 +00:00
aFrame->GetRect(parentRect);
1999-09-29 03:30:04 +00:00
const nsStyleDisplay* disp;
GetStyleData(eStyleStruct_Display, (const nsStyleStruct*&) disp);
PRBool viewIsVisible = (NS_STYLE_VISIBILITY_VISIBLE == disp->mVisible);
nsViewVisibility oldVisibility;
view->GetVisibility(oldVisibility);
PRBool viewWasVisible = (oldVisibility == nsViewVisibility_kShow);
if (viewWasVisible && (! viewIsVisible)) {
view->SetVisibility(nsViewVisibility_kHide);
}
1999-11-23 03:02:01 +00:00
float p2t, t2p;
aPresContext->GetScaledPixelsToTwips(&p2t);
1999-11-23 03:02:01 +00:00
nsCOMPtr<nsIDeviceContext> dx;
viewManager->GetDeviceContext(*getter_AddRefs(dx));
dx->GetAppUnitsToDevUnits(t2p);
PRInt32 xpos;
PRInt32 ypos;
viewManager->ResizeView(view, mRect.width, mRect.height);
1999-09-10 08:47:12 +00:00
if (aXPos != -1 || aYPos != -1) {
// Convert the screen coords to twips
1999-11-23 03:02:01 +00:00
xpos = NSIntPixelsToTwips(aXPos, p2t);
ypos = NSIntPixelsToTwips(aYPos, p2t);
xpos += offset.x;
ypos += offset.y;
}
else {
1999-11-23 03:02:01 +00:00
xpos = parentPos.x + offset.x;
ypos = parentPos.y + offset.y;
if (aPopupAnchor == "topright" && aPopupAlign == "topleft") {
xpos += parentRect.width;
}
else if (aPopupAnchor == "topright" && aPopupAlign == "bottomright") {
xpos -= (mRect.width - parentRect.width);
ypos -= mRect.height;
}
else if (aPopupAnchor == "bottomright" && aPopupAlign == "bottomleft") {
xpos += parentRect.width;
ypos -= (mRect.height - parentRect.height);
}
else if (aPopupAnchor == "bottomright" && aPopupAlign == "topright") {
xpos -= (mRect.width - parentRect.width);
ypos += parentRect.height;
}
else if (aPopupAnchor == "topleft" && aPopupAlign == "topright") {
xpos -= mRect.width;
}
else if (aPopupAnchor == "topleft" && aPopupAlign == "bottomleft") {
ypos -= mRect.height;
}
else if (aPopupAnchor == "bottomleft" && aPopupAlign == "bottomright") {
xpos -= mRect.width;
ypos -= (mRect.height - parentRect.height);
}
else if (aPopupAnchor == "bottomleft" && aPopupAlign == "topleft") {
ypos += parentRect.height;
}
1999-09-10 08:47:12 +00:00
}
1999-11-23 03:02:01 +00:00
viewManager->MoveViewTo(view, xpos, ypos);
1999-09-10 08:47:12 +00:00
1999-11-23 03:02:01 +00:00
// Check if we fit on the screen, if not, resize and/or move so we do
nsCOMPtr<nsIPresShell> presShell;
aPresContext->GetShell(getter_AddRefs(presShell));
1999-11-23 03:02:01 +00:00
nsCOMPtr<nsIDocument> document;
presShell->GetDocument(getter_AddRefs(document));
nsCOMPtr<nsIScriptGlobalObject> scriptGlobalObject;
document->GetScriptGlobalObject(getter_AddRefs(scriptGlobalObject));
1999-11-23 03:02:01 +00:00
nsCOMPtr<nsIDOMWindow> window(do_QueryInterface(scriptGlobalObject));
nsCOMPtr<nsIDOMScreen> screen;
window->GetScreen(getter_AddRefs(screen));
PRInt32 screenWidth;
PRInt32 screenHeight;
screen->GetAvailWidth(&screenWidth);
screen->GetAvailHeight(&screenHeight);
PRInt32 screenLeft; // May be negative on MacOS!
PRInt32 screenTop; // May be negative on MacOS!
screen->GetAvailLeft(&screenLeft);
screen->GetAvailTop(&screenTop);
PRInt32 screenRight;
if(screenLeft<0)
screenRight = screenWidth + screenLeft;
else
screenRight = screenWidth - screenLeft;
PRInt32 screenBottom;
if(screenTop<0)
screenBottom = screenHeight + screenTop;
else
screenBottom = screenHeight - screenTop;
screenWidth = NSIntPixelsToTwips(screenWidth, p2t);
screenHeight = NSIntPixelsToTwips(screenHeight, p2t);
screenRight = NSIntPixelsToTwips(screenRight, p2t);
screenBottom = NSIntPixelsToTwips(screenBottom, p2t);
if(mRect.width > screenWidth || mRect.height > screenHeight) {
if(mRect.width > screenWidth) mRect.width = screenWidth;
if(mRect.height > screenHeight) mRect.height = screenHeight;
viewManager->ResizeView(view, mRect.width, mRect.height);
}
// Get pixel distance from popup widget 0,0 to screen 0,0
nsCOMPtr<nsIWidget> widget;
view->GetWidget(*getter_AddRefs(widget));
nsRect inRect, outRect;
inRect.x = 0;
inRect.y = 0;
widget->WidgetToScreen(inRect, outRect);
if(outRect.x < screenLeft || outRect.y < screenTop) {
if(outRect.x < screenLeft) {
PRInt32 diff = NSIntPixelsToTwips(screenLeft - outRect.x,p2t);
if(diff>0)
xpos += diff;
else
xpos -= diff;
}
if(outRect.y < screenTop) {
PRInt32 diff = NSIntPixelsToTwips(screenTop - outRect.y,p2t);
if(diff>0)
ypos += diff;
else
ypos -= diff;
}
viewManager->MoveViewTo(view, xpos, ypos);
}
if ((NSIntPixelsToTwips(outRect.x,p2t) + mRect.width) > screenRight) {
xpos -= (NSIntPixelsToTwips(outRect.x,p2t) + mRect.width) - screenRight;
viewManager->MoveViewTo(view, xpos, ypos);
}
if ((NSIntPixelsToTwips(outRect.y,p2t) + mRect.height) > screenBottom) {
ypos -= (NSIntPixelsToTwips(outRect.y,p2t) + mRect.height) - screenBottom;
viewManager->MoveViewTo(view, xpos, ypos);
}
1999-09-29 03:30:04 +00:00
if ((! viewWasVisible) && viewIsVisible) {
view->SetVisibility(nsViewVisibility_kShow);
}
return NS_OK;
}
NS_IMETHODIMP
nsMenuPopupFrame::DidReflow(nsIPresContext* aPresContext,
nsDidReflowStatus aStatus)
{
// Copied from nsContainerFrame reflow WITHOUT the call
// nsFrame::DidReflow(). nsFrame::DidReflow() will move us to the
// wrong place.
nsresult result = NS_OK; /* = nsFrame::DidReflow(aPresContext, aStatus) */
NS_FRAME_TRACE_OUT("nsContainerFrame::DidReflow");
return result;
}
1999-07-21 07:42:16 +00:00
NS_IMETHODIMP
1999-09-21 01:03:00 +00:00
nsMenuPopupFrame::GetNextMenuItem(nsIMenuFrame* aStart, nsIMenuFrame** aResult)
1999-07-21 07:42:16 +00:00
{
1999-09-21 01:03:00 +00:00
nsIFrame* currFrame = nsnull;
nsIFrame* startFrame = nsnull;
if (aStart) {
1999-09-21 01:03:00 +00:00
aStart->QueryInterface(kIFrameIID, (void**)&currFrame);
if (currFrame) {
startFrame = currFrame;
currFrame->GetNextSibling(&currFrame);
1999-09-21 01:03:00 +00:00
}
}
else currFrame = mFrames.FirstChild();
while (currFrame) {
1999-07-21 07:42:16 +00:00
nsCOMPtr<nsIContent> current;
currFrame->GetContent(getter_AddRefs(current));
1999-07-21 07:42:16 +00:00
// See if it's a menu item.
if (IsValidItem(current)) {
1999-09-21 01:03:00 +00:00
nsCOMPtr<nsIMenuFrame> menuFrame = do_QueryInterface(currFrame);
*aResult = menuFrame.get();
NS_IF_ADDREF(*aResult);
1999-07-21 07:42:16 +00:00
return NS_OK;
}
currFrame->GetNextSibling(&currFrame);
1999-07-21 07:42:16 +00:00
}
currFrame = mFrames.FirstChild();
1999-07-21 07:42:16 +00:00
// Still don't have anything. Try cycling from the beginning.
1999-09-21 01:03:00 +00:00
while (currFrame && currFrame != startFrame) {
1999-07-21 07:42:16 +00:00
nsCOMPtr<nsIContent> current;
currFrame->GetContent(getter_AddRefs(current));
1999-07-21 07:42:16 +00:00
// See if it's a menu item.
if (IsValidItem(current)) {
1999-09-21 01:03:00 +00:00
nsCOMPtr<nsIMenuFrame> menuFrame = do_QueryInterface(currFrame);
*aResult = menuFrame.get();
NS_IF_ADDREF(*aResult);
1999-07-21 07:42:16 +00:00
return NS_OK;
}
currFrame->GetNextSibling(&currFrame);
1999-07-21 07:42:16 +00:00
}
// No luck. Just return our start value.
*aResult = aStart;
return NS_OK;
}
NS_IMETHODIMP
1999-09-21 01:03:00 +00:00
nsMenuPopupFrame::GetPreviousMenuItem(nsIMenuFrame* aStart, nsIMenuFrame** aResult)
1999-07-21 07:42:16 +00:00
{
1999-09-21 01:03:00 +00:00
nsIFrame* currFrame = nsnull;
nsIFrame* startFrame = nsnull;
if (aStart) {
1999-09-21 01:03:00 +00:00
aStart->QueryInterface(kIFrameIID, (void**)&currFrame);
if (currFrame) {
startFrame = currFrame;
currFrame = mFrames.GetPrevSiblingFor(currFrame);
1999-09-21 01:03:00 +00:00
}
}
else currFrame = mFrames.LastChild();
while (currFrame) {
1999-07-21 07:42:16 +00:00
nsCOMPtr<nsIContent> current;
currFrame->GetContent(getter_AddRefs(current));
1999-07-21 07:42:16 +00:00
// See if it's a menu item.
if (IsValidItem(current)) {
1999-09-21 01:03:00 +00:00
nsCOMPtr<nsIMenuFrame> menuFrame = do_QueryInterface(currFrame);
*aResult = menuFrame.get();
NS_IF_ADDREF(*aResult);
1999-07-21 07:42:16 +00:00
return NS_OK;
}
currFrame = mFrames.GetPrevSiblingFor(currFrame);
1999-07-21 07:42:16 +00:00
}
currFrame = mFrames.LastChild();
// Still don't have anything. Try cycling from the end.
1999-09-21 01:03:00 +00:00
while (currFrame && currFrame != startFrame) {
1999-07-21 07:42:16 +00:00
nsCOMPtr<nsIContent> current;
currFrame->GetContent(getter_AddRefs(current));
1999-07-21 07:42:16 +00:00
// See if it's a menu item.
if (IsValidItem(current)) {
1999-09-21 01:03:00 +00:00
nsCOMPtr<nsIMenuFrame> menuFrame = do_QueryInterface(currFrame);
*aResult = menuFrame.get();
NS_IF_ADDREF(*aResult);
1999-07-21 07:42:16 +00:00
return NS_OK;
}
currFrame = mFrames.GetPrevSiblingFor(currFrame);
1999-07-21 07:42:16 +00:00
}
// No luck. Just return our start value.
*aResult = aStart;
return NS_OK;
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP nsMenuPopupFrame::SetCurrentMenuItem(nsIMenuFrame* aMenuItem)
1999-07-21 07:42:16 +00:00
{
if (mCurrentMenu == aMenuItem)
return NS_OK;
1999-09-21 01:03:00 +00:00
// Unset the current child.
if (mCurrentMenu) {
1999-09-21 01:03:00 +00:00
PRBool isOpen = PR_FALSE;
mCurrentMenu->MenuIsOpen(isOpen);
mCurrentMenu->SelectMenu(PR_FALSE);
1999-09-21 01:03:00 +00:00
if (isOpen)
mCurrentMenu->OpenMenu(PR_FALSE);
}
1999-07-21 07:42:16 +00:00
// Set the new child.
if (aMenuItem) {
1999-09-21 01:03:00 +00:00
aMenuItem->SelectMenu(PR_TRUE);
}
1999-07-21 07:42:16 +00:00
mCurrentMenu = aMenuItem;
return NS_OK;
}
NS_IMETHODIMP
nsMenuPopupFrame::CaptureMouseEvents(nsIPresContext* aPresContext, PRBool aGrabMouseEvents)
{
// get its view
nsIView* view = nsnull;
GetView(aPresContext, &view);
nsCOMPtr<nsIViewManager> viewMan;
PRBool result;
1999-09-10 08:47:12 +00:00
nsCOMPtr<nsIWidget> widget;
if (view) {
view->GetViewManager(*getter_AddRefs(viewMan));
if (viewMan) {
1999-09-10 08:47:12 +00:00
view->GetWidget(*getter_AddRefs(widget));
if (aGrabMouseEvents) {
viewMan->GrabMouseEvents(view,result);
mIsCapturingMouseEvents = PR_TRUE;
1999-09-21 01:03:00 +00:00
//widget->CaptureMouse(PR_TRUE);
} else {
viewMan->GrabMouseEvents(nsnull,result);
mIsCapturingMouseEvents = PR_FALSE;
1999-09-21 01:03:00 +00:00
//widget->CaptureMouse(PR_FALSE);
}
}
}
return NS_OK;
}
void
1999-07-23 08:36:39 +00:00
nsMenuPopupFrame::Escape(PRBool& aHandledFlag)
{
1999-07-23 08:36:39 +00:00
if (!mCurrentMenu)
return;
1999-07-23 08:36:39 +00:00
// See if our menu is open.
1999-09-21 01:03:00 +00:00
PRBool isOpen = PR_FALSE;
mCurrentMenu->MenuIsOpen(isOpen);
if (isOpen) {
1999-07-23 08:36:39 +00:00
// Let the child menu handle this.
1999-09-21 01:03:00 +00:00
mCurrentMenu->Escape(aHandledFlag);
1999-07-23 08:36:39 +00:00
if (!aHandledFlag) {
// We should close up.
1999-09-21 01:03:00 +00:00
mCurrentMenu->OpenMenu(PR_FALSE);
1999-07-23 08:36:39 +00:00
aHandledFlag = PR_TRUE;
}
return;
}
}
1999-07-24 22:02:23 +00:00
void
nsMenuPopupFrame::Enter()
{
// Give it to the child.
1999-09-21 01:03:00 +00:00
if (mCurrentMenu)
mCurrentMenu->Enter();
1999-07-24 22:02:23 +00:00
}
1999-09-21 01:03:00 +00:00
nsIMenuFrame*
nsMenuPopupFrame::FindMenuWithShortcut(PRUint32 aLetter)
{
// Enumerate over our list of frames.
nsIFrame* currFrame = mFrames.FirstChild();
while (currFrame) {
nsCOMPtr<nsIContent> current;
currFrame->GetContent(getter_AddRefs(current));
// See if it's a menu item.
if (IsValidItem(current)) {
// Get the shortcut attribute.
nsString shortcutKey = "";
current->GetAttribute(kNameSpaceID_None, nsXULAtoms::accesskey, shortcutKey);
shortcutKey.ToUpperCase();
if (shortcutKey.Length() > 0) {
// We've got something.
PRUnichar shortcutChar = shortcutKey.CharAt(0);
if (shortcutChar == aLetter) {
// We match!
1999-09-21 01:03:00 +00:00
nsCOMPtr<nsIMenuFrame> menuFrame = do_QueryInterface(currFrame);
if (menuFrame)
return menuFrame.get();
return nsnull;
}
}
}
currFrame->GetNextSibling(&currFrame);
}
return nsnull;
}
void
nsMenuPopupFrame::ShortcutNavigation(PRUint32 aLetter, PRBool& aHandledFlag)
{
if (mCurrentMenu) {
1999-09-21 01:03:00 +00:00
PRBool isOpen = PR_FALSE;
mCurrentMenu->MenuIsOpen(isOpen);
if (isOpen) {
// No way this applies to us. Give it to our child.
1999-09-21 01:03:00 +00:00
mCurrentMenu->ShortcutNavigation(aLetter, aHandledFlag);
return;
}
}
// This applies to us. Let's see if one of the shortcuts applies
1999-09-21 01:03:00 +00:00
nsIMenuFrame* result = FindMenuWithShortcut(aLetter);
if (result) {
// We got one!
aHandledFlag = PR_TRUE;
SetCurrentMenuItem(result);
1999-09-21 01:03:00 +00:00
result->OpenMenu(PR_TRUE);
result->SelectFirstItem();
1999-09-21 01:03:00 +00:00
// XXX For menu items, do an execution of the oncommand handler!
// Still needed or did I do this already? I'm going senile. - Dave
}
}
void
nsMenuPopupFrame::KeyboardNavigation(PRUint32 aDirection, PRBool& aHandledFlag)
{
// This method only gets called if we're open.
if (!mCurrentMenu && (aDirection == NS_VK_RIGHT || aDirection == NS_VK_LEFT)) {
// We've been opened, but we haven't had anything selected.
// We can handle RIGHT, but our parent handles LEFT.
if (aDirection == NS_VK_RIGHT) {
1999-09-21 01:03:00 +00:00
nsIMenuFrame* nextItem;
GetNextMenuItem(nsnull, &nextItem);
if (nextItem) {
aHandledFlag = PR_TRUE;
SetCurrentMenuItem(nextItem);
}
}
return;
}
1999-09-21 01:03:00 +00:00
PRBool isContainer = PR_FALSE;
PRBool isOpen = PR_FALSE;
if (mCurrentMenu) {
mCurrentMenu->MenuIsContainer(isContainer);
mCurrentMenu->MenuIsOpen(isOpen);
if (isOpen) {
// Give our child a shot.
1999-09-21 01:03:00 +00:00
mCurrentMenu->KeyboardNavigation(aDirection, aHandledFlag);
}
1999-09-21 01:03:00 +00:00
else if (aDirection == NS_VK_RIGHT && isContainer) {
// The menu is not yet open. Open it and select the first item.
aHandledFlag = PR_TRUE;
1999-09-21 01:03:00 +00:00
mCurrentMenu->OpenMenu(PR_TRUE);
mCurrentMenu->SelectFirstItem();
}
}
if (aHandledFlag)
return; // The child menu took it for us.
// For the vertical direction, we can move up or down.
if (aDirection == NS_VK_UP || aDirection == NS_VK_DOWN) {
1999-09-21 01:03:00 +00:00
nsIMenuFrame* nextItem;
if (aDirection == NS_VK_DOWN)
GetNextMenuItem(mCurrentMenu, &nextItem);
else GetPreviousMenuItem(mCurrentMenu, &nextItem);
SetCurrentMenuItem(nextItem);
aHandledFlag = PR_TRUE;
}
1999-09-21 01:03:00 +00:00
else if (mCurrentMenu && isContainer && isOpen) {
if (aDirection == NS_VK_LEFT) {
// Close it up.
1999-09-21 01:03:00 +00:00
mCurrentMenu->OpenMenu(PR_FALSE);
aHandledFlag = PR_TRUE;
}
1999-07-25 01:14:43 +00:00
}
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
nsMenuPopupFrame::GetParentPopup(nsIMenuParent** aMenuParent)
{
*aMenuParent = nsnull;
nsIFrame* frame;
GetParent(&frame);
if (frame) {
nsIFrame* grandparent;
frame->GetParent(&grandparent);
if (grandparent) {
nsCOMPtr<nsIMenuParent> menuParent = do_QueryInterface(grandparent);
if (menuParent) {
*aMenuParent = menuParent.get();
NS_ADDREF(*aMenuParent);
}
}
}
return NS_OK;
}
NS_IMETHODIMP
nsMenuPopupFrame::HideChain()
{
// Stop capturing rollups
// (must do this during Hide, which happens before the menu item is executed,
// since this reinstates normal event handling.)
if (nsMenuFrame::mDismissalListener)
nsMenuFrame::mDismissalListener->Unregister();
nsIFrame* frame;
GetParent(&frame);
if (frame) {
1999-09-21 01:03:00 +00:00
nsCOMPtr<nsIPopupSetFrame> popupSetFrame = do_QueryInterface(frame);
if (popupSetFrame) {
// Destroy the popup.
popupSetFrame->HidePopup();
return NS_OK;
}
nsCOMPtr<nsIMenuFrame> menuFrame = do_QueryInterface(frame);
if (!menuFrame)
return NS_OK;
menuFrame->ActivateMenu(PR_FALSE);
menuFrame->SelectMenu(PR_FALSE);
// Get the parent.
nsCOMPtr<nsIMenuParent> menuParent;
menuFrame->GetMenuParent(getter_AddRefs(menuParent));
if (menuParent)
menuParent->HideChain();
}
return NS_OK;
}
NS_IMETHODIMP
nsMenuPopupFrame::DismissChain()
{
// Stop capturing rollups
if (nsMenuFrame::mDismissalListener)
nsMenuFrame::mDismissalListener->Unregister();
// Get our menu parent.
nsIFrame* frame;
GetParent(&frame);
if (frame) {
1999-09-21 01:03:00 +00:00
nsCOMPtr<nsIPopupSetFrame> popupSetFrame = do_QueryInterface(frame);
if (popupSetFrame) {
// Destroy the popup.
popupSetFrame->DestroyPopup();
return NS_OK;
}
nsCOMPtr<nsIMenuFrame> menuFrame = do_QueryInterface(frame);
if (!menuFrame)
return NS_OK;
menuFrame->OpenMenu(PR_FALSE);
// Get the parent.
nsCOMPtr<nsIMenuParent> menuParent;
menuFrame->GetMenuParent(getter_AddRefs(menuParent));
if (menuParent)
menuParent->DismissChain();
}
return NS_OK;
}
NS_IMETHODIMP
nsMenuPopupFrame::GetWidget(nsIWidget **aWidget)
{
// Get parent view
nsIView * view = nsnull;
nsMenuPopupFrame::GetNearestEnclosingView(mPresContext, this, &view);
if (!view)
return NS_OK;
view->GetWidget(*aWidget);
return NS_OK;
}
1999-09-21 01:03:00 +00:00
NS_IMETHODIMP
nsMenuPopupFrame::CreateDismissalListener()
{
nsMenuDismissalListener *listener = new nsMenuDismissalListener();
if (!listener) return NS_ERROR_OUT_OF_MEMORY;
nsMenuFrame::mDismissalListener = listener;
NS_ADDREF(listener);
1999-09-21 01:03:00 +00:00
return NS_OK;
}
PRBool
nsMenuPopupFrame::IsValidItem(nsIContent* aContent)
{
nsCOMPtr<nsIAtom> tag;
aContent->GetTag(*getter_AddRefs(tag));
if (tag && (tag.get() == nsXULAtoms::menu ||
tag.get() == nsXULAtoms::menuitem) &&
!IsDisabled(aContent))
return PR_TRUE;
return PR_FALSE;
}
PRBool
nsMenuPopupFrame::IsDisabled(nsIContent* aContent)
{
nsString disabled = "";
aContent->GetAttribute(kNameSpaceID_None, nsHTMLAtoms::disabled, disabled);
if (disabled == "true")
return PR_TRUE;
return PR_FALSE;
}
1999-09-10 08:47:12 +00:00
NS_IMETHODIMP
nsMenuPopupFrame::HandleEvent(nsIPresContext* aPresContext,
1999-09-10 08:47:12 +00:00
nsGUIEvent* aEvent,
nsEventStatus* aEventStatus)
1999-09-10 08:47:12 +00:00
{
1999-09-21 01:03:00 +00:00
return nsBoxFrame::HandleEvent(aPresContext, aEvent, aEventStatus);
1999-09-10 08:47:12 +00:00
}
NS_IMETHODIMP
nsMenuPopupFrame::Destroy(nsIPresContext* aPresContext)
1999-09-10 08:47:12 +00:00
{
1999-09-21 01:03:00 +00:00
//nsCOMPtr<nsIDOMEventReceiver> target = do_QueryInterface(mContent);
//target->RemoveEventListener("mousemove", mMenuPopupEntryListener, PR_TRUE);
return nsBoxFrame::Destroy(aPresContext);
}
NS_IMETHODIMP
nsMenuPopupFrame::GetFrameForPoint(nsIPresContext* aPresContext,
const nsPoint& aPoint,
nsIFrame** aFrame)
1999-09-21 01:03:00 +00:00
{
nsRect rect;
GetRect(rect);
if (rect.Contains(aPoint)) {
return nsBoxFrame::GetFrameForPoint(aPresContext, aPoint, aFrame);
1999-09-21 01:03:00 +00:00
}
*aFrame = this;
1999-09-10 08:47:12 +00:00
return NS_OK;
}