gecko-dev/dom/src/base/nsBarProps.cpp

337 lines
9.1 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
1999-06-09 18:59:04 +00:00
*
* The contents of this file are subject to the Netscape 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/NPL/
1999-06-09 18:59:04 +00:00
*
* 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.
1999-06-09 18:59:04 +00:00
*
* 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):
* Travis Bogard <travis@netscape.com>
*
*
* Alternatively, the contents of this file may be used under the terms of
* either 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 NPL, 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 NPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
1999-06-09 18:59:04 +00:00
#include "nsCOMPtr.h"
1999-06-09 18:59:04 +00:00
#include "nscore.h"
#include "nsBarProps.h"
#include "nsGlobalWindow.h"
#include "nsStyleConsts.h"
#include "nsIDocShell.h"
#include "nsIScriptSecurityManager.h"
#include "nsIScrollable.h"
#include "nsIWebBrowserChrome.h"
#include "nsIDOMWindowInternal.h"
#include "nsDOMClassInfo.h"
1999-06-09 18:59:04 +00:00
//
// Basic (virtual) BarProp class implementation
//
BarPropImpl::BarPropImpl() : mBrowserChrome(nsnull)
{
1999-06-09 18:59:04 +00:00
}
BarPropImpl::~BarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
// QueryInterface implementation for BarPropImpl
NS_INTERFACE_MAP_BEGIN(BarPropImpl)
NS_INTERFACE_MAP_ENTRY(nsIDOMBarProp)
NS_INTERFACE_MAP_ENTRY(nsISupports)
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(BarProp)
NS_INTERFACE_MAP_END
NS_IMPL_ADDREF(BarPropImpl)
NS_IMPL_RELEASE(BarPropImpl)
NS_IMETHODIMP
BarPropImpl::SetWebBrowserChrome(nsIWebBrowserChrome* aBrowserChrome)
{
mBrowserChrome = aBrowserChrome;
return NS_OK;
}
NS_IMETHODIMP
BarPropImpl::GetVisibleByFlag(PRBool *aVisible, PRUint32 aChromeFlag)
{
NS_ENSURE_TRUE(mBrowserChrome, NS_ERROR_FAILURE);
PRUint32 chromeFlags;
*aVisible = PR_FALSE;
NS_ENSURE_SUCCESS(mBrowserChrome->GetChromeFlags(&chromeFlags),
NS_ERROR_FAILURE);
if(chromeFlags & aChromeFlag)
*aVisible = PR_TRUE;
return NS_OK;
}
NS_IMETHODIMP
BarPropImpl::SetVisibleByFlag(PRBool aVisible, PRUint32 aChromeFlag)
{
NS_ENSURE_TRUE(mBrowserChrome, NS_ERROR_FAILURE);
PRBool enabled = PR_FALSE;
nsCOMPtr<nsIScriptSecurityManager>
securityManager(do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID));
if (securityManager)
securityManager->IsCapabilityEnabled("UniversalBrowserWrite", &enabled);
if (!enabled)
return NS_OK;
PRUint32 chromeFlags;
NS_ENSURE_SUCCESS(mBrowserChrome->GetChromeFlags(&chromeFlags),
NS_ERROR_FAILURE);
if(aVisible)
chromeFlags |= aChromeFlag;
else
chromeFlags &= ~aChromeFlag;
NS_ENSURE_SUCCESS(mBrowserChrome->SetChromeFlags(chromeFlags),
NS_ERROR_FAILURE);
return NS_OK;
}
1999-06-09 18:59:04 +00:00
//
// MenubarProp class implementation
//
MenubarPropImpl::MenubarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
MenubarPropImpl::~MenubarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
MenubarPropImpl::GetVisible(PRBool *aVisible)
{
return BarPropImpl::GetVisibleByFlag(aVisible,
nsIWebBrowserChrome::CHROME_MENUBAR);
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
MenubarPropImpl::SetVisible(PRBool aVisible)
{
return BarPropImpl::SetVisibleByFlag(aVisible,
nsIWebBrowserChrome::CHROME_MENUBAR);
1999-06-09 18:59:04 +00:00
}
//
// ToolbarProp class implementation
//
ToolbarPropImpl::ToolbarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
ToolbarPropImpl::~ToolbarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
ToolbarPropImpl::GetVisible(PRBool *aVisible)
{
return BarPropImpl::GetVisibleByFlag(aVisible,
nsIWebBrowserChrome::CHROME_TOOLBAR);
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
ToolbarPropImpl::SetVisible(PRBool aVisible)
{
return BarPropImpl::SetVisibleByFlag(aVisible,
nsIWebBrowserChrome::CHROME_TOOLBAR);
1999-06-09 18:59:04 +00:00
}
//
// LocationbarProp class implementation
//
LocationbarPropImpl::LocationbarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
LocationbarPropImpl::~LocationbarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
LocationbarPropImpl::GetVisible(PRBool *aVisible)
{
return BarPropImpl::GetVisibleByFlag(aVisible, nsIWebBrowserChrome::CHROME_LOCATIONBAR);
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
LocationbarPropImpl::SetVisible(PRBool aVisible)
{
return BarPropImpl::SetVisibleByFlag(aVisible, nsIWebBrowserChrome::CHROME_LOCATIONBAR);
1999-06-09 18:59:04 +00:00
}
//
// PersonalbarProp class implementation
//
PersonalbarPropImpl::PersonalbarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
PersonalbarPropImpl::~PersonalbarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
PersonalbarPropImpl::GetVisible(PRBool *aVisible)
{
return BarPropImpl::GetVisibleByFlag(aVisible, nsIWebBrowserChrome::CHROME_PERSONAL_TOOLBAR);
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
PersonalbarPropImpl::SetVisible(PRBool aVisible)
{
return BarPropImpl::SetVisibleByFlag(aVisible, nsIWebBrowserChrome::CHROME_PERSONAL_TOOLBAR);
1999-06-09 18:59:04 +00:00
}
//
// StatusbarProp class implementation
//
StatusbarPropImpl::StatusbarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
StatusbarPropImpl::~StatusbarPropImpl()
{
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
StatusbarPropImpl::GetVisible(PRBool *aVisible)
{
return BarPropImpl::GetVisibleByFlag(aVisible,
nsIWebBrowserChrome::CHROME_STATUSBAR);
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
StatusbarPropImpl::SetVisible(PRBool aVisible)
{
return BarPropImpl::SetVisibleByFlag(aVisible,
nsIWebBrowserChrome::CHROME_STATUSBAR);
1999-06-09 18:59:04 +00:00
}
//
// ScrollbarsProp class implementation
//
ScrollbarsPropImpl::ScrollbarsPropImpl(GlobalWindowImpl *aWindow)
{
mDOMWindow = aWindow;
nsISupports *supwin = NS_STATIC_CAST(nsIScriptGlobalObject *, aWindow);
mDOMWindowWeakref = do_GetWeakReference(supwin);
1999-06-09 18:59:04 +00:00
}
ScrollbarsPropImpl::~ScrollbarsPropImpl()
{
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
ScrollbarsPropImpl::GetVisible(PRBool *aVisible)
{
*aVisible = PR_TRUE; // one assumes
nsCOMPtr<nsIDOMWindow> domwin(do_QueryReferent(mDOMWindowWeakref));
if (domwin) { // dom window not deleted
nsCOMPtr<nsIScrollable> scroller =
do_QueryInterface(mDOMWindow->GetDocShell());
if (scroller) {
PRInt32 prefValue = aVisible ? NS_STYLE_OVERFLOW_AUTO :
NS_STYLE_OVERFLOW_HIDDEN;
scroller->GetDefaultScrollbarPreferences(
nsIScrollable::ScrollOrientation_Y, &prefValue);
if (prefValue == NS_STYLE_OVERFLOW_HIDDEN) // try the other way
scroller->GetDefaultScrollbarPreferences(
nsIScrollable::ScrollOrientation_X, &prefValue);
if (prefValue == NS_STYLE_OVERFLOW_HIDDEN)
*aVisible = PR_FALSE;
}
}
return NS_OK;
1999-06-09 18:59:04 +00:00
}
NS_IMETHODIMP
ScrollbarsPropImpl::SetVisible(PRBool aVisible)
{
/* 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) {
PRInt32 prefValue = aVisible ? NS_STYLE_OVERFLOW_AUTO :
NS_STYLE_OVERFLOW_HIDDEN;
scroller->SetDefaultScrollbarPreferences(
nsIScrollable::ScrollOrientation_Y, prefValue);
scroller->SetDefaultScrollbarPreferences(
nsIScrollable::ScrollOrientation_X, prefValue);
}
}
/* Notably absent is the part where we notify the chrome window using
mBrowserChrome->SetChromeFlags(). Given the possibility of multiple
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
}