2011-03-26 09:06:27 -07:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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
// Local Includes
# include "nsWebBrowser.h"
// Helper Classes
# include "nsGfxCIID.h"
# include "nsWidgetsCID.h"
//Interfaces Needed
# include "nsReadableUtils.h"
# include "nsIComponentManager.h"
# include "nsIDOMDocument.h"
# include "nsIDOMWindow.h"
# include "nsIDOMElement.h"
# include "nsIInterfaceRequestor.h"
# include "nsIInterfaceRequestorUtils.h"
# include "nsIWebBrowserChrome.h"
# include "nsPIDOMWindow.h"
# include "nsIWebProgress.h"
# include "nsIWebProgressListener.h"
# include "nsIWebBrowserFocus.h"
# include "nsIWebBrowserStream.h"
# include "nsIPresShell.h"
# include "nsIDocShellHistory.h"
# include "nsIURIContentListener.h"
# include "nsGUIEvent.h"
# include "nsISHistoryListener.h"
# include "nsIURI.h"
# include "nsIWebBrowserPersist.h"
# include "nsCWebBrowserPersist.h"
# include "nsIServiceManager.h"
# include "nsAutoPtr.h"
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
# include "nsFocusManager.h"
2010-03-01 00:03:49 -08:00
# include "Layers.h"
# include "gfxContext.h"
2007-03-22 10:30:00 -07:00
// for painting the background window
2011-09-08 19:27:12 -07:00
# include "mozilla/LookAndFeel.h"
2007-03-22 10:30:00 -07:00
// Printing Includes
# ifdef NS_PRINTING
# include "nsIWebBrowserPrint.h"
# include "nsIContentViewer.h"
# endif
// PSM2 includes
# include "nsISecureBrowserUI.h"
2010-08-10 13:06:38 -07:00
# include "nsXULAppAPI.h"
2007-03-22 10:30:00 -07:00
2011-09-08 19:27:12 -07:00
using namespace mozilla ;
2010-03-01 00:03:49 -08:00
using namespace mozilla : : layers ;
2007-03-22 10:30:00 -07:00
static NS_DEFINE_IID ( kWindowCID , NS_WINDOW_CID ) ;
static NS_DEFINE_CID ( kChildCID , NS_CHILD_CID ) ;
//*****************************************************************************
//*** nsWebBrowser: Object Management
//*****************************************************************************
2012-07-30 07:20:58 -07:00
nsWebBrowser : : nsWebBrowser ( ) : mDocShellTreeOwner ( nullptr ) ,
mInitInfo ( nullptr ) ,
2007-03-22 10:30:00 -07:00
mContentType ( typeContentWrapper ) ,
2011-10-17 07:59:28 -07:00
mActivating ( false ) ,
mShouldEnableHistory ( true ) ,
mIsActive ( true ) ,
2012-07-30 07:20:58 -07:00
mParentNativeWindow ( nullptr ) ,
mProgressListener ( nullptr ) ,
2007-03-22 10:30:00 -07:00
mBackgroundColor ( 0 ) ,
mPersistCurrentState ( nsIWebBrowserPersist : : PERSIST_STATE_READY ) ,
mPersistResult ( NS_OK ) ,
mPersistFlags ( nsIWebBrowserPersist : : PERSIST_FLAGS_NONE ) ,
2012-07-30 07:20:58 -07:00
mStream ( nullptr ) ,
mParentWidget ( nullptr ) ,
mListenerArray ( nullptr )
2007-03-22 10:30:00 -07:00
{
mInitInfo = new nsWebBrowserInitInfo ( ) ;
mWWatch = do_GetService ( NS_WINDOWWATCHER_CONTRACTID ) ;
NS_ASSERTION ( mWWatch , " failed to get WindowWatcher " ) ;
}
nsWebBrowser : : ~ nsWebBrowser ( )
{
InternalDestroy ( ) ;
}
NS_IMETHODIMP nsWebBrowser : : InternalDestroy ( )
{
2008-07-18 08:54:12 -07:00
if ( mInternalWidget ) {
2012-08-15 11:52:42 -07:00
mInternalWidget - > SetWidgetListener ( nullptr ) ;
2008-07-18 08:54:12 -07:00
mInternalWidget - > Destroy ( ) ;
2012-07-30 07:20:58 -07:00
mInternalWidget = nullptr ; // Force release here.
2008-07-18 08:54:12 -07:00
}
2007-03-22 10:30:00 -07:00
2012-07-30 07:20:58 -07:00
SetDocShell ( nullptr ) ;
2007-03-22 10:30:00 -07:00
if ( mDocShellTreeOwner )
{
2012-07-30 07:20:58 -07:00
mDocShellTreeOwner - > WebBrowser ( nullptr ) ;
2007-03-22 10:30:00 -07:00
NS_RELEASE ( mDocShellTreeOwner ) ;
}
if ( mInitInfo )
{
delete mInitInfo ;
2012-07-30 07:20:58 -07:00
mInitInfo = nullptr ;
2007-03-22 10:30:00 -07:00
}
if ( mListenerArray ) {
2012-08-22 08:56:38 -07:00
for ( uint32_t i = 0 , end = mListenerArray - > Length ( ) ; i < end ; i + + ) {
2009-02-25 07:25:08 -08:00
nsWebBrowserListenerState * state = mListenerArray - > ElementAt ( i ) ;
2010-07-05 02:42:18 -07:00
delete state ;
2009-02-25 07:25:08 -08:00
}
2007-03-22 10:30:00 -07:00
delete mListenerArray ;
2012-07-30 07:20:58 -07:00
mListenerArray = nullptr ;
2007-03-22 10:30:00 -07:00
}
return NS_OK ;
}
//*****************************************************************************
// nsWebBrowser::nsISupports
//*****************************************************************************
NS_IMPL_ADDREF ( nsWebBrowser )
NS_IMPL_RELEASE ( nsWebBrowser )
NS_INTERFACE_MAP_BEGIN ( nsWebBrowser )
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS ( nsISupports , nsIWebBrowser )
NS_INTERFACE_MAP_ENTRY ( nsIWebBrowser )
NS_INTERFACE_MAP_ENTRY ( nsIWebNavigation )
NS_INTERFACE_MAP_ENTRY ( nsIBaseWindow )
NS_INTERFACE_MAP_ENTRY ( nsIScrollable )
NS_INTERFACE_MAP_ENTRY ( nsITextScroll )
NS_INTERFACE_MAP_ENTRY ( nsIDocShellTreeItem )
2008-04-06 05:28:34 -07:00
NS_INTERFACE_MAP_ENTRY ( nsIDocShellTreeNode )
2007-03-22 10:30:00 -07:00
NS_INTERFACE_MAP_ENTRY ( nsIInterfaceRequestor )
NS_INTERFACE_MAP_ENTRY ( nsIWebBrowserSetup )
NS_INTERFACE_MAP_ENTRY ( nsIWebBrowserPersist )
NS_INTERFACE_MAP_ENTRY ( nsICancelable )
NS_INTERFACE_MAP_ENTRY ( nsIWebBrowserFocus )
NS_INTERFACE_MAP_ENTRY ( nsIWebProgressListener )
NS_INTERFACE_MAP_ENTRY ( nsIWebBrowserStream )
NS_INTERFACE_MAP_ENTRY ( nsISupportsWeakReference )
NS_INTERFACE_MAP_END
///*****************************************************************************
// nsWebBrowser::nsIInterfaceRequestor
//*****************************************************************************
NS_IMETHODIMP nsWebBrowser : : GetInterface ( const nsIID & aIID , void * * aSink )
{
NS_ENSURE_ARG_POINTER ( aSink ) ;
if ( NS_SUCCEEDED ( QueryInterface ( aIID , aSink ) ) )
return NS_OK ;
if ( mDocShell ) {
# ifdef NS_PRINTING
if ( aIID . Equals ( NS_GET_IID ( nsIWebBrowserPrint ) ) ) {
nsCOMPtr < nsIContentViewer > viewer ;
mDocShell - > GetContentViewer ( getter_AddRefs ( viewer ) ) ;
if ( ! viewer )
return NS_NOINTERFACE ;
nsCOMPtr < nsIWebBrowserPrint > webBrowserPrint ( do_QueryInterface ( viewer ) ) ;
nsIWebBrowserPrint * print = ( nsIWebBrowserPrint * ) webBrowserPrint . get ( ) ;
NS_ASSERTION ( print , " This MUST support this interface! " ) ;
NS_ADDREF ( print ) ;
* aSink = print ;
return NS_OK ;
}
# endif
return mDocShellAsReq - > GetInterface ( aIID , aSink ) ;
}
return NS_NOINTERFACE ;
}
//*****************************************************************************
// nsWebBrowser::nsIWebBrowser
//*****************************************************************************
// listeners that currently support registration through AddWebBrowserListener:
// - nsIWebProgressListener
NS_IMETHODIMP nsWebBrowser : : AddWebBrowserListener ( nsIWeakReference * aListener , const nsIID & aIID )
{
NS_ENSURE_ARG_POINTER ( aListener ) ;
nsresult rv = NS_OK ;
if ( ! mWebProgress ) {
// The window hasn't been created yet, so queue up the listener. They'll be
// registered when the window gets created.
nsAutoPtr < nsWebBrowserListenerState > state ;
2010-07-05 02:42:18 -07:00
state = new nsWebBrowserListenerState ( ) ;
2007-03-22 10:30:00 -07:00
if ( ! state ) return NS_ERROR_OUT_OF_MEMORY ;
state - > mWeakPtr = aListener ;
state - > mID = aIID ;
if ( ! mListenerArray ) {
2010-07-05 02:42:18 -07:00
mListenerArray = new nsTArray < nsWebBrowserListenerState * > ( ) ;
2007-03-22 10:30:00 -07:00
if ( ! mListenerArray ) {
return NS_ERROR_OUT_OF_MEMORY ;
}
}
if ( ! mListenerArray - > AppendElement ( state ) ) {
return NS_ERROR_OUT_OF_MEMORY ;
}
// We're all set now; don't delete |state| after this point
state . forget ( ) ;
} else {
nsCOMPtr < nsISupports > supports ( do_QueryReferent ( aListener ) ) ;
if ( ! supports ) return NS_ERROR_INVALID_ARG ;
rv = BindListener ( supports , aIID ) ;
}
return rv ;
}
NS_IMETHODIMP nsWebBrowser : : BindListener ( nsISupports * aListener , const nsIID & aIID ) {
2009-07-22 15:31:04 -07:00
NS_ENSURE_ARG_POINTER ( aListener ) ;
2007-03-22 10:30:00 -07:00
NS_ASSERTION ( mWebProgress , " this should only be called after we've retrieved a progress iface " ) ;
nsresult rv = NS_OK ;
// register this listener for the specified interface id
if ( aIID . Equals ( NS_GET_IID ( nsIWebProgressListener ) ) ) {
nsCOMPtr < nsIWebProgressListener > listener = do_QueryInterface ( aListener , & rv ) ;
if ( NS_FAILED ( rv ) ) return rv ;
2009-07-22 15:31:04 -07:00
NS_ENSURE_STATE ( mWebProgress ) ;
2007-03-22 10:30:00 -07:00
rv = mWebProgress - > AddProgressListener ( listener , nsIWebProgress : : NOTIFY_ALL ) ;
}
else if ( aIID . Equals ( NS_GET_IID ( nsISHistoryListener ) ) ) {
nsCOMPtr < nsISHistory > shistory ( do_GetInterface ( mDocShell , & rv ) ) ;
if ( NS_FAILED ( rv ) ) return rv ;
nsCOMPtr < nsISHistoryListener > listener ( do_QueryInterface ( aListener , & rv ) ) ;
if ( NS_FAILED ( rv ) ) return rv ;
rv = shistory - > AddSHistoryListener ( listener ) ;
}
return rv ;
}
NS_IMETHODIMP nsWebBrowser : : RemoveWebBrowserListener ( nsIWeakReference * aListener , const nsIID & aIID )
{
NS_ENSURE_ARG_POINTER ( aListener ) ;
nsresult rv = NS_OK ;
if ( ! mWebProgress ) {
// if there's no-one to register the listener w/, and we don't have a queue going,
// the the called is calling Remove before an Add which doesn't make sense.
if ( ! mListenerArray ) return NS_ERROR_FAILURE ;
// iterate the array and remove the queued listener
2012-08-22 08:56:38 -07:00
int32_t count = mListenerArray - > Length ( ) ;
2007-03-22 10:30:00 -07:00
while ( count > 0 ) {
2009-02-25 07:25:08 -08:00
nsWebBrowserListenerState * state = mListenerArray - > ElementAt ( count ) ;
2007-03-22 10:30:00 -07:00
NS_ASSERTION ( state , " list construction problem " ) ;
if ( state - > Equals ( aListener , aIID ) ) {
// this is the one, pull it out.
mListenerArray - > RemoveElementAt ( count ) ;
break ;
}
count - - ;
}
// if we've emptied the array, get rid of it.
2009-02-25 07:25:08 -08:00
if ( 0 > = mListenerArray - > Length ( ) ) {
2012-08-22 08:56:38 -07:00
for ( uint32_t i = 0 , end = mListenerArray - > Length ( ) ; i < end ; i + + ) {
2009-02-25 07:25:08 -08:00
nsWebBrowserListenerState * state = mListenerArray - > ElementAt ( i ) ;
2010-07-05 02:42:18 -07:00
delete state ;
2009-02-25 07:25:08 -08:00
}
2010-07-05 02:42:18 -07:00
delete mListenerArray ;
2012-07-30 07:20:58 -07:00
mListenerArray = nullptr ;
2007-03-22 10:30:00 -07:00
}
} else {
nsCOMPtr < nsISupports > supports ( do_QueryReferent ( aListener ) ) ;
if ( ! supports ) return NS_ERROR_INVALID_ARG ;
rv = UnBindListener ( supports , aIID ) ;
}
return rv ;
}
NS_IMETHODIMP nsWebBrowser : : UnBindListener ( nsISupports * aListener , const nsIID & aIID ) {
2009-07-22 15:31:04 -07:00
NS_ENSURE_ARG_POINTER ( aListener ) ;
2007-03-22 10:30:00 -07:00
NS_ASSERTION ( mWebProgress , " this should only be called after we've retrieved a progress iface " ) ;
nsresult rv = NS_OK ;
// remove the listener for the specified interface id
if ( aIID . Equals ( NS_GET_IID ( nsIWebProgressListener ) ) ) {
nsCOMPtr < nsIWebProgressListener > listener = do_QueryInterface ( aListener , & rv ) ;
if ( NS_FAILED ( rv ) ) return rv ;
2009-07-22 15:31:04 -07:00
NS_ENSURE_STATE ( mWebProgress ) ;
2007-03-22 10:30:00 -07:00
rv = mWebProgress - > RemoveProgressListener ( listener ) ;
}
else if ( aIID . Equals ( NS_GET_IID ( nsISHistoryListener ) ) ) {
nsCOMPtr < nsISHistory > shistory ( do_GetInterface ( mDocShell , & rv ) ) ;
if ( NS_FAILED ( rv ) ) return rv ;
nsCOMPtr < nsISHistoryListener > listener ( do_QueryInterface ( aListener , & rv ) ) ;
if ( NS_FAILED ( rv ) ) return rv ;
rv = shistory - > RemoveSHistoryListener ( listener ) ;
}
return rv ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : EnableGlobalHistory ( bool aEnable )
2007-03-22 10:30:00 -07:00
{
nsresult rv ;
NS_ENSURE_STATE ( mDocShell ) ;
nsCOMPtr < nsIDocShellHistory > dsHistory ( do_QueryInterface ( mDocShell , & rv ) ) ;
if ( NS_FAILED ( rv ) ) return rv ;
2009-07-22 15:31:04 -07:00
return dsHistory - > SetUseGlobalHistory ( aEnable ) ;
2007-03-22 10:30:00 -07:00
}
NS_IMETHODIMP nsWebBrowser : : GetContainerWindow ( nsIWebBrowserChrome * * aTopWindow )
{
NS_ENSURE_ARG_POINTER ( aTopWindow ) ;
if ( mDocShellTreeOwner ) {
* aTopWindow = mDocShellTreeOwner - > GetWebBrowserChrome ( ) . get ( ) ;
} else {
2012-07-30 07:20:58 -07:00
* aTopWindow = nullptr ;
2007-03-22 10:30:00 -07:00
}
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : SetContainerWindow ( nsIWebBrowserChrome * aTopWindow )
{
NS_ENSURE_SUCCESS ( EnsureDocShellTreeOwner ( ) , NS_ERROR_FAILURE ) ;
return mDocShellTreeOwner - > SetWebBrowserChrome ( aTopWindow ) ;
}
NS_IMETHODIMP nsWebBrowser : : GetParentURIContentListener ( nsIURIContentListener * *
aParentContentListener )
{
NS_ENSURE_ARG_POINTER ( aParentContentListener ) ;
2012-07-30 07:20:58 -07:00
* aParentContentListener = nullptr ;
2007-03-22 10:30:00 -07:00
// get the interface from the docshell
nsCOMPtr < nsIURIContentListener > listener ( do_GetInterface ( mDocShell ) ) ;
if ( listener )
return listener - > GetParentContentListener ( aParentContentListener ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : SetParentURIContentListener ( nsIURIContentListener *
aParentContentListener )
{
// get the interface from the docshell
nsCOMPtr < nsIURIContentListener > listener ( do_GetInterface ( mDocShell ) ) ;
if ( listener )
return listener - > SetParentContentListener ( aParentContentListener ) ;
return NS_ERROR_FAILURE ;
}
NS_IMETHODIMP nsWebBrowser : : GetContentDOMWindow ( nsIDOMWindow * * _retval )
{
NS_ENSURE_STATE ( mDocShell ) ;
nsresult rv = NS_OK ;
nsCOMPtr < nsIDOMWindow > retval = do_GetInterface ( mDocShell , & rv ) ;
if ( NS_FAILED ( rv ) ) return rv ;
* _retval = retval ;
NS_ADDREF ( * _retval ) ;
return rv ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : GetIsActive ( bool * rv )
2010-08-05 08:27:52 -07:00
{
* rv = mIsActive ;
return NS_OK ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : SetIsActive ( bool aIsActive )
2010-08-05 08:27:52 -07:00
{
// Set our copy of the value
mIsActive = aIsActive ;
// If we have a docshell, pass on the request
if ( mDocShell )
return mDocShell - > SetIsActive ( aIsActive ) ;
return NS_OK ;
}
2007-03-22 10:30:00 -07:00
//*****************************************************************************
// nsWebBrowser::nsIDocShellTreeItem
//*****************************************************************************
NS_IMETHODIMP nsWebBrowser : : GetName ( PRUnichar * * aName )
{
NS_ENSURE_ARG_POINTER ( aName ) ;
if ( mDocShell )
mDocShellAsItem - > GetName ( aName ) ;
else
* aName = ToNewUnicode ( mInitInfo - > name ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : SetName ( const PRUnichar * aName )
{
if ( mDocShell )
{
nsCOMPtr < nsIDocShellTreeItem > docShellAsItem ( do_QueryInterface ( mDocShell ) ) ;
NS_ENSURE_TRUE ( docShellAsItem , NS_ERROR_FAILURE ) ;
return docShellAsItem - > SetName ( aName ) ;
}
else
mInitInfo - > name = aName ;
return NS_OK ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : NameEquals ( const PRUnichar * aName , bool * _retval )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_ARG_POINTER ( aName ) ;
NS_ENSURE_ARG_POINTER ( _retval ) ;
if ( mDocShell )
{
nsCOMPtr < nsIDocShellTreeItem > docShellAsItem ( do_QueryInterface ( mDocShell ) ) ;
NS_ENSURE_TRUE ( docShellAsItem , NS_ERROR_FAILURE ) ;
return docShellAsItem - > NameEquals ( aName , _retval ) ;
}
else
* _retval = mInitInfo - > name . Equals ( aName ) ;
return NS_OK ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetItemType ( int32_t * aItemType )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_ARG_POINTER ( aItemType ) ;
* aItemType = mContentType ;
return NS_OK ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetItemType ( int32_t aItemType )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_TRUE ( ( aItemType = = typeContentWrapper | | aItemType = = typeChromeWrapper ) , NS_ERROR_FAILURE ) ;
mContentType = aItemType ;
if ( mDocShellAsItem )
2011-06-28 03:45:50 -07:00
mDocShellAsItem - > SetItemType ( mContentType = = typeChromeWrapper
2012-08-22 08:56:38 -07:00
? static_cast < int32_t > ( typeChrome )
: static_cast < int32_t > ( typeContent ) ) ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : GetParent ( nsIDocShellTreeItem * * aParent )
{
2012-07-30 07:20:58 -07:00
* aParent = nullptr ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : GetSameTypeParent ( nsIDocShellTreeItem * * aParent )
{
2012-07-30 07:20:58 -07:00
* aParent = nullptr ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : GetRootTreeItem ( nsIDocShellTreeItem * * aRootTreeItem )
{
NS_ENSURE_ARG_POINTER ( aRootTreeItem ) ;
2007-07-08 00:08:04 -07:00
* aRootTreeItem = static_cast < nsIDocShellTreeItem * > ( this ) ;
2007-03-22 10:30:00 -07:00
nsCOMPtr < nsIDocShellTreeItem > parent ;
NS_ENSURE_SUCCESS ( GetParent ( getter_AddRefs ( parent ) ) , NS_ERROR_FAILURE ) ;
while ( parent )
{
* aRootTreeItem = parent ;
NS_ENSURE_SUCCESS ( ( * aRootTreeItem ) - > GetParent ( getter_AddRefs ( parent ) ) , NS_ERROR_FAILURE ) ;
}
NS_ADDREF ( * aRootTreeItem ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : GetSameTypeRootTreeItem ( nsIDocShellTreeItem * * aRootTreeItem )
{
NS_ENSURE_ARG_POINTER ( aRootTreeItem ) ;
2007-07-08 00:08:04 -07:00
* aRootTreeItem = static_cast < nsIDocShellTreeItem * > ( this ) ;
2007-03-22 10:30:00 -07:00
nsCOMPtr < nsIDocShellTreeItem > parent ;
NS_ENSURE_SUCCESS ( GetSameTypeParent ( getter_AddRefs ( parent ) ) , NS_ERROR_FAILURE ) ;
while ( parent )
{
* aRootTreeItem = parent ;
NS_ENSURE_SUCCESS ( ( * aRootTreeItem ) - > GetSameTypeParent ( getter_AddRefs ( parent ) ) ,
NS_ERROR_FAILURE ) ;
}
NS_ADDREF ( * aRootTreeItem ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : FindItemWithName ( const PRUnichar * aName ,
nsISupports * aRequestor , nsIDocShellTreeItem * aOriginalRequestor ,
nsIDocShellTreeItem * * _retval )
{
NS_ENSURE_STATE ( mDocShell ) ;
NS_ASSERTION ( mDocShellTreeOwner , " This should always be set when in this situation " ) ;
return mDocShellAsItem - > FindItemWithName ( aName ,
2007-07-08 00:08:04 -07:00
static_cast < nsIDocShellTreeOwner * > ( mDocShellTreeOwner ) ,
2007-03-22 10:30:00 -07:00
aOriginalRequestor , _retval ) ;
}
NS_IMETHODIMP nsWebBrowser : : GetTreeOwner ( nsIDocShellTreeOwner * * aTreeOwner )
{
NS_ENSURE_ARG_POINTER ( aTreeOwner ) ;
2012-07-30 07:20:58 -07:00
* aTreeOwner = nullptr ;
2007-03-22 10:30:00 -07:00
if ( mDocShellTreeOwner )
{
if ( mDocShellTreeOwner - > mTreeOwner )
{
* aTreeOwner = mDocShellTreeOwner - > mTreeOwner ;
}
else
{
* aTreeOwner = mDocShellTreeOwner ;
}
}
NS_IF_ADDREF ( * aTreeOwner ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : SetTreeOwner ( nsIDocShellTreeOwner * aTreeOwner )
{
NS_ENSURE_SUCCESS ( EnsureDocShellTreeOwner ( ) , NS_ERROR_FAILURE ) ;
return mDocShellTreeOwner - > SetTreeOwner ( aTreeOwner ) ;
}
2007-05-06 14:06:28 -07:00
//*****************************************************************************
// nsWebBrowser::nsIDocShellTreeItem
//*****************************************************************************
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetChildCount ( int32_t * aChildCount )
2007-05-06 14:06:28 -07:00
{
NS_ENSURE_ARG_POINTER ( aChildCount ) ;
* aChildCount = 0 ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : AddChild ( nsIDocShellTreeItem * aChild )
{
return NS_ERROR_UNEXPECTED ;
}
NS_IMETHODIMP nsWebBrowser : : RemoveChild ( nsIDocShellTreeItem * aChild )
{
return NS_ERROR_UNEXPECTED ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetChildAt ( int32_t aIndex ,
2007-05-06 14:06:28 -07:00
nsIDocShellTreeItem * * aChild )
{
return NS_ERROR_UNEXPECTED ;
}
NS_IMETHODIMP nsWebBrowser : : FindChildWithName (
const PRUnichar * aName ,
2011-09-28 23:19:26 -07:00
bool aRecurse , bool aSameType ,
2007-05-06 14:06:28 -07:00
nsIDocShellTreeItem * aRequestor ,
nsIDocShellTreeItem * aOriginalRequestor ,
nsIDocShellTreeItem * * _retval )
{
NS_ENSURE_ARG_POINTER ( _retval ) ;
2012-07-30 07:20:58 -07:00
* _retval = nullptr ;
2007-05-06 14:06:28 -07:00
return NS_OK ;
}
2007-03-22 10:30:00 -07:00
//*****************************************************************************
// nsWebBrowser::nsIWebNavigation
//*****************************************************************************
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : GetCanGoBack ( bool * aCanGoBack )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > GetCanGoBack ( aCanGoBack ) ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : GetCanGoForward ( bool * aCanGoForward )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > GetCanGoForward ( aCanGoForward ) ;
}
NS_IMETHODIMP nsWebBrowser : : GoBack ( )
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > GoBack ( ) ;
}
NS_IMETHODIMP nsWebBrowser : : GoForward ( )
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > GoForward ( ) ;
}
NS_IMETHODIMP nsWebBrowser : : LoadURI ( const PRUnichar * aURI ,
2012-08-22 08:56:38 -07:00
uint32_t aLoadFlags ,
2007-03-22 10:30:00 -07:00
nsIURI * aReferringURI ,
nsIInputStream * aPostDataStream ,
nsIInputStream * aExtraHeaderStream )
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > LoadURI ( aURI ,
aLoadFlags ,
aReferringURI ,
aPostDataStream ,
aExtraHeaderStream ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : Reload ( uint32_t aReloadFlags )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > Reload ( aReloadFlags ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GotoIndex ( int32_t aIndex )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > GotoIndex ( aIndex ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : Stop ( uint32_t aStopFlags )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > Stop ( aStopFlags ) ;
}
NS_IMETHODIMP nsWebBrowser : : GetCurrentURI ( nsIURI * * aURI )
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > GetCurrentURI ( aURI ) ;
}
NS_IMETHODIMP nsWebBrowser : : GetReferringURI ( nsIURI * * aURI )
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > GetReferringURI ( aURI ) ;
}
NS_IMETHODIMP nsWebBrowser : : SetSessionHistory ( nsISHistory * aSessionHistory )
{
if ( mDocShell )
return mDocShellAsNav - > SetSessionHistory ( aSessionHistory ) ;
else
mInitInfo - > sessionHistory = aSessionHistory ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : GetSessionHistory ( nsISHistory * * aSessionHistory )
{
NS_ENSURE_ARG_POINTER ( aSessionHistory ) ;
if ( mDocShell )
return mDocShellAsNav - > GetSessionHistory ( aSessionHistory ) ;
else
* aSessionHistory = mInitInfo - > sessionHistory ;
NS_IF_ADDREF ( * aSessionHistory ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : GetDocument ( nsIDOMDocument * * aDocument )
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsNav - > GetDocument ( aDocument ) ;
}
//*****************************************************************************
// nsWebBrowser::nsIWebBrowserSetup
//*****************************************************************************
/* void setProperty (in unsigned long aId, in unsigned long aValue); */
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetProperty ( uint32_t aId , uint32_t aValue )
2007-03-22 10:30:00 -07:00
{
nsresult rv = NS_OK ;
switch ( aId )
{
case nsIWebBrowserSetup : : SETUP_ALLOW_PLUGINS :
{
NS_ENSURE_STATE ( mDocShell ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( ( aValue = = true | | aValue = = false ) , NS_ERROR_INVALID_ARG ) ;
2007-10-12 16:47:11 -07:00
mDocShell - > SetAllowPlugins ( ! ! aValue ) ;
2007-03-22 10:30:00 -07:00
}
break ;
case nsIWebBrowserSetup : : SETUP_ALLOW_JAVASCRIPT :
{
NS_ENSURE_STATE ( mDocShell ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( ( aValue = = true | | aValue = = false ) , NS_ERROR_INVALID_ARG ) ;
2007-10-12 16:47:11 -07:00
mDocShell - > SetAllowJavascript ( ! ! aValue ) ;
2007-03-22 10:30:00 -07:00
}
break ;
case nsIWebBrowserSetup : : SETUP_ALLOW_META_REDIRECTS :
{
NS_ENSURE_STATE ( mDocShell ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( ( aValue = = true | | aValue = = false ) , NS_ERROR_INVALID_ARG ) ;
2007-10-12 16:47:11 -07:00
mDocShell - > SetAllowMetaRedirects ( ! ! aValue ) ;
2007-03-22 10:30:00 -07:00
}
break ;
case nsIWebBrowserSetup : : SETUP_ALLOW_SUBFRAMES :
{
NS_ENSURE_STATE ( mDocShell ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( ( aValue = = true | | aValue = = false ) , NS_ERROR_INVALID_ARG ) ;
2007-10-12 16:47:11 -07:00
mDocShell - > SetAllowSubframes ( ! ! aValue ) ;
2007-03-22 10:30:00 -07:00
}
break ;
case nsIWebBrowserSetup : : SETUP_ALLOW_IMAGES :
{
NS_ENSURE_STATE ( mDocShell ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( ( aValue = = true | | aValue = = false ) , NS_ERROR_INVALID_ARG ) ;
2007-10-12 16:47:11 -07:00
mDocShell - > SetAllowImages ( ! ! aValue ) ;
2007-03-22 10:30:00 -07:00
}
break ;
2009-05-17 07:22:54 -07:00
case nsIWebBrowserSetup : : SETUP_ALLOW_DNS_PREFETCH :
{
NS_ENSURE_STATE ( mDocShell ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( ( aValue = = true | | aValue = = false ) , NS_ERROR_INVALID_ARG ) ;
2009-05-17 07:22:54 -07:00
mDocShell - > SetAllowDNSPrefetch ( ! ! aValue ) ;
}
2010-08-10 13:06:38 -07:00
break ;
2007-03-22 10:30:00 -07:00
case nsIWebBrowserSetup : : SETUP_USE_GLOBAL_HISTORY :
{
NS_ENSURE_STATE ( mDocShell ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( ( aValue = = true | | aValue = = false ) , NS_ERROR_INVALID_ARG ) ;
2007-10-12 16:47:11 -07:00
rv = EnableGlobalHistory ( ! ! aValue ) ;
2007-03-22 10:30:00 -07:00
mShouldEnableHistory = aValue ;
}
break ;
case nsIWebBrowserSetup : : SETUP_FOCUS_DOC_BEFORE_CONTENT :
{
// obsolete
}
break ;
case nsIWebBrowserSetup : : SETUP_IS_CHROME_WRAPPER :
{
2011-10-17 07:59:28 -07:00
NS_ENSURE_TRUE ( ( aValue = = true | | aValue = = false ) , NS_ERROR_INVALID_ARG ) ;
2012-08-22 08:56:38 -07:00
SetItemType ( aValue ? static_cast < int32_t > ( typeChromeWrapper )
: static_cast < int32_t > ( typeContentWrapper ) ) ;
2007-03-22 10:30:00 -07:00
}
break ;
default :
rv = NS_ERROR_INVALID_ARG ;
}
return rv ;
}
//*****************************************************************************
// nsWebBrowser::nsIWebProgressListener
//*****************************************************************************
/* void onStateChange (in nsIWebProgress aWebProgress, in nsIRequest aRequest, in unsigned long aStateFlags, in nsresult aStatus); */
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : OnStateChange ( nsIWebProgress * aWebProgress , nsIRequest * aRequest , uint32_t aStateFlags , nsresult aStatus )
2007-03-22 10:30:00 -07:00
{
if ( mPersist )
{
mPersist - > GetCurrentState ( & mPersistCurrentState ) ;
}
if ( aStateFlags & STATE_IS_NETWORK & & aStateFlags & STATE_STOP )
{
2012-07-30 07:20:58 -07:00
mPersist = nullptr ;
2007-03-22 10:30:00 -07:00
}
if ( mProgressListener )
{
return mProgressListener - > OnStateChange ( aWebProgress , aRequest , aStateFlags , aStatus ) ;
}
return NS_OK ;
}
/* void onProgressChange (in nsIWebProgress aWebProgress, in nsIRequest aRequest, in long aCurSelfProgress, in long aMaxSelfProgress, in long aCurTotalProgress, in long aMaxTotalProgress); */
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : OnProgressChange ( nsIWebProgress * aWebProgress , nsIRequest * aRequest , int32_t aCurSelfProgress , int32_t aMaxSelfProgress , int32_t aCurTotalProgress , int32_t aMaxTotalProgress )
2007-03-22 10:30:00 -07:00
{
if ( mPersist )
{
mPersist - > GetCurrentState ( & mPersistCurrentState ) ;
}
if ( mProgressListener )
{
return mProgressListener - > OnProgressChange ( aWebProgress , aRequest , aCurSelfProgress , aMaxSelfProgress , aCurTotalProgress , aMaxTotalProgress ) ;
}
return NS_OK ;
}
2011-11-10 06:01:11 -08:00
/* void onLocationChange (in nsIWebProgress aWebProgress, in nsIRequest aRequest, in nsIURI location, in unsigned long aFlags); */
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : OnLocationChange ( nsIWebProgress * aWebProgress , nsIRequest * aRequest , nsIURI * location , uint32_t aFlags )
2007-03-22 10:30:00 -07:00
{
if ( mProgressListener )
{
2011-11-10 06:01:11 -08:00
return mProgressListener - > OnLocationChange ( aWebProgress , aRequest , location , aFlags ) ;
2007-03-22 10:30:00 -07:00
}
return NS_OK ;
}
/* void onStatusChange (in nsIWebProgress aWebProgress, in nsIRequest aRequest, in nsresult aStatus, in wstring aMessage); */
NS_IMETHODIMP nsWebBrowser : : OnStatusChange ( nsIWebProgress * aWebProgress , nsIRequest * aRequest , nsresult aStatus , const PRUnichar * aMessage )
{
if ( mProgressListener )
{
return mProgressListener - > OnStatusChange ( aWebProgress , aRequest , aStatus , aMessage ) ;
}
return NS_OK ;
}
/* void onSecurityChange (in nsIWebProgress aWebProgress, in nsIRequest aRequest, in unsigned long state); */
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : OnSecurityChange ( nsIWebProgress * aWebProgress , nsIRequest * aRequest , uint32_t state )
2007-03-22 10:30:00 -07:00
{
if ( mProgressListener )
{
return mProgressListener - > OnSecurityChange ( aWebProgress , aRequest , state ) ;
}
return NS_OK ;
}
//*****************************************************************************
// nsWebBrowser::nsIWebBrowserPersist
//*****************************************************************************
/* attribute unsigned long persistFlags; */
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetPersistFlags ( uint32_t * aPersistFlags )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_ARG_POINTER ( aPersistFlags ) ;
nsresult rv = NS_OK ;
if ( mPersist )
{
rv = mPersist - > GetPersistFlags ( & mPersistFlags ) ;
}
* aPersistFlags = mPersistFlags ;
return rv ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetPersistFlags ( uint32_t aPersistFlags )
2007-03-22 10:30:00 -07:00
{
nsresult rv = NS_OK ;
mPersistFlags = aPersistFlags ;
if ( mPersist )
{
rv = mPersist - > SetPersistFlags ( mPersistFlags ) ;
mPersist - > GetPersistFlags ( & mPersistFlags ) ;
}
return rv ;
}
/* readonly attribute unsigned long currentState; */
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetCurrentState ( uint32_t * aCurrentState )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_ARG_POINTER ( aCurrentState ) ;
if ( mPersist )
{
mPersist - > GetCurrentState ( & mPersistCurrentState ) ;
}
* aCurrentState = mPersistCurrentState ;
return NS_OK ;
}
2012-08-06 05:02:31 -07:00
/* readonly attribute nsresult result; */
NS_IMETHODIMP nsWebBrowser : : GetResult ( nsresult * aResult )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_ARG_POINTER ( aResult ) ;
if ( mPersist )
{
mPersist - > GetResult ( & mPersistResult ) ;
}
* aResult = mPersistResult ;
return NS_OK ;
}
/* attribute nsIWebBrowserPersistProgress progressListener; */
NS_IMETHODIMP nsWebBrowser : : GetProgressListener ( nsIWebProgressListener * * aProgressListener )
{
NS_ENSURE_ARG_POINTER ( aProgressListener ) ;
* aProgressListener = mProgressListener ;
NS_IF_ADDREF ( * aProgressListener ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : SetProgressListener ( nsIWebProgressListener * aProgressListener )
{
mProgressListener = aProgressListener ;
return NS_OK ;
}
/* void saveURI (in nsIURI aURI, in nsIURI aReferrer,
in nsISupports aCacheKey , in nsIInputStream aPostData , in wstring aExtraHeaders ,
2012-10-04 12:07:51 -07:00
in nsISupports aFile , in nsILoadContext aPrivacyContext ) ; */
2007-03-22 10:30:00 -07:00
NS_IMETHODIMP nsWebBrowser : : SaveURI (
nsIURI * aURI , nsISupports * aCacheKey , nsIURI * aReferrer , nsIInputStream * aPostData ,
2012-10-04 12:07:51 -07:00
const char * aExtraHeaders , nsISupports * aFile , nsILoadContext * aPrivacyContext )
{
return SavePrivacyAwareURI ( aURI , aCacheKey , aReferrer , aPostData , aExtraHeaders ,
aFile , aPrivacyContext & & aPrivacyContext - > UsePrivateBrowsing ( ) ) ;
}
NS_IMETHODIMP nsWebBrowser : : SavePrivacyAwareURI (
nsIURI * aURI , nsISupports * aCacheKey , nsIURI * aReferrer , nsIInputStream * aPostData ,
const char * aExtraHeaders , nsISupports * aFile , bool aIsPrivate )
2007-03-22 10:30:00 -07:00
{
if ( mPersist )
{
2012-08-22 08:56:38 -07:00
uint32_t currentState ;
2007-03-22 10:30:00 -07:00
mPersist - > GetCurrentState ( & currentState ) ;
if ( currentState = = PERSIST_STATE_FINISHED )
{
2012-07-30 07:20:58 -07:00
mPersist = nullptr ;
2007-03-22 10:30:00 -07:00
}
else
{
// You can't save again until the last save has completed
return NS_ERROR_FAILURE ;
}
}
nsCOMPtr < nsIURI > uri ;
if ( aURI )
{
uri = aURI ;
}
else
{
nsresult rv = GetCurrentURI ( getter_AddRefs ( uri ) ) ;
if ( NS_FAILED ( rv ) )
{
return NS_ERROR_FAILURE ;
}
}
// Create a throwaway persistence object to do the work
nsresult rv ;
mPersist = do_CreateInstance ( NS_WEBBROWSERPERSIST_CONTRACTID , & rv ) ;
2009-07-22 15:31:04 -07:00
NS_ENSURE_SUCCESS ( rv , rv ) ;
2007-03-22 10:30:00 -07:00
mPersist - > SetProgressListener ( this ) ;
mPersist - > SetPersistFlags ( mPersistFlags ) ;
mPersist - > GetCurrentState ( & mPersistCurrentState ) ;
2012-10-04 12:07:51 -07:00
rv = mPersist - > SavePrivacyAwareURI ( uri , aCacheKey , aReferrer , aPostData ,
aExtraHeaders , aFile , aIsPrivate ) ;
2007-03-22 10:30:00 -07:00
if ( NS_FAILED ( rv ) )
{
2012-07-30 07:20:58 -07:00
mPersist = nullptr ;
2007-03-22 10:30:00 -07:00
}
return rv ;
}
/* void saveChannel (in nsIChannel aChannel, in nsISupports aFile); */
NS_IMETHODIMP nsWebBrowser : : SaveChannel (
nsIChannel * aChannel , nsISupports * aFile )
{
if ( mPersist )
{
2012-08-22 08:56:38 -07:00
uint32_t currentState ;
2007-03-22 10:30:00 -07:00
mPersist - > GetCurrentState ( & currentState ) ;
if ( currentState = = PERSIST_STATE_FINISHED )
{
2012-07-30 07:20:58 -07:00
mPersist = nullptr ;
2007-03-22 10:30:00 -07:00
}
else
{
// You can't save again until the last save has completed
return NS_ERROR_FAILURE ;
}
}
// Create a throwaway persistence object to do the work
nsresult rv ;
mPersist = do_CreateInstance ( NS_WEBBROWSERPERSIST_CONTRACTID , & rv ) ;
2009-07-22 15:31:04 -07:00
NS_ENSURE_SUCCESS ( rv , rv ) ;
2007-03-22 10:30:00 -07:00
mPersist - > SetProgressListener ( this ) ;
mPersist - > SetPersistFlags ( mPersistFlags ) ;
mPersist - > GetCurrentState ( & mPersistCurrentState ) ;
rv = mPersist - > SaveChannel ( aChannel , aFile ) ;
if ( NS_FAILED ( rv ) )
{
2012-07-30 07:20:58 -07:00
mPersist = nullptr ;
2007-03-22 10:30:00 -07:00
}
return rv ;
}
/* void saveDocument (in nsIDOMDocument document, in nsISupports aFile, in nsISupports aDataPath); */
NS_IMETHODIMP nsWebBrowser : : SaveDocument (
nsIDOMDocument * aDocument , nsISupports * aFile , nsISupports * aDataPath ,
2012-08-22 08:56:38 -07:00
const char * aOutputContentType , uint32_t aEncodingFlags , uint32_t aWrapColumn )
2007-03-22 10:30:00 -07:00
{
if ( mPersist )
{
2012-08-22 08:56:38 -07:00
uint32_t currentState ;
2007-03-22 10:30:00 -07:00
mPersist - > GetCurrentState ( & currentState ) ;
if ( currentState = = PERSIST_STATE_FINISHED )
{
2012-07-30 07:20:58 -07:00
mPersist = nullptr ;
2007-03-22 10:30:00 -07:00
}
else
{
// You can't save again until the last save has completed
return NS_ERROR_FAILURE ;
}
}
// Use the specified DOM document, or if none is specified, the one
// attached to the web browser.
nsCOMPtr < nsIDOMDocument > doc ;
if ( aDocument )
{
doc = do_QueryInterface ( aDocument ) ;
}
else
{
GetDocument ( getter_AddRefs ( doc ) ) ;
}
if ( ! doc )
{
return NS_ERROR_FAILURE ;
}
// Create a throwaway persistence object to do the work
nsresult rv ;
mPersist = do_CreateInstance ( NS_WEBBROWSERPERSIST_CONTRACTID , & rv ) ;
2009-07-22 15:31:04 -07:00
NS_ENSURE_SUCCESS ( rv , rv ) ;
2007-03-22 10:30:00 -07:00
mPersist - > SetProgressListener ( this ) ;
mPersist - > SetPersistFlags ( mPersistFlags ) ;
mPersist - > GetCurrentState ( & mPersistCurrentState ) ;
rv = mPersist - > SaveDocument ( doc , aFile , aDataPath , aOutputContentType , aEncodingFlags , aWrapColumn ) ;
if ( NS_FAILED ( rv ) )
{
2012-07-30 07:20:58 -07:00
mPersist = nullptr ;
2007-03-22 10:30:00 -07:00
}
return rv ;
}
/* void cancelSave(); */
NS_IMETHODIMP nsWebBrowser : : CancelSave ( )
{
if ( mPersist )
{
return mPersist - > CancelSave ( ) ;
}
return NS_OK ;
}
/* void cancel(nsresult aReason); */
NS_IMETHODIMP nsWebBrowser : : Cancel ( nsresult aReason )
{
if ( mPersist )
{
return mPersist - > Cancel ( aReason ) ;
}
return NS_OK ;
}
//*****************************************************************************
// nsWebBrowser::nsIBaseWindow
//*****************************************************************************
NS_IMETHODIMP nsWebBrowser : : InitWindow ( nativeWindow aParentNativeWindow ,
2012-08-22 08:56:38 -07:00
nsIWidget * aParentWidget , int32_t aX , int32_t aY , int32_t aCX , int32_t aCY )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_ARG ( aParentNativeWindow | | aParentWidget ) ;
NS_ENSURE_STATE ( ! mDocShell | | mInitInfo ) ;
if ( aParentWidget )
NS_ENSURE_SUCCESS ( SetParentWidget ( aParentWidget ) , NS_ERROR_FAILURE ) ;
else
NS_ENSURE_SUCCESS ( SetParentNativeWindow ( aParentNativeWindow ) ,
NS_ERROR_FAILURE ) ;
2011-10-17 07:59:28 -07:00
NS_ENSURE_SUCCESS ( SetPositionAndSize ( aX , aY , aCX , aCY , false ) ,
2007-03-22 10:30:00 -07:00
NS_ERROR_FAILURE ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : Create ( )
{
NS_ENSURE_STATE ( ! mDocShell & & ( mParentNativeWindow | | mParentWidget ) ) ;
2009-07-22 15:31:04 -07:00
nsresult rv = EnsureDocShellTreeOwner ( ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
2007-03-22 10:30:00 -07:00
nsCOMPtr < nsIWidget > docShellParentWidget ( mParentWidget ) ;
if ( ! mParentWidget ) // We need to create a widget
{
// Create the widget
2009-07-22 15:31:04 -07:00
mInternalWidget = do_CreateInstance ( kChildCID , & rv ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
2007-03-22 10:30:00 -07:00
docShellParentWidget = mInternalWidget ;
nsWidgetInitData widgetInit ;
2011-10-17 07:59:28 -07:00
widgetInit . clipChildren = true ;
2007-03-22 10:30:00 -07:00
widgetInit . mWindowType = eWindowType_child ;
2009-01-14 19:27:09 -08:00
nsIntRect bounds ( mInitInfo - > x , mInitInfo - > y , mInitInfo - > cx , mInitInfo - > cy ) ;
2007-03-22 10:30:00 -07:00
2012-08-15 11:52:42 -07:00
mInternalWidget - > SetWidgetListener ( this ) ;
2012-08-15 11:53:09 -07:00
mInternalWidget - > Create ( nullptr , mParentNativeWindow , bounds , nullptr , & widgetInit ) ;
2007-03-22 10:30:00 -07:00
}
2009-07-22 15:31:04 -07:00
nsCOMPtr < nsIDocShell > docShell ( do_CreateInstance ( " @mozilla.org/docshell;1 " , & rv ) ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
rv = SetDocShell ( docShell ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
2007-03-22 10:30:00 -07:00
2011-09-08 19:27:12 -07:00
// get the system default window background colour
LookAndFeel : : GetColor ( LookAndFeel : : eColorID_WindowBackground ,
& mBackgroundColor ) ;
2007-03-22 10:30:00 -07:00
// the docshell has been set so we now have our listener registrars.
if ( mListenerArray ) {
// we had queued up some listeners, let's register them now.
2012-08-22 08:56:38 -07:00
uint32_t count = mListenerArray - > Length ( ) ;
uint32_t i = 0 ;
2007-03-22 10:30:00 -07:00
NS_ASSERTION ( count > 0 , " array construction problem " ) ;
while ( i < count ) {
2009-02-25 07:25:08 -08:00
nsWebBrowserListenerState * state = mListenerArray - > ElementAt ( i ) ;
2007-03-22 10:30:00 -07:00
NS_ASSERTION ( state , " array construction problem " ) ;
nsCOMPtr < nsISupports > listener = do_QueryReferent ( state - > mWeakPtr ) ;
NS_ASSERTION ( listener , " bad listener " ) ;
( void ) BindListener ( listener , state - > mID ) ;
i + + ;
}
2012-08-22 08:56:38 -07:00
for ( uint32_t i = 0 , end = mListenerArray - > Length ( ) ; i < end ; i + + ) {
2009-02-25 07:25:08 -08:00
nsWebBrowserListenerState * state = mListenerArray - > ElementAt ( i ) ;
2010-07-05 02:42:18 -07:00
delete state ;
2009-02-25 07:25:08 -08:00
}
2010-07-05 02:42:18 -07:00
delete mListenerArray ;
2012-07-30 07:20:58 -07:00
mListenerArray = nullptr ;
2007-03-22 10:30:00 -07:00
}
// HACK ALERT - this registration registers the nsDocShellTreeOwner as a
2009-02-05 18:05:58 -08:00
// nsIWebBrowserListener so it can setup its MouseListener in one of the
2007-03-22 10:30:00 -07:00
// progress callbacks. If we can register the MouseListener another way, this
// registration can go away, and nsDocShellTreeOwner can stop implementing
// nsIWebProgressListener.
2012-07-30 07:20:58 -07:00
nsCOMPtr < nsISupports > supports = nullptr ;
2007-03-22 10:30:00 -07:00
( void ) mDocShellTreeOwner - > QueryInterface ( NS_GET_IID ( nsIWebProgressListener ) ,
2007-07-08 00:08:04 -07:00
static_cast < void * * > ( getter_AddRefs ( supports ) ) ) ;
2007-03-22 10:30:00 -07:00
( void ) BindListener ( supports , NS_GET_IID ( nsIWebProgressListener ) ) ;
2012-07-30 07:20:58 -07:00
NS_ENSURE_SUCCESS ( mDocShellAsWin - > InitWindow ( nullptr ,
2007-03-22 10:30:00 -07:00
docShellParentWidget , mInitInfo - > x , mInitInfo - > y , mInitInfo - > cx ,
mInitInfo - > cy ) , NS_ERROR_FAILURE ) ;
mDocShellAsItem - > SetName ( mInitInfo - > name . get ( ) ) ;
if ( mContentType = = typeChromeWrapper )
{
mDocShellAsItem - > SetItemType ( nsIDocShellTreeItem : : typeChrome ) ;
}
else
{
mDocShellAsItem - > SetItemType ( nsIDocShellTreeItem : : typeContent ) ;
}
mDocShellAsItem - > SetTreeOwner ( mDocShellTreeOwner ) ;
// If the webbrowser is a content docshell item then we won't hear any
// events from subframes. To solve that we install our own chrome event handler
// that always gets called (even for subframes) for any bubbling event.
2009-07-22 15:31:04 -07:00
if ( ! mInitInfo - > sessionHistory ) {
mInitInfo - > sessionHistory = do_CreateInstance ( NS_SHISTORY_CONTRACTID , & rv ) ;
NS_ENSURE_SUCCESS ( rv , rv ) ;
}
2007-03-22 10:30:00 -07:00
mDocShellAsNav - > SetSessionHistory ( mInitInfo - > sessionHistory ) ;
2010-08-10 13:06:38 -07:00
2011-04-02 19:14:00 -07:00
if ( XRE_GetProcessType ( ) = = GeckoProcessType_Default ) {
2010-08-10 13:06:38 -07:00
// Hook up global history. Do not fail if we can't - just warn.
rv = EnableGlobalHistory ( mShouldEnableHistory ) ;
NS_WARN_IF_FALSE ( NS_SUCCEEDED ( rv ) , " EnableGlobalHistory() failed " ) ;
}
2007-03-22 10:30:00 -07:00
NS_ENSURE_SUCCESS ( mDocShellAsWin - > Create ( ) , NS_ERROR_FAILURE ) ;
2009-07-22 15:31:04 -07:00
// Hook into the OnSecurityChange() notification for lock/unlock icon
2007-03-22 10:30:00 -07:00
// updates
nsCOMPtr < nsIDOMWindow > domWindow ;
rv = GetContentDOMWindow ( getter_AddRefs ( domWindow ) ) ;
if ( NS_SUCCEEDED ( rv ) )
{
// this works because the implementation of nsISecureBrowserUI
// (nsSecureBrowserUIImpl) gets a docShell from the domWindow,
// and calls docShell->SetSecurityUI(this);
nsCOMPtr < nsISecureBrowserUI > securityUI =
do_CreateInstance ( NS_SECURE_BROWSER_UI_CONTRACTID , & rv ) ;
2009-07-22 15:31:04 -07:00
if ( NS_SUCCEEDED ( rv ) )
securityUI - > Init ( domWindow ) ;
2007-03-22 10:30:00 -07:00
}
mDocShellTreeOwner - > AddToWatcher ( ) ; // evil twin of Remove in SetDocShell(0)
mDocShellTreeOwner - > AddChromeListeners ( ) ;
delete mInitInfo ;
2012-07-30 07:20:58 -07:00
mInitInfo = nullptr ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : Destroy ( )
{
InternalDestroy ( ) ;
if ( ! mInitInfo )
mInitInfo = new nsWebBrowserInitInfo ( ) ;
return NS_OK ;
}
2012-10-16 12:41:19 -07:00
NS_IMETHODIMP nsWebBrowser : : GetUnscaledDevicePixelsPerCSSPixel ( double * aScale )
{
* aScale = mParentWidget ? mParentWidget - > GetDefaultScale ( ) : 1.0 ;
return NS_OK ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetPosition ( int32_t aX , int32_t aY )
2007-03-22 10:30:00 -07:00
{
2012-08-22 08:56:38 -07:00
int32_t cx = 0 ;
int32_t cy = 0 ;
2007-03-22 10:30:00 -07:00
GetSize ( & cx , & cy ) ;
2011-10-17 07:59:28 -07:00
return SetPositionAndSize ( aX , aY , cx , cy , false ) ;
2007-03-22 10:30:00 -07:00
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetPosition ( int32_t * aX , int32_t * aY )
2007-03-22 10:30:00 -07:00
{
2012-07-30 07:20:58 -07:00
return GetPositionAndSize ( aX , aY , nullptr , nullptr ) ;
2007-03-22 10:30:00 -07:00
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetSize ( int32_t aCX , int32_t aCY , bool aRepaint )
2007-03-22 10:30:00 -07:00
{
2012-08-22 08:56:38 -07:00
int32_t x = 0 ;
int32_t y = 0 ;
2007-03-22 10:30:00 -07:00
GetPosition ( & x , & y ) ;
return SetPositionAndSize ( x , y , aCX , aCY , aRepaint ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetSize ( int32_t * aCX , int32_t * aCY )
2007-03-22 10:30:00 -07:00
{
2012-07-30 07:20:58 -07:00
return GetPositionAndSize ( nullptr , nullptr , aCX , aCY ) ;
2007-03-22 10:30:00 -07:00
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetPositionAndSize ( int32_t aX , int32_t aY ,
int32_t aCX , int32_t aCY , bool aRepaint )
2007-03-22 10:30:00 -07:00
{
if ( ! mDocShell )
{
mInitInfo - > x = aX ;
mInitInfo - > y = aY ;
mInitInfo - > cx = aCX ;
mInitInfo - > cy = aCY ;
}
else
{
2012-08-22 08:56:38 -07:00
int32_t doc_x = aX ;
int32_t doc_y = aY ;
2007-03-22 10:30:00 -07:00
// If there is an internal widget we need to make the docShell coordinates
// relative to the internal widget rather than the calling app's parent.
// We also need to resize our widget then.
if ( mInternalWidget )
{
doc_x = doc_y = 0 ;
NS_ENSURE_SUCCESS ( mInternalWidget - > Resize ( aX , aY , aCX , aCY , aRepaint ) ,
NS_ERROR_FAILURE ) ;
}
// Now reposition/ resize the doc
NS_ENSURE_SUCCESS ( mDocShellAsWin - > SetPositionAndSize ( doc_x , doc_y , aCX , aCY ,
aRepaint ) , NS_ERROR_FAILURE ) ;
}
return NS_OK ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetPositionAndSize ( int32_t * aX , int32_t * aY ,
int32_t * aCX , int32_t * aCY )
2007-03-22 10:30:00 -07:00
{
if ( ! mDocShell )
{
if ( aX )
* aX = mInitInfo - > x ;
if ( aY )
* aY = mInitInfo - > y ;
if ( aCX )
* aCX = mInitInfo - > cx ;
if ( aCY )
* aCY = mInitInfo - > cy ;
}
else
{
if ( mInternalWidget )
{
2009-01-14 19:27:09 -08:00
nsIntRect bounds ;
2007-03-22 10:30:00 -07:00
NS_ENSURE_SUCCESS ( mInternalWidget - > GetBounds ( bounds ) , NS_ERROR_FAILURE ) ;
if ( aX )
* aX = bounds . x ;
if ( aY )
* aY = bounds . y ;
if ( aCX )
* aCX = bounds . width ;
if ( aCY )
* aCY = bounds . height ;
return NS_OK ;
}
else
return mDocShellAsWin - > GetPositionAndSize ( aX , aY , aCX , aCY ) ; // Can directly return this as it is the
}
return NS_OK ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : Repaint ( bool aForce )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsWin - > Repaint ( aForce ) ; // Can directly return this as it is the
} // same interface, thus same returns.
NS_IMETHODIMP nsWebBrowser : : GetParentWidget ( nsIWidget * * aParentWidget )
{
NS_ENSURE_ARG_POINTER ( aParentWidget ) ;
* aParentWidget = mParentWidget ;
NS_IF_ADDREF ( * aParentWidget ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : SetParentWidget ( nsIWidget * aParentWidget )
{
NS_ENSURE_STATE ( ! mDocShell ) ;
mParentWidget = aParentWidget ;
if ( mParentWidget )
mParentNativeWindow = mParentWidget - > GetNativeData ( NS_NATIVE_WIDGET ) ;
else
2012-07-30 07:20:58 -07:00
mParentNativeWindow = nullptr ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : GetParentNativeWindow ( nativeWindow * aParentNativeWindow )
{
NS_ENSURE_ARG_POINTER ( aParentNativeWindow ) ;
* aParentNativeWindow = mParentNativeWindow ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : SetParentNativeWindow ( nativeWindow aParentNativeWindow )
{
NS_ENSURE_STATE ( ! mDocShell ) ;
2007-10-01 16:20:37 -07:00
2007-03-22 10:30:00 -07:00
mParentNativeWindow = aParentNativeWindow ;
return NS_OK ;
}
2012-07-24 18:35:32 -07:00
NS_IMETHODIMP nsWebBrowser : : GetNativeHandle ( nsAString & aNativeHandle )
{
// the nativeHandle should be accessed from nsIXULWindow
return NS_ERROR_NOT_IMPLEMENTED ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : GetVisibility ( bool * visibility )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_ARG_POINTER ( visibility ) ;
if ( ! mDocShell )
* visibility = mInitInfo - > visible ;
else
NS_ENSURE_SUCCESS ( mDocShellAsWin - > GetVisibility ( visibility ) , NS_ERROR_FAILURE ) ;
return NS_OK ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : SetVisibility ( bool aVisibility )
2007-03-22 10:30:00 -07:00
{
if ( ! mDocShell )
mInitInfo - > visible = aVisibility ;
else
{
NS_ENSURE_SUCCESS ( mDocShellAsWin - > SetVisibility ( aVisibility ) , NS_ERROR_FAILURE ) ;
if ( mInternalWidget )
mInternalWidget - > Show ( aVisibility ) ;
}
return NS_OK ;
}
2012-07-22 22:19:08 -07:00
NS_IMETHODIMP nsWebBrowser : : GetEnabled ( bool * aEnabled )
2007-03-22 10:30:00 -07:00
{
2012-07-22 22:19:08 -07:00
if ( mInternalWidget ) {
* aEnabled = mInternalWidget - > IsEnabled ( ) ;
return NS_OK ;
}
2007-03-22 10:30:00 -07:00
return NS_ERROR_FAILURE ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : SetEnabled ( bool aEnabled )
2007-03-22 10:30:00 -07:00
{
if ( mInternalWidget )
return mInternalWidget - > Enable ( aEnabled ) ;
return NS_ERROR_FAILURE ;
}
NS_IMETHODIMP nsWebBrowser : : GetMainWidget ( nsIWidget * * mainWidget )
{
NS_ENSURE_ARG_POINTER ( mainWidget ) ;
if ( mInternalWidget )
* mainWidget = mInternalWidget ;
else
* mainWidget = mParentWidget ;
NS_IF_ADDREF ( * mainWidget ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : SetFocus ( )
{
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIDOMWindow > window = do_GetInterface ( mDocShell ) ;
NS_ENSURE_TRUE ( window , NS_ERROR_FAILURE ) ;
2007-03-22 10:30:00 -07:00
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIFocusManager > fm = do_GetService ( FOCUSMANAGER_CONTRACTID ) ;
return fm ? fm - > SetFocusedWindow ( window ) : NS_OK ;
2007-03-22 10:30:00 -07:00
}
NS_IMETHODIMP nsWebBrowser : : GetTitle ( PRUnichar * * aTitle )
{
NS_ENSURE_ARG_POINTER ( aTitle ) ;
NS_ENSURE_STATE ( mDocShell ) ;
NS_ENSURE_SUCCESS ( mDocShellAsWin - > GetTitle ( aTitle ) , NS_ERROR_FAILURE ) ;
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : SetTitle ( const PRUnichar * aTitle )
{
NS_ENSURE_STATE ( mDocShell ) ;
NS_ENSURE_SUCCESS ( mDocShellAsWin - > SetTitle ( aTitle ) , NS_ERROR_FAILURE ) ;
return NS_OK ;
}
//*****************************************************************************
// nsWebBrowser::nsIScrollable
//*****************************************************************************
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetCurScrollPos ( int32_t aScrollOrientation ,
int32_t * aCurPos )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsScrollable - > GetCurScrollPos ( aScrollOrientation , aCurPos ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetCurScrollPos ( int32_t aScrollOrientation ,
int32_t aCurPos )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsScrollable - > SetCurScrollPos ( aScrollOrientation , aCurPos ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetCurScrollPosEx ( int32_t aCurHorizontalPos ,
int32_t aCurVerticalPos )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsScrollable - > SetCurScrollPosEx ( aCurHorizontalPos ,
aCurVerticalPos ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetScrollRange ( int32_t aScrollOrientation ,
int32_t * aMinPos , int32_t * aMaxPos )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsScrollable - > GetScrollRange ( aScrollOrientation , aMinPos ,
aMaxPos ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetScrollRange ( int32_t aScrollOrientation ,
int32_t aMinPos , int32_t aMaxPos )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsScrollable - > SetScrollRange ( aScrollOrientation , aMinPos ,
aMaxPos ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetScrollRangeEx ( int32_t aMinHorizontalPos ,
int32_t aMaxHorizontalPos , int32_t aMinVerticalPos , int32_t aMaxVerticalPos )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsScrollable - > SetScrollRangeEx ( aMinHorizontalPos ,
aMaxHorizontalPos , aMinVerticalPos , aMaxVerticalPos ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : GetDefaultScrollbarPreferences ( int32_t aScrollOrientation ,
int32_t * aScrollbarPref )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsScrollable - > GetDefaultScrollbarPreferences ( aScrollOrientation ,
aScrollbarPref ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : SetDefaultScrollbarPreferences ( int32_t aScrollOrientation ,
int32_t aScrollbarPref )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsScrollable - > SetDefaultScrollbarPreferences ( aScrollOrientation ,
aScrollbarPref ) ;
}
2011-09-28 23:19:26 -07:00
NS_IMETHODIMP nsWebBrowser : : GetScrollbarVisibility ( bool * aVerticalVisible ,
bool * aHorizontalVisible )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsScrollable - > GetScrollbarVisibility ( aVerticalVisible ,
aHorizontalVisible ) ;
}
//*****************************************************************************
// nsWebBrowser::nsITextScroll
//*****************************************************************************
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : ScrollByLines ( int32_t aNumLines )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsTextScroll - > ScrollByLines ( aNumLines ) ;
}
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : ScrollByPages ( int32_t aNumPages )
2007-03-22 10:30:00 -07:00
{
NS_ENSURE_STATE ( mDocShell ) ;
return mDocShellAsTextScroll - > ScrollByPages ( aNumPages ) ;
}
//*****************************************************************************
// nsWebBrowser: Listener Helpers
//*****************************************************************************
NS_IMETHODIMP nsWebBrowser : : SetDocShell ( nsIDocShell * aDocShell )
{
2010-02-21 13:06:20 -08:00
nsCOMPtr < nsIDocShell > kungFuDeathGrip ( mDocShell ) ;
2007-03-22 10:30:00 -07:00
if ( aDocShell )
{
NS_ENSURE_TRUE ( ! mDocShell , NS_ERROR_FAILURE ) ;
nsCOMPtr < nsIInterfaceRequestor > req ( do_QueryInterface ( aDocShell ) ) ;
nsCOMPtr < nsIBaseWindow > baseWin ( do_QueryInterface ( aDocShell ) ) ;
nsCOMPtr < nsIDocShellTreeItem > item ( do_QueryInterface ( aDocShell ) ) ;
nsCOMPtr < nsIWebNavigation > nav ( do_QueryInterface ( aDocShell ) ) ;
nsCOMPtr < nsIScrollable > scrollable ( do_QueryInterface ( aDocShell ) ) ;
nsCOMPtr < nsITextScroll > textScroll ( do_QueryInterface ( aDocShell ) ) ;
nsCOMPtr < nsIWebProgress > progress ( do_GetInterface ( aDocShell ) ) ;
NS_ENSURE_TRUE ( req & & baseWin & & item & & nav & & scrollable & & textScroll & & progress ,
NS_ERROR_FAILURE ) ;
mDocShell = aDocShell ;
mDocShellAsReq = req ;
mDocShellAsWin = baseWin ;
mDocShellAsItem = item ;
mDocShellAsNav = nav ;
mDocShellAsScrollable = scrollable ;
mDocShellAsTextScroll = textScroll ;
mWebProgress = progress ;
2009-05-17 07:22:54 -07:00
// By default, do not allow DNS prefetch, so we don't break our frozen
// API. Embeddors who decide to enable it should do so manually.
2011-10-17 07:59:28 -07:00
mDocShell - > SetAllowDNSPrefetch ( false ) ;
2010-08-05 08:27:52 -07:00
// It's possible to call setIsActive() on us before we have a docshell.
// If we're getting a docshell now, pass along our desired value. The
// default here (true) matches the default of the docshell, so this is
// a no-op unless setIsActive(false) has been called on us.
mDocShell - > SetIsActive ( mIsActive ) ;
2007-03-22 10:30:00 -07:00
}
else
{
if ( mDocShellTreeOwner )
mDocShellTreeOwner - > RemoveFromWatcher ( ) ; // evil twin of Add in Create()
if ( mDocShellAsWin )
mDocShellAsWin - > Destroy ( ) ;
2012-07-30 07:20:58 -07:00
mDocShell = nullptr ;
mDocShellAsReq = nullptr ;
mDocShellAsWin = nullptr ;
mDocShellAsItem = nullptr ;
mDocShellAsNav = nullptr ;
mDocShellAsScrollable = nullptr ;
mDocShellAsTextScroll = nullptr ;
mWebProgress = nullptr ;
2007-03-22 10:30:00 -07:00
}
return NS_OK ;
}
NS_IMETHODIMP nsWebBrowser : : EnsureDocShellTreeOwner ( )
{
if ( mDocShellTreeOwner )
return NS_OK ;
mDocShellTreeOwner = new nsDocShellTreeOwner ( ) ;
NS_ENSURE_TRUE ( mDocShellTreeOwner , NS_ERROR_OUT_OF_MEMORY ) ;
NS_ADDREF ( mDocShellTreeOwner ) ;
mDocShellTreeOwner - > WebBrowser ( this ) ;
return NS_OK ;
}
2010-05-20 20:20:48 -07:00
static void DrawThebesLayer ( ThebesLayer * aLayer ,
gfxContext * aContext ,
const nsIntRegion & aRegionToDraw ,
2010-03-03 13:37:04 -08:00
const nsIntRegion & aRegionToInvalidate ,
2010-05-20 20:20:48 -07:00
void * aCallbackData )
{
nscolor * color = static_cast < nscolor * > ( aCallbackData ) ;
aContext - > NewPath ( ) ;
aContext - > SetColor ( gfxRGBA ( * color ) ) ;
nsIntRect dirtyRect = aRegionToDraw . GetBounds ( ) ;
aContext - > Rectangle ( gfxRect ( dirtyRect . x , dirtyRect . y , dirtyRect . width , dirtyRect . height ) ) ;
aContext - > Fill ( ) ;
}
2012-08-15 11:52:42 -07:00
void nsWebBrowser : : WindowRaised ( nsIWidget * aWidget )
2007-03-22 10:30:00 -07:00
{
2009-11-05 08:14:24 -08:00
# if defined(DEBUG_smaug)
2012-08-15 11:52:42 -07:00
nsCOMPtr < nsIDOMDocument > domDocument = do_GetInterface ( mDocShell ) ;
nsAutoString documentURI ;
domDocument - > GetDocumentURI ( documentURI ) ;
2012-08-16 11:07:58 -07:00
printf ( " nsWebBrowser::NS_ACTIVATE %p %s \n " , ( void * ) this ,
2012-08-15 11:52:42 -07:00
NS_ConvertUTF16toUTF8 ( documentURI ) . get ( ) ) ;
2009-11-05 08:14:24 -08:00
# endif
2012-08-15 11:52:42 -07:00
Activate ( ) ;
}
2009-11-05 08:14:24 -08:00
2012-08-15 11:52:42 -07:00
void nsWebBrowser : : WindowLowered ( nsIWidget * aWidget )
{
2009-11-05 08:14:24 -08:00
# if defined(DEBUG_smaug)
2012-08-15 11:52:42 -07:00
nsCOMPtr < nsIDOMDocument > domDocument = do_GetInterface ( mDocShell ) ;
nsAutoString documentURI ;
domDocument - > GetDocumentURI ( documentURI ) ;
2012-08-16 11:07:58 -07:00
printf ( " nsWebBrowser::NS_DEACTIVATE %p %s \n " , ( void * ) this ,
2012-08-15 11:52:42 -07:00
NS_ConvertUTF16toUTF8 ( documentURI ) . get ( ) ) ;
2009-11-05 08:14:24 -08:00
# endif
2012-08-15 11:52:42 -07:00
Deactivate ( ) ;
}
bool nsWebBrowser : : PaintWindow ( nsIWidget * aWidget , bool isRequest , nsIntRegion aRegion , bool aWillSendDidPaint )
{
LayerManager * layerManager = aWidget - > GetLayerManager ( ) ;
NS_ASSERTION ( layerManager , " Must be in paint event " ) ;
2009-11-05 08:14:24 -08:00
2012-08-15 11:52:42 -07:00
layerManager - > BeginTransaction ( ) ;
nsRefPtr < ThebesLayer > root = layerManager - > CreateThebesLayer ( ) ;
if ( root ) {
nsIntRect dirtyRect = aRegion . GetBounds ( ) ;
root - > SetVisibleRegion ( dirtyRect ) ;
layerManager - > SetRoot ( root ) ;
2007-03-22 10:30:00 -07:00
}
2012-08-15 11:52:42 -07:00
layerManager - > EndTransaction ( DrawThebesLayer , & mBackgroundColor ) ;
return true ;
2007-03-22 10:30:00 -07:00
}
2011-07-15 03:31:34 -07:00
NS_IMETHODIMP nsWebBrowser : : GetPrimaryContentWindow ( nsIDOMWindow * * aDOMWindow )
2007-03-22 10:30:00 -07:00
{
* aDOMWindow = 0 ;
nsCOMPtr < nsIDocShellTreeItem > item ;
NS_ENSURE_TRUE ( mDocShellTreeOwner , NS_ERROR_FAILURE ) ;
mDocShellTreeOwner - > GetPrimaryContentShell ( getter_AddRefs ( item ) ) ;
NS_ENSURE_TRUE ( item , NS_ERROR_FAILURE ) ;
nsCOMPtr < nsIDocShell > docShell ;
docShell = do_QueryInterface ( item ) ;
NS_ENSURE_TRUE ( docShell , NS_ERROR_FAILURE ) ;
2011-07-15 03:31:34 -07:00
nsCOMPtr < nsIDOMWindow > domWindow = do_GetInterface ( docShell ) ;
2007-03-22 10:30:00 -07:00
NS_ENSURE_TRUE ( domWindow , NS_ERROR_FAILURE ) ;
* aDOMWindow = domWindow ;
NS_ADDREF ( * aDOMWindow ) ;
return NS_OK ;
}
//*****************************************************************************
// nsWebBrowser::nsIWebBrowserFocus
//*****************************************************************************
/* void activate (); */
NS_IMETHODIMP nsWebBrowser : : Activate ( void )
{
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIFocusManager > fm = do_GetService ( FOCUSMANAGER_CONTRACTID ) ;
nsCOMPtr < nsIDOMWindow > window = do_GetInterface ( mDocShell ) ;
if ( fm & & window )
return fm - > WindowRaised ( window ) ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
/* void deactivate (); */
NS_IMETHODIMP nsWebBrowser : : Deactivate ( void )
{
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIFocusManager > fm = do_GetService ( FOCUSMANAGER_CONTRACTID ) ;
nsCOMPtr < nsIDOMWindow > window = do_GetInterface ( mDocShell ) ;
if ( fm & & window )
return fm - > WindowLowered ( window ) ;
2007-03-22 10:30:00 -07:00
return NS_OK ;
}
/* void setFocusAtFirstElement (); */
NS_IMETHODIMP nsWebBrowser : : SetFocusAtFirstElement ( void )
{
return NS_OK ;
}
/* void setFocusAtLastElement (); */
NS_IMETHODIMP nsWebBrowser : : SetFocusAtLastElement ( void )
{
return NS_OK ;
}
/* attribute nsIDOMWindow focusedWindow; */
NS_IMETHODIMP nsWebBrowser : : GetFocusedWindow ( nsIDOMWindow * * aFocusedWindow )
{
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
NS_ENSURE_ARG_POINTER ( aFocusedWindow ) ;
2012-07-30 07:20:58 -07:00
* aFocusedWindow = nullptr ;
2007-03-22 10:30:00 -07:00
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIDOMWindow > window = do_GetInterface ( mDocShell ) ;
NS_ENSURE_TRUE ( window , NS_ERROR_FAILURE ) ;
2007-03-22 10:30:00 -07:00
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIDOMElement > focusedElement ;
nsCOMPtr < nsIFocusManager > fm = do_GetService ( FOCUSMANAGER_CONTRACTID ) ;
2011-10-17 07:59:28 -07:00
return fm ? fm - > GetFocusedElementForWindow ( window , true , aFocusedWindow ,
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
getter_AddRefs ( focusedElement ) ) : NS_OK ;
2007-03-22 10:30:00 -07:00
}
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
2007-03-22 10:30:00 -07:00
NS_IMETHODIMP nsWebBrowser : : SetFocusedWindow ( nsIDOMWindow * aFocusedWindow )
{
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIFocusManager > fm = do_GetService ( FOCUSMANAGER_CONTRACTID ) ;
return fm ? fm - > SetFocusedWindow ( aFocusedWindow ) : NS_OK ;
2007-03-22 10:30:00 -07:00
}
/* attribute nsIDOMElement focusedElement; */
NS_IMETHODIMP nsWebBrowser : : GetFocusedElement ( nsIDOMElement * * aFocusedElement )
{
NS_ENSURE_ARG_POINTER ( aFocusedElement ) ;
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIDOMWindow > window = do_GetInterface ( mDocShell ) ;
NS_ENSURE_TRUE ( window , NS_ERROR_FAILURE ) ;
2007-03-22 10:30:00 -07:00
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIFocusManager > fm = do_GetService ( FOCUSMANAGER_CONTRACTID ) ;
2012-07-30 07:20:58 -07:00
return fm ? fm - > GetFocusedElementForWindow ( window , true , nullptr , aFocusedElement ) : NS_OK ;
2007-03-22 10:30:00 -07:00
}
NS_IMETHODIMP nsWebBrowser : : SetFocusedElement ( nsIDOMElement * aFocusedElement )
{
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
nsCOMPtr < nsIFocusManager > fm = do_GetService ( FOCUSMANAGER_CONTRACTID ) ;
return fm ? fm - > SetFocus ( aFocusedElement , 0 ) : NS_OK ;
2007-03-22 10:30:00 -07:00
}
//*****************************************************************************
// nsWebBrowser::nsIWebBrowserStream
//*****************************************************************************
/* void openStream(in nsIURI aBaseURI, in ACString aContentType); */
NS_IMETHODIMP nsWebBrowser : : OpenStream ( nsIURI * aBaseURI , const nsACString & aContentType )
{
nsresult rv ;
if ( ! mStream ) {
mStream = new nsEmbedStream ( ) ;
2009-07-22 15:31:04 -07:00
if ( ! mStream )
return NS_ERROR_OUT_OF_MEMORY ;
2007-03-22 10:30:00 -07:00
mStreamGuard = do_QueryInterface ( mStream ) ;
mStream - > InitOwner ( this ) ;
rv = mStream - > Init ( ) ;
if ( NS_FAILED ( rv ) )
return rv ;
}
return mStream - > OpenStream ( aBaseURI , aContentType ) ;
}
/* void appendToStream([const, array, size_is(aLen)] in octet aData,
* in unsigned long aLen ) ; */
2012-08-22 08:56:38 -07:00
NS_IMETHODIMP nsWebBrowser : : AppendToStream ( const uint8_t * aData , uint32_t aLen )
2007-03-22 10:30:00 -07:00
{
if ( ! mStream )
return NS_ERROR_FAILURE ;
return mStream - > AppendToStream ( aData , aLen ) ;
}
/* void closeStream (); */
NS_IMETHODIMP nsWebBrowser : : CloseStream ( )
{
nsresult rv ;
if ( ! mStream )
return NS_ERROR_FAILURE ;
rv = mStream - > CloseStream ( ) ;
// release
mStream = 0 ;
mStreamGuard = 0 ;
return rv ;
}