nsIScreenManager.idl 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* -*- Mode: IDL; tab-width: 2; 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. #include "nsIScreen.idl"
  8. [scriptable, uuid(e8a96e60-6b61-4a14-bacc-53891604b502)]
  9. interface nsIScreenManager : nsISupports
  10. {
  11. //
  12. // Returns the screen that contains the rectangle. If the rect overlaps
  13. // multiple screens, it picks the screen with the greatest area of intersection.
  14. //
  15. // The coordinates are in pixels (not twips) and in screen coordinates.
  16. //
  17. nsIScreen screenForRect ( in long left, in long top, in long width, in long height ) ;
  18. //
  19. // Returns the screen corresponding to the id. If no such screen exists,
  20. // this will throw NS_ERROR_FAILURE. The id is a unique numeric value
  21. // assigned to each screen, and is an attribute available on the nsIScreen
  22. // interface.
  23. nsIScreen screenForId ( in unsigned long id ) ;
  24. // The screen with the menubar/taskbar. This shouldn't be needed very
  25. // often.
  26. readonly attribute nsIScreen primaryScreen;
  27. // Holds the number of screens that are available
  28. readonly attribute unsigned long numberOfScreens;
  29. // The default DPI scaling factor of the screen environment (number of
  30. // screen pixels corresponding to 1 CSS px, at the default zoom level).
  31. //
  32. // This is currently fixed at 1.0 on most platforms, but varies on Windows
  33. // if the "logical DPI" scaling option in the Display control panel is set
  34. // to a value other than 100% (e.g. 125% or 150% are increasingly common
  35. // defaults on laptops with high-dpi screens). See bug 851520.
  36. //
  37. // NOTE that on OS X, this does -not- reflect the "backing scale factor"
  38. // used to support Retina displays, which is a per-display property,
  39. // not a system-wide scaling factor. The default ratio of CSS pixels to
  40. // Cocoa points remains 1:1, even on a Retina screen where one Cocoa point
  41. // corresponds to two device pixels. (This is exposed via other APIs:
  42. // see window.devicePixelRatio).
  43. //
  44. // NOTE also that on Linux, this does -not- currently reflect changes
  45. // to the system-wide (X11 or Gtk2) DPI value, as Firefox does not yet
  46. // honor these settings. See bug 798362 and bug 712898.
  47. readonly attribute float systemDefaultScale;
  48. // Returns the nsIScreen instance for the given native widget pointer;
  49. // the pointer is specific to the particular widget implementation,
  50. // and is generally of the same type that NS_NATIVE_WINDOW is.
  51. [noscript] nsIScreen screenForNativeWidget ( in voidPtr nativeWidget );
  52. };
  53. %{ C++
  54. %}