diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-08-30 21:00:53 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-08-30 21:00:53 +0900 |
commit | 3a9996eb359accdbadb0e5eaa5259c910b7ae46a (patch) | |
tree | 8a02d9eec6e010dceb3c375620a6e11d53dcaaa9 /src/wm_layer_control.hpp | |
parent | 59844dbc6fd2676d69cba702a9c43ffbc625a5d5 (diff) |
temporary change
Change-Id: I48618fd00e607176c95b4e3950fca7dbb058a3b1
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/wm_layer_control.hpp')
-rw-r--r-- | src/wm_layer_control.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/wm_layer_control.hpp b/src/wm_layer_control.hpp index db482bf..ea122a3 100644 --- a/src/wm_layer_control.hpp +++ b/src/wm_layer_control.hpp @@ -54,6 +54,9 @@ class LayerControlCallbacks { class WMLayer;
class LayerState;
+class WMAction;
+class WMClient;
+
class LayerControl
{
public:
@@ -73,12 +76,16 @@ class LayerControl WMError updateLayer(LayerState& layer_state);
WMError commitChange();
void undoUpdate();
+ WMError layoutChange(const WMAction& action);
+ WMError visibilityChange(const WMAction &action);
// Don't use this function.
void dispatchCreateEvent(ilmObjectType object, unsigned id, bool created);
void dispatchPropertyChangeEvent(unsigned id, struct ilmSurfaceProperties*, t_ilm_notification_mask);
void dispatchPropertyChangeEvent(unsigned id, struct ilmLayerProperties*, t_ilm_notification_mask);
private:
+ WMError makeVisible(const WMClient* client);
+ WMError makeInvisible(const WMClient* client);
WMError loadLayerSetting(const std::string& path);
WMError loadAreaDb(const std::string& path);
|