2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
#include "mozilla/dom/BarProps.h"
|
2011-07-15 03:31:34 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsGlobalWindow.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIDocShell.h"
|
|
|
|
#include "nsIScriptSecurityManager.h"
|
|
|
|
#include "nsIScrollable.h"
|
|
|
|
#include "nsIWebBrowserChrome.h"
|
2011-07-15 03:31:34 -07:00
|
|
|
#include "nsIDOMWindow.h"
|
2011-10-03 12:11:31 -07:00
|
|
|
#include "nsDOMClassInfoID.h"
|
2012-10-21 23:29:55 -07:00
|
|
|
#include "nsContentUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
DOMCI_DATA(BarProp, mozilla::dom::BarProp)
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//
|
|
|
|
// Basic (virtual) BarProp class implementation
|
|
|
|
//
|
2013-05-31 03:30:00 -07:00
|
|
|
BarProp::BarProp(nsGlobalWindow *aWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-04-27 13:54:07 -07:00
|
|
|
mDOMWindow = aWindow;
|
|
|
|
nsISupports *supwin = static_cast<nsIScriptGlobalObject *>(aWindow);
|
|
|
|
mDOMWindowWeakref = do_GetWeakReference(supwin);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
BarProp::~BarProp()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryInterface implementation for BarProp
|
2013-05-31 03:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN(BarProp)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMBarProp)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(BarProp)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
NS_IMPL_ADDREF(BarProp)
|
|
|
|
NS_IMPL_RELEASE(BarProp)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
BarProp::GetVisibleByFlag(bool *aVisible, uint32_t aChromeFlag)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
*aVisible = false;
|
2011-04-27 13:54:07 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome = GetBrowserChrome();
|
|
|
|
NS_ENSURE_TRUE(browserChrome, NS_OK);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t chromeFlags;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-04-27 13:54:07 -07:00
|
|
|
NS_ENSURE_SUCCESS(browserChrome->GetChromeFlags(&chromeFlags),
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ERROR_FAILURE);
|
2011-04-27 13:54:07 -07:00
|
|
|
if (chromeFlags & aChromeFlag)
|
2011-10-17 07:59:28 -07:00
|
|
|
*aVisible = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
BarProp::SetVisibleByFlag(bool aVisible, uint32_t aChromeFlag)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-04-27 13:54:07 -07:00
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome = GetBrowserChrome();
|
|
|
|
NS_ENSURE_TRUE(browserChrome, NS_OK);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-21 23:29:55 -07:00
|
|
|
if (!nsContentUtils::IsCallerChrome())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t chromeFlags;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-04-27 13:54:07 -07:00
|
|
|
NS_ENSURE_SUCCESS(browserChrome->GetChromeFlags(&chromeFlags),
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ERROR_FAILURE);
|
2011-04-27 13:54:07 -07:00
|
|
|
if (aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
chromeFlags |= aChromeFlag;
|
|
|
|
else
|
|
|
|
chromeFlags &= ~aChromeFlag;
|
2011-04-27 13:54:07 -07:00
|
|
|
NS_ENSURE_SUCCESS(browserChrome->SetChromeFlags(chromeFlags),
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-04-27 13:54:07 -07:00
|
|
|
already_AddRefed<nsIWebBrowserChrome>
|
2013-05-31 03:30:00 -07:00
|
|
|
BarProp::GetBrowserChrome()
|
2011-04-27 13:54:07 -07:00
|
|
|
{
|
|
|
|
// Check that the window is still alive.
|
|
|
|
nsCOMPtr<nsIDOMWindow> domwin(do_QueryReferent(mDOMWindowWeakref));
|
|
|
|
if (!domwin)
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2011-04-27 13:54:07 -07:00
|
|
|
|
2013-04-25 23:51:04 -07:00
|
|
|
return mDOMWindow->GetWebBrowserChrome();
|
2011-04-27 13:54:07 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//
|
|
|
|
// MenubarProp class implementation
|
|
|
|
//
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
MenubarProp::MenubarProp(nsGlobalWindow *aWindow)
|
|
|
|
: BarProp(aWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
MenubarProp::~MenubarProp()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
MenubarProp::GetVisible(bool *aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-05-31 03:30:00 -07:00
|
|
|
return BarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_MENUBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
MenubarProp::SetVisible(bool aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-05-31 03:30:00 -07:00
|
|
|
return BarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_MENUBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// ToolbarProp class implementation
|
|
|
|
//
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
ToolbarProp::ToolbarProp(nsGlobalWindow *aWindow)
|
|
|
|
: BarProp(aWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
ToolbarProp::~ToolbarProp()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
ToolbarProp::GetVisible(bool *aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-05-31 03:30:00 -07:00
|
|
|
return BarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_TOOLBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
ToolbarProp::SetVisible(bool aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-05-31 03:30:00 -07:00
|
|
|
return BarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_TOOLBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// LocationbarProp class implementation
|
|
|
|
//
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
LocationbarProp::LocationbarProp(nsGlobalWindow *aWindow)
|
|
|
|
: BarProp(aWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
LocationbarProp::~LocationbarProp()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
LocationbarProp::GetVisible(bool *aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return
|
2013-05-31 03:30:00 -07:00
|
|
|
BarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_LOCATIONBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
LocationbarProp::SetVisible(bool aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return
|
2013-05-31 03:30:00 -07:00
|
|
|
BarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_LOCATIONBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// PersonalbarProp class implementation
|
|
|
|
//
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
PersonalbarProp::PersonalbarProp(nsGlobalWindow *aWindow)
|
|
|
|
: BarProp(aWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
PersonalbarProp::~PersonalbarProp()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
PersonalbarProp::GetVisible(bool *aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return
|
2013-05-31 03:30:00 -07:00
|
|
|
BarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_PERSONAL_TOOLBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
PersonalbarProp::SetVisible(bool aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return
|
2013-05-31 03:30:00 -07:00
|
|
|
BarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_PERSONAL_TOOLBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// StatusbarProp class implementation
|
|
|
|
//
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
StatusbarProp::StatusbarProp(nsGlobalWindow *aWindow)
|
|
|
|
: BarProp(aWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
StatusbarProp::~StatusbarProp()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
StatusbarProp::GetVisible(bool *aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-05-31 03:30:00 -07:00
|
|
|
return BarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_STATUSBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
StatusbarProp::SetVisible(bool aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-05-31 03:30:00 -07:00
|
|
|
return BarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_STATUSBAR);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// ScrollbarsProp class implementation
|
|
|
|
//
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
ScrollbarsProp::ScrollbarsProp(nsGlobalWindow *aWindow)
|
|
|
|
: BarProp(aWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
ScrollbarsProp::~ScrollbarsProp()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
ScrollbarsProp::GetVisible(bool *aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
*aVisible = true; // one assumes
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> domwin(do_QueryReferent(mDOMWindowWeakref));
|
|
|
|
if (domwin) { // dom window not deleted
|
|
|
|
nsCOMPtr<nsIScrollable> scroller =
|
|
|
|
do_QueryInterface(mDOMWindow->GetDocShell());
|
|
|
|
|
|
|
|
if (scroller) {
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t prefValue;
|
2007-03-22 10:30:00 -07:00
|
|
|
scroller->GetDefaultScrollbarPreferences(
|
|
|
|
nsIScrollable::ScrollOrientation_Y, &prefValue);
|
|
|
|
if (prefValue == nsIScrollable::Scrollbar_Never) // try the other way
|
|
|
|
scroller->GetDefaultScrollbarPreferences(
|
|
|
|
nsIScrollable::ScrollOrientation_X, &prefValue);
|
|
|
|
|
|
|
|
if (prefValue == nsIScrollable::Scrollbar_Never)
|
2011-10-17 07:59:28 -07:00
|
|
|
*aVisible = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2013-05-31 03:30:00 -07:00
|
|
|
ScrollbarsProp::SetVisible(bool aVisible)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-10-21 23:29:55 -07:00
|
|
|
if (!nsContentUtils::IsCallerChrome())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
/* Scrollbars, unlike the other barprops, implement visibility directly
|
|
|
|
rather than handing off to the superclass (and from there to the
|
|
|
|
chrome window) because scrollbar visibility uniquely applies only
|
|
|
|
to the window making the change (arguably. it does now, anyway.)
|
|
|
|
and because embedding apps have no interface for implementing this
|
|
|
|
themselves, and therefore the implementation must be internal. */
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> domwin(do_QueryReferent(mDOMWindowWeakref));
|
|
|
|
if (domwin) { // dom window must still exist. use away.
|
|
|
|
nsCOMPtr<nsIScrollable> scroller =
|
|
|
|
do_QueryInterface(mDOMWindow->GetDocShell());
|
|
|
|
|
|
|
|
if (scroller) {
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t prefValue;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (aVisible) {
|
|
|
|
prefValue = nsIScrollable::Scrollbar_Auto;
|
|
|
|
} else {
|
|
|
|
prefValue = nsIScrollable::Scrollbar_Never;
|
|
|
|
}
|
|
|
|
|
|
|
|
scroller->SetDefaultScrollbarPreferences(
|
|
|
|
nsIScrollable::ScrollOrientation_Y, prefValue);
|
|
|
|
scroller->SetDefaultScrollbarPreferences(
|
|
|
|
nsIScrollable::ScrollOrientation_X, prefValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notably absent is the part where we notify the chrome window using
|
2011-04-27 13:54:07 -07:00
|
|
|
GetBrowserChrome()->SetChromeFlags(). Given the possibility of multiple
|
2007-03-22 10:30:00 -07:00
|
|
|
DOM windows (multiple top-level windows, even) within a single
|
|
|
|
chrome window, the historical concept of a single "has scrollbars"
|
|
|
|
flag in the chrome is inapplicable, and we can't tell at this level
|
|
|
|
whether we represent the particular DOM window that makes this decision
|
|
|
|
for the chrome.
|
|
|
|
|
|
|
|
So only this object (and its corresponding DOM window) knows whether
|
|
|
|
scrollbars are visible. The corresponding chrome window will need to
|
|
|
|
ask (one of) its DOM window(s) when it needs to know about scrollbar
|
|
|
|
visibility, rather than caching its own copy of that information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-05-31 03:30:00 -07:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|