summaryrefslogtreecommitdiffstats
path: root/src/app.cpp
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-09-12 11:29:38 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-09-12 11:29:38 +0200
commitf8e49ab7a90503ff791e264d61d5b658b0b4fad0 (patch)
treec17694a47bcfb7c4307bee1d6eeeac6f535ab217 /src/app.cpp
parent260b142249baa6cbd9147473384d40f83f7db61e (diff)
layers/app: properly remove surfs, deactivate main_surface
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src/app.cpp')
-rw-r--r--src/app.cpp19
1 files changed, 16 insertions, 3 deletions
diff --git a/src/app.cpp b/src/app.cpp
index 9b6486a..8208e8b 100644
--- a/src/app.cpp
+++ b/src/app.cpp
@@ -490,6 +490,7 @@ char const *App::api_deactivate_surface(char const *drawing_name) {
return "No surface active";
}
+ // XXX: check against main_surface, main_surface_name is the configuration item.
if (*surface_id == this->layers.main_surface) {
logdebug("Refusing to deactivate main_surface %d", *surface_id);
return nullptr;
@@ -569,6 +570,11 @@ void App::api_ping() {
this->dispatch_pending_events();
}
+void App::deactivate_main_surface() {
+ this->layers.main_surface = -1;
+ this->api_deactivate_surface(this->layers.main_surface_name.c_str());
+}
+
// _ _ _____ _
// _ __ _ __ _____ _(_) ___ __| | | ____|_ _____ _ __ | |_ ___
// | '_ \| '__/ _ \ \/ / |/ _ \/ _` | | _| \ \ / / _ \ '_ \| __/ __|
@@ -600,12 +606,19 @@ void App::surface_created(uint32_t surface_id) {
void App::surface_removed(uint32_t surface_id) {
logdebug("surface_id is %u", surface_id);
- auto drawing_name = this->lookup_name(surface_id);
- if (drawing_name) {
- this->api_deactivate_surface(drawing_name->c_str());
+ // We cannot normally deactivate the main_surface, so be explicit
+ // about it:
+ if (int(surface_id) == this->layers.main_surface) {
+ this->deactivate_main_surface();
+ } else {
+ auto drawing_name = this->lookup_name(surface_id);
+ if (drawing_name) {
+ this->api_deactivate_surface(drawing_name->c_str());
+ }
}
this->id_alloc.remove_id(surface_id);
+ this->layers.remove_surface(surface_id);
}
void App::emit_activated(char const *label) {