Rename files to use "_" instead of "-"
[apps/agl-service-windowmanager.git] / src / app.hpp
index d13fd4d..c46512f 100644 (file)
@@ -33,7 +33,7 @@
 #include "wayland_ivi_wm.hpp"
 #include "hmi-debug.h"
 #include "request.hpp"
-#include "wm-error.h"
+#include "wm_error.hpp"
 
 namespace wl
 {
@@ -70,6 +70,8 @@ extern const char kKeyHeightPixel[];
 extern const char kKeyWidthMm[];
 extern const char kKeyHeightMm[];
 
+class AppList;
+
 struct id_allocator
 {
     unsigned next = 1;
@@ -205,7 +207,7 @@ struct App
     std::vector<int> surface_bg;
 
     explicit App(wl::display *d);
-    ~App() = default;
+    ~App()/*  = default */;
 
     App(App const &) = delete;
     App &operator=(App const &) = delete;
@@ -220,6 +222,7 @@ struct App
 
     result<int> api_request_surface(char const *appid, char const *drawing_name);
     char const *api_request_surface(char const *appid, char const *drawing_name, char const *ivi_id);
+    bool api_set_role(char const *appid, char const *drawing_name, unsigned pid);
     void api_activate_surface(char const *appid, char const *drawing_name, char const *drawing_area, const reply_func &reply);
     void api_deactivate_surface(char const *appid, char const *drawing_name, const reply_func &reply);
     void api_enddraw(char const *appid, char const *drawing_name);
@@ -232,6 +235,7 @@ struct App
     // Events from the compositor we are interested in
     void surface_created(uint32_t surface_id);
     void surface_removed(uint32_t surface_id);
+    void surface_properties(uint32_t surface_id, uint32_t pid);
 
     // Do not use this function
     //static int processTimerHandler(sd_event_source *s, uint64_t usec, void *userdata);
@@ -264,7 +268,7 @@ struct App
 
     WMError do_transition(unsigned sequence_number);
 
-    void do_enddraw(unsigned sequence_number);
+    void do_enddraw(unsigned req_num);
     void process_request();
     void set_timer();
     void stop_timer();
@@ -285,6 +289,9 @@ struct App
     WMError lm_layout_change(const struct WMAction &action);
     WMError lm_release(const struct WMAction &action);
     void lm_enddraw(const char *drawing_name);
+
+  private:
+    std::unique_ptr<wm::AppList> app_list;
 };
 
 } // namespace wm