status4evar.idl 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #include "nsISupports.idl"
  5. interface nsIDOMWindow;
  6. [scriptable, uuid(33d0433d-07be-4dc4-87fd-954057310efd)]
  7. interface nsIStatus4Evar : nsISupports
  8. {
  9. readonly attribute boolean addonbarBorderStyle;
  10. readonly attribute boolean addonbarCloseButton;
  11. readonly attribute boolean addonbarLegacyShim;
  12. readonly attribute boolean addonbarWindowGripper;
  13. readonly attribute boolean advancedStatusDetectFullScreen;
  14. readonly attribute boolean advancedStatusDetectVideo;
  15. readonly attribute long downloadButtonAction;
  16. readonly attribute ACString downloadButtonActionCommand;
  17. readonly attribute ACString downloadColorActive;
  18. readonly attribute ACString downloadColorPaused;
  19. readonly attribute boolean downloadForce;
  20. readonly attribute long downloadLabel;
  21. readonly attribute boolean downloadLabelForce;
  22. readonly attribute boolean downloadNotifyAnimate;
  23. readonly attribute long downloadNotifyTimeout;
  24. readonly attribute long downloadProgress;
  25. readonly attribute long downloadTooltip;
  26. readonly attribute boolean firstRun;
  27. readonly attribute boolean firstRunAustralis;
  28. readonly attribute ACString progressToolbarCSS;
  29. readonly attribute boolean progressToolbarForce;
  30. readonly attribute boolean progressToolbarStyle;
  31. readonly attribute boolean progressToolbarStyleAdvanced;
  32. readonly attribute long status;
  33. readonly attribute boolean statusDefault;
  34. readonly attribute boolean statusNetwork;
  35. readonly attribute boolean statusNetworkXHR;
  36. readonly attribute long statusTimeout;
  37. readonly attribute long statusLinkOver;
  38. readonly attribute long statusLinkOverDelayShow;
  39. readonly attribute long statusLinkOverDelayHide;
  40. readonly attribute long statusToolbarMaxLength;
  41. readonly attribute boolean statusToolbarInvertMirror;
  42. readonly attribute boolean statusToolbarMouseMirror;
  43. void resetPrefs();
  44. void updateWindow(in nsIDOMWindow win);
  45. };