diff options
author | 2018-06-18 20:39:41 +0900 | |
---|---|---|
committer | 2018-06-18 20:39:41 +0900 | |
commit | 6ef8b4043c689f16cafd45ea7f661a50ffba8ec1 (patch) | |
tree | fb981be495dfa65b5ed087de3a5f307855a57b86 /src/request.hpp | |
parent | aa14c646b5813e09e1e1d1f4cb6da856bf00b886 (diff) | |
parent | f567cc6cf3fc51eb3b0216b481c1f48e07fbb4ec (diff) |
Merge branch 'sandbox/knimitz/lock_mv_transition_endD' into sandbox/knimitz/lock
Diffstat (limited to 'src/request.hpp')
-rw-r--r-- | src/request.hpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/request.hpp b/src/request.hpp index ded2c02..6b2bda1 100644 --- a/src/request.hpp +++ b/src/request.hpp @@ -30,6 +30,13 @@ enum Task TASK_INVALID }; +enum TaskVisible +{ + VISIBLE, + INVISIBLE, + NO_CHANGE +}; + struct WMTrigger { std::string appid; @@ -43,7 +50,7 @@ struct WMAction std::string appid; std::string role; std::string area; - bool visible; + TaskVisible visible; bool end_draw_finished; }; |