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"
|
2011-10-03 12:11:31 -07:00
|
|
|
#include "nsDOMClassInfoID.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#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"
|
2010-03-18 22:02:53 -07:00
|
|
|
#include "nsQueryContentEventResult.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#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"
|
2010-09-17 11:56:53 -07:00
|
|
|
#include "nsEventStateManager.h"
|
2011-03-15 16:20:19 -07:00
|
|
|
#include "nsFrameManager.h"
|
2011-04-11 23:18:43 -07:00
|
|
|
#include "nsRefreshDriver.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"
|
2010-03-18 22:02:53 -07:00
|
|
|
#include "nsLayoutUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#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 "gfxContext.h"
|
|
|
|
#include "gfxImageSurface.h"
|
2010-02-24 11:04:32 -08:00
|
|
|
#include "nsLayoutUtils.h"
|
2010-04-02 18:58:25 -07:00
|
|
|
#include "nsComputedDOMStyle.h"
|
2010-08-27 16:15:07 -07:00
|
|
|
#include "nsIViewObserver.h"
|
|
|
|
#include "nsIPresShell.h"
|
2010-10-23 16:31:55 -07:00
|
|
|
#include "nsStyleAnimation.h"
|
|
|
|
#include "nsCSSProps.h"
|
2011-09-26 17:25:41 -07:00
|
|
|
#include "nsDOMFile.h"
|
2011-10-18 12:28:39 -07:00
|
|
|
#include "BasicLayers.h"
|
2008-12-02 17:34:07 -08:00
|
|
|
|
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
|
|
|
|
|
2010-09-03 11:01:05 -07:00
|
|
|
#include "Layers.h"
|
2011-06-11 06:38:40 -07:00
|
|
|
#include "nsIIOService.h"
|
2010-09-03 11:01:05 -07:00
|
|
|
|
2011-03-28 09:51:56 -07:00
|
|
|
#include "mozilla/dom/Element.h"
|
|
|
|
|
|
|
|
using namespace mozilla::dom;
|
2010-09-03 11:01:05 -07:00
|
|
|
using namespace mozilla::layers;
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool IsUniversalXPConnectCapable()
|
2010-03-18 22:02:53 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool hasCap = false;
|
2010-03-18 22:02:53 -07:00
|
|
|
nsresult rv = nsContentUtils::GetSecurityManager()->
|
|
|
|
IsCapabilityEnabled("UniversalXPConnect", &hasCap);
|
2011-10-17 07:59:28 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
2010-03-18 22:02:53 -07:00
|
|
|
return hasCap;
|
|
|
|
}
|
|
|
|
|
2010-01-12 05:08:43 -08:00
|
|
|
DOMCI_DATA(WindowUtils, nsDOMWindowUtils)
|
|
|
|
|
2010-11-08 06:50:44 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsDOMWindowUtils)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsDOMWindowUtils)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mWindow)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsDOMWindowUtils)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR_AMBIGUOUS(mWindow,
|
|
|
|
nsIScriptGlobalObject)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsDOMWindowUtils)
|
2007-03-22 10:30:00 -07:00
|
|
|
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
|
|
|
|
|
2010-11-08 06:50:44 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMWindowUtils)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMWindowUtils)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsDOMWindowUtils::nsDOMWindowUtils(nsGlobalWindow *aWindow)
|
|
|
|
: mWindow(aWindow)
|
|
|
|
{
|
2010-05-10 18:12:35 -07:00
|
|
|
NS_ASSERTION(mWindow->IsOuterWindow(), "How did that happen?");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsDOMWindowUtils::~nsDOMWindowUtils()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-09-03 13:10:45 -07:00
|
|
|
nsIPresShell*
|
|
|
|
nsDOMWindowUtils::GetPresShell()
|
|
|
|
{
|
|
|
|
if (!mWindow)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
nsIDocShell *docShell = mWindow->GetDocShell();
|
|
|
|
if (!docShell)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
docShell->GetPresShell(getter_AddRefs(presShell));
|
|
|
|
return presShell;
|
|
|
|
}
|
|
|
|
|
2009-01-05 17:15:13 -08:00
|
|
|
nsPresContext*
|
|
|
|
nsDOMWindowUtils::GetPresContext()
|
|
|
|
{
|
|
|
|
if (!mWindow)
|
|
|
|
return nsnull;
|
|
|
|
nsIDocShell *docShell = mWindow->GetDocShell();
|
|
|
|
if (!docShell)
|
|
|
|
return nsnull;
|
2010-03-25 06:17:11 -07:00
|
|
|
nsRefPtr<nsPresContext> presContext;
|
2009-01-05 17:15:13 -08:00
|
|
|
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
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMWindowUtils::GetDocCharsetIsForced(bool *aIsForced)
|
2007-08-11 11:37:16 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
*aIsForced = false;
|
2007-08-11 11:37:16 -07:00
|
|
|
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2007-08-11 11:37:16 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2007-08-11 11:37:16 -07:00
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
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
|
|
|
{
|
2008-06-03 17:00:37 -07:00
|
|
|
if (aCount == 0)
|
|
|
|
aCount = 1;
|
|
|
|
|
2010-09-03 13:10:45 -07:00
|
|
|
if (nsIPresShell* presShell = GetPresShell()) {
|
|
|
|
nsIFrame *rootFrame = presShell->GetRootFrame();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-09-03 13:10:45 -07:00
|
|
|
if (rootFrame) {
|
|
|
|
nsRect r(nsPoint(0, 0), rootFrame->GetSize());
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-09-03 13:10:45 -07:00
|
|
|
PRIntervalTime iStart = PR_IntervalNow();
|
2008-06-03 17:00:37 -07:00
|
|
|
|
2010-09-03 13:10:45 -07:00
|
|
|
for (PRUint32 i = 0; i < aCount; i++)
|
|
|
|
rootFrame->InvalidateWithFlags(r, nsIFrame::INVALIDATE_IMMEDIATE);
|
2008-06-03 17:00:37 -07:00
|
|
|
|
|
|
|
#if defined(MOZ_X11) && defined(MOZ_WIDGET_GTK2)
|
2010-09-03 13:10:45 -07:00
|
|
|
XSync(GDK_DISPLAY(), False);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2008-06-03 17:00:37 -07:00
|
|
|
|
2010-09-03 13:10:45 -07:00
|
|
|
*aDurationOut = PR_IntervalToMilliseconds(PR_IntervalNow() - iStart);
|
2008-06-03 17:00:37 -07:00
|
|
|
|
2010-09-03 13:10:45 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2010-09-03 13:10:45 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SetCSSViewport(float aWidthPx, float aHeightPx)
|
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(aWidthPx >= 0.0 && aHeightPx >= 0.0)) {
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIPresShell* presShell = GetPresShell();
|
|
|
|
if (!presShell) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord width = nsPresContext::CSSPixelsToAppUnits(aWidthPx);
|
|
|
|
nscoord height = nsPresContext::CSSPixelsToAppUnits(aHeightPx);
|
|
|
|
|
2010-09-24 15:41:31 -07:00
|
|
|
presShell->ResizeReflowOverride(width, height);
|
2010-09-03 13:10:45 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-03-15 16:20:19 -07:00
|
|
|
static void DestroyNsRect(void* aObject, nsIAtom* aPropertyName,
|
|
|
|
void* aPropertyValue, void* aData)
|
|
|
|
{
|
|
|
|
nsRect* rect = static_cast<nsRect*>(aPropertyValue);
|
|
|
|
delete rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SetDisplayPortForElement(float aXPx, float aYPx,
|
|
|
|
float aWidthPx, float aHeightPx,
|
|
|
|
nsIDOMElement* aElement)
|
2010-09-03 13:10:46 -07:00
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIPresShell* presShell = GetPresShell();
|
|
|
|
if (!presShell) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect displayport(nsPresContext::CSSPixelsToAppUnits(aXPx),
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(aYPx),
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(aWidthPx),
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(aHeightPx));
|
|
|
|
|
2011-03-15 16:20:19 -07:00
|
|
|
if (!aElement) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aElement);
|
|
|
|
|
|
|
|
if (!content) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect lastDisplayPort;
|
|
|
|
if (nsLayoutUtils::GetDisplayPort(content, &lastDisplayPort) &&
|
2011-04-18 20:07:23 -07:00
|
|
|
displayport.IsEqualInterior(lastDisplayPort)) {
|
2011-03-15 16:20:19 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
content->SetProperty(nsGkAtoms::DisplayPort, new nsRect(displayport),
|
|
|
|
DestroyNsRect);
|
|
|
|
|
|
|
|
nsIFrame* rootScrollFrame = presShell->GetRootScrollFrame();
|
|
|
|
if (rootScrollFrame) {
|
|
|
|
if (content == rootScrollFrame->GetContent()) {
|
2011-03-09 13:35:27 -08:00
|
|
|
// We are setting a root displayport for a document.
|
|
|
|
// The pres shell needs a special flag set.
|
2011-10-17 07:59:28 -07:00
|
|
|
presShell->SetIgnoreViewportScrolling(true);
|
2011-03-09 13:35:27 -08:00
|
|
|
|
|
|
|
// The root document currently has a widget, but we might end up
|
|
|
|
// painting content inside the displayport but outside the widget
|
|
|
|
// bounds. This ensures the document's view honors invalidations
|
|
|
|
// within the displayport.
|
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (presContext && presContext->IsRoot()) {
|
|
|
|
nsIFrame* rootFrame = presShell->GetRootFrame();
|
|
|
|
nsIView* view = rootFrame->GetView();
|
|
|
|
if (view) {
|
|
|
|
view->SetInvalidationDimensions(&displayport);
|
|
|
|
}
|
|
|
|
}
|
2011-03-15 16:20:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-09 13:35:27 -08:00
|
|
|
if (presShell) {
|
|
|
|
nsIFrame* rootFrame = presShell->FrameManager()->GetRootFrame();
|
2011-03-15 16:20:19 -07:00
|
|
|
if (rootFrame) {
|
2011-03-24 10:40:49 -07:00
|
|
|
nsIContent* rootContent =
|
|
|
|
rootScrollFrame ? rootScrollFrame->GetContent() : nsnull;
|
|
|
|
nsRect rootDisplayport;
|
|
|
|
bool usingDisplayport = rootContent &&
|
|
|
|
nsLayoutUtils::GetDisplayPort(rootContent, &rootDisplayport);
|
|
|
|
rootFrame->InvalidateWithFlags(
|
|
|
|
usingDisplayport ? rootDisplayport : rootFrame->GetVisualOverflowRect(),
|
|
|
|
nsIFrame::INVALIDATE_NO_THEBES_LAYERS);
|
2011-10-18 12:28:39 -07:00
|
|
|
|
|
|
|
// Send empty paint transaction in order to release retained layers
|
|
|
|
if (displayport.IsEmpty()) {
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (widget) {
|
|
|
|
bool isRetainingManager;
|
|
|
|
LayerManager* manager = widget->GetLayerManager(&isRetainingManager);
|
|
|
|
if (isRetainingManager) {
|
|
|
|
manager->BeginTransaction();
|
|
|
|
nsLayoutUtils::PaintFrame(nsnull, rootFrame, nsRegion(), NS_RGB(255, 255, 255),
|
|
|
|
nsLayoutUtils::PAINT_WIDGET_LAYERS |
|
|
|
|
nsLayoutUtils::PAINT_EXISTING_TRANSACTION);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-03-15 16:20:19 -07:00
|
|
|
}
|
|
|
|
}
|
2010-09-03 13:10:46 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-09-03 13:10:46 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SetResolution(float aXResolution, float aYResolution)
|
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIPresShell* presShell = GetPresShell();
|
|
|
|
return presShell ? presShell->SetResolution(aXResolution, aYResolution)
|
|
|
|
: NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
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,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIgnoreRootScrollFrame)
|
2010-08-27 16:15:07 -07:00
|
|
|
{
|
|
|
|
return SendMouseEventCommon(aType, aX, aY, aButton, aClickCount, aModifiers,
|
2011-10-17 07:59:28 -07:00
|
|
|
aIgnoreRootScrollFrame, false);
|
2010-08-27 16:15:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendMouseEventToWindow(const nsAString& aType,
|
|
|
|
float aX,
|
|
|
|
float aY,
|
|
|
|
PRInt32 aButton,
|
|
|
|
PRInt32 aClickCount,
|
|
|
|
PRInt32 aModifiers,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIgnoreRootScrollFrame)
|
2010-08-27 16:15:07 -07:00
|
|
|
{
|
|
|
|
return SendMouseEventCommon(aType, aX, aY, aButton, aClickCount, aModifiers,
|
2011-10-17 07:59:28 -07:00
|
|
|
aIgnoreRootScrollFrame, true);
|
2010-08-27 16:15:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendMouseEventCommon(const nsAString& aType,
|
|
|
|
float aX,
|
|
|
|
float aY,
|
|
|
|
PRInt32 aButton,
|
|
|
|
PRInt32 aClickCount,
|
|
|
|
PRInt32 aModifiers,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIgnoreRootScrollFrame,
|
|
|
|
bool aToWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// 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;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool contextMenuKey = 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;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
nsMouseEvent event(true, msg, widget, nsMouseEvent::eReal,
|
2007-09-18 00:25:49 -07:00
|
|
|
contextMenuKey ?
|
|
|
|
nsMouseEvent::eContextMenuKey : nsMouseEvent::eNormal);
|
2011-10-17 07:59:28 -07:00
|
|
|
event.isShift = (aModifiers & nsIDOMNSEvent::SHIFT_MASK) ? true : false;
|
|
|
|
event.isControl = (aModifiers & nsIDOMNSEvent::CONTROL_MASK) ? true : false;
|
|
|
|
event.isAlt = (aModifiers & nsIDOMNSEvent::ALT_MASK) ? true : false;
|
|
|
|
event.isMeta = (aModifiers & nsIDOMNSEvent::META_MASK) ? true : false;
|
2007-03-22 10:30:00 -07:00
|
|
|
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
|
|
|
|
2010-07-18 19:23:48 -07:00
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (!presContext)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 appPerDev = presContext->AppUnitsPerDevPixel();
|
2008-11-26 13:52:42 -08:00
|
|
|
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;
|
2010-08-27 16:15:07 -07:00
|
|
|
if (aToWindow) {
|
|
|
|
nsIPresShell* presShell = presContext->PresShell();
|
|
|
|
if (!presShell)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsCOMPtr<nsIViewObserver> vo = do_QueryInterface(presShell);
|
|
|
|
if (!vo)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsIViewManager* viewManager = presShell->GetViewManager();
|
|
|
|
if (!viewManager)
|
|
|
|
return NS_ERROR_FAILURE;
|
2011-03-29 19:24:54 -07:00
|
|
|
nsIView* view = viewManager->GetRootView();
|
|
|
|
if (!view)
|
2010-08-27 16:15:07 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
status = nsEventStatus_eIgnore;
|
2011-10-17 07:59:28 -07:00
|
|
|
return vo->HandleEvent(view, &event, false, &status);
|
2010-08-27 16:15:07 -07:00
|
|
|
}
|
2011-03-29 19:24:54 -07:00
|
|
|
return widget->DispatchEvent(&event, status);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2008-08-12 20:08:59 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2008-08-12 20:08:59 -07:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
nsMouseScrollEvent event(true, msg, widget);
|
|
|
|
event.isShift = (aModifiers & nsIDOMNSEvent::SHIFT_MASK) ? true : false;
|
|
|
|
event.isControl = (aModifiers & nsIDOMNSEvent::CONTROL_MASK) ? true : false;
|
|
|
|
event.isAlt = (aModifiers & nsIDOMNSEvent::ALT_MASK) ? true : false;
|
|
|
|
event.isMeta = (aModifiers & nsIDOMNSEvent::META_MASK) ? true : false;
|
2008-08-12 20:08:59 -07:00
|
|
|
event.button = aButton;
|
|
|
|
event.widget = widget;
|
|
|
|
event.delta = aDelta;
|
|
|
|
event.scrollFlags = aScrollFlags;
|
|
|
|
|
|
|
|
event.time = PR_IntervalNow();
|
2008-11-26 13:52:42 -08:00
|
|
|
|
2010-07-18 19:23:48 -07:00
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (!presContext)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 appPerDev = presContext->AppUnitsPerDevPixel();
|
2008-11-26 13:52:42 -08:00
|
|
|
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,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aPreventDefault,
|
|
|
|
bool* aDefaultActionTaken)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
nsKeyEvent event(true, msg, widget);
|
|
|
|
event.isShift = (aModifiers & nsIDOMNSEvent::SHIFT_MASK) ? true : false;
|
|
|
|
event.isControl = (aModifiers & nsIDOMNSEvent::CONTROL_MASK) ? true : false;
|
|
|
|
event.isAlt = (aModifiers & nsIDOMNSEvent::ALT_MASK) ? true : false;
|
|
|
|
event.isMeta = (aModifiers & nsIDOMNSEvent::META_MASK) ? true : false;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2008-05-05 16:01:07 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2008-05-05 16:01:07 -07:00
|
|
|
|
|
|
|
// 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)
|
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2009-09-22 19:31:37 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2009-09-22 19:31:37 -07:00
|
|
|
|
|
|
|
// 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)
|
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2008-06-28 00:55:30 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2008-06-28 00:55:30 -07:00
|
|
|
|
|
|
|
// 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
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2008-07-27 21:46:33 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2008-07-27 21:46:33 -07:00
|
|
|
|
|
|
|
// 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();
|
2010-06-25 06:59:57 -07:00
|
|
|
nsIPresShell* presShell = doc ? doc->GetShell() : nsnull;
|
2009-09-22 19:31:37 -07:00
|
|
|
|
|
|
|
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)
|
2010-07-02 12:11:04 -07:00
|
|
|
return frame->GetNearestWidget();
|
2009-09-22 19:31:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2007-07-12 15:57:17 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::Focus(nsIDOMElement* aElement)
|
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2007-10-10 14:03:12 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2007-10-10 14:03:12 -07:00
|
|
|
|
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
|
2010-08-11 17:03:23 -07:00
|
|
|
nsDOMWindowUtils::GarbageCollect(nsICycleCollectorListener *aListener)
|
2007-10-19 14:36:20 -07:00
|
|
|
{
|
2010-07-19 23:31:01 -07:00
|
|
|
// Always permit this in debug builds.
|
2007-10-19 14:36:20 -07:00
|
|
|
#ifndef DEBUG
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2007-10-19 14:36:20 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2007-10-19 14:36:20 -07:00
|
|
|
#endif
|
|
|
|
|
2011-02-16 15:47:12 -08:00
|
|
|
nsJSContext::GarbageCollectNow();
|
|
|
|
nsJSContext::CycleCollectNow(aListener);
|
2007-10-19 14:36:20 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2008-08-27 14:24:03 -07:00
|
|
|
|
2011-07-26 10:11:15 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::CycleCollect(nsICycleCollectorListener *aListener)
|
|
|
|
{
|
|
|
|
// Always permit this in debug builds.
|
|
|
|
#ifndef DEBUG
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
nsJSContext::CycleCollectNow(aListener);
|
|
|
|
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)
|
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2008-10-23 13:15:20 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
nsSimpleGestureEvent event(true, msg, widget, aDirection, aDelta);
|
|
|
|
event.isShift = (aModifiers & nsIDOMNSEvent::SHIFT_MASK) ? true : false;
|
|
|
|
event.isControl = (aModifiers & nsIDOMNSEvent::CONTROL_MASK) ? true : false;
|
|
|
|
event.isAlt = (aModifiers & nsIDOMNSEvent::ALT_MASK) ? true : false;
|
|
|
|
event.isMeta = (aModifiers & nsIDOMNSEvent::META_MASK) ? true : false;
|
2008-10-23 13:15:20 -07:00
|
|
|
event.time = PR_IntervalNow();
|
|
|
|
|
2010-07-18 19:23:48 -07:00
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (!presContext)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 appPerDev = presContext->AppUnitsPerDevPixel();
|
2009-01-03 04:40:26 -08:00
|
|
|
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
|
2010-04-03 04:34:24 -07:00
|
|
|
nsDOMWindowUtils::ElementFromPoint(float aX, float aY,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIgnoreRootScrollFrame,
|
|
|
|
bool aFlushLayout,
|
2008-11-04 19:58:22 -08:00
|
|
|
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
|
|
|
|
2010-04-07 17:31:26 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::NodesFromRect(float aX, float aY,
|
|
|
|
float aTopSize, float aRightSize,
|
|
|
|
float aBottomSize, float aLeftSize,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIgnoreRootScrollFrame,
|
|
|
|
bool aFlushLayout,
|
2010-04-07 17:31:26 -07:00
|
|
|
nsIDOMNodeList** aReturn)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mWindow->GetExtantDocument()));
|
|
|
|
NS_ENSURE_STATE(doc);
|
|
|
|
|
|
|
|
return doc->NodesFromRectHelper(aX, aY, aTopSize, aRightSize, aBottomSize, aLeftSize,
|
|
|
|
aIgnoreRootScrollFrame, aFlushLayout, aReturn);
|
|
|
|
}
|
|
|
|
|
2008-12-02 17:34:07 -08:00
|
|
|
static already_AddRefed<gfxImageSurface>
|
|
|
|
CanvasToImageSurface(nsIDOMHTMLCanvasElement *canvas)
|
|
|
|
{
|
2010-02-24 11:04:32 -08:00
|
|
|
nsLayoutUtils::SurfaceFromElementResult result =
|
|
|
|
nsLayoutUtils::SurfaceFromElement(canvas,
|
|
|
|
nsLayoutUtils::SFE_WANT_IMAGE_SURFACE);
|
|
|
|
return static_cast<gfxImageSurface*>(result.mSurface.forget().get());
|
2008-12-02 17:34:07 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::CompareCanvases(nsIDOMHTMLCanvasElement *aCanvas1,
|
|
|
|
nsIDOMHTMLCanvasElement *aCanvas2,
|
|
|
|
PRUint32* aMaxDifference,
|
|
|
|
PRUint32* retVal)
|
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2008-12-02 17:34:07 -08:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2008-12-02 17:34:07 -08:00
|
|
|
|
|
|
|
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++;
|
|
|
|
|
2010-02-20 05:59:07 -08:00
|
|
|
dc = NS_MAX((PRUint32)abs(p1[0] - p2[0]), dc);
|
|
|
|
dc = NS_MAX((PRUint32)abs(p1[1] - p2[1]), dc);
|
|
|
|
dc = NS_MAX((PRUint32)abs(p1[2] - p2[2]), dc);
|
|
|
|
dc = NS_MAX((PRUint32)abs(p1[3] - p2[3]), dc);
|
2008-12-02 17:34:07 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
p1 += 4;
|
|
|
|
p2 += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aMaxDifference)
|
|
|
|
*aMaxDifference = dc;
|
|
|
|
|
|
|
|
*retVal = different;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-01-05 17:15:13 -08:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMWindowUtils::GetIsMozAfterPaintPending(bool *aResult)
|
2009-01-05 17:15:13 -08:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
*aResult = false;
|
2009-01-05 17:15:13 -08:00
|
|
|
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
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMWindowUtils::DisableNonTestMouseEvents(bool aDisable)
|
2009-02-12 02:44:38 -08:00
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2009-02-12 02:44:38 -08:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2009-02-12 02:44:38 -08:00
|
|
|
|
|
|
|
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);
|
2010-03-31 05:45:32 -07:00
|
|
|
presShell->DisableNonTestMouseEvents(aDisable);
|
|
|
|
return NS_OK;
|
2009-02-12 02:44:38 -08:00
|
|
|
}
|
2009-03-03 12:11:14 -08:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMWindowUtils::SuppressEventHandling(bool aSuppress)
|
2009-03-03 12:11:14 -08:00
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2009-03-03 12:11:14 -08:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2009-03-03 12:11:14 -08:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mWindow->GetExtantDocument()));
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
if (aSuppress) {
|
|
|
|
doc->SuppressEventHandling();
|
|
|
|
} else {
|
2011-10-17 07:59:28 -07:00
|
|
|
doc->UnsuppressEventHandlingAndFireEvents(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
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMWindowUtils::GetScrollXY(bool aFlushLayout, PRInt32* aScrollX, PRInt32* aScrollY)
|
2009-03-30 05:19:06 -07:00
|
|
|
{
|
|
|
|
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);
|
2010-06-25 06:59:57 -07:00
|
|
|
nsIPresShell *presShell = doc->GetShell();
|
2009-03-30 05:19:06 -07:00
|
|
|
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
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMWindowUtils::GetIMEIsOpen(bool *aState)
|
2009-05-04 23:15:23 -07:00
|
|
|
{
|
|
|
|
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.
|
2010-11-22 22:48:45 -08:00
|
|
|
IMEContext context;
|
2011-03-25 08:03:35 -07:00
|
|
|
nsresult rv = widget->GetInputMode(context);
|
2009-05-04 23:15:23 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-11-22 22:48:45 -08:00
|
|
|
if (context.mStatus != nsIWidget::IME_STATUS_ENABLED)
|
2009-05-04 23:15:23 -07:00
|
|
|
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;
|
|
|
|
|
2010-11-22 22:48:45 -08:00
|
|
|
IMEContext context;
|
2011-03-25 08:03:35 -07:00
|
|
|
nsresult rv = widget->GetInputMode(context);
|
2010-11-22 22:48:45 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*aState = context.mStatus;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetFocusedInputType(char** aType)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aType);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMEContext context;
|
2011-03-25 08:03:35 -07:00
|
|
|
nsresult rv = widget->GetInputMode(context);
|
2010-11-22 22:48:45 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*aType = ToNewCString(context.mHTMLInputType);
|
|
|
|
return NS_OK;
|
2009-05-04 23:15:23 -07:00
|
|
|
}
|
|
|
|
|
2011-01-13 09:45:14 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::FindElementWithViewId(nsViewID aID,
|
|
|
|
nsIDOMElement** aResult)
|
|
|
|
{
|
|
|
|
if (aID == FrameMetrics::ROOT_SCROLL_ID) {
|
|
|
|
nsPresContext* presContext = GetPresContext();
|
2011-02-02 13:35:03 -08:00
|
|
|
if (!presContext) {
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
2011-01-13 09:45:14 -08:00
|
|
|
nsIDocument* document = presContext->Document();
|
2011-01-13 09:45:31 -08:00
|
|
|
mozilla::dom::Element* rootElement = document->GetRootElement();
|
|
|
|
if (!rootElement) {
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
2011-02-02 13:35:03 -08:00
|
|
|
|
2011-01-13 09:45:31 -08:00
|
|
|
CallQueryInterface(rootElement, aResult);
|
2011-01-13 09:45:14 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<nsIContent> content = nsLayoutUtils::FindContentFor(aID);
|
2011-02-02 13:35:03 -08:00
|
|
|
return content ? CallQueryInterface(content, aResult) : NS_OK;
|
2011-01-13 09:45:14 -08:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2009-10-29 04:11:02 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::DispatchDOMEventViaPresShell(nsIDOMNode* aTarget,
|
|
|
|
nsIDOMEvent* aEvent,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aTrusted,
|
|
|
|
bool* aRetVal)
|
2009-10-29 04:11:02 -07:00
|
|
|
{
|
|
|
|
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
|
|
|
|
2010-03-18 22:02:53 -07:00
|
|
|
static void
|
|
|
|
InitEvent(nsGUIEvent &aEvent, nsIntPoint *aPt = nsnull)
|
|
|
|
{
|
|
|
|
if (aPt) {
|
|
|
|
aEvent.refPoint = *aPt;
|
|
|
|
}
|
|
|
|
aEvent.time = PR_IntervalNow();
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-22 02:17:41 -07:00
|
|
|
nsDOMWindowUtils::SendCompositionEvent(const nsAString& aType,
|
|
|
|
const nsAString& aData,
|
|
|
|
const nsAString& aLocale)
|
2010-03-18 22:02:53 -07:00
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 msg;
|
|
|
|
if (aType.EqualsLiteral("compositionstart")) {
|
|
|
|
msg = NS_COMPOSITION_START;
|
|
|
|
} else if (aType.EqualsLiteral("compositionend")) {
|
|
|
|
msg = NS_COMPOSITION_END;
|
2011-09-22 02:17:41 -07:00
|
|
|
} else if (aType.EqualsLiteral("compositionupdate")) {
|
|
|
|
msg = NS_COMPOSITION_UPDATE;
|
2010-03-18 22:02:53 -07:00
|
|
|
} else {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
nsCompositionEvent compositionEvent(true, msg, widget);
|
2010-03-18 22:02:53 -07:00
|
|
|
InitEvent(compositionEvent);
|
2011-09-22 02:17:41 -07:00
|
|
|
if (msg != NS_COMPOSITION_START) {
|
|
|
|
compositionEvent.data = aData;
|
|
|
|
}
|
2010-03-18 22:02:53 -07:00
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
nsresult rv = widget->DispatchEvent(&compositionEvent, status);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
AppendClause(PRInt32 aClauseLength, PRUint32 aClauseAttr,
|
|
|
|
nsTArray<nsTextRange>* aRanges)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aRanges, "aRange is null");
|
|
|
|
if (aClauseLength == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
nsTextRange range;
|
|
|
|
range.mStartOffset = aRanges->Length() == 0 ? 0 :
|
|
|
|
aRanges->ElementAt(aRanges->Length() - 1).mEndOffset + 1;
|
|
|
|
range.mEndOffset = range.mStartOffset + aClauseLength;
|
|
|
|
NS_ASSERTION(range.mStartOffset <= range.mEndOffset, "range is invalid");
|
|
|
|
NS_PRECONDITION(aClauseAttr == NS_TEXTRANGE_RAWINPUT ||
|
|
|
|
aClauseAttr == NS_TEXTRANGE_SELECTEDRAWTEXT ||
|
|
|
|
aClauseAttr == NS_TEXTRANGE_CONVERTEDTEXT ||
|
|
|
|
aClauseAttr == NS_TEXTRANGE_SELECTEDCONVERTEDTEXT,
|
|
|
|
"aClauseAttr is invalid value");
|
|
|
|
range.mRangeType = aClauseAttr;
|
|
|
|
aRanges->AppendElement(range);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendTextEvent(const nsAString& aCompositionString,
|
|
|
|
PRInt32 aFirstClauseLength,
|
|
|
|
PRUint32 aFirstClauseAttr,
|
|
|
|
PRInt32 aSecondClauseLength,
|
|
|
|
PRUint32 aSecondClauseAttr,
|
|
|
|
PRInt32 aThirdClauseLength,
|
|
|
|
PRUint32 aThirdClauseAttr,
|
|
|
|
PRInt32 aCaretStart,
|
|
|
|
PRInt32 aCaretLength)
|
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
nsTextEvent textEvent(true, NS_TEXT_TEXT, widget);
|
2010-03-18 22:02:53 -07:00
|
|
|
InitEvent(textEvent);
|
|
|
|
|
|
|
|
nsAutoTArray<nsTextRange, 4> textRanges;
|
|
|
|
NS_ENSURE_TRUE(aFirstClauseLength >= 0, NS_ERROR_INVALID_ARG);
|
|
|
|
NS_ENSURE_TRUE(aSecondClauseLength >= 0, NS_ERROR_INVALID_ARG);
|
|
|
|
NS_ENSURE_TRUE(aThirdClauseLength >= 0, NS_ERROR_INVALID_ARG);
|
|
|
|
AppendClause(aFirstClauseLength, aFirstClauseAttr, &textRanges);
|
|
|
|
AppendClause(aSecondClauseLength, aSecondClauseAttr, &textRanges);
|
|
|
|
AppendClause(aThirdClauseLength, aThirdClauseAttr, &textRanges);
|
|
|
|
PRInt32 len = aFirstClauseLength + aSecondClauseLength + aThirdClauseLength;
|
2010-04-11 12:57:08 -07:00
|
|
|
NS_ENSURE_TRUE(len == 0 || PRUint32(len) == aCompositionString.Length(),
|
2010-03-18 22:02:53 -07:00
|
|
|
NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
if (aCaretStart >= 0) {
|
|
|
|
nsTextRange range;
|
|
|
|
range.mStartOffset = aCaretStart;
|
|
|
|
range.mEndOffset = range.mStartOffset + aCaretLength;
|
|
|
|
range.mRangeType = NS_TEXTRANGE_CARETPOSITION;
|
|
|
|
textRanges.AppendElement(range);
|
|
|
|
}
|
|
|
|
|
|
|
|
textEvent.theText = aCompositionString;
|
|
|
|
|
|
|
|
textEvent.rangeCount = textRanges.Length();
|
|
|
|
textEvent.rangeArray = textRanges.Elements();
|
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
nsresult rv = widget->DispatchEvent(&textEvent, status);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendQueryContentEvent(PRUint32 aType,
|
|
|
|
PRUint32 aOffset, PRUint32 aLength,
|
|
|
|
PRInt32 aX, PRInt32 aY,
|
|
|
|
nsIQueryContentEventResult **aResult)
|
|
|
|
{
|
|
|
|
*aResult = nsnull;
|
|
|
|
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
2010-07-27 06:38:03 -07:00
|
|
|
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);
|
|
|
|
|
|
|
|
nsPresContext* presContext = presShell->GetPresContext();
|
|
|
|
NS_ENSURE_TRUE(presContext, NS_ERROR_FAILURE);
|
|
|
|
|
2010-03-18 22:02:53 -07:00
|
|
|
// get the widget to send the event to
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aType != NS_QUERY_SELECTED_TEXT &&
|
|
|
|
aType != NS_QUERY_TEXT_CONTENT &&
|
|
|
|
aType != NS_QUERY_CARET_RECT &&
|
|
|
|
aType != NS_QUERY_TEXT_RECT &&
|
|
|
|
aType != NS_QUERY_EDITOR_RECT &&
|
|
|
|
aType != NS_QUERY_CHARACTER_AT_POINT) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> targetWidget = widget;
|
|
|
|
nsIntPoint pt(aX, aY);
|
|
|
|
|
|
|
|
if (aType == QUERY_CHARACTER_AT_POINT) {
|
|
|
|
// Looking for the widget at the point.
|
2011-10-17 07:59:28 -07:00
|
|
|
nsQueryContentEvent dummyEvent(true, NS_QUERY_CONTENT_STATE, widget);
|
2010-03-18 22:02:53 -07:00
|
|
|
InitEvent(dummyEvent, &pt);
|
|
|
|
nsIFrame* popupFrame =
|
2010-07-27 06:38:03 -07:00
|
|
|
nsLayoutUtils::GetPopupFrameForEventCoordinates(presContext->GetRootPresContext(), &dummyEvent);
|
2010-03-18 22:02:53 -07:00
|
|
|
|
|
|
|
nsIntRect widgetBounds;
|
|
|
|
nsresult rv = widget->GetClientBounds(widgetBounds);
|
2010-04-11 12:57:08 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-03-18 22:02:53 -07:00
|
|
|
|
|
|
|
// There is no popup frame at the point and the point isn't in our widget,
|
|
|
|
// we cannot process this request.
|
|
|
|
NS_ENSURE_TRUE(popupFrame || widgetBounds.Contains(pt),
|
|
|
|
NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
// Fire the event on the widget at the point
|
|
|
|
if (popupFrame) {
|
2010-07-02 12:11:04 -07:00
|
|
|
targetWidget = popupFrame->GetNearestWidget();
|
2010-03-18 22:02:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pt += widget->WidgetToScreenOffset() - targetWidget->WidgetToScreenOffset();
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
nsQueryContentEvent queryEvent(true, aType, targetWidget);
|
2010-03-18 22:02:53 -07:00
|
|
|
InitEvent(queryEvent, &pt);
|
|
|
|
|
|
|
|
switch (aType) {
|
|
|
|
case NS_QUERY_TEXT_CONTENT:
|
|
|
|
queryEvent.InitForQueryTextContent(aOffset, aLength);
|
|
|
|
break;
|
|
|
|
case NS_QUERY_CARET_RECT:
|
|
|
|
queryEvent.InitForQueryCaretRect(aOffset);
|
|
|
|
break;
|
|
|
|
case NS_QUERY_TEXT_RECT:
|
|
|
|
queryEvent.InitForQueryTextRect(aOffset, aLength);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
nsresult rv = targetWidget->DispatchEvent(&queryEvent, status);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsQueryContentEventResult* result = new nsQueryContentEventResult();
|
|
|
|
NS_ENSURE_TRUE(result, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
result->SetEventResult(widget, queryEvent);
|
|
|
|
NS_ADDREF(*aResult = result);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SendSelectionSetEvent(PRUint32 aOffset,
|
|
|
|
PRUint32 aLength,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aReverse,
|
|
|
|
bool *aResult)
|
2010-03-18 22:02:53 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
*aResult = false;
|
2010-03-18 22:02:53 -07:00
|
|
|
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// get the widget to send the event to
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
nsSelectionEvent selectionEvent(true, NS_SELECTION_SET, widget);
|
2010-03-18 22:02:53 -07:00
|
|
|
InitEvent(selectionEvent);
|
|
|
|
|
|
|
|
selectionEvent.mOffset = aOffset;
|
|
|
|
selectionEvent.mLength = aLength;
|
|
|
|
selectionEvent.mReversed = aReverse;
|
|
|
|
|
|
|
|
nsEventStatus status;
|
|
|
|
nsresult rv = widget->DispatchEvent(&selectionEvent, status);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*aResult = selectionEvent.mSucceeded;
|
|
|
|
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)
|
|
|
|
{
|
2010-03-18 22:03:41 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
2010-01-10 17:45:45 -08:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
2010-03-18 22:03:41 -07:00
|
|
|
}
|
2010-01-10 17:45:45 -08:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
nsContentCommandEvent event(true, msg, widget);
|
2010-01-10 17:45:45 -08:00
|
|
|
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;
|
|
|
|
}
|
2010-04-02 18:58:25 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetVisitedDependentComputedStyle(
|
|
|
|
nsIDOMElement *aElement, const nsAString& aPseudoElement,
|
|
|
|
const nsAString& aPropertyName, nsAString& aResult)
|
|
|
|
{
|
|
|
|
aResult.Truncate();
|
|
|
|
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMCSSStyleDeclaration> decl;
|
|
|
|
nsresult rv =
|
|
|
|
mWindow->GetComputedStyle(aElement, aPseudoElement, getter_AddRefs(decl));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
static_cast<nsComputedDOMStyle*>(decl.get())->SetExposeVisitedStyle(true);
|
2010-04-02 18:58:25 -07:00
|
|
|
rv = decl->GetPropertyValue(aPropertyName, aResult);
|
2011-10-17 07:59:28 -07:00
|
|
|
static_cast<nsComputedDOMStyle*>(decl.get())->SetExposeVisitedStyle(false);
|
2010-04-02 18:58:25 -07:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2010-04-11 13:51:00 -07:00
|
|
|
|
2010-07-01 14:53:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::EnterModalState()
|
|
|
|
{
|
|
|
|
mWindow->EnterModalState();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::LeaveModalState()
|
|
|
|
{
|
2011-02-01 19:23:00 -08:00
|
|
|
mWindow->LeaveModalState(nsnull);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::EnterModalStateWithWindow(nsIDOMWindow **aWindow)
|
|
|
|
{
|
|
|
|
*aWindow = mWindow->EnterModalState();
|
|
|
|
NS_IF_ADDREF(*aWindow);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::LeaveModalStateWithWindow(nsIDOMWindow *aWindow)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aWindow);
|
|
|
|
mWindow->LeaveModalState(aWindow);
|
2010-07-01 14:53:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMWindowUtils::IsInModalState(bool *retval)
|
2010-07-01 14:53:00 -07:00
|
|
|
{
|
|
|
|
*retval = mWindow->IsInModalState();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-04-11 13:51:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetParent()
|
|
|
|
{
|
|
|
|
// This wasn't privileged in the past, but better to expose less than more.
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXPConnect> xpc = nsContentUtils::XPConnect();
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
nsresult rv = cc->GetJSContext(&cx);
|
|
|
|
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 != 1)
|
|
|
|
return NS_ERROR_XPC_NOT_ENOUGH_ARGS;
|
|
|
|
|
|
|
|
jsval* argv;
|
|
|
|
rv = cc->GetArgvPtr(&argv);
|
|
|
|
if(NS_FAILED(rv) || !argv)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// first argument must be an object
|
|
|
|
if(JSVAL_IS_PRIMITIVE(argv[0]))
|
|
|
|
return NS_ERROR_XPC_BAD_CONVERT_JS;
|
|
|
|
|
2010-05-04 18:02:00 -07:00
|
|
|
JSObject *parent = JS_GetParent(cx, JSVAL_TO_OBJECT(argv[0]));
|
|
|
|
*rval = OBJECT_TO_JSVAL(parent);
|
|
|
|
|
2010-06-12 09:29:04 -07:00
|
|
|
// Outerize if necessary.
|
2010-05-18 14:13:22 -07:00
|
|
|
if (parent) {
|
2011-10-04 07:06:54 -07:00
|
|
|
if (JSObjectOp outerize = js::GetObjectClass(parent)->ext.outerObject)
|
2010-06-12 09:29:04 -07:00
|
|
|
*rval = OBJECT_TO_JSVAL(outerize(cx, parent));
|
2010-05-04 18:02:00 -07:00
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
cc->SetReturnValueWasSet(true);
|
2010-04-11 13:51:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-05-10 18:12:35 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetOuterWindowID(PRUint64 *aWindowID)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mWindow->IsOuterWindow(), "How did that happen?");
|
2010-10-20 17:24:15 -07:00
|
|
|
*aWindowID = mWindow->WindowID();
|
2010-05-10 18:12:35 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetCurrentInnerWindowID(PRUint64 *aWindowID)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mWindow->IsOuterWindow(), "How did that happen?");
|
|
|
|
nsGlobalWindow* inner = mWindow->GetCurrentInnerWindowInternal();
|
|
|
|
if (!inner) {
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
2010-10-20 17:24:15 -07:00
|
|
|
*aWindowID = inner->WindowID();
|
2010-05-10 18:12:35 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-07-22 14:33:37 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::SuspendTimeouts()
|
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
mWindow->SuspendTimeouts();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::ResumeTimeouts()
|
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
mWindow->ResumeTimeouts();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-09-03 11:01:05 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetLayerManagerType(nsAString& aType)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
LayerManager *mgr = widget->GetLayerManager();
|
|
|
|
if (!mgr)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
mgr->GetBackendName(aType);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-09-16 17:43:23 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2011-03-28 09:51:56 -07:00
|
|
|
ComputeAnimationValue(nsCSSProperty aProperty,
|
|
|
|
Element* aElement,
|
2010-10-23 16:31:55 -07:00
|
|
|
const nsAString& aInput,
|
|
|
|
nsStyleAnimation::Value& aOutput)
|
|
|
|
{
|
|
|
|
|
2011-03-28 09:51:56 -07:00
|
|
|
if (!nsStyleAnimation::ComputeValue(aProperty, aElement, aInput,
|
2011-10-17 07:59:28 -07:00
|
|
|
false, aOutput)) {
|
|
|
|
return false;
|
2010-10-23 16:31:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// This matches TransExtractComputedValue in nsTransitionManager.cpp.
|
|
|
|
if (aProperty == eCSSProperty_visibility) {
|
|
|
|
NS_ABORT_IF_FALSE(aOutput.GetUnit() == nsStyleAnimation::eUnit_Enumerated,
|
|
|
|
"unexpected unit");
|
|
|
|
aOutput.SetIntValue(aOutput.GetIntValue(),
|
|
|
|
nsStyleAnimation::eUnit_Visibility);
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-10-23 16:31:55 -07:00
|
|
|
}
|
|
|
|
|
2011-04-11 23:18:43 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::AdvanceTimeAndRefresh(PRInt64 aMilliseconds)
|
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetPresContext()->RefreshDriver()->AdvanceTimeAndRefresh(aMilliseconds);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::RestoreNormalRefresh()
|
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetPresContext()->RefreshDriver()->RestoreNormalRefresh();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-10-23 16:31:55 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::ComputeAnimationDistance(nsIDOMElement* aElement,
|
|
|
|
const nsAString& aProperty,
|
|
|
|
const nsAString& aValue1,
|
|
|
|
const nsAString& aValue2,
|
|
|
|
double* aResult)
|
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aElement, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Convert direction-dependent properties as appropriate, e.g.,
|
|
|
|
// border-left to border-left-value.
|
|
|
|
nsCSSProperty property = nsCSSProps::LookupProperty(aProperty);
|
|
|
|
if (property != eCSSProperty_UNKNOWN && nsCSSProps::IsShorthand(property)) {
|
|
|
|
nsCSSProperty subprop0 = *nsCSSProps::SubpropertyEntryFor(property);
|
|
|
|
if (nsCSSProps::PropHasFlags(subprop0, CSS_PROPERTY_REPORT_OTHER_NAME) &&
|
|
|
|
nsCSSProps::OtherNameFor(subprop0) == property) {
|
|
|
|
property = subprop0;
|
|
|
|
} else {
|
|
|
|
property = eCSSProperty_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ABORT_IF_FALSE(property == eCSSProperty_UNKNOWN ||
|
|
|
|
!nsCSSProps::IsShorthand(property),
|
|
|
|
"should not have shorthand");
|
|
|
|
|
|
|
|
nsStyleAnimation::Value v1, v2;
|
|
|
|
if (property == eCSSProperty_UNKNOWN ||
|
2011-03-28 09:51:56 -07:00
|
|
|
!ComputeAnimationValue(property, content->AsElement(), aValue1, v1) ||
|
|
|
|
!ComputeAnimationValue(property, content->AsElement(), aValue2, v2)) {
|
2010-10-23 16:31:55 -07:00
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!nsStyleAnimation::ComputeDistance(property, v1, v2, *aResult)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-09-16 17:43:23 -07:00
|
|
|
nsresult
|
|
|
|
nsDOMWindowUtils::RenderDocument(const nsRect& aRect,
|
|
|
|
PRUint32 aFlags,
|
|
|
|
nscolor aBackgroundColor,
|
|
|
|
gfxContext* aThebesContext)
|
|
|
|
{
|
|
|
|
// Get DOM Document
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIDOMDocument> ddoc;
|
|
|
|
rv = mWindow->GetDocument(getter_AddRefs(ddoc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Get Document
|
|
|
|
nsCOMPtr<nsIDocument> doc = do_QueryInterface(ddoc, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Get Primary Shell
|
|
|
|
nsCOMPtr<nsIPresShell> presShell = doc->GetShell();
|
|
|
|
NS_ENSURE_TRUE(presShell, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
// Render Document
|
|
|
|
return presShell->RenderDocument(aRect, aFlags, aBackgroundColor, aThebesContext);
|
|
|
|
}
|
2010-09-17 11:56:53 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetCursorType(PRInt16 *aCursor)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCursor);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isSameDoc = false;
|
2010-09-17 11:56:53 -07:00
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mWindow->GetExtantDocument()));
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (nsEventStateManager::sMouseOverDocument == doc.get()) {
|
2011-10-17 07:59:28 -07:00
|
|
|
isSameDoc = true;
|
2010-09-17 11:56:53 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while ((doc = doc->GetParentDocument()));
|
|
|
|
|
|
|
|
if (!isSameDoc) {
|
|
|
|
*aCursor = eCursor_none;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// fetch cursor value from window's widget
|
|
|
|
*aCursor = widget->GetCursor();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-10-20 17:24:16 -07:00
|
|
|
|
2011-06-11 06:38:40 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GoOnline()
|
|
|
|
{
|
|
|
|
// This is only allowed from about:neterror, which is unprivileged, so it
|
|
|
|
// can't access the io-service itself.
|
|
|
|
NS_ENSURE_TRUE(mWindow, NS_ERROR_FAILURE);
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(mWindow->GetExtantDocument()));
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
|
|
|
nsCOMPtr<nsIURI> documentURI;
|
|
|
|
documentURI = doc->GetDocumentURI();
|
|
|
|
|
|
|
|
nsCAutoString spec;
|
|
|
|
documentURI->GetSpec(spec);
|
|
|
|
if (!StringBeginsWith(spec, NS_LITERAL_CSTRING("about:neterror?")))
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIIOService> ios = do_GetService("@mozilla.org/network/io-service;1");
|
|
|
|
if (ios) {
|
2011-10-17 07:59:28 -07:00
|
|
|
ios->SetOffline(false); // !offline
|
2011-06-11 06:38:40 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
2010-10-14 09:19:27 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetDisplayDPI(float *aDPI)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIWidget> widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
*aDPI = widget->GetDPI();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-20 17:24:16 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::GetOuterWindowWithId(PRUint64 aWindowID,
|
|
|
|
nsIDOMWindow** aWindow)
|
|
|
|
{
|
2010-10-20 18:33:34 -07:00
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
2010-10-20 17:24:16 -07:00
|
|
|
*aWindow = nsGlobalWindow::GetOuterWindowWithId(aWindowID);
|
|
|
|
NS_IF_ADDREF(*aWindow);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2011-02-03 00:47:11 -08:00
|
|
|
|
2011-09-26 17:25:41 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::WrapDOMFile(nsIFile *aFile,
|
|
|
|
nsIDOMFile **aDOMFile) {
|
|
|
|
NS_ADDREF(*aDOMFile = new nsDOMFileFile(aFile));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-02-03 00:47:11 -08:00
|
|
|
#ifdef DEBUG
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2011-02-03 00:47:11 -08:00
|
|
|
CheckLeafLayers(Layer* aLayer, const nsIntPoint& aOffset, nsIntRegion* aCoveredRegion)
|
|
|
|
{
|
|
|
|
gfxMatrix transform;
|
|
|
|
if (!aLayer->GetTransform().Is2D(&transform) ||
|
|
|
|
transform.HasNonIntegerTranslation())
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-02-03 00:47:11 -08:00
|
|
|
transform.NudgeToIntegers();
|
|
|
|
nsIntPoint offset = aOffset + nsIntPoint(transform.x0, transform.y0);
|
|
|
|
|
|
|
|
Layer* child = aLayer->GetFirstChild();
|
|
|
|
if (child) {
|
|
|
|
while (child) {
|
|
|
|
if (!CheckLeafLayers(child, offset, aCoveredRegion))
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-02-03 00:47:11 -08:00
|
|
|
child = child->GetNextSibling();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
nsIntRegion rgn = aLayer->GetVisibleRegion();
|
|
|
|
rgn.MoveBy(offset);
|
|
|
|
nsIntRegion tmp;
|
|
|
|
tmp.And(rgn, *aCoveredRegion);
|
|
|
|
if (!tmp.IsEmpty())
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-02-03 00:47:11 -08:00
|
|
|
aCoveredRegion->Or(*aCoveredRegion, rgn);
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2011-02-03 00:47:11 -08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMWindowUtils::LeafLayersPartitionWindow(bool* aResult)
|
2011-02-03 00:47:11 -08:00
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
*aResult = true;
|
2011-02-03 00:47:11 -08:00
|
|
|
#ifdef DEBUG
|
|
|
|
nsIWidget* widget = GetWidget();
|
|
|
|
if (!widget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
LayerManager* manager = widget->GetLayerManager();
|
|
|
|
if (!manager)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsPresContext* presContext = GetPresContext();
|
|
|
|
if (!presContext)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
Layer* root = manager->GetRoot();
|
|
|
|
if (!root)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsIntPoint offset(0, 0);
|
|
|
|
nsIntRegion coveredRegion;
|
|
|
|
if (!CheckLeafLayers(root, offset, &coveredRegion)) {
|
2011-10-17 07:59:28 -07:00
|
|
|
*aResult = false;
|
2011-02-03 00:47:11 -08:00
|
|
|
}
|
|
|
|
if (!coveredRegion.IsEqual(root->GetVisibleRegion())) {
|
2011-10-17 07:59:28 -07:00
|
|
|
*aResult = false;
|
2011-02-03 00:47:11 -08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2011-04-26 05:31:21 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-09-28 23:19:26 -07:00
|
|
|
nsDOMWindowUtils::GetMayHaveTouchEventListeners(bool* aResult)
|
2011-04-26 05:31:21 -07:00
|
|
|
{
|
|
|
|
if (!IsUniversalXPConnectCapable()) {
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsPIDOMWindow* innerWindow = mWindow->GetCurrentInnerWindow();
|
2011-10-17 07:59:28 -07:00
|
|
|
*aResult = innerWindow ? innerWindow->HasTouchEventListeners() : false;
|
2011-04-26 05:31:21 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-10-25 20:23:26 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMWindowUtils::CheckAndClearPaintedState(nsIDOMElement* aElement, bool* aResult)
|
|
|
|
{
|
|
|
|
if (!aElement) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aElement, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsIFrame* frame = content->GetPrimaryFrame();
|
|
|
|
|
|
|
|
if (!frame) {
|
|
|
|
*aResult = false;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aResult = frame->CheckAndClearPaintedState();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|