This patch is actually part of Bug 115136, but I think its best to get this part

of it in now before the API freeze.
It adds several new attrs to the nsIWebBrowserPrint API and implments them in
DocumentViewer.
It also adds a new platform specific interface for PrintSettings that will be
used when the "pluggable" dialog work gets checked in. Although these have been
tested via BUg 115136, these little nto no risk now because no one is using
them yet.
Bug 132827 r=dcone sr=attinasi a=asa


git-svn-id: svn://10.0.0.236/trunk@117396 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rods%netscape.com
2002-03-25 03:19:32 +00:00
parent a7953d7749
commit 15f33efd46
4 changed files with 116 additions and 0 deletions

View File

@@ -903,6 +903,27 @@ PluginViewerImpl::GetIsFramesetDocument(PRBool *aIsFramesetDocument)
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isIFrameSelected; */
NS_IMETHODIMP
PluginViewerImpl::GetIsIFrameSelected(PRBool *aIsIFrameSelected)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isRangeSelection; */
NS_IMETHODIMP
PluginViewerImpl::GetIsRangeSelection(PRBool *aIsRangeSelection)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean isFramesetFrameSelected; */
NS_IMETHODIMP
PluginViewerImpl::GetIsFramesetFrameSelected(PRBool *aIsFramesetFrameSelected)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long printPreviewNumPages; */
NS_IMETHODIMP
PluginViewerImpl::GetPrintPreviewNumPages(PRInt32 *aPrintPreviewNumPages)