aboutsummaryrefslogtreecommitdiffstats
path: root/src/layers.hpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-01 11:48:13 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-08-08 17:24:00 +0200
commit9642c1098a3b3326c2213b5f791dfa84c6352625 (patch)
tree7a3ff70ed50f0f9862f6b63121628801571c7d8f /src/layers.hpp
parentca53e70e58714286798a071fbe2316295334ac7b (diff)
app: implement configured surface areas from ids.json
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/layers.hpp')
-rw-r--r--src/layers.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/layers.hpp b/src/layers.hpp
index aed39c8..a827928 100644
--- a/src/layers.hpp
+++ b/src/layers.hpp
@@ -9,6 +9,7 @@
#include <set>
#include <string>
+#include "wayland.hpp"
#include "result.hpp"
namespace wm {
@@ -18,6 +19,7 @@ struct surface_id_to_layer {
int id_max = -1;
std::string name = "";
int layer_id = -1;
+ genivi::rect rect;
explicit surface_id_to_layer(nlohmann::json const &j);
@@ -36,6 +38,7 @@ struct surface_id_to_layer_map {
layers_type layers;
optional<int> get_layer_for_surface(int surface_id);
+ optional<genivi::rect> get_rect_for_surface(int surface_id);
layers_type::size_type get_layers_count() const {
return this->layers.size();
}