2007-03-22 10:30:00 -07: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):
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
#include "nsIDocShell.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsDOMClassInfo.h"
|
|
|
|
#include "nsDOMError.h"
|
|
|
|
#include "nsIDOMNSEvent.h"
|
2009-10-29 04:11:02 -07:00
|
|
|
#include "nsIPrivateDOMEvent.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsDOMWindowUtils.h"
|
|
|
|
#include "nsGlobalWindow.h"
|
|
|
|
#include "nsIDocument.h"
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
|
|
|
#include "nsFocusManager.h"
|
2007-07-12 15:57:17 -07:00
|
|
|
#include "nsIEventStateManager.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-02 20:57:46 -07:00
|
|
|
#include "nsIScrollableFrame.h"
|
2009-03-30 05:19:06 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsContentUtils.h"
|
|
|
|
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsGUIEvent.h"
|
2007-08-11 11:37:16 -07:00
|
|
|
#include "nsIParser.h"
|
2007-11-06 13:47:35 -08:00
|
|
|
#include "nsJSEnvironment.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-27 14:24:03 -07:00
|
|
|
#include "nsIViewManager.h"
|
|
|
|
|
2008-12-02 17:34:07 -08:00
|
|
|
#include "nsIDOMHTMLCanvasElement.h"
|
|
|
|
#include "nsICanvasElement.h"
|
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "gfxImageSurface.h"
|
|
|
|
|
2008-06-03 17:00:37 -07:00
|
|
|
#if defined(MOZ_X11) && defined(MOZ_WIDGET_GTK2)
|
|
|
|
#include <gdk/gdk.h>
|
2007-03-22 10:30:00 -07:00
|
|
|
#include <gdk/gdkx.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN(nsDOMWindowUtils)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMWindowUtils)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMWindowUtils)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupportsWeakReference)
|
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(WindowUtils)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(nsDOMWindowUtils)
|
|
|
|
NS_IMPL_RELEASE(nsDOMWindowUtils)
|
|
|
|
|
|
|
|
nsDOMWindowUtils::nsDOMWindowUtils(nsGlobalWindow *aWindow)
|
|
|
|
: mWindow(aWindow)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDOMWindowUtils::~nsDOMWindowUtils()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-01-05 17:15:13 -08:00
|
|
|
nsPresContext*
|
|
|
|
nsDOMWindowUtils::GetPresContext()
|
|
|
|
{
|
|
|
|
if (!mWindow)
|
|
|
|
return nsnull;
|
|
|
|
nsIDocShell *docShell = mWindow->GetDocShell();
|
|
|
|
if (!docShell)
|
|
|
|
return nsnull;
|
|
|
|
nsCOMPtr<nsPresContext> presContext;
|
|
|
|
docShell->GetPresContext(getter_AddRefs(presContext));
|
|
|
|
return presContext;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetImageAnimationMode(PRUint16 *aMode)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aMode);
|
|
|
|
*aMode = 0;
|
2009-01-05 17:15:13 -08:00
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (presContext) {
|
|
|
|
*aMode = presContext->ImageAnimationMode();
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SetImageAnimationMode(PRUint16 aMode)
|
|
|
|
{
|
2009-01-05 17:15:13 -08:00
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (presContext) {
|
|
|
|
presContext->SetImageAnimationMode(aMode);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
2007-08-11 11:37:16 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetDocCharsetIsForced(PRBool *aIsForced)
|
|
|
|
{
|
|
|
|
*aIsForced = PR_FALSE;
|
|
|
|
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap)) || !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
if (mWindow) {
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mWindow->GetExtantDocument()));
|
|
|
|
*aIsForced = doc &&
|
|
|
|
doc->GetDocumentCharacterSetSource() >= kCharsetFromParentForced;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetDocumentMetadata(const nsAString& aName,
|
|
|
|
nsAString& aValue)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
if (mWindow) {
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mWindow->GetExtantDocument()));
|
|
|
|
if (doc) {
|
|
|
|
nsCOMPtr<nsIAtom> name = do_GetAtom(aName);
|
|
|
|
doc->GetHeaderData(name, aValue);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aValue.Truncate();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2008-06-03 17:00:37 -07:00
|
|
|
nsDOMWindowUtils::Redraw(PRUint32 aCount, PRUint32 *aDurationOut)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
2008-06-03 17:00:37 -07:00
|
|
|
if (aCount == 0)
|
|
|
|
aCount = 1;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIDocShell> docShell = mWindow->GetDocShell();
|
|
|
|
if (docShell) {
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
|
|
|
|
rv = docShell->GetPresShell(getter_AddRefs(presShell));
|
|
|
|
if (NS_SUCCEEDED(rv) && presShell) {
|
|
|
|
nsIFrame *rootFrame = presShell->GetRootFrame();
|
|
|
|
|
|
|
|
if (rootFrame) {
|
|
|
|
nsRect r(nsPoint(0, 0), rootFrame->GetSize());
|
|
|
|
|
2008-06-03 17:00:37 -07:00
|
|
|
PRIntervalTime iStart = PR_IntervalNow();
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < aCount; i++)
|
2008-09-18 02:47:21 -07:00
|
|
|
rootFrame->InvalidateWithFlags(r, nsIFrame::INVALIDATE_IMMEDIATE);
|
2008-06-03 17:00:37 -07:00
|
|
|
|
|
|
|
#if defined(MOZ_X11) && defined(MOZ_WIDGET_GTK2)
|
2007-03-22 10:30:00 -07:00
|
|
|
XSync(GDK_DISPLAY(), False);
|
|
|
|
#endif
|
2008-06-03 17:00:37 -07:00
|
|
|
|
|
|
|
*aDurationOut = PR_IntervalToMilliseconds(PR_IntervalNow() - iStart);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendMouseEvent(const nsAString& aType,
|
2008-11-26 13:52:42 -08:00
|
|
|
float aX,
|
|
|
|
float aY,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 aButton,
|
|
|
|
PRInt32 aClickCount,
|
2008-10-27 13:16:23 -07:00
|
|
|
PRInt32 aModifiers,
|
2008-11-28 11:53:33 -08:00
|
|
|
PRBool aIgnoreRootScrollFrame)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
2008-11-26 13:52:42 -08:00
|
|
|
nsPoint offset;
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget(&offset);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 msg;
|
2007-09-18 00:25:49 -07:00
|
|
|
PRBool contextMenuKey = PR_FALSE;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aType.EqualsLiteral("mousedown"))
|
|
|
|
msg = NS_MOUSE_BUTTON_DOWN;
|
|
|
|
else if (aType.EqualsLiteral("mouseup"))
|
|
|
|
msg = NS_MOUSE_BUTTON_UP;
|
|
|
|
else if (aType.EqualsLiteral("mousemove"))
|
|
|
|
msg = NS_MOUSE_MOVE;
|
|
|
|
else if (aType.EqualsLiteral("mouseover"))
|
|
|
|
msg = NS_MOUSE_ENTER;
|
|
|
|
else if (aType.EqualsLiteral("mouseout"))
|
|
|
|
msg = NS_MOUSE_EXIT;
|
2007-09-18 00:25:49 -07:00
|
|
|
else if (aType.EqualsLiteral("contextmenu")) {
|
2007-03-22 10:30:00 -07:00
|
|
|
msg = NS_CONTEXTMENU;
|
2007-09-18 00:25:49 -07:00
|
|
|
contextMenuKey = (aButton == 0);
|
|
|
|
} else
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2007-09-18 00:25:49 -07:00
|
|
|
nsMouseEvent event(PR_TRUE, msg, widget, nsMouseEvent::eReal,
|
|
|
|
contextMenuKey ?
|
|
|
|
nsMouseEvent::eContextMenuKey : nsMouseEvent::eNormal);
|
2007-03-22 10:30:00 -07:00
|
|
|
event.isShift = (aModifiers & nsIDOMNSEvent::SHIFT_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isControl = (aModifiers & nsIDOMNSEvent::CONTROL_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isAlt = (aModifiers & nsIDOMNSEvent::ALT_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isMeta = (aModifiers & nsIDOMNSEvent::META_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.button = aButton;
|
|
|
|
event.widget = widget;
|
|
|
|
|
|
|
|
event.clickCount = aClickCount;
|
|
|
|
event.time = PR_IntervalNow();
|
2009-10-02 14:06:42 -07:00
|
|
|
event.flags |= NS_EVENT_FLAG_SYNTHETIC_TEST_EVENT;
|
2008-11-26 13:52:42 -08:00
|
|
|
|
|
|
|
float appPerDev = float(widget->GetDeviceContext()->AppUnitsPerDevPixel());
|
|
|
|
event.refPoint.x =
|
|
|
|
NSAppUnitsToIntPixels(nsPresContext::CSSPixelsToAppUnits(aX) + offset.x,
|
|
|
|
appPerDev);
|
|
|
|
event.refPoint.y =
|
|
|
|
NSAppUnitsToIntPixels(nsPresContext::CSSPixelsToAppUnits(aY) + offset.y,
|
|
|
|
appPerDev);
|
2008-11-28 11:53:33 -08:00
|
|
|
event.ignoreRootScrollFrame = aIgnoreRootScrollFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
return widget->DispatchEvent(&event, status);
|
|
|
|
}
|
|
|
|
|
2008-08-12 20:08:59 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendMouseScrollEvent(const nsAString& aType,
|
2008-11-26 13:52:42 -08:00
|
|
|
float aX,
|
|
|
|
float aY,
|
2008-08-12 20:08:59 -07:00
|
|
|
PRInt32 aButton,
|
|
|
|
PRInt32 aScrollFlags,
|
|
|
|
PRInt32 aDelta,
|
|
|
|
PRInt32 aModifiers)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
2008-11-26 13:52:42 -08:00
|
|
|
nsPoint offset;
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget(&offset);
|
2008-08-12 20:08:59 -07:00
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
|
|
|
PRInt32 msg;
|
|
|
|
if (aType.EqualsLiteral("DOMMouseScroll"))
|
|
|
|
msg = NS_MOUSE_SCROLL;
|
2008-09-17 04:27:19 -07:00
|
|
|
else if (aType.EqualsLiteral("MozMousePixelScroll"))
|
|
|
|
msg = NS_MOUSE_PIXEL_SCROLL;
|
2008-08-12 20:08:59 -07:00
|
|
|
else
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
nsMouseScrollEvent event(PR_TRUE, msg, widget);
|
|
|
|
event.isShift = (aModifiers & nsIDOMNSEvent::SHIFT_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isControl = (aModifiers & nsIDOMNSEvent::CONTROL_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isAlt = (aModifiers & nsIDOMNSEvent::ALT_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isMeta = (aModifiers & nsIDOMNSEvent::META_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.button = aButton;
|
|
|
|
event.widget = widget;
|
|
|
|
event.delta = aDelta;
|
|
|
|
event.scrollFlags = aScrollFlags;
|
|
|
|
|
|
|
|
event.time = PR_IntervalNow();
|
2008-11-26 13:52:42 -08:00
|
|
|
|
|
|
|
float appPerDev = float(widget->GetDeviceContext()->AppUnitsPerDevPixel());
|
|
|
|
event.refPoint.x =
|
|
|
|
NSAppUnitsToIntPixels(nsPresContext::CSSPixelsToAppUnits(aX) + offset.x,
|
|
|
|
appPerDev);
|
|
|
|
event.refPoint.y =
|
|
|
|
NSAppUnitsToIntPixels(nsPresContext::CSSPixelsToAppUnits(aY) + offset.y,
|
|
|
|
appPerDev);
|
2008-08-12 20:08:59 -07:00
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
return widget->DispatchEvent(&event, status);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendKeyEvent(const nsAString& aType,
|
|
|
|
PRInt32 aKeyCode,
|
|
|
|
PRInt32 aCharCode,
|
2008-08-25 11:31:38 -07:00
|
|
|
PRInt32 aModifiers,
|
|
|
|
PRBool aPreventDefault,
|
|
|
|
PRBool* aDefaultActionTaken)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
2007-07-25 21:14:33 -07:00
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 msg;
|
|
|
|
if (aType.EqualsLiteral("keydown"))
|
|
|
|
msg = NS_KEY_DOWN;
|
|
|
|
else if (aType.EqualsLiteral("keyup"))
|
|
|
|
msg = NS_KEY_UP;
|
|
|
|
else if (aType.EqualsLiteral("keypress"))
|
|
|
|
msg = NS_KEY_PRESS;
|
|
|
|
else
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsKeyEvent event(PR_TRUE, msg, widget);
|
|
|
|
event.isShift = (aModifiers & nsIDOMNSEvent::SHIFT_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isControl = (aModifiers & nsIDOMNSEvent::CONTROL_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isAlt = (aModifiers & nsIDOMNSEvent::ALT_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isMeta = (aModifiers & nsIDOMNSEvent::META_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
|
|
|
|
event.keyCode = aKeyCode;
|
|
|
|
event.charCode = aCharCode;
|
|
|
|
event.refPoint.x = event.refPoint.y = 0;
|
|
|
|
event.time = PR_IntervalNow();
|
|
|
|
|
2008-08-25 11:31:38 -07:00
|
|
|
if (aPreventDefault) {
|
|
|
|
event.flags |= NS_EVENT_FLAG_NO_DEFAULT;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsEventStatus status;
|
2008-08-25 11:31:38 -07:00
|
|
|
nsresult rv = widget->DispatchEvent(&event, status);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*aDefaultActionTaken = (status != nsEventStatus_eConsumeNoDefault);
|
|
|
|
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-05-05 16:01:07 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendNativeKeyEvent(PRInt32 aNativeKeyboardLayout,
|
|
|
|
PRInt32 aNativeKeyCode,
|
|
|
|
PRInt32 aModifiers,
|
|
|
|
const nsAString& aCharacters,
|
|
|
|
const nsAString& aUnmodifiedCharacters)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2008-05-06 21:46:37 -07:00
|
|
|
return widget->SynthesizeNativeKeyEvent(aNativeKeyboardLayout, aNativeKeyCode,
|
|
|
|
aModifiers, aCharacters, aUnmodifiedCharacters);
|
2008-05-05 16:01:07 -07:00
|
|
|
}
|
|
|
|
|
2009-09-22 19:31:37 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendNativeMouseEvent(PRInt32 aScreenX,
|
|
|
|
PRInt32 aScreenY,
|
|
|
|
PRInt32 aNativeMessage,
|
|
|
|
PRInt32 aModifierFlags,
|
|
|
|
nsIDOMElement* aElement)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidgetForElement(aElement);
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return widget->SynthesizeNativeMouseEvent(nsIntPoint(aScreenX, aScreenY),
|
|
|
|
aNativeMessage, aModifierFlags);
|
|
|
|
}
|
|
|
|
|
2008-06-28 00:55:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::ActivateNativeMenuItemAt(const nsAString& indexString)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return widget->ActivateNativeMenuItemAt(indexString);
|
|
|
|
}
|
|
|
|
|
2008-07-27 21:46:33 -07:00
|
|
|
NS_IMETHODIMP
|
2008-10-29 22:36:01 -07:00
|
|
|
nsDOMWindowUtils::ForceUpdateNativeMenuAt(const nsAString& indexString)
|
2008-07-27 21:46:33 -07:00
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2008-10-29 22:36:01 -07:00
|
|
|
return widget->ForceUpdateNativeMenuAt(indexString);
|
2008-07-27 21:46:33 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIWidget*
|
2008-11-26 13:52:42 -08:00
|
|
|
nsDOMWindowUtils::GetWidget(nsPoint* aOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mWindow) {
|
|
|
|
nsIDocShell *docShell = mWindow->GetDocShell();
|
|
|
|
if (docShell) {
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
docShell->GetPresShell(getter_AddRefs(presShell));
|
|
|
|
if (presShell) {
|
|
|
|
nsIFrame* frame = presShell->GetRootFrame();
|
|
|
|
if (frame)
|
2008-11-26 13:52:42 -08:00
|
|
|
return frame->GetView()->GetNearestWidget(aOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
2007-07-12 15:57:17 -07:00
|
|
|
|
2009-09-22 19:31:37 -07:00
|
|
|
nsIWidget*
|
|
|
|
nsDOMWindowUtils::GetWidgetForElement(nsIDOMElement* aElement)
|
|
|
|
{
|
|
|
|
if (!aElement)
|
|
|
|
return GetWidget();
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aElement);
|
|
|
|
nsIDocument* doc = content->GetCurrentDoc();
|
|
|
|
nsIPresShell* presShell = doc ? doc->GetPrimaryShell() : nsnull;
|
|
|
|
|
|
|
|
if (presShell) {
|
2009-12-24 13:20:06 -08:00
|
|
|
nsIFrame* frame = content->GetPrimaryFrame();
|
2009-09-22 19:31:37 -07:00
|
|
|
if (!frame) {
|
|
|
|
frame = presShell->GetRootFrame();
|
|
|
|
}
|
|
|
|
if (frame)
|
|
|
|
return frame->GetWindow();
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2007-07-12 15:57:17 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::Focus(nsIDOMElement* aElement)
|
|
|
|
{
|
2007-10-10 14:03:12 -07:00
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled(
|
|
|
|
"UniversalXPConnect", &hasCap)) || !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
|
|
|
nsIFocusManager* fm = nsFocusManager::GetFocusManager();
|
|
|
|
if (fm) {
|
|
|
|
if (aElement)
|
|
|
|
fm->SetFocus(aElement, 0);
|
|
|
|
else
|
|
|
|
fm->ClearFocus(mWindow);
|
2007-07-12 15:57:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-10-19 14:36:20 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GarbageCollect()
|
|
|
|
{
|
|
|
|
// NOTE: Only do this in NON debug builds, as this function can useful
|
|
|
|
// during debugging.
|
|
|
|
#ifndef DEBUG
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->
|
|
|
|
IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
#endif
|
|
|
|
|
2007-11-06 13:47:35 -08:00
|
|
|
nsJSContext::CC();
|
|
|
|
nsJSContext::CC();
|
2007-10-19 14:36:20 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2008-08-27 14:24:03 -07:00
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::ProcessUpdates()
|
|
|
|
{
|
2009-01-05 17:15:13 -08:00
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (!presContext)
|
2008-08-27 14:24:03 -07:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
2009-03-11 08:43:08 -07:00
|
|
|
|
|
|
|
nsIPresShell* shell = presContext->GetPresShell();
|
|
|
|
if (!shell)
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
nsIViewManager *viewManager = shell->GetViewManager();
|
2008-08-27 14:24:03 -07:00
|
|
|
if (!viewManager)
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
nsIViewManager::UpdateViewBatch batch;
|
|
|
|
batch.BeginUpdateViewBatch(viewManager);
|
|
|
|
batch.EndUpdateViewBatch(NS_VMREFRESH_IMMEDIATE);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendSimpleGestureEvent(const nsAString& aType,
|
2009-01-03 04:40:26 -08:00
|
|
|
float aX,
|
|
|
|
float aY,
|
2008-10-23 13:15:20 -07:00
|
|
|
PRUint32 aDirection,
|
|
|
|
PRFloat64 aDelta,
|
|
|
|
PRInt32 aModifiers)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
2009-01-03 04:40:26 -08:00
|
|
|
nsPoint offset;
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget(&offset);
|
2008-10-23 13:15:20 -07:00
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 msg;
|
|
|
|
if (aType.EqualsLiteral("MozSwipeGesture"))
|
|
|
|
msg = NS_SIMPLE_GESTURE_SWIPE;
|
|
|
|
else if (aType.EqualsLiteral("MozMagnifyGestureStart"))
|
|
|
|
msg = NS_SIMPLE_GESTURE_MAGNIFY_START;
|
|
|
|
else if (aType.EqualsLiteral("MozMagnifyGestureUpdate"))
|
|
|
|
msg = NS_SIMPLE_GESTURE_MAGNIFY_UPDATE;
|
|
|
|
else if (aType.EqualsLiteral("MozMagnifyGesture"))
|
|
|
|
msg = NS_SIMPLE_GESTURE_MAGNIFY;
|
|
|
|
else if (aType.EqualsLiteral("MozRotateGestureStart"))
|
|
|
|
msg = NS_SIMPLE_GESTURE_ROTATE_START;
|
|
|
|
else if (aType.EqualsLiteral("MozRotateGestureUpdate"))
|
|
|
|
msg = NS_SIMPLE_GESTURE_ROTATE_UPDATE;
|
|
|
|
else if (aType.EqualsLiteral("MozRotateGesture"))
|
|
|
|
msg = NS_SIMPLE_GESTURE_ROTATE;
|
2009-04-02 12:34:31 -07:00
|
|
|
else if (aType.EqualsLiteral("MozTapGesture"))
|
|
|
|
msg = NS_SIMPLE_GESTURE_TAP;
|
|
|
|
else if (aType.EqualsLiteral("MozPressTapGesture"))
|
|
|
|
msg = NS_SIMPLE_GESTURE_PRESSTAP;
|
2008-10-23 13:15:20 -07:00
|
|
|
else
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsSimpleGestureEvent event(PR_TRUE, msg, widget, aDirection, aDelta);
|
|
|
|
event.isShift = (aModifiers & nsIDOMNSEvent::SHIFT_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isControl = (aModifiers & nsIDOMNSEvent::CONTROL_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isAlt = (aModifiers & nsIDOMNSEvent::ALT_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.isMeta = (aModifiers & nsIDOMNSEvent::META_MASK) ? PR_TRUE : PR_FALSE;
|
|
|
|
event.time = PR_IntervalNow();
|
|
|
|
|
2009-01-03 04:40:26 -08:00
|
|
|
float appPerDev = float(widget->GetDeviceContext()->AppUnitsPerDevPixel());
|
|
|
|
event.refPoint.x =
|
|
|
|
NSAppUnitsToIntPixels(nsPresContext::CSSPixelsToAppUnits(aX) + offset.x,
|
|
|
|
appPerDev);
|
|
|
|
event.refPoint.y =
|
|
|
|
NSAppUnitsToIntPixels(nsPresContext::CSSPixelsToAppUnits(aY) + offset.y,
|
|
|
|
appPerDev);
|
|
|
|
|
2008-10-23 13:15:20 -07:00
|
|
|
nsEventStatus status;
|
|
|
|
return widget->DispatchEvent(&event, status);
|
|
|
|
}
|
2008-11-04 19:58:22 -08:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::ElementFromPoint(PRInt32 aX, PRInt32 aY,
|
|
|
|
PRBool aIgnoreRootScrollFrame,
|
|
|
|
PRBool aFlushLayout,
|
|
|
|
nsIDOMElement** aReturn)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mWindow->GetExtantDocument()));
|
|
|
|
NS_ENSURE_STATE(doc);
|
2009-03-30 05:19:06 -07:00
|
|
|
|
2008-11-04 19:58:22 -08:00
|
|
|
return doc->ElementFromPointHelper(aX, aY, aIgnoreRootScrollFrame, aFlushLayout,
|
|
|
|
aReturn);
|
|
|
|
}
|
2008-12-02 17:34:07 -08:00
|
|
|
|
|
|
|
static already_AddRefed<gfxImageSurface>
|
|
|
|
CanvasToImageSurface(nsIDOMHTMLCanvasElement *canvas)
|
|
|
|
{
|
|
|
|
PRUint32 w, h;
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsICanvasElement> elt = do_QueryInterface(canvas);
|
|
|
|
rv = elt->GetSize(&w, &h);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
nsRefPtr<gfxImageSurface> img = new gfxImageSurface(gfxIntSize(w, h), gfxASurface::ImageFormatARGB32);
|
|
|
|
if (img == nsnull)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
nsRefPtr<gfxContext> ctx = new gfxContext(img);
|
|
|
|
if (ctx == nsnull)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
ctx->SetOperator(gfxContext::OPERATOR_CLEAR);
|
|
|
|
ctx->Paint();
|
|
|
|
|
|
|
|
ctx->SetOperator(gfxContext::OPERATOR_OVER);
|
2009-06-17 13:31:18 -07:00
|
|
|
rv = elt->RenderContexts(ctx, gfxPattern::FILTER_NEAREST);
|
2008-12-02 17:34:07 -08:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
ctx = nsnull;
|
|
|
|
|
|
|
|
return img.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::CompareCanvases(nsIDOMHTMLCanvasElement *aCanvas1,
|
|
|
|
nsIDOMHTMLCanvasElement *aCanvas2,
|
|
|
|
PRUint32* aMaxDifference,
|
|
|
|
PRUint32* retVal)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap)) || !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
if (aCanvas1 == nsnull ||
|
|
|
|
aCanvas2 == nsnull ||
|
|
|
|
retVal == nsnull)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsRefPtr<gfxImageSurface> img1 = CanvasToImageSurface(aCanvas1);
|
|
|
|
nsRefPtr<gfxImageSurface> img2 = CanvasToImageSurface(aCanvas2);
|
|
|
|
|
|
|
|
if (img1 == nsnull || img2 == nsnull ||
|
|
|
|
img1->GetSize() != img2->GetSize() ||
|
|
|
|
img1->Stride() != img2->Stride())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
int v;
|
|
|
|
gfxIntSize size = img1->GetSize();
|
|
|
|
PRUint32 stride = img1->Stride();
|
|
|
|
|
|
|
|
// we can optimize for the common all-pass case
|
|
|
|
if (stride == (PRUint32) size.width * 4) {
|
|
|
|
v = memcmp(img1->Data(), img2->Data(), size.width * size.height * 4);
|
|
|
|
if (v == 0) {
|
|
|
|
if (aMaxDifference)
|
|
|
|
*aMaxDifference = 0;
|
|
|
|
*retVal = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 dc = 0;
|
|
|
|
PRUint32 different = 0;
|
|
|
|
|
|
|
|
for (int j = 0; j < size.height; j++) {
|
|
|
|
unsigned char *p1 = img1->Data() + j*stride;
|
|
|
|
unsigned char *p2 = img2->Data() + j*stride;
|
|
|
|
v = memcmp(p1, p2, stride);
|
|
|
|
|
|
|
|
if (v) {
|
|
|
|
for (int i = 0; i < size.width; i++) {
|
|
|
|
if (*(PRUint32*) p1 != *(PRUint32*) p2) {
|
|
|
|
|
|
|
|
different++;
|
|
|
|
|
|
|
|
dc = PR_MAX(abs(p1[0] - p2[0]), dc);
|
|
|
|
dc = PR_MAX(abs(p1[1] - p2[1]), dc);
|
|
|
|
dc = PR_MAX(abs(p1[2] - p2[2]), dc);
|
|
|
|
dc = PR_MAX(abs(p1[3] - p2[3]), dc);
|
|
|
|
}
|
|
|
|
|
|
|
|
p1 += 4;
|
|
|
|
p2 += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aMaxDifference)
|
|
|
|
*aMaxDifference = dc;
|
|
|
|
|
|
|
|
*retVal = different;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-01-05 17:15:13 -08:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetIsMozAfterPaintPending(PRBool *aResult)
|
|
|
|
{
|
|
|
|
*aResult = PR_FALSE;
|
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (!presContext)
|
|
|
|
return NS_OK;
|
|
|
|
*aResult = presContext->IsDOMPaintEventPending();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-02-12 02:44:38 -08:00
|
|
|
|
2009-02-26 16:21:55 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::ClearMozAfterPaintEvents()
|
|
|
|
{
|
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (!presContext)
|
|
|
|
return NS_OK;
|
|
|
|
presContext->ClearMozAfterPaintEvents();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-02-12 02:44:38 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::DisableNonTestMouseEvents(PRBool aDisable)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->
|
|
|
|
IsCapabilityEnabled("UniversalXPConnect", &hasCap)) ||
|
|
|
|
!hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE(mWindow, NS_ERROR_FAILURE);
|
|
|
|
nsIDocShell *docShell = mWindow->GetDocShell();
|
|
|
|
NS_ENSURE_TRUE(docShell, NS_ERROR_FAILURE);
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
docShell->GetPresShell(getter_AddRefs(presShell));
|
|
|
|
NS_ENSURE_TRUE(presShell, NS_ERROR_FAILURE);
|
|
|
|
return presShell->DisableNonTestMouseEvents(aDisable);
|
|
|
|
}
|
2009-03-03 12:11:14 -08:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SuppressEventHandling(PRBool aSuppress)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap)) || !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mWindow->GetExtantDocument()));
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
if (aSuppress) {
|
|
|
|
doc->SuppressEventHandling();
|
|
|
|
} else {
|
2009-03-25 07:11:11 -07:00
|
|
|
doc->UnsuppressEventHandlingAndFireEvents(PR_TRUE);
|
2009-03-03 12:11:14 -08:00
|
|
|
}
|
2009-03-30 05:19:06 -07:00
|
|
|
|
2009-03-03 12:11:14 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-03-30 05:19:06 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetScrollXY(PRBool aFlushLayout, PRInt32* aScrollX, PRInt32* aScrollY)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mWindow->GetExtantDocument()));
|
|
|
|
NS_ENSURE_STATE(doc);
|
|
|
|
|
|
|
|
if (aFlushLayout) {
|
|
|
|
doc->FlushPendingNotifications(Flush_Layout);
|
|
|
|
}
|
|
|
|
|
2009-09-02 20:57:46 -07:00
|
|
|
nsPoint scrollPos(0,0);
|
2009-03-30 05:19:06 -07:00
|
|
|
nsIPresShell *presShell = doc->GetPrimaryShell();
|
|
|
|
if (presShell) {
|
2009-09-02 20:57:46 -07:00
|
|
|
nsIScrollableFrame* sf = presShell->GetRootScrollFrameAsScrollable();
|
|
|
|
if (sf) {
|
|
|
|
scrollPos = sf->GetScrollPosition();
|
2009-03-30 05:19:06 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-02 20:57:46 -07:00
|
|
|
*aScrollX = nsPresContext::AppUnitsToIntCSSPixels(scrollPos.x);
|
|
|
|
*aScrollY = nsPresContext::AppUnitsToIntCSSPixels(scrollPos.y);
|
2009-03-30 05:19:06 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-05-04 23:15:23 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetIMEIsOpen(PRBool *aState)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aState);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Open state should not be available when IME is not enabled.
|
|
|
|
PRUint32 enabled;
|
|
|
|
nsresult rv = widget->GetIMEEnabled(&enabled);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (enabled != nsIWidget::IME_STATUS_ENABLED)
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
|
|
|
|
return widget->GetIMEOpenState(aState);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetIMEStatus(PRUint32 *aState)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aState);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return widget->GetIMEEnabled(aState);
|
|
|
|
}
|
|
|
|
|
2009-08-03 14:41:36 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetScreenPixelsPerCSSPixel(float* aScreenPixels)
|
|
|
|
{
|
|
|
|
*aScreenPixels = 1;
|
|
|
|
|
|
|
|
if (!nsContentUtils::IsCallerTrustedForRead())
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (!presContext)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
*aScreenPixels = float(nsPresContext::AppUnitsPerCSSPixel())/
|
|
|
|
presContext->AppUnitsPerDevPixel();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-10-16 15:19:01 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetCOWForObject()
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->
|
|
|
|
IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
2009-12-14 13:58:50 -08:00
|
|
|
nsCOMPtr<nsIXPConnect> xpc = nsContentUtils::XPConnect();
|
2009-10-16 15:19:01 -07:00
|
|
|
|
|
|
|
// get the xpconnect native call context
|
|
|
|
nsAXPCNativeCallContext *cc = nsnull;
|
|
|
|
xpc->GetCurrentNativeCallContext(&cc);
|
|
|
|
if(!cc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Get JSContext of current call
|
|
|
|
JSContext* cx;
|
2009-12-14 13:58:50 -08:00
|
|
|
nsresult rv = cc->GetJSContext(&cx);
|
2009-10-16 15:19:01 -07:00
|
|
|
if(NS_FAILED(rv) || !cx)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// get place for return value
|
|
|
|
jsval *rval = nsnull;
|
|
|
|
rv = cc->GetRetValPtr(&rval);
|
|
|
|
if(NS_FAILED(rv) || !rval)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// get argc and argv and verify arg count
|
|
|
|
PRUint32 argc;
|
|
|
|
rv = cc->GetArgc(&argc);
|
|
|
|
if(NS_FAILED(rv))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if(argc < 2)
|
|
|
|
return NS_ERROR_XPC_NOT_ENOUGH_ARGS;
|
|
|
|
|
|
|
|
jsval* argv;
|
|
|
|
rv = cc->GetArgvPtr(&argv);
|
|
|
|
if(NS_FAILED(rv) || !argv)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// first and second params must be JSObjects
|
|
|
|
if(JSVAL_IS_PRIMITIVE(argv[0]) ||
|
|
|
|
JSVAL_IS_PRIMITIVE(argv[1]))
|
|
|
|
return NS_ERROR_XPC_BAD_CONVERT_JS;
|
|
|
|
|
|
|
|
JSObject *scope = JSVAL_TO_OBJECT(argv[0]);
|
|
|
|
JSObject *object = JSVAL_TO_OBJECT(argv[1]);
|
|
|
|
rv = xpc->GetCOWForObject(cx, JS_GetGlobalForObject(cx, scope),
|
|
|
|
object, rval);
|
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
cc->SetReturnValueWasSet(PR_TRUE);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-10-29 04:11:02 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::DispatchDOMEventViaPresShell(nsIDOMNode* aTarget,
|
|
|
|
nsIDOMEvent* aEvent,
|
|
|
|
PRBool aTrusted,
|
|
|
|
PRBool* aRetVal)
|
|
|
|
{
|
|
|
|
if (!nsContentUtils::IsCallerTrustedForRead()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
NS_ENSURE_STATE(presContext);
|
|
|
|
nsCOMPtr<nsIPresShell> shell = presContext->GetPresShell();
|
|
|
|
NS_ENSURE_STATE(shell);
|
|
|
|
nsCOMPtr<nsIPrivateDOMEvent> event = do_QueryInterface(aEvent);
|
|
|
|
NS_ENSURE_STATE(event);
|
|
|
|
event->SetTrusted(aTrusted);
|
|
|
|
nsEvent* internalEvent = event->GetInternalNSEvent();
|
|
|
|
NS_ENSURE_STATE(internalEvent);
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aTarget);
|
|
|
|
NS_ENSURE_STATE(content);
|
|
|
|
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
shell->HandleEventWithTarget(internalEvent, nsnull, content,
|
|
|
|
&status);
|
|
|
|
*aRetVal = (status != nsEventStatus_eConsumeNoDefault);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-12-14 13:58:50 -08:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-01-10 17:45:45 -08:00
|
|
|
nsDOMWindowUtils::SendContentCommandEvent(const nsAString& aType,
|
|
|
|
nsITransferable * aTransferable)
|
|
|
|
{
|
|
|
|
PRBool hasCap = PR_FALSE;
|
|
|
|
if (NS_FAILED(nsContentUtils::GetSecurityManager()->IsCapabilityEnabled("UniversalXPConnect", &hasCap))
|
|
|
|
|| !hasCap)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 msg;
|
|
|
|
if (aType.EqualsLiteral("cut"))
|
|
|
|
msg = NS_CONTENT_COMMAND_CUT;
|
|
|
|
else if (aType.EqualsLiteral("copy"))
|
|
|
|
msg = NS_CONTENT_COMMAND_COPY;
|
|
|
|
else if (aType.EqualsLiteral("paste"))
|
|
|
|
msg = NS_CONTENT_COMMAND_PASTE;
|
|
|
|
else if (aType.EqualsLiteral("delete"))
|
|
|
|
msg = NS_CONTENT_COMMAND_DELETE;
|
|
|
|
else if (aType.EqualsLiteral("undo"))
|
|
|
|
msg = NS_CONTENT_COMMAND_UNDO;
|
|
|
|
else if (aType.EqualsLiteral("redo"))
|
|
|
|
msg = NS_CONTENT_COMMAND_REDO;
|
|
|
|
else if (aType.EqualsLiteral("pasteTransferable"))
|
|
|
|
msg = NS_CONTENT_COMMAND_PASTE_TRANSFERABLE;
|
|
|
|
else
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsContentCommandEvent event(PR_TRUE, msg, widget);
|
|
|
|
if (msg == NS_CONTENT_COMMAND_PASTE_TRANSFERABLE) {
|
|
|
|
event.mTransferable = aTransferable;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
return widget->DispatchEvent(&event, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-12-14 13:58:50 -08:00
|
|
|
nsDOMWindowUtils::GetClassName(char **aName)
|
|
|
|
{
|
|
|
|
if (!nsContentUtils::IsCallerTrustedForRead()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the xpconnect native call context
|
|
|
|
nsAXPCNativeCallContext *cc = nsnull;
|
|
|
|
nsContentUtils::XPConnect()->GetCurrentNativeCallContext(&cc);
|
|
|
|
if(!cc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Get JSContext of current call
|
|
|
|
JSContext* cx;
|
|
|
|
nsresult rv = cc->GetJSContext(&cx);
|
|
|
|
if(NS_FAILED(rv) || !cx)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// get argc and argv and verify arg count
|
|
|
|
PRUint32 argc;
|
|
|
|
rv = cc->GetArgc(&argc);
|
|
|
|
if(NS_FAILED(rv))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if(argc < 1)
|
|
|
|
return NS_ERROR_XPC_NOT_ENOUGH_ARGS;
|
|
|
|
|
|
|
|
jsval* argv;
|
|
|
|
rv = cc->GetArgvPtr(&argv);
|
|
|
|
if(NS_FAILED(rv) || !argv)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Our argument must be a non-null object.
|
|
|
|
if(JSVAL_IS_PRIMITIVE(argv[0]))
|
|
|
|
return NS_ERROR_XPC_BAD_CONVERT_JS;
|
|
|
|
|
|
|
|
*aName = NS_strdup(JS_GET_CLASS(cx, JSVAL_TO_OBJECT(argv[0]))->name);
|
|
|
|
return *aName ? NS_OK : NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|