X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=AFBClient.h;h=983c2ad6b4ec7b2a01a06b8c39c3f042ed22c699;hb=267c89a270b79b4bb45043c700ca65f2917b241c;hp=c6da6f7c2553d692da614f6b49ac4d4a7908714e;hpb=31768957cd3e7ce3152db910b487ff73b73fffc4;p=staging%2Fwindowmanager.git diff --git a/AFBClient.h b/AFBClient.h index c6da6f7..983c2ad 100644 --- a/AFBClient.h +++ b/AFBClient.h @@ -3,13 +3,6 @@ #include -extern "C" -{ - struct json_object; - struct afb_wsj1; - struct sd_event; -} - class AFBClient { AFBClient(); @@ -19,11 +12,15 @@ class AFBClient AFBClient &operator=(const AFBClient &) = delete; public: + typedef std::function handler_fun; + enum EventType { Event_Active = 1, Event_Inactive, + Event_Visible, Event_Invisible, + Event_SyncDraw, Event_FlushDraw, }; @@ -31,7 +28,7 @@ public: static AFBClient &instance(); int init(int port, char const *token); - int dispatch(uint64_t timeout); + int dispatch(); // WM API int requestSurface(const char *label); @@ -39,14 +36,11 @@ public: int deactivateSurface(const char *label); int endDraw(const char *label); - void set_event_handler(enum EventType et, - std::function f); + void set_event_handler(enum EventType et, handler_fun f); -private: - int call(const char *verb, json_object *object, - std::function onReply); + struct Impl; - struct afb_wsj1 *wsj1; - struct sd_event *loop; +private: + Impl *d; }; #endif // AFBCLIENT_H