aboutsummaryrefslogtreecommitdiffstats
path: root/src/applist.hpp
diff options
context:
space:
mode:
authorKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-27 19:15:30 +0900
committerKazumasa Mitsunari <knimitz@witz-inc.co.jp>2018-08-27 19:17:24 +0900
commite5295c77d4c436212265edeca7f9a4818a5133e6 (patch)
tree79b38046d79add27328816d97be94baff6e303c5 /src/applist.hpp
parenta5106227c3c9ddbe2b07fbc2ecfc4e2ae1e4de74 (diff)
Update wm_client and applist
Change-Id: I76a58f431b894f2db1a8864f620c48311807befc Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/applist.hpp')
-rw-r--r--src/applist.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/applist.hpp b/src/applist.hpp
index fef4d65..9e86b83 100644
--- a/src/applist.hpp
+++ b/src/applist.hpp
@@ -50,14 +50,16 @@ class AppList
If the WMClient should be more flexible, I think this param should be WMClient class
*/
void addClient(const std::string &appid, unsigned layer,
- unsigned surface,const std::string &role);
+ unsigned surface, const std::string &role);
+ void addClient(const std::string &appid, unsigned layer,
+ const std::string& layer_name, unsigned surface, const std::string &role);
void removeClient(const std::string &appid);
bool contains(const std::string &appid) const;
int countClient() const;
std::shared_ptr<WMClient> lookUpClient(const std::string &appid);
void removeSurface(unsigned surface);
std::string getAppID(unsigned surface, const std::string &role, bool *found) const;
- WMError appendRole(const std::string &appid, const std::string &role, unsigned surface);
+ WMError appendRole(const std::string &appid, const std::string &role);
// Floating surface
void addFloatingClient(const std::string &appid, unsigned layer, const std::string &role);