diff --git a/src/lib/efl/interfaces/efl_screen.eo b/src/lib/efl/interfaces/efl_screen.eo index 3aa06d2348..7d60050b48 100644 --- a/src/lib/efl/interfaces/efl_screen.eo +++ b/src/lib/efl/interfaces/efl_screen.eo @@ -1,44 +1,56 @@ import eina_types; interface @beta Efl.Screen { [[Efl screen interface]] methods { @property screen_size_in_pixels { get { [[Get screen size (in pixels) for the screen. Note that on some display systems this information is not available and a value of 0x0 will be returned. ]] } values { - size: Eina.Size2D; [[The screen size.]] + size: Eina.Size2D; [[The screen size in pixels.]] } } +// @property screen_size_in_mm { +// get { +// [[Get screen geometry (in millimeters) for the screen. +// +// Note that on some display systems this information is not available and +// a value of 0x0 will be returned. +// ]] +// } +// values { +// size: Eina.Size2D; [[The screen size in millimeters.]] +// } +// } @property screen_rotation { get { [[Get the rotation of the screen. Most engines only return multiples of 90. @since 1.19 ]] } values { rotation: int; [[Screen rotation in degrees.]] } } @property screen_dpi { get { [[Get the pixel density in DPI (Dots Per Inch) for the screen that a window is on. @since 1.7 ]] } values { xdpi: int; [[Horizontal DPI.]] ydpi: int; [[Vertical DPI.]] } } } }