nsIContentViewerFile.idl 794 B

1234567891011121314151617181920212223242526272829303132
  1. /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2. *
  3. * This Source Code Form is subject to the terms of the Mozilla Public
  4. * License, v. 2.0. If a copy of the MPL was not distributed with this
  5. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  6. #include "nsISupports.idl"
  7. interface nsIDOMWindow;
  8. interface nsIPrintSettings;
  9. interface nsIWebProgressListener;
  10. %{ C++
  11. #include <stdio.h>
  12. %}
  13. [ptr] native FILE(FILE);
  14. /**
  15. * The nsIDocShellFile
  16. */
  17. [scriptable, uuid(564a3276-6228-401e-9b5c-d82cb382a60f)]
  18. interface nsIContentViewerFile : nsISupports
  19. {
  20. readonly attribute boolean printable;
  21. [noscript] void print(in boolean aSilent,
  22. in FILE aDebugFile,
  23. in nsIPrintSettings aPrintSettings);
  24. };