nsIPrintStatusFeedback.idl 773 B

123456789101112131415161718192021222324
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #include "nsISupports.idl"
  6. interface nsIDocShell;
  7. interface mozIDOMWindowProxy;
  8. /**
  9. * XXX This interface seems to be unimplemented and unused.
  10. */
  11. [scriptable, uuid(8eb6ffc9-715c-487e-927c-c56139229548)]
  12. interface nsIPrintStatusFeedback : nsISupports {
  13. void showStatusString(in wstring status);
  14. void startMeteors();
  15. void stopMeteors();
  16. void showProgress(in long percent);
  17. [noscript] void setDocShell(in nsIDocShell shell, in mozIDOMWindowProxy window);
  18. void closeWindow();
  19. };