Merging trunk changes from 138663 needed for blake's buddy bar stuff.

git-svn-id: svn://10.0.0.236/branches/SKYLINE_20020612_BRANCH@127064 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
caillon%returnzero.com
2002-08-12 07:38:47 +00:00
parent ca35ac7660
commit 2f717f0e19
3 changed files with 44 additions and 3 deletions

View File

@@ -704,7 +704,9 @@ protected:
// document management data
// these items are specific to markup documents (html and xml)
// may consider splitting these out into a subclass
PRBool mAllowPlugins;
PRPackedBool mAllowPlugins;
PRPackedBool mIsSticky;
/* character set member data */
nsString mDefaultCharacterSet;
nsString mHintCharset;
@@ -1087,11 +1089,10 @@ void DocumentViewerImpl::PrepareToStartLoad() {
}
DocumentViewerImpl::DocumentViewerImpl(nsIPresContext* aPresContext)
: mPresContext(aPresContext)
: mPresContext(aPresContext), mAllowPlugins(PR_TRUE), mIsSticky(PR_FALSE)
{
NS_INIT_ISUPPORTS();
mHintCharsetSource = kCharsetUninitialized;
mAllowPlugins = PR_TRUE;
PrepareToStartLoad();
}
@@ -6124,6 +6125,14 @@ DocumentViewerImpl::PrintPreview(nsIPrintSettings* aPrintSettings)
mPrt->mPrintDC->SetTextZoom(1.0f);
mPrt->mPrintDC->SetZoom(1.0f);
if (mIsSticky) {
// This window is sticky, that means that it might be shown again
// and we don't want the presshell n' all that to be thrown away
// just because the window is hidden.
return NS_OK;
}
if (mDeviceContext) {
mDeviceContext->SetUseAltDC(kUseAltDCFor_FONTMETRICS, PR_TRUE);
mDeviceContext->SetUseAltDC(kUseAltDCFor_CREATERC_REFLOW, PR_TRUE);
@@ -6903,6 +6912,22 @@ DocumentViewerImpl::CallChildren(CallChildFunc aFunc, void* aClosure)
return NS_OK;
}
NS_IMETHODIMP
DocumentViewerImpl::GetSticky(PRBool *aSticky)
{
*aSticky = mIsSticky;
return NS_OK;
}
NS_IMETHODIMP
DocumentViewerImpl::SetSticky(PRBool aSticky)
{
mIsSticky = aSticky;
return NS_OK;
}
struct TextZoomInfo
{
float mTextZoom;

View File

@@ -57,4 +57,6 @@ interface nsIContentViewer : nsISupports
void hide();
attribute boolean enableRendering;
attribute boolean sticky;
};

View File

@@ -705,6 +705,20 @@ PluginViewerImpl::GetEnableRendering(PRBool* aResult)
return NS_OK;
}
NS_IMETHODIMP
PluginViewerImpl::SetSticky(PRBool aSticky)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
PluginViewerImpl::GetSticky(PRBool *aSticky)
{
*aSticky = PR_FALSE;
return NS_OK;
}
void
PluginViewerImpl::ForceRefresh()
{