2004-06-20 16:42:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2004-06-20 16:42:13 +00:00
|
|
|
|
2012-11-20 01:05:34 +00:00
|
|
|
#ifndef nsDOMWindowUtils_h_
|
|
|
|
#define nsDOMWindowUtils_h_
|
|
|
|
|
2004-06-20 16:42:13 +00:00
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsWeakReference.h"
|
|
|
|
|
|
|
|
#include "nsIDOMWindowUtils.h"
|
2012-04-25 03:00:02 +00:00
|
|
|
#include "nsEvent.h"
|
2012-06-15 02:31:55 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2004-06-20 16:42:13 +00:00
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
class nsGlobalWindow;
|
2010-09-03 20:10:45 +00:00
|
|
|
class nsIPresShell;
|
2004-06-20 16:42:13 +00:00
|
|
|
|
2012-06-15 02:31:55 +00:00
|
|
|
class nsDOMWindowUtils MOZ_FINAL : public nsIDOMWindowUtils,
|
|
|
|
public nsSupportsWeakReference
|
2004-06-20 16:42:13 +00:00
|
|
|
{
|
|
|
|
public:
|
2004-12-10 19:48:22 +00:00
|
|
|
nsDOMWindowUtils(nsGlobalWindow *aWindow);
|
2004-06-20 16:42:13 +00:00
|
|
|
~nsDOMWindowUtils();
|
2012-04-02 02:23:51 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
2004-06-20 16:42:13 +00:00
|
|
|
NS_DECL_NSIDOMWINDOWUTILS
|
|
|
|
|
|
|
|
protected:
|
2012-04-02 02:23:51 +00:00
|
|
|
nsWeakPtr mWindow;
|
2007-02-26 21:14:19 +00:00
|
|
|
|
2010-07-19 02:23:48 +00:00
|
|
|
// If aOffset is non-null, it gets filled in with the offset of the root
|
|
|
|
// frame of our window to the nearest widget in the app units of our window.
|
|
|
|
// Add this offset to any event offset we're given to make it relative to the
|
|
|
|
// widget returned by GetWidget.
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIWidget* GetWidget(nsPoint* aOffset = nullptr);
|
2009-09-23 02:31:37 +00:00
|
|
|
nsIWidget* GetWidgetForElement(nsIDOMElement* aElement);
|
2009-01-06 01:15:13 +00:00
|
|
|
|
2010-09-03 20:10:45 +00:00
|
|
|
nsIPresShell* GetPresShell();
|
2009-01-06 01:15:13 +00:00
|
|
|
nsPresContext* GetPresContext();
|
2010-08-27 23:15:07 +00:00
|
|
|
|
|
|
|
NS_IMETHOD SendMouseEventCommon(const nsAString& aType,
|
|
|
|
float aX,
|
|
|
|
float aY,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aButton,
|
|
|
|
int32_t aClickCount,
|
|
|
|
int32_t aModifiers,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIgnoreRootScrollFrame,
|
2012-08-14 14:27:39 +00:00
|
|
|
float aPressure,
|
|
|
|
unsigned short aInputSourceArg,
|
2013-02-05 21:40:34 +00:00
|
|
|
bool aToWindow,
|
|
|
|
bool *aPreventDefault);
|
2012-04-25 03:00:02 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static mozilla::widget::Modifiers GetWidgetModifiers(int32_t aModifiers);
|
2004-06-20 16:42:13 +00:00
|
|
|
};
|
2012-11-20 01:05:34 +00:00
|
|
|
|
|
|
|
#endif
|