[apps/shared] Add toggle buttons in Graph view

Change-Id: I7548d11fb114b2605ce34d3bda0776277b79ff9d
This commit is contained in:
Hugo Saint-Vignes
2020-10-08 16:54:32 +02:00
committed by Émilie Feral
parent a76e54642c
commit 2f97dab6d1
20 changed files with 226 additions and 66 deletions

View File

@@ -0,0 +1,6 @@
#include <escher/toggleable_view.h>
void ToggleableView::setState(bool state) {
m_state = state;
markRectAsDirty(bounds());
}