Remove wm_layer_name in wm_client
[apps/agl-service-windowmanager.git] / src / wm_client.hpp
index 0b5abe1..4bc9421 100644 (file)
@@ -42,18 +42,21 @@ class WMClient
     WMClient(const std::string &appid, unsigned layer,
             unsigned surface, const std::string &role);
     WMClient(const std::string &appid, const std::string &role);
+    WMClient(const std::string &appid, unsigned layer, const std::string &role);
+    WMClient(const std::string &appid, unsigned layer,
+        const std::string& layer_name, unsigned surface, const std::string &role);
     ~WMClient() = default;
 
     std::string appID() const;
     unsigned surfaceID(const std::string &role) const;
     unsigned layerID() const;
-    const std::string& getWMLayerName();
     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 registerLayer(unsigned layer);
+    void appendRole(const std::string& role);
     bool addSurface(const std::string& role, unsigned surface);
     bool removeSurfaceIfExist(unsigned surface);
     bool removeRole(const std::string& role);
@@ -68,7 +71,7 @@ class WMClient
   private:
     std::string id;
     unsigned layer;
-    std::string wm_layer_name;
+    std::string main_role;
     std::string area;
     unsigned surface; // currently, main application has only one surface.
     std::vector<std::string> role_list;