1998-04-14 00:24:54 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
1999-02-12 20:45:58 +03:00
|
|
|
#include "nsCOMPtr.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsIPresShell.h"
|
1998-07-31 09:54:59 +04:00
|
|
|
#include "nsIPref.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsILinkHandler.h"
|
|
|
|
#include "nsIStyleSet.h"
|
1998-05-12 02:56:58 +04:00
|
|
|
#include "nsFrameImageLoader.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsIImageGroup.h"
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsIRenderingContext.h"
|
1998-06-24 01:53:02 +04:00
|
|
|
#include "nsEventStateManager.h"
|
1998-09-05 07:52:40 +04:00
|
|
|
#include "nsIURL.h"
|
1998-10-02 01:44:16 +04:00
|
|
|
#include "nsIURLGroup.h"
|
1998-09-05 07:52:40 +04:00
|
|
|
#include "nsIDocument.h"
|
1998-11-06 19:16:01 +03:00
|
|
|
#include "nsIStyleContext.h"
|
1998-12-02 03:32:20 +03:00
|
|
|
#include "nsLayoutAtoms.h"
|
1998-11-06 19:16:01 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-11-06 20:24:08 +03:00
|
|
|
int
|
1998-11-06 19:16:01 +03:00
|
|
|
PrefChangedCallback(const char* aPrefName, void* instance_data)
|
|
|
|
{
|
|
|
|
nsPresContext* presContext = (nsPresContext*)instance_data;
|
|
|
|
|
|
|
|
NS_ASSERTION(nsnull != presContext, "bad instance data");
|
|
|
|
if (nsnull != presContext) {
|
|
|
|
presContext->PreferenceChanged(aPrefName);
|
|
|
|
}
|
|
|
|
return 0; // PREF_OK
|
|
|
|
}
|
|
|
|
|
1998-05-09 07:22:01 +04:00
|
|
|
static NS_DEFINE_IID(kIPresContextIID, NS_IPRESCONTEXT_IID);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
nsPresContext::nsPresContext()
|
1998-11-26 21:10:10 +03:00
|
|
|
: mDefaultFont("Times", NS_FONT_STYLE_NORMAL,
|
1998-04-14 00:24:54 +04:00
|
|
|
NS_FONT_VARIANT_NORMAL,
|
|
|
|
NS_FONT_WEIGHT_NORMAL,
|
|
|
|
0,
|
1998-08-01 03:34:45 +04:00
|
|
|
NSIntPointsToTwips(12)),
|
1998-07-17 09:41:41 +04:00
|
|
|
mDefaultFixedFont("Courier", NS_FONT_STYLE_NORMAL,
|
|
|
|
NS_FONT_VARIANT_NORMAL,
|
|
|
|
NS_FONT_WEIGHT_NORMAL,
|
|
|
|
0,
|
1998-08-01 03:34:45 +04:00
|
|
|
NSIntPointsToTwips(10))
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
NS_INIT_REFCNT();
|
1998-12-02 03:32:20 +03:00
|
|
|
nsLayoutAtoms::AddrefAtoms();
|
1998-07-31 09:54:59 +04:00
|
|
|
mCompatibilityMode = eCompatibility_NavQuirks;
|
1998-07-25 05:11:49 +04:00
|
|
|
|
1998-11-06 19:16:01 +03:00
|
|
|
#ifdef _WIN32
|
|
|
|
// XXX This needs to be elsewhere, e.g., part of nsIDeviceContext
|
|
|
|
mDefaultColor = ::GetSysColor(COLOR_WINDOWTEXT);
|
|
|
|
mDefaultBackgroundColor = ::GetSysColor(COLOR_WINDOW);
|
|
|
|
#else
|
1998-07-17 09:41:41 +04:00
|
|
|
mDefaultColor = NS_RGB(0x00, 0x00, 0x00);
|
|
|
|
mDefaultBackgroundColor = NS_RGB(0xFF, 0xFF, 0xFF);
|
1998-11-06 19:16:01 +03:00
|
|
|
#endif
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsPresContext::~nsPresContext()
|
|
|
|
{
|
|
|
|
mShell = nsnull;
|
|
|
|
|
1998-11-26 21:10:10 +03:00
|
|
|
Stop();
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-04-30 13:04:36 +04:00
|
|
|
if (mImageGroup) {
|
1998-08-18 05:43:35 +04:00
|
|
|
// Interrupt any loading images. This also stops all looping
|
|
|
|
// image animations.
|
|
|
|
mImageGroup->Interrupt();
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-04-30 13:04:36 +04:00
|
|
|
if (mEventManager)
|
|
|
|
mEventManager->SetPresContext(nsnull); // unclear if this is needed, but can't hurt
|
1998-11-18 08:25:26 +03:00
|
|
|
|
1998-11-06 19:16:01 +03:00
|
|
|
// Unregister preference callbacks
|
1999-04-30 13:04:36 +04:00
|
|
|
if (mPrefs) {
|
1998-11-13 05:47:33 +03:00
|
|
|
mPrefs->UnregisterCallback("browser.", PrefChangedCallback, (void*)this);
|
|
|
|
mPrefs->UnregisterCallback("intl.font2.", PrefChangedCallback, (void*)this);
|
|
|
|
}
|
1998-12-02 03:32:20 +03:00
|
|
|
nsLayoutAtoms::ReleaseAtoms();
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1998-05-09 07:22:01 +04:00
|
|
|
nsrefcnt
|
|
|
|
nsPresContext::AddRef(void)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
return ++mRefCnt;
|
|
|
|
}
|
|
|
|
|
1998-05-09 07:22:01 +04:00
|
|
|
nsrefcnt
|
|
|
|
nsPresContext::Release(void)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(0 != mRefCnt, "bad refcnt");
|
|
|
|
if (--mRefCnt == 0) {
|
|
|
|
delete this;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return mRefCnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_QUERY_INTERFACE(nsPresContext, kIPresContextIID);
|
|
|
|
|
1998-11-06 19:16:01 +03:00
|
|
|
void
|
|
|
|
nsPresContext::GetUserPreferences()
|
|
|
|
{
|
1999-04-03 00:41:58 +04:00
|
|
|
PRInt32 prefInt;
|
1998-11-06 19:16:01 +03:00
|
|
|
char prefChar[512];
|
|
|
|
int charSize = sizeof(prefChar);
|
|
|
|
|
|
|
|
if (NS_OK == mPrefs->GetIntPref("browser.base_font_scaler", &prefInt)) {
|
|
|
|
mFontScaler = prefInt;
|
|
|
|
}
|
|
|
|
|
1999-02-17 18:52:02 +03:00
|
|
|
|
|
|
|
if (NS_OK == mPrefs->GetIntPref("intl.character_set", &prefInt)) {
|
|
|
|
prefInt &= 0x07ff;
|
|
|
|
} else {
|
|
|
|
prefInt = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoString startKey("intl.font");
|
|
|
|
startKey.Append((PRInt32)prefInt, 10);
|
|
|
|
|
|
|
|
char keychar[256];
|
|
|
|
|
1998-11-06 19:16:01 +03:00
|
|
|
// XXX these font prefs strings don't take font encoding into account
|
1999-02-17 18:52:02 +03:00
|
|
|
// with the following change, it will depend on the intl.character_set to load the font face name and size
|
|
|
|
// It still need to be improve, but now QA can have change the intl.character_set value to switch different default font face
|
|
|
|
|
|
|
|
nsAutoString key(startKey);
|
|
|
|
key.Append(".win.prop_font");
|
|
|
|
|
|
|
|
key.ToCString(keychar, 256);
|
|
|
|
if (NS_OK == mPrefs->GetCharPref(keychar, &(prefChar[0]), &charSize)) {
|
1998-11-06 19:16:01 +03:00
|
|
|
mDefaultFont.name = prefChar;
|
|
|
|
}
|
1999-02-17 18:52:02 +03:00
|
|
|
|
|
|
|
key = startKey;
|
|
|
|
key.Append(".win.prop_size");
|
|
|
|
key.ToCString(keychar, 256);
|
|
|
|
if (NS_OK == mPrefs->GetIntPref(keychar, &prefInt)) {
|
1998-11-06 19:16:01 +03:00
|
|
|
mDefaultFont.size = NSIntPointsToTwips(prefInt);
|
|
|
|
}
|
1999-02-17 18:52:02 +03:00
|
|
|
|
|
|
|
key = startKey;
|
|
|
|
key.Append(".win.fixed_font");
|
|
|
|
key.ToCString(keychar, 256);
|
|
|
|
|
|
|
|
if (NS_OK == mPrefs->GetCharPref(keychar, &(prefChar[0]), &charSize)) {
|
1998-11-06 19:16:01 +03:00
|
|
|
mDefaultFixedFont.name = prefChar;
|
|
|
|
}
|
1999-02-17 18:52:02 +03:00
|
|
|
|
|
|
|
key = startKey;
|
|
|
|
key.Append(".win.fixed_size");
|
|
|
|
key.ToCString(keychar, 256);
|
|
|
|
if (NS_OK == mPrefs->GetIntPref(keychar, &prefInt)) {
|
1998-11-06 19:16:01 +03:00
|
|
|
mDefaultFixedFont.size = NSIntPointsToTwips(prefInt);
|
|
|
|
}
|
1999-02-17 18:52:02 +03:00
|
|
|
|
1998-11-06 19:16:01 +03:00
|
|
|
if (NS_OK == mPrefs->GetIntPref("nglayout.compatibility.mode", &prefInt)) {
|
|
|
|
mCompatibilityMode = (enum nsCompatibility)prefInt; // bad cast
|
|
|
|
}
|
|
|
|
|
1999-03-03 01:43:26 +03:00
|
|
|
if (NS_OK == mPrefs->GetIntPref("nglayout.widget.mode", &prefInt)) {
|
|
|
|
mWidgetRenderingMode = (enum nsWidgetRendering)prefInt; // bad cast
|
1999-04-21 01:34:34 +04:00
|
|
|
} else
|
|
|
|
#if defined XP_UNIX
|
|
|
|
// XXX for Unix only (Gtk+) -- make the default rendering mode Gfx. The
|
|
|
|
// Gtk+ implementation is buggy, and we'll eventually be going in this
|
|
|
|
// direction anyway of using gfx to render controls. Need to take out
|
|
|
|
// this #ifdef eventually for Win and Mac.
|
|
|
|
//
|
|
|
|
// To enable native widgets, edit ~/.mozilla/prefs50.js, and add the
|
|
|
|
// line user_pref("nglayout.widget.mode", 1);. Syd 4/20/99
|
|
|
|
|
|
|
|
mWidgetRenderingMode = eWidgetRendering_Gfx;
|
|
|
|
#else
|
|
|
|
mWidgetRenderingMode = eWidgetRendering_Native;
|
|
|
|
#endif
|
1999-03-03 01:43:26 +03:00
|
|
|
|
1998-11-06 19:16:01 +03:00
|
|
|
PRBool usePrefColors = PR_TRUE;
|
|
|
|
#ifdef _WIN32
|
1999-04-03 00:41:58 +04:00
|
|
|
PRBool boolPref;
|
1998-11-06 19:16:01 +03:00
|
|
|
// XXX Is Windows the only platform that uses this?
|
|
|
|
if (NS_OK == mPrefs->GetBoolPref("browser.wfe.use_windows_colors", &boolPref)) {
|
1999-04-03 00:41:58 +04:00
|
|
|
usePrefColors = !boolPref;
|
1998-11-06 19:16:01 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (usePrefColors) {
|
1999-04-03 00:41:58 +04:00
|
|
|
PRUint32 colorPref;
|
1998-11-06 19:16:01 +03:00
|
|
|
if (NS_OK == mPrefs->GetColorPrefDWord("browser.foreground_color", &colorPref)) {
|
|
|
|
mDefaultColor = (nscolor)colorPref;
|
|
|
|
}
|
|
|
|
if (NS_OK == mPrefs->GetColorPrefDWord("browser.background_color", &colorPref)) {
|
|
|
|
mDefaultBackgroundColor = (nscolor)colorPref;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsPresContext::PreferenceChanged(const char* aPrefName)
|
|
|
|
{
|
|
|
|
// Initialize our state from the user preferences
|
|
|
|
GetUserPreferences();
|
|
|
|
|
|
|
|
// Have the root frame's style context remap its style based on the
|
|
|
|
// user preferences
|
|
|
|
nsIFrame* rootFrame;
|
|
|
|
nsIStyleContext* rootStyleContext;
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
mShell->GetRootFrame(&rootFrame);
|
1998-11-06 19:16:01 +03:00
|
|
|
if (nsnull != rootFrame) {
|
1999-02-10 03:42:56 +03:00
|
|
|
rootFrame->GetStyleContext(&rootStyleContext);
|
1998-11-06 19:16:01 +03:00
|
|
|
rootStyleContext->RemapStyle(this);
|
|
|
|
NS_RELEASE(rootStyleContext);
|
|
|
|
|
|
|
|
// Force a reflow of the root frame
|
1998-11-06 19:24:21 +03:00
|
|
|
// XXX We really should only do a reflow if a preference that affects
|
|
|
|
// formatting changed, e.g., a font change. If it's just a color change
|
|
|
|
// then we only need to repaint...
|
1998-11-06 19:16:01 +03:00
|
|
|
mShell->StyleChangeReflow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-26 21:10:10 +03:00
|
|
|
NS_IMETHODIMP
|
1998-07-31 09:54:59 +04:00
|
|
|
nsPresContext::Init(nsIDeviceContext* aDeviceContext, nsIPref* aPrefs)
|
1998-06-25 08:24:45 +04:00
|
|
|
{
|
|
|
|
NS_ASSERTION(!(mInitialized == PR_TRUE), "attempt to reinit pres context");
|
|
|
|
|
1999-04-30 13:04:36 +04:00
|
|
|
mDeviceContext = dont_QueryInterface(aDeviceContext);
|
1998-07-31 09:54:59 +04:00
|
|
|
|
1999-04-30 13:04:36 +04:00
|
|
|
mPrefs = dont_QueryInterface(aPrefs);
|
|
|
|
if (mPrefs) {
|
1998-11-06 19:16:01 +03:00
|
|
|
// Register callbacks so we're notified when the preferences change
|
|
|
|
mPrefs->RegisterCallback("browser.", PrefChangedCallback, (void*)this);
|
|
|
|
mPrefs->RegisterCallback("intl.font2.", PrefChangedCallback, (void*)this);
|
1998-07-31 09:54:59 +04:00
|
|
|
|
1998-11-06 19:16:01 +03:00
|
|
|
// Initialize our state from the user preferences
|
|
|
|
GetUserPreferences();
|
1998-07-31 09:54:59 +04:00
|
|
|
}
|
|
|
|
|
1998-06-25 08:24:45 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
mInitialized = PR_TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
// Note: We don't hold a reference on the shell; it has a reference to
|
|
|
|
// us
|
1998-11-26 21:10:10 +03:00
|
|
|
NS_IMETHODIMP
|
1998-05-09 07:22:01 +04:00
|
|
|
nsPresContext::SetShell(nsIPresShell* aShell)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
mShell = aShell;
|
1998-09-05 07:52:40 +04:00
|
|
|
if (nsnull != mShell) {
|
1999-02-12 20:45:58 +03:00
|
|
|
nsCOMPtr<nsIDocument> doc;
|
|
|
|
if (NS_SUCCEEDED(mShell->GetDocument(getter_AddRefs(doc)))) {
|
1999-02-12 21:41:26 +03:00
|
|
|
NS_ASSERTION(doc, "expect document here");
|
|
|
|
if (doc) {
|
1999-04-30 13:04:36 +04:00
|
|
|
doc->GetBaseURL(*getter_AddRefs(mBaseURL));
|
1999-02-12 20:45:58 +03:00
|
|
|
}
|
1998-09-05 07:52:40 +04:00
|
|
|
}
|
|
|
|
}
|
1998-11-26 21:10:10 +03:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetShell(nsIPresShell** aResult)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
*aResult = mShell;
|
1998-05-09 07:22:01 +04:00
|
|
|
NS_IF_ADDREF(mShell);
|
1999-02-12 20:45:58 +03:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::GetPrefs(nsIPref** aResult)
|
1998-07-31 09:54:59 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
*aResult = mPrefs;
|
1999-04-30 13:04:36 +04:00
|
|
|
NS_IF_ADDREF(*aResult);
|
1998-07-31 09:54:59 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::GetCompatibilityMode(nsCompatibility* aResult)
|
1998-07-31 09:54:59 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
*aResult = mCompatibilityMode;
|
1998-07-31 09:54:59 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-03 01:43:26 +03:00
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::SetCompatibilityMode(nsCompatibility aMode)
|
|
|
|
{
|
|
|
|
mCompatibilityMode = aMode;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-03-03 01:43:26 +03:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetWidgetRenderingMode(nsWidgetRendering* aResult)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
*aResult = mWidgetRenderingMode;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::SetWidgetRenderingMode(nsWidgetRendering aMode)
|
|
|
|
{
|
|
|
|
mWidgetRenderingMode = aMode;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-09-05 07:52:40 +04:00
|
|
|
NS_IMETHODIMP
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::GetBaseURL(nsIURL** aResult)
|
1998-09-05 07:52:40 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
*aResult = mBaseURL;
|
1999-04-30 13:04:36 +04:00
|
|
|
NS_IF_ADDREF(*aResult);
|
1998-09-05 07:52:40 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-02-11 18:53:26 +03:00
|
|
|
NS_IMETHODIMP
|
1998-04-14 00:24:54 +04:00
|
|
|
nsPresContext::ResolveStyleContextFor(nsIContent* aContent,
|
1998-11-03 23:20:07 +03:00
|
|
|
nsIStyleContext* aParentContext,
|
1999-02-12 20:45:58 +03:00
|
|
|
PRBool aForceUnique,
|
|
|
|
nsIStyleContext** aResult)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
nsIStyleContext* result = nsnull;
|
|
|
|
nsCOMPtr<nsIStyleSet> set;
|
|
|
|
nsresult rv = mShell->GetStyleSet(getter_AddRefs(set));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
1999-02-12 21:41:26 +03:00
|
|
|
if (set) {
|
1999-02-12 20:45:58 +03:00
|
|
|
result = set->ResolveStyleFor(this, aContent, aParentContext,
|
|
|
|
aForceUnique);
|
|
|
|
if (nsnull == result) {
|
|
|
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*aResult = result;
|
|
|
|
return rv;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-02-11 18:53:26 +03:00
|
|
|
NS_IMETHODIMP
|
1998-11-03 23:20:07 +03:00
|
|
|
nsPresContext::ResolvePseudoStyleContextFor(nsIContent* aParentContent,
|
|
|
|
nsIAtom* aPseudoTag,
|
|
|
|
nsIStyleContext* aParentContext,
|
1999-02-12 20:45:58 +03:00
|
|
|
PRBool aForceUnique,
|
|
|
|
nsIStyleContext** aResult)
|
1998-05-19 01:06:33 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
1998-05-19 01:06:33 +04:00
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
nsIStyleContext* result = nsnull;
|
|
|
|
nsCOMPtr<nsIStyleSet> set;
|
|
|
|
nsresult rv = mShell->GetStyleSet(getter_AddRefs(set));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
1999-02-12 21:41:26 +03:00
|
|
|
if (set) {
|
1999-02-12 20:45:58 +03:00
|
|
|
result = set->ResolvePseudoStyleFor(this, aParentContent, aPseudoTag,
|
|
|
|
aParentContext, aForceUnique);
|
|
|
|
if (nsnull == result) {
|
|
|
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*aResult = result;
|
|
|
|
return rv;
|
1998-05-19 01:06:33 +04:00
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_IMETHODIMP
|
1998-11-03 23:20:07 +03:00
|
|
|
nsPresContext::ProbePseudoStyleContextFor(nsIContent* aParentContent,
|
|
|
|
nsIAtom* aPseudoTag,
|
|
|
|
nsIStyleContext* aParentContext,
|
1999-02-12 20:45:58 +03:00
|
|
|
PRBool aForceUnique,
|
|
|
|
nsIStyleContext** aResult)
|
1998-05-19 01:06:33 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
1998-05-19 01:06:33 +04:00
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
nsIStyleContext* result = nsnull;
|
|
|
|
nsCOMPtr<nsIStyleSet> set;
|
|
|
|
nsresult rv = mShell->GetStyleSet(getter_AddRefs(set));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
1999-02-12 21:41:26 +03:00
|
|
|
if (set) {
|
1999-02-12 20:45:58 +03:00
|
|
|
result = set->ProbePseudoStyleFor(this, aParentContent, aPseudoTag,
|
|
|
|
aParentContext, aForceUnique);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*aResult = result;
|
|
|
|
return rv;
|
1998-05-19 01:06:33 +04:00
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetMetricsFor(const nsFont& aFont, nsIFontMetrics** aResult)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
1998-08-28 00:43:04 +04:00
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
nsIFontMetrics* metrics = nsnull;
|
1999-04-30 13:04:36 +04:00
|
|
|
if (mDeviceContext) {
|
1998-08-28 00:43:04 +04:00
|
|
|
mDeviceContext->GetMetricsFor(aFont, metrics);
|
|
|
|
}
|
1999-02-12 20:45:58 +03:00
|
|
|
*aResult = metrics;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetDefaultFont(nsFont& aResult)
|
|
|
|
{
|
|
|
|
aResult = mDefaultFont;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetDefaultFixedFont(nsFont& aResult)
|
|
|
|
{
|
|
|
|
aResult = mDefaultFixedFont;
|
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1998-05-09 07:22:01 +04:00
|
|
|
const nsFont&
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::GetDefaultFontDeprecated()
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
return mDefaultFont;
|
|
|
|
}
|
|
|
|
|
1998-07-17 09:41:41 +04:00
|
|
|
const nsFont&
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::GetDefaultFixedFontDeprecated()
|
1998-07-17 09:41:41 +04:00
|
|
|
{
|
|
|
|
return mDefaultFixedFont;
|
|
|
|
}
|
|
|
|
|
1998-11-26 21:10:10 +03:00
|
|
|
NS_IMETHODIMP
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::GetFontScaler(PRInt32* aResult)
|
1998-07-25 05:11:49 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aResult = mFontScaler;
|
1998-11-26 21:10:10 +03:00
|
|
|
return NS_OK;
|
1998-07-25 05:11:49 +04:00
|
|
|
}
|
|
|
|
|
1998-11-26 21:10:10 +03:00
|
|
|
NS_IMETHODIMP
|
1998-07-25 05:11:49 +04:00
|
|
|
nsPresContext::SetFontScaler(PRInt32 aScaler)
|
|
|
|
{
|
|
|
|
mFontScaler = aScaler;
|
1998-11-26 21:10:10 +03:00
|
|
|
return NS_OK;
|
1998-07-25 05:11:49 +04:00
|
|
|
}
|
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::GetDefaultColor(nscolor* aResult)
|
1998-07-17 09:41:41 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aResult = mDefaultColor;
|
1998-07-17 09:41:41 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::GetDefaultBackgroundColor(nscolor* aResult)
|
1998-07-17 09:41:41 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aResult = mDefaultBackgroundColor;
|
1998-07-17 09:41:41 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::SetDefaultColor(nscolor aColor)
|
1998-07-23 21:57:00 +04:00
|
|
|
{
|
|
|
|
mDefaultColor = aColor;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::SetDefaultBackgroundColor(nscolor aColor)
|
1998-07-23 21:57:00 +04:00
|
|
|
{
|
|
|
|
mDefaultBackgroundColor = aColor;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-11-26 21:10:10 +03:00
|
|
|
NS_IMETHODIMP
|
1998-05-22 22:36:40 +04:00
|
|
|
nsPresContext::GetVisibleArea(nsRect& aResult)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1998-05-22 22:36:40 +04:00
|
|
|
aResult = mVisibleArea;
|
1998-11-26 21:10:10 +03:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1998-11-26 21:10:10 +03:00
|
|
|
NS_IMETHODIMP
|
1998-05-09 07:22:01 +04:00
|
|
|
nsPresContext::SetVisibleArea(const nsRect& r)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
mVisibleArea = r;
|
1998-11-26 21:10:10 +03:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetPixelsToTwips(float* aResult) const
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
float p2t = 1.0f;
|
1999-04-30 13:04:36 +04:00
|
|
|
if (mDeviceContext) {
|
1998-08-28 02:45:35 +04:00
|
|
|
mDeviceContext->GetDevUnitsToAppUnits(p2t);
|
1998-05-09 07:22:01 +04:00
|
|
|
}
|
1999-02-12 20:45:58 +03:00
|
|
|
*aResult = p2t;
|
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetTwipsToPixels(float* aResult) const
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
float app2dev = 1.0f;
|
1999-04-30 13:04:36 +04:00
|
|
|
if (mDeviceContext) {
|
1998-08-28 02:45:35 +04:00
|
|
|
mDeviceContext->GetAppUnitsToDevUnits(app2dev);
|
1998-05-09 07:22:01 +04:00
|
|
|
}
|
1999-02-12 20:45:58 +03:00
|
|
|
*aResult = app2dev;
|
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetScaledPixelsToTwips(float* aResult) const
|
1998-11-14 04:52:27 +03:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
|
|
|
float scale = 1.0f;
|
1999-04-30 13:04:36 +04:00
|
|
|
if (mDeviceContext)
|
1998-11-14 04:52:27 +03:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
float p2t;
|
1998-11-14 04:52:27 +03:00
|
|
|
mDeviceContext->GetDevUnitsToAppUnits(p2t);
|
|
|
|
mDeviceContext->GetCanonicalPixelScale(scale);
|
1999-02-12 20:45:58 +03:00
|
|
|
scale = p2t * scale;
|
1998-11-14 04:52:27 +03:00
|
|
|
}
|
1999-02-12 20:45:58 +03:00
|
|
|
*aResult = scale;
|
1998-11-14 04:52:27 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetDeviceContext(nsIDeviceContext** aResult) const
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
*aResult = mDeviceContext;
|
1999-04-30 13:04:36 +04:00
|
|
|
NS_IF_ADDREF(*aResult);
|
1999-02-12 20:45:58 +03:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
1999-02-12 20:45:58 +03:00
|
|
|
nsPresContext::GetImageGroup(nsIImageGroup** aResult)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1999-02-12 20:45:58 +03:00
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
1999-04-30 13:04:36 +04:00
|
|
|
if (!mImageGroup) {
|
1998-05-09 07:22:01 +04:00
|
|
|
// Create image group
|
1999-04-30 13:04:36 +04:00
|
|
|
nsresult rv = NS_NewImageGroup(getter_AddRefs(mImageGroup));
|
1998-05-09 07:22:01 +04:00
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize the image group
|
1999-04-30 13:04:36 +04:00
|
|
|
nsCOMPtr<nsIURLGroup> urlGroup;
|
|
|
|
rv = mBaseURL->GetURLGroup(getter_AddRefs(urlGroup));
|
1998-12-16 08:40:20 +03:00
|
|
|
if (rv == NS_OK)
|
|
|
|
rv = mImageGroup->Init(mDeviceContext, urlGroup);
|
1998-05-09 07:22:01 +04:00
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
1999-02-12 20:45:58 +03:00
|
|
|
|
|
|
|
*aResult = mImageGroup;
|
1999-04-30 13:04:36 +04:00
|
|
|
NS_IF_ADDREF(*aResult);
|
1998-05-12 02:56:58 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::StartLoadImage(const nsString& aURL,
|
|
|
|
const nscolor* aBackgroundColor,
|
1999-04-14 01:49:28 +04:00
|
|
|
const nsSize* aDesiredSize,
|
1998-07-31 09:54:59 +04:00
|
|
|
nsIFrame* aTargetFrame,
|
1999-04-14 01:49:28 +04:00
|
|
|
nsIFrameImageLoaderCB aCallBack,
|
|
|
|
void* aClosure,
|
|
|
|
nsIFrameImageLoader** aResult)
|
1998-05-12 02:56:58 +04:00
|
|
|
{
|
1998-11-26 21:10:10 +03:00
|
|
|
if (mStopped) {
|
1999-04-21 01:50:32 +04:00
|
|
|
if (aResult) {
|
|
|
|
*aResult = nsnull;
|
|
|
|
}
|
1998-11-26 21:10:10 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-04-14 01:49:28 +04:00
|
|
|
if (nsnull == aTargetFrame) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
1998-11-23 20:18:34 +03:00
|
|
|
}
|
|
|
|
|
1999-04-14 01:49:28 +04:00
|
|
|
// Mark frame as having loaded an image
|
|
|
|
nsFrameState state;
|
|
|
|
aTargetFrame->GetFrameState(&state);
|
|
|
|
state |= NS_FRAME_HAS_LOADED_IMAGES;
|
|
|
|
aTargetFrame->SetFrameState(state);
|
|
|
|
|
|
|
|
// Lookup image request in our loaders array (maybe the load request
|
|
|
|
// has already been made for that url at the desired size).
|
1998-05-09 07:22:01 +04:00
|
|
|
PRInt32 i, n = mImageLoaders.Count();
|
1998-05-12 02:56:58 +04:00
|
|
|
nsIFrameImageLoader* loader;
|
1998-05-09 07:22:01 +04:00
|
|
|
for (i = 0; i < n; i++) {
|
1999-04-14 01:49:28 +04:00
|
|
|
PRBool same;
|
1998-05-12 02:56:58 +04:00
|
|
|
loader = (nsIFrameImageLoader*) mImageLoaders.ElementAt(i);
|
1999-04-14 01:49:28 +04:00
|
|
|
loader->IsSameImageRequest(aURL, aBackgroundColor, aDesiredSize, &same);
|
|
|
|
if (same) {
|
|
|
|
// This is pretty sick, but because we can get a notification
|
|
|
|
// *before* the caller has returned we have to store into
|
|
|
|
// aResult before calling the AddFrame method.
|
|
|
|
if (aResult) {
|
|
|
|
NS_ADDREF(loader);
|
|
|
|
*aResult = loader;
|
1998-05-12 02:56:58 +04:00
|
|
|
}
|
1999-04-14 01:49:28 +04:00
|
|
|
|
|
|
|
// Add frame to list of interested frames for this loader
|
|
|
|
loader->AddFrame(aTargetFrame, aCallBack, aClosure);
|
|
|
|
return NS_OK;
|
1998-05-12 02:56:58 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create image group if needed
|
|
|
|
nsresult rv;
|
1999-04-30 13:04:36 +04:00
|
|
|
if (!mImageGroup) {
|
1999-02-12 20:45:58 +03:00
|
|
|
nsCOMPtr<nsIImageGroup> group;
|
1999-04-30 13:04:36 +04:00
|
|
|
rv = GetImageGroup(getter_AddRefs(group)); // sets mImageGroup as side effect
|
1998-05-12 02:56:58 +04:00
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-05-09 07:22:01 +04:00
|
|
|
// We haven't seen that image before. Create a new loader and
|
|
|
|
// start it going.
|
1998-05-12 02:56:58 +04:00
|
|
|
rv = NS_NewFrameImageLoader(&loader);
|
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
1998-08-19 22:07:27 +04:00
|
|
|
mImageLoaders.AppendElement(loader);
|
1998-06-03 02:05:45 +04:00
|
|
|
|
1999-04-14 01:49:28 +04:00
|
|
|
// This is pretty sick, but because we can get a notification
|
|
|
|
// *before* the caller has returned we have to store into aResult
|
|
|
|
// before calling the loaders init method.
|
|
|
|
if (aResult) {
|
|
|
|
*aResult = loader;
|
|
|
|
NS_ADDREF(loader);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = loader->Init(this, mImageGroup, aURL, aBackgroundColor, aDesiredSize,
|
|
|
|
aTargetFrame, aCallBack, aClosure);
|
1998-06-03 02:05:45 +04:00
|
|
|
if (NS_OK != rv) {
|
1998-08-19 22:07:27 +04:00
|
|
|
mImageLoaders.RemoveElement(loader);
|
1999-04-23 23:57:49 +04:00
|
|
|
loader->StopImageLoad();
|
1998-08-18 05:43:35 +04:00
|
|
|
NS_RELEASE(loader);
|
1999-04-14 01:49:28 +04:00
|
|
|
|
|
|
|
// Undo premature store of reslut
|
|
|
|
if (aResult) {
|
|
|
|
*aResult = nsnull;
|
|
|
|
NS_RELEASE(loader);
|
|
|
|
}
|
1998-06-03 02:05:45 +04:00
|
|
|
return rv;
|
|
|
|
}
|
1998-05-09 07:22:01 +04:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1998-11-26 21:10:10 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::Stop(void)
|
|
|
|
{
|
|
|
|
PRInt32 n = mImageLoaders.Count();
|
|
|
|
for (PRInt32 i = 0; i < n; i++) {
|
|
|
|
nsIFrameImageLoader* loader;
|
|
|
|
loader = (nsIFrameImageLoader*) mImageLoaders.ElementAt(i);
|
|
|
|
loader->StopImageLoad();
|
|
|
|
NS_RELEASE(loader);
|
|
|
|
}
|
|
|
|
mImageLoaders.Clear();
|
|
|
|
mStopped = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
1999-04-14 01:49:28 +04:00
|
|
|
nsPresContext::StopLoadImage(nsIFrame* aTargetFrame,
|
|
|
|
nsIFrameImageLoader* aLoader)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
1998-05-09 07:22:01 +04:00
|
|
|
PRInt32 i, n = mImageLoaders.Count();
|
1999-04-14 01:49:28 +04:00
|
|
|
nsIFrameImageLoader* loader;
|
|
|
|
for (i = 0; i < n; i++) {
|
1998-05-12 02:56:58 +04:00
|
|
|
loader = (nsIFrameImageLoader*) mImageLoaders.ElementAt(i);
|
1999-04-14 01:49:28 +04:00
|
|
|
if (loader == aLoader) {
|
|
|
|
// Remove frame from list of interested frames for this loader
|
|
|
|
loader->RemoveFrame(aTargetFrame);
|
|
|
|
|
|
|
|
// If loader is no longer loading for anybody and its safe to
|
|
|
|
// nuke it, nuke it.
|
|
|
|
PRBool safe;
|
|
|
|
loader->SafeToDestroy(&safe);
|
|
|
|
if (safe) {
|
1999-04-23 23:57:49 +04:00
|
|
|
loader->StopImageLoad();
|
1999-04-14 01:49:28 +04:00
|
|
|
NS_RELEASE(loader);
|
|
|
|
mImageLoaders.RemoveElementAt(i);
|
|
|
|
n--;
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::StopAllLoadImagesFor(nsIFrame* aTargetFrame)
|
|
|
|
{
|
|
|
|
nsFrameState state;
|
|
|
|
aTargetFrame->GetFrameState(&state);
|
|
|
|
if (NS_FRAME_HAS_LOADED_IMAGES & state) {
|
|
|
|
nsIFrameImageLoader* loader;
|
|
|
|
PRInt32 i, n = mImageLoaders.Count();
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
PRBool safe;
|
|
|
|
loader = (nsIFrameImageLoader*) mImageLoaders.ElementAt(i);
|
|
|
|
loader->RemoveFrame(aTargetFrame);
|
|
|
|
loader->SafeToDestroy(&safe);
|
|
|
|
if (safe) {
|
1999-04-23 23:57:49 +04:00
|
|
|
loader->StopImageLoad();
|
1999-04-14 01:49:28 +04:00
|
|
|
NS_RELEASE(loader);
|
|
|
|
mImageLoaders.RemoveElementAt(i);
|
|
|
|
n--;
|
|
|
|
i--;
|
1998-11-23 20:18:34 +03:00
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
}
|
1998-05-09 07:22:01 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::SetLinkHandler(nsILinkHandler* aHandler)
|
1999-04-30 13:04:36 +04:00
|
|
|
{
|
1998-04-14 00:24:54 +04:00
|
|
|
mLinkHandler = aHandler;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-05-09 07:22:01 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetLinkHandler(nsILinkHandler** aResult)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
*aResult = mLinkHandler;
|
|
|
|
NS_IF_ADDREF(mLinkHandler);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-05-09 07:22:01 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::SetContainer(nsISupports* aHandler)
|
1999-04-30 13:04:36 +04:00
|
|
|
{
|
1998-04-14 00:24:54 +04:00
|
|
|
mContainer = aHandler;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-05-09 07:22:01 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPresContext::GetContainer(nsISupports** aResult)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aResult, "null ptr");
|
|
|
|
if (nsnull == aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
*aResult = mContainer;
|
|
|
|
NS_IF_ADDREF(mContainer);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-06-24 01:53:02 +04:00
|
|
|
|
1998-07-31 09:54:59 +04:00
|
|
|
NS_IMETHODIMP
|
1998-06-24 01:53:02 +04:00
|
|
|
nsPresContext::GetEventStateManager(nsIEventStateManager** aManager)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aManager, "null ptr");
|
|
|
|
if (nsnull == aManager) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
|
1999-04-30 13:52:22 +04:00
|
|
|
if (!mEventManager) {
|
1999-04-30 13:04:36 +04:00
|
|
|
nsresult rv = NS_NewEventStateManager(getter_AddRefs(mEventManager));
|
1998-06-24 01:53:02 +04:00
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-11-18 08:25:26 +03:00
|
|
|
//Not refcnted, set null in destructor
|
|
|
|
mEventManager->SetPresContext(this);
|
|
|
|
|
1998-06-24 01:53:02 +04:00
|
|
|
*aManager = mEventManager;
|
1999-04-30 13:04:36 +04:00
|
|
|
NS_IF_ADDREF(*aManager);
|
1998-06-24 01:53:02 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-09-10 23:32:14 +04:00
|
|
|
|