aboutsummaryrefslogtreecommitdiffstats
path: root/src/wm_client.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wm_client.hpp')
-rw-r--r--src/wm_client.hpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/wm_client.hpp b/src/wm_client.hpp
index 5342b76..40a0d1d 100644
--- a/src/wm_client.hpp
+++ b/src/wm_client.hpp
@@ -49,19 +49,15 @@ class WMClient
~WMClient() = default;
std::string appID() const;
- unsigned surfaceID(const std::string &role) const;
+ std::string role() const;
unsigned layerID() const;
unsigned surfaceID() const;
- std::vector<unsigned> renderOrder() const;
- std::string role(unsigned surface) const;
- std::string role() const;
- const std::vector<std::string> &roles() const;
- void setRole(const std::string& role);
- void appendRole(const std::string& role);
- //bool addSurface(const std::string& role, unsigned surface);
+ // void setRole(const std::string& role);
+ // void appendRole(const std::string& role);
WMError addSurface(unsigned surface);
bool removeSurfaceIfExist(unsigned surface);
- bool removeRole(const std::string& role);
+ // bool removeRole(const std::string& role);
+ std::vector<unsigned> renderOrder() const;
#if GTEST_ENABLED
bool subscribe(afb_req req, const std::string &event_name);
@@ -76,7 +72,7 @@ class WMClient
std::string main_role;
std::string area;
unsigned surface; // currently, main application has only one surface.
- std::vector<std::string> role_list;
+ //std::vector<std::string> role_list;
std::vector<unsigned> surface_render_order;
std::unordered_map<std::string, unsigned> service2surfaces;
std::unordered_map<std::string, unsigned> role2surface;