diff options
author | Yuta Doi <yuta-d@witz-inc.co.jp> | 2017-12-22 21:00:10 +0900 |
---|---|---|
committer | Yuta Doi <yuta-d@witz-inc.co.jp> | 2018-03-08 11:46:58 +0900 |
commit | a0a00ddd1a5d01566ffd145765a813814e20ae20 (patch) | |
tree | e361d94cdbcd98e7cb54cd5bc477b50dae4df352 /src/wayland.hpp | |
parent | a40753a48f09c8ffcce43f324f5f91029a351a48 (diff) |
Add APIs which can get information about the display and the surface area
getDisplayInfo() can get the display information as follows:
- width[pixel]
- height[pixel]
- width[mm]
- height[mm]
NOTE:
It uses wl_output::geometry() for getting physical width[mm] and height[mm] of the display,
but the value is different with measured value.
value from wl_output::geometry(): width:320 height:520
measured value : width:193 height:343
getAreaInfo() can get the information of area drawn by the application as follows:
- x-coordinate
- y-coordinate
- width
- height
The details are described in doc/ApplicationGuide.md.
Bug-AGL: SPEC-1087
Change-Id: I97c71b1618f9c8a799b14d9a0a53acfb27e1822d
Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
Diffstat (limited to 'src/wayland.hpp')
-rw-r--r-- | src/wayland.hpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wayland.hpp b/src/wayland.hpp index 619e47a..6e687ed 100644 --- a/src/wayland.hpp +++ b/src/wayland.hpp @@ -96,6 +96,8 @@ struct display { struct output : wayland_proxy<struct wl_output> { int width{}; int height{}; + int physical_width{}; + int physical_height{}; int refresh{}; int transform{}; @@ -250,7 +252,10 @@ struct controller : public wayland_proxy<struct ivi_controller> { layer_map_type layers; screen_map_type screens; - size output_size; + std::unique_ptr<struct screen> screen; + + size output_size; // Display size[pixel] + size physical_size; // Display size[mm] wm::controller_hooks *chooks; |