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-06-09 18:59:04 +00:00
|
|
|
|
2011-07-15 10:31:34 +00:00
|
|
|
#include "nsBarProps.h"
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1999-06-09 18:59:04 +00:00
|
|
|
#include "nscore.h"
|
2002-02-16 01:15:52 +00:00
|
|
|
#include "nsGlobalWindow.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIDocShell.h"
|
2004-03-09 00:45:41 +00:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
2002-02-16 01:15:52 +00:00
|
|
|
#include "nsIScrollable.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIWebBrowserChrome.h"
|
2011-07-15 10:31:34 +00:00
|
|
|
#include "nsIDOMWindow.h"
|
2011-10-03 19:11:31 +00:00
|
|
|
#include "nsDOMClassInfoID.h"
|
1999-06-09 18:59:04 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Basic (virtual) BarProp class implementation
|
|
|
|
//
|
2011-04-27 20:54:07 +00:00
|
|
|
nsBarProp::nsBarProp(nsGlobalWindow *aWindow)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2011-04-27 20:54:07 +00:00
|
|
|
mDOMWindow = aWindow;
|
|
|
|
nsISupports *supwin = static_cast<nsIScriptGlobalObject *>(aWindow);
|
|
|
|
mDOMWindowWeakref = do_GetWeakReference(supwin);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
nsBarProp::~nsBarProp()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-12 13:08:43 +00:00
|
|
|
DOMCI_DATA(BarProp, nsBarProp)
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
// QueryInterface implementation for BarProp
|
|
|
|
NS_INTERFACE_MAP_BEGIN(nsBarProp)
|
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(nsIDOMBarProp)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(BarProp)
|
2000-02-08 13:40:10 +00:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
NS_IMPL_ADDREF(nsBarProp)
|
|
|
|
NS_IMPL_RELEASE(nsBarProp)
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsBarProp::GetVisibleByFlag(bool *aVisible, PRUint32 aChromeFlag)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
*aVisible = false;
|
2011-04-27 20:54:07 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome = GetBrowserChrome();
|
|
|
|
NS_ENSURE_TRUE(browserChrome, NS_OK);
|
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
|
|
|
|
|
|
|
PRUint32 chromeFlags;
|
|
|
|
|
2011-04-27 20:54:07 +00:00
|
|
|
NS_ENSURE_SUCCESS(browserChrome->GetChromeFlags(&chromeFlags),
|
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_ERROR_FAILURE);
|
2011-04-27 20:54:07 +00:00
|
|
|
if (chromeFlags & aChromeFlag)
|
2011-10-17 14:59:28 +00:00
|
|
|
*aVisible = true;
|
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
|
|
|
|
|
|
|
return NS_OK;
|
1999-06-10 01:27:47 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsBarProp::SetVisibleByFlag(bool aVisible, PRUint32 aChromeFlag)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2011-04-27 20:54:07 +00:00
|
|
|
nsCOMPtr<nsIWebBrowserChrome> browserChrome = GetBrowserChrome();
|
|
|
|
NS_ENSURE_TRUE(browserChrome, NS_OK);
|
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
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool enabled = false;
|
2004-03-09 00:45:41 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIScriptSecurityManager>
|
|
|
|
securityManager(do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID));
|
|
|
|
if (securityManager)
|
2011-12-30 17:35:39 +00:00
|
|
|
securityManager->IsCapabilityEnabled("UniversalXPConnect", &enabled);
|
2004-03-09 00:45:41 +00:00
|
|
|
if (!enabled)
|
|
|
|
return NS_OK;
|
|
|
|
|
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
|
|
|
PRUint32 chromeFlags;
|
|
|
|
|
2011-04-27 20:54:07 +00:00
|
|
|
NS_ENSURE_SUCCESS(browserChrome->GetChromeFlags(&chromeFlags),
|
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_ERROR_FAILURE);
|
2011-04-27 20:54:07 +00:00
|
|
|
if (aVisible)
|
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
|
|
|
chromeFlags |= aChromeFlag;
|
|
|
|
else
|
|
|
|
chromeFlags &= ~aChromeFlag;
|
2011-04-27 20:54:07 +00:00
|
|
|
NS_ENSURE_SUCCESS(browserChrome->SetChromeFlags(chromeFlags),
|
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_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-06-10 01:27:47 +00:00
|
|
|
}
|
|
|
|
|
2011-04-27 20:54:07 +00:00
|
|
|
already_AddRefed<nsIWebBrowserChrome>
|
|
|
|
nsBarProp::GetBrowserChrome()
|
|
|
|
{
|
|
|
|
// Check that the window is still alive.
|
|
|
|
nsCOMPtr<nsIDOMWindow> domwin(do_QueryReferent(mDOMWindowWeakref));
|
|
|
|
if (!domwin)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
nsIWebBrowserChrome *browserChrome = nsnull;
|
|
|
|
mDOMWindow->GetWebBrowserChrome(&browserChrome);
|
|
|
|
return browserChrome;
|
|
|
|
}
|
|
|
|
|
1999-06-09 18:59:04 +00:00
|
|
|
//
|
|
|
|
// MenubarProp class implementation
|
|
|
|
//
|
|
|
|
|
2011-04-27 20:54:07 +00:00
|
|
|
nsMenubarProp::nsMenubarProp(nsGlobalWindow *aWindow)
|
|
|
|
: nsBarProp(aWindow)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
nsMenubarProp::~nsMenubarProp()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsMenubarProp::GetVisible(bool *aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return nsBarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_MENUBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsMenubarProp::SetVisible(bool aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return nsBarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_MENUBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// ToolbarProp class implementation
|
|
|
|
//
|
|
|
|
|
2011-04-27 20:54:07 +00:00
|
|
|
nsToolbarProp::nsToolbarProp(nsGlobalWindow *aWindow)
|
|
|
|
: nsBarProp(aWindow)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
nsToolbarProp::~nsToolbarProp()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsToolbarProp::GetVisible(bool *aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return nsBarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_TOOLBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsToolbarProp::SetVisible(bool aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return nsBarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_TOOLBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// LocationbarProp class implementation
|
|
|
|
//
|
|
|
|
|
2011-04-27 20:54:07 +00:00
|
|
|
nsLocationbarProp::nsLocationbarProp(nsGlobalWindow *aWindow)
|
|
|
|
: nsBarProp(aWindow)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
nsLocationbarProp::~nsLocationbarProp()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsLocationbarProp::GetVisible(bool *aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return
|
|
|
|
nsBarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_LOCATIONBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsLocationbarProp::SetVisible(bool aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return
|
|
|
|
nsBarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_LOCATIONBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// PersonalbarProp class implementation
|
|
|
|
//
|
|
|
|
|
2011-04-27 20:54:07 +00:00
|
|
|
nsPersonalbarProp::nsPersonalbarProp(nsGlobalWindow *aWindow)
|
|
|
|
: nsBarProp(aWindow)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
nsPersonalbarProp::~nsPersonalbarProp()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsPersonalbarProp::GetVisible(bool *aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return
|
|
|
|
nsBarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_PERSONAL_TOOLBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsPersonalbarProp::SetVisible(bool aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return
|
|
|
|
nsBarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_PERSONAL_TOOLBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// StatusbarProp class implementation
|
|
|
|
//
|
|
|
|
|
2011-04-27 20:54:07 +00:00
|
|
|
nsStatusbarProp::nsStatusbarProp(nsGlobalWindow *aWindow)
|
|
|
|
: nsBarProp(aWindow)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
nsStatusbarProp::~nsStatusbarProp()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsStatusbarProp::GetVisible(bool *aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return nsBarProp::GetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_STATUSBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsStatusbarProp::SetVisible(bool aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2004-12-10 19:48:22 +00:00
|
|
|
return nsBarProp::SetVisibleByFlag(aVisible,
|
|
|
|
nsIWebBrowserChrome::CHROME_STATUSBAR);
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// ScrollbarsProp class implementation
|
|
|
|
//
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
nsScrollbarsProp::nsScrollbarsProp(nsGlobalWindow *aWindow)
|
2011-04-27 20:54:07 +00:00
|
|
|
: nsBarProp(aWindow)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
nsScrollbarsProp::~nsScrollbarsProp()
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsScrollbarsProp::GetVisible(bool *aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
*aVisible = true; // one assumes
|
2002-02-16 01:15:52 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> domwin(do_QueryReferent(mDOMWindowWeakref));
|
|
|
|
if (domwin) { // dom window not deleted
|
2004-02-09 22:48:53 +00:00
|
|
|
nsCOMPtr<nsIScrollable> scroller =
|
|
|
|
do_QueryInterface(mDOMWindow->GetDocShell());
|
|
|
|
|
2002-02-16 01:15:52 +00:00
|
|
|
if (scroller) {
|
2004-09-03 21:58:39 +00:00
|
|
|
PRInt32 prefValue;
|
2002-02-16 01:15:52 +00:00
|
|
|
scroller->GetDefaultScrollbarPreferences(
|
|
|
|
nsIScrollable::ScrollOrientation_Y, &prefValue);
|
2004-09-03 21:58:39 +00:00
|
|
|
if (prefValue == nsIScrollable::Scrollbar_Never) // try the other way
|
2002-02-16 01:15:52 +00:00
|
|
|
scroller->GetDefaultScrollbarPreferences(
|
|
|
|
nsIScrollable::ScrollOrientation_X, &prefValue);
|
|
|
|
|
2004-09-03 21:58:39 +00:00
|
|
|
if (prefValue == nsIScrollable::Scrollbar_Never)
|
2011-10-17 14:59:28 +00:00
|
|
|
*aVisible = false;
|
2002-02-16 01:15:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
|
|
|
|
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_IMETHODIMP
|
2011-09-29 06:19:26 +00:00
|
|
|
nsScrollbarsProp::SetVisible(bool aVisible)
|
2000-02-08 13:40:10 +00:00
|
|
|
{
|
2011-09-29 06:19:26 +00:00
|
|
|
bool enabled = false;
|
2005-12-30 16:57:46 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIScriptSecurityManager>
|
|
|
|
securityManager(do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID));
|
|
|
|
if (securityManager)
|
2011-12-30 17:35:39 +00:00
|
|
|
securityManager->IsCapabilityEnabled("UniversalXPConnect", &enabled);
|
2005-12-30 16:57:46 +00:00
|
|
|
if (!enabled)
|
|
|
|
return NS_OK;
|
|
|
|
|
2002-02-16 01:15:52 +00:00
|
|
|
/* 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.
|
2004-02-09 22:48:53 +00:00
|
|
|
nsCOMPtr<nsIScrollable> scroller =
|
|
|
|
do_QueryInterface(mDOMWindow->GetDocShell());
|
|
|
|
|
2002-02-16 01:15:52 +00:00
|
|
|
if (scroller) {
|
2005-03-06 18:43:07 +00:00
|
|
|
PRInt32 prefValue;
|
|
|
|
|
|
|
|
if (aVisible) {
|
|
|
|
prefValue = nsIScrollable::Scrollbar_Auto;
|
|
|
|
} else {
|
|
|
|
prefValue = nsIScrollable::Scrollbar_Never;
|
|
|
|
}
|
|
|
|
|
2002-02-16 01:15:52 +00:00
|
|
|
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 20:54:07 +00:00
|
|
|
GetBrowserChrome()->SetChromeFlags(). Given the possibility of multiple
|
2002-02-16 01:15:52 +00: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;
|
1999-06-09 18:59:04 +00:00
|
|
|
}
|
2002-02-16 01:15:52 +00:00
|
|
|
|