2001-09-25 22:43:09 +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/. */
|
1999-01-28 22:24:29 +00:00
|
|
|
|
2011-12-04 17:07:00 +00:00
|
|
|
#include "mozilla/Hal.h"
|
1999-01-28 22:24:29 +00:00
|
|
|
#include "nsScreen.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIDocShell.h"
|
2006-04-08 01:46:06 +00:00
|
|
|
#include "nsPresContext.h"
|
1999-06-11 21:19:24 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2011-10-03 19:11:31 +00:00
|
|
|
#include "nsDOMClassInfoID.h"
|
2011-12-04 17:07:00 +00:00
|
|
|
#include "nsIDocShellTreeItem.h"
|
2008-07-26 16:14:49 +00:00
|
|
|
#include "nsLayoutUtils.h"
|
2012-03-14 10:10:48 +00:00
|
|
|
#include "nsDOMEvent.h"
|
2012-05-11 00:49:34 +00:00
|
|
|
#include "nsGlobalWindow.h"
|
2012-09-11 10:55:08 +00:00
|
|
|
#include "nsJSUtils.h"
|
2011-12-04 17:07:00 +00:00
|
|
|
|
|
|
|
using namespace mozilla;
|
2012-03-14 10:10:48 +00:00
|
|
|
using namespace mozilla::dom;
|
2011-12-04 17:07:00 +00:00
|
|
|
|
2012-03-14 18:14:53 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
bool
|
|
|
|
IsChromeType(nsIDocShell *aDocShell)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> ds = do_QueryInterface(aDocShell);
|
|
|
|
if (!ds) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t itemType;
|
2012-03-14 18:14:53 +00:00
|
|
|
ds->GetItemType(&itemType);
|
|
|
|
return itemType == nsIDocShellTreeItem::typeChrome;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
2012-03-14 10:10:48 +00:00
|
|
|
/* static */ already_AddRefed<nsScreen>
|
|
|
|
nsScreen::Create(nsPIDOMWindow* aWindow)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2012-03-29 16:31:29 +00:00
|
|
|
MOZ_ASSERT(aWindow);
|
|
|
|
|
2012-03-14 10:10:48 +00:00
|
|
|
if (!aWindow->GetDocShell()) {
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2012-03-14 10:10:48 +00:00
|
|
|
}
|
|
|
|
|
2012-03-29 16:31:29 +00:00
|
|
|
nsCOMPtr<nsIScriptGlobalObject> sgo =
|
|
|
|
do_QueryInterface(static_cast<nsPIDOMWindow*>(aWindow));
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ENSURE_TRUE(sgo, nullptr);
|
2012-03-14 10:10:48 +00:00
|
|
|
|
|
|
|
nsRefPtr<nsScreen> screen = new nsScreen();
|
|
|
|
screen->BindToOwner(aWindow);
|
|
|
|
|
2012-05-08 21:36:07 +00:00
|
|
|
hal::RegisterScreenConfigurationObserver(screen);
|
|
|
|
hal::ScreenConfiguration config;
|
|
|
|
hal::GetCurrentScreenConfiguration(&config);
|
|
|
|
screen->mOrientation = config.orientation();
|
2012-03-14 10:10:48 +00:00
|
|
|
|
|
|
|
return screen.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsScreen::nsScreen()
|
2012-07-30 14:20:58 +00:00
|
|
|
: mEventListener(nullptr)
|
2012-03-14 10:10:48 +00:00
|
|
|
{
|
2012-02-09 10:29:09 +00:00
|
|
|
}
|
1999-01-28 22:24:29 +00:00
|
|
|
|
2012-06-22 08:52:47 +00:00
|
|
|
void
|
|
|
|
nsScreen::Reset()
|
|
|
|
{
|
|
|
|
hal::UnlockScreenOrientation();
|
2012-06-22 08:53:23 +00:00
|
|
|
|
|
|
|
if (mEventListener) {
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> target = do_QueryInterface(GetOwner());
|
|
|
|
if (target) {
|
|
|
|
target->RemoveSystemEventListener(NS_LITERAL_STRING("mozfullscreenchange"),
|
2012-09-11 13:15:43 +00:00
|
|
|
mEventListener, /* usecapture */ true);
|
2012-06-22 08:53:23 +00:00
|
|
|
}
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
mEventListener = nullptr;
|
2012-06-22 08:53:23 +00:00
|
|
|
}
|
2012-06-22 08:52:47 +00:00
|
|
|
}
|
|
|
|
|
2012-02-09 15:55:54 +00:00
|
|
|
nsScreen::~nsScreen()
|
|
|
|
{
|
2012-06-22 08:52:47 +00:00
|
|
|
Reset();
|
2012-05-08 21:36:07 +00:00
|
|
|
hal::UnregisterScreenConfigurationObserver(this);
|
2012-02-09 15:55:54 +00:00
|
|
|
}
|
2012-02-09 10:29:09 +00:00
|
|
|
|
2012-02-09 15:55:54 +00:00
|
|
|
|
2012-02-09 16:42:07 +00:00
|
|
|
DOMCI_DATA(Screen, nsScreen)
|
2012-02-09 15:55:54 +00:00
|
|
|
|
2012-03-14 10:10:48 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsScreen)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(nsScreen,
|
|
|
|
nsDOMEventTargetHelper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(nsScreen,
|
|
|
|
nsDOMEventTargetHelper)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
// QueryInterface implementation for nsScreen
|
2012-03-14 10:10:48 +00:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(nsScreen)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMScreen)
|
2012-03-14 10:10:48 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMScreen)
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(Screen)
|
2012-03-14 10:10:48 +00:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(nsDOMEventTargetHelper)
|
2012-03-14 18:14:53 +00:00
|
|
|
|
2012-03-14 10:10:48 +00:00
|
|
|
NS_IMPL_ADDREF_INHERITED(nsScreen, nsDOMEventTargetHelper)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(nsScreen, nsDOMEventTargetHelper)
|
2012-03-14 18:14:53 +00:00
|
|
|
|
2012-03-14 10:10:48 +00:00
|
|
|
NS_IMPL_EVENT_HANDLER(nsScreen, mozorientationchange)
|
2012-03-14 18:14:53 +00:00
|
|
|
|
2000-04-20 02:00:55 +00:00
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetTop(int32_t* aTop)
|
2000-04-20 02:00:55 +00:00
|
|
|
{
|
2003-09-19 21:06:52 +00:00
|
|
|
nsRect rect;
|
|
|
|
nsresult rv = GetRect(rect);
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
*aTop = rect.y;
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
return rv;
|
2000-04-20 02:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetLeft(int32_t* aLeft)
|
2000-04-20 02:00:55 +00:00
|
|
|
{
|
2003-09-19 21:06:52 +00:00
|
|
|
nsRect rect;
|
|
|
|
nsresult rv = GetRect(rect);
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
*aLeft = rect.x;
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
return rv;
|
2000-04-20 02:00:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-01-28 22:24:29 +00:00
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetWidth(int32_t* aWidth)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2003-09-19 21:06:52 +00:00
|
|
|
nsRect rect;
|
|
|
|
nsresult rv = GetRect(rect);
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
*aWidth = rect.width;
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
return rv;
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetHeight(int32_t* aHeight)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2003-09-19 21:06:52 +00:00
|
|
|
nsRect rect;
|
|
|
|
nsresult rv = GetRect(rect);
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
*aHeight = rect.height;
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
return rv;
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetPixelDepth(int32_t* aPixelDepth)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2011-04-17 01:22:44 +00:00
|
|
|
nsDeviceContext* context = GetDeviceContext();
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
if (!context) {
|
|
|
|
*aPixelDepth = -1;
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2002-05-28 22:55:39 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t depth;
|
2003-09-19 21:06:52 +00:00
|
|
|
context->GetDepth(depth);
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
*aPixelDepth = depth;
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetColorDepth(int32_t* aColorDepth)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2003-09-19 21:06:52 +00:00
|
|
|
return GetPixelDepth(aColorDepth);
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetAvailWidth(int32_t* aAvailWidth)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2003-09-19 21:06:52 +00:00
|
|
|
nsRect rect;
|
|
|
|
nsresult rv = GetAvailRect(rect);
|
1999-09-05 02:51:25 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
*aAvailWidth = rect.width;
|
1999-06-11 21:19:24 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
return rv;
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetAvailHeight(int32_t* aAvailHeight)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2003-09-19 21:06:52 +00:00
|
|
|
nsRect rect;
|
|
|
|
nsresult rv = GetAvailRect(rect);
|
1999-09-05 02:51:25 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
*aAvailHeight = rect.height;
|
1999-06-11 21:19:24 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
return rv;
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetAvailLeft(int32_t* aAvailLeft)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2003-09-19 21:06:52 +00:00
|
|
|
nsRect rect;
|
|
|
|
nsresult rv = GetAvailRect(rect);
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
*aAvailLeft = rect.x;
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
return rv;
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 15:56:38 +00:00
|
|
|
nsScreen::GetAvailTop(int32_t* aAvailTop)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2003-09-19 21:06:52 +00:00
|
|
|
nsRect rect;
|
|
|
|
nsresult rv = GetAvailRect(rect);
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
*aAvailTop = rect.y;
|
2002-05-28 22:55:39 +00:00
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
return rv;
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
2011-04-17 01:22:44 +00:00
|
|
|
nsDeviceContext*
|
2004-12-10 19:48:22 +00:00
|
|
|
nsScreen::GetDeviceContext()
|
1999-06-11 21:19:24 +00:00
|
|
|
{
|
2012-03-14 18:14:53 +00:00
|
|
|
return nsLayoutUtils::GetDeviceContextForScreenInfo(GetOwner());
|
1999-06-11 21:19:24 +00:00
|
|
|
}
|
|
|
|
|
2003-09-19 21:06:52 +00:00
|
|
|
nsresult
|
2004-12-10 19:48:22 +00:00
|
|
|
nsScreen::GetRect(nsRect& aRect)
|
2003-09-19 21:06:52 +00:00
|
|
|
{
|
2011-04-17 01:22:44 +00:00
|
|
|
nsDeviceContext *context = GetDeviceContext();
|
2003-09-19 21:06:52 +00:00
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
context->GetRect(aRect);
|
|
|
|
|
2007-02-07 07:46:44 +00:00
|
|
|
aRect.x = nsPresContext::AppUnitsToIntCSSPixels(aRect.x);
|
|
|
|
aRect.y = nsPresContext::AppUnitsToIntCSSPixels(aRect.y);
|
|
|
|
aRect.height = nsPresContext::AppUnitsToIntCSSPixels(aRect.height);
|
|
|
|
aRect.width = nsPresContext::AppUnitsToIntCSSPixels(aRect.width);
|
2003-09-19 21:06:52 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2004-12-10 19:48:22 +00:00
|
|
|
nsScreen::GetAvailRect(nsRect& aRect)
|
2003-09-19 21:06:52 +00:00
|
|
|
{
|
2011-04-17 01:22:44 +00:00
|
|
|
nsDeviceContext *context = GetDeviceContext();
|
2003-09-19 21:06:52 +00:00
|
|
|
|
|
|
|
if (!context) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
1999-01-28 22:24:29 +00:00
|
|
|
|
2003-09-20 11:41:22 +00:00
|
|
|
context->GetClientRect(aRect);
|
2003-09-19 21:06:52 +00:00
|
|
|
|
2007-02-07 07:46:44 +00:00
|
|
|
aRect.x = nsPresContext::AppUnitsToIntCSSPixels(aRect.x);
|
|
|
|
aRect.y = nsPresContext::AppUnitsToIntCSSPixels(aRect.y);
|
|
|
|
aRect.height = nsPresContext::AppUnitsToIntCSSPixels(aRect.height);
|
|
|
|
aRect.width = nsPresContext::AppUnitsToIntCSSPixels(aRect.width);
|
2003-09-19 21:06:52 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2011-12-04 17:07:00 +00:00
|
|
|
|
2012-03-14 10:10:48 +00:00
|
|
|
void
|
2012-05-08 21:36:07 +00:00
|
|
|
nsScreen::Notify(const hal::ScreenConfiguration& aConfiguration)
|
2012-03-14 10:10:48 +00:00
|
|
|
{
|
|
|
|
ScreenOrientation previousOrientation = mOrientation;
|
2012-05-08 21:36:07 +00:00
|
|
|
mOrientation = aConfiguration.orientation();
|
2012-03-14 10:10:48 +00:00
|
|
|
|
2012-09-19 16:28:16 +00:00
|
|
|
NS_ASSERTION(mOrientation == eScreenOrientation_PortraitPrimary ||
|
|
|
|
mOrientation == eScreenOrientation_PortraitSecondary ||
|
|
|
|
mOrientation == eScreenOrientation_LandscapePrimary ||
|
|
|
|
mOrientation == eScreenOrientation_LandscapeSecondary,
|
2012-03-14 10:10:48 +00:00
|
|
|
"Invalid orientation value passed to notify method!");
|
|
|
|
|
|
|
|
if (mOrientation != previousOrientation) {
|
2012-09-27 20:11:31 +00:00
|
|
|
DispatchTrustedEvent(NS_LITERAL_STRING("mozorientationchange"));
|
2012-03-14 10:10:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsScreen::GetMozOrientation(nsAString& aOrientation)
|
|
|
|
{
|
|
|
|
switch (mOrientation) {
|
|
|
|
case eScreenOrientation_PortraitPrimary:
|
|
|
|
aOrientation.AssignLiteral("portrait-primary");
|
|
|
|
break;
|
|
|
|
case eScreenOrientation_PortraitSecondary:
|
|
|
|
aOrientation.AssignLiteral("portrait-secondary");
|
|
|
|
break;
|
|
|
|
case eScreenOrientation_LandscapePrimary:
|
|
|
|
aOrientation.AssignLiteral("landscape-primary");
|
|
|
|
break;
|
|
|
|
case eScreenOrientation_LandscapeSecondary:
|
|
|
|
aOrientation.AssignLiteral("landscape-secondary");
|
|
|
|
break;
|
2012-09-19 16:28:16 +00:00
|
|
|
case eScreenOrientation_None:
|
|
|
|
default:
|
|
|
|
MOZ_ASSERT(false);
|
|
|
|
return NS_ERROR_FAILURE;
|
2012-03-14 10:10:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-03-29 19:43:16 +00:00
|
|
|
|
2012-09-11 13:15:43 +00:00
|
|
|
nsScreen::LockPermission
|
|
|
|
nsScreen::GetLockOrientationPermission() const
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsPIDOMWindow> owner = GetOwner();
|
|
|
|
if (!owner) {
|
|
|
|
return LOCK_DENIED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chrome can always lock the screen orientation.
|
|
|
|
if (IsChromeType(owner->GetDocShell())) {
|
|
|
|
return LOCK_ALLOWED;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc;
|
|
|
|
owner->GetDocument(getter_AddRefs(domDoc));
|
|
|
|
nsCOMPtr<nsIDocument> doc = do_QueryInterface(domDoc);
|
|
|
|
if (!doc) {
|
|
|
|
return LOCK_DENIED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Apps can always lock the screen orientation.
|
|
|
|
if (doc->NodePrincipal()->GetAppStatus() >=
|
|
|
|
nsIPrincipal::APP_STATUS_INSTALLED) {
|
|
|
|
return LOCK_ALLOWED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Other content must be full-screen in order to lock orientation.
|
|
|
|
bool fullscreen;
|
|
|
|
domDoc->GetMozFullScreen(&fullscreen);
|
|
|
|
|
|
|
|
return fullscreen ? FULLSCREEN_LOCK_ALLOWED : LOCK_DENIED;
|
|
|
|
}
|
|
|
|
|
2012-03-29 19:43:16 +00:00
|
|
|
NS_IMETHODIMP
|
2012-09-11 10:55:08 +00:00
|
|
|
nsScreen::MozLockOrientation(const jsval& aOrientation, JSContext* aCx, bool* aReturn)
|
2012-03-29 19:43:16 +00:00
|
|
|
{
|
2012-06-22 08:53:03 +00:00
|
|
|
*aReturn = false;
|
2012-03-29 19:43:16 +00:00
|
|
|
|
2012-09-11 10:55:08 +00:00
|
|
|
nsAutoTArray<nsString, 8> orientations;
|
|
|
|
// Preallocating 8 elements to make it faster.
|
|
|
|
|
|
|
|
if (aOrientation.isString()) {
|
|
|
|
nsDependentJSString item;
|
|
|
|
item.init(aCx, aOrientation.toString());
|
|
|
|
orientations.AppendElement(item);
|
2012-03-29 19:43:16 +00:00
|
|
|
} else {
|
2012-09-11 10:55:08 +00:00
|
|
|
// If we don't have a string, we must have an Array.
|
|
|
|
if (!aOrientation.isObject()) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject& obj = aOrientation.toObject();
|
|
|
|
uint32_t length;
|
|
|
|
if (!JS_GetArrayLength(aCx, &obj, &length) || length <= 0) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
orientations.SetCapacity(length);
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < length; ++i) {
|
|
|
|
jsval value;
|
|
|
|
NS_ENSURE_TRUE(JS_GetElement(aCx, &obj, i, &value), NS_ERROR_UNEXPECTED);
|
|
|
|
if (!value.isString()) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsDependentJSString item;
|
|
|
|
item.init(aCx, value);
|
|
|
|
orientations.AppendElement(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ScreenOrientation orientation = eScreenOrientation_None;
|
|
|
|
|
|
|
|
for (uint32_t i=0; i<orientations.Length(); ++i) {
|
|
|
|
nsString& item = orientations[i];
|
|
|
|
|
|
|
|
if (item.EqualsLiteral("portrait")) {
|
2012-09-19 16:28:16 +00:00
|
|
|
orientation |= eScreenOrientation_PortraitPrimary |
|
|
|
|
eScreenOrientation_PortraitSecondary;
|
2012-09-11 10:55:08 +00:00
|
|
|
} else if (item.EqualsLiteral("portrait-primary")) {
|
|
|
|
orientation |= eScreenOrientation_PortraitPrimary;
|
|
|
|
} else if (item.EqualsLiteral("portrait-secondary")) {
|
|
|
|
orientation |= eScreenOrientation_PortraitSecondary;
|
|
|
|
} else if (item.EqualsLiteral("landscape")) {
|
2012-09-19 16:28:16 +00:00
|
|
|
orientation |= eScreenOrientation_LandscapePrimary |
|
|
|
|
eScreenOrientation_LandscapeSecondary;
|
2012-09-11 10:55:08 +00:00
|
|
|
} else if (item.EqualsLiteral("landscape-primary")) {
|
|
|
|
orientation |= eScreenOrientation_LandscapePrimary;
|
|
|
|
} else if (item.EqualsLiteral("landscape-secondary")) {
|
|
|
|
orientation |= eScreenOrientation_LandscapeSecondary;
|
|
|
|
} else {
|
|
|
|
// If we don't recognize that the token, we should just return 'false'
|
|
|
|
// without throwing.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-03-29 19:43:16 +00:00
|
|
|
}
|
|
|
|
|
2012-09-11 13:15:43 +00:00
|
|
|
switch (GetLockOrientationPermission()) {
|
|
|
|
case LOCK_DENIED:
|
|
|
|
return NS_OK;
|
|
|
|
case LOCK_ALLOWED:
|
|
|
|
*aReturn = hal::LockScreenOrientation(orientation);
|
|
|
|
return NS_OK;
|
|
|
|
case FULLSCREEN_LOCK_ALLOWED:
|
|
|
|
*aReturn = hal::LockScreenOrientation(orientation);
|
|
|
|
if (!*aReturn) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-03-29 16:31:11 +00:00
|
|
|
|
2012-09-11 13:15:43 +00:00
|
|
|
// We are fullscreen and lock has been accepted.
|
|
|
|
// Now, we need to register a listener so we learn when we leave
|
|
|
|
// full-screen and when we will have to unlock the screen.
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> target = do_QueryInterface(GetOwner());
|
|
|
|
if (!target) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-03-29 16:31:11 +00:00
|
|
|
|
2012-09-11 13:15:43 +00:00
|
|
|
if (!mEventListener) {
|
|
|
|
mEventListener = new FullScreenEventListener();
|
|
|
|
}
|
2012-08-13 16:58:38 +00:00
|
|
|
|
2012-09-11 13:15:43 +00:00
|
|
|
return target->AddSystemEventListener(NS_LITERAL_STRING("mozfullscreenchange"),
|
|
|
|
mEventListener, /* useCapture = */ true);
|
2012-03-29 16:31:29 +00:00
|
|
|
}
|
|
|
|
|
2012-09-11 13:15:43 +00:00
|
|
|
// This is only for compilers that don't understand that the previous switch
|
|
|
|
// will always return.
|
|
|
|
MOZ_NOT_REACHED();
|
2012-03-29 19:43:16 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsScreen::MozUnlockOrientation()
|
|
|
|
{
|
|
|
|
hal::UnlockScreenOrientation();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-03-29 16:31:11 +00:00
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(nsScreen::FullScreenEventListener, nsIDOMEventListener)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsScreen::FullScreenEventListener::HandleEvent(nsIDOMEvent* aEvent)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsAutoString eventType;
|
|
|
|
aEvent->GetType(eventType);
|
|
|
|
|
|
|
|
MOZ_ASSERT(eventType.EqualsLiteral("mozfullscreenchange"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMEventTarget> target;
|
|
|
|
aEvent->GetCurrentTarget(getter_AddRefs(target));
|
|
|
|
|
2012-04-23 08:30:58 +00:00
|
|
|
// We have to make sure that the event we got is the event sent when
|
|
|
|
// fullscreen is disabled because we could get one when fullscreen
|
|
|
|
// got enabled if the lock call is done at the same moment.
|
|
|
|
nsCOMPtr<nsIDOMWindow> window = do_QueryInterface(target);
|
|
|
|
MOZ_ASSERT(window);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> doc;
|
|
|
|
window->GetDocument(getter_AddRefs(doc));
|
|
|
|
// If we have no doc, we will just continue, remove the event and unlock.
|
|
|
|
// This is an edge case were orientation lock and fullscreen is meaningless.
|
|
|
|
if (doc) {
|
|
|
|
bool fullscreen;
|
|
|
|
doc->GetMozFullScreen(&fullscreen);
|
|
|
|
if (fullscreen) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-29 16:31:11 +00:00
|
|
|
target->RemoveSystemEventListener(NS_LITERAL_STRING("mozfullscreenchange"),
|
|
|
|
this, true);
|
|
|
|
|
|
|
|
hal::UnlockScreenOrientation();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|