/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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/. */
/** * A DocumentViewerPrint is an INTERNAL Interface used for interaction * between the DocumentViewer and nsPrintJob.
*/ class nsIDocumentViewerPrint : public nsISupports { public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOCUMENT_VIEWER_PRINT_IID)
/** * This is used by nsPagePrintTimer to make nsDocumentViewer::Destroy() * a no-op until printing is finished. That prevents the nsDocumentViewer * and its document, presshell and prescontext from going away.
*/ virtualvoid IncrementDestroyBlockedCount() = 0; virtualvoid DecrementDestroyBlockedCount() = 0;
virtualvoid OnDonePrinting() = 0;
/** * Replaces the current presentation with print preview presentation.
*/ virtualvoid SetPrintPreviewPresentation(nsViewManager* aViewManager,
nsPresContext* aPresContext,
mozilla::PresShell* aPresShell) = 0;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.