Impl: use handler_fun instead of its full type
[staging/windowmanager.git] / AFBClient.h
index 05fa5a5..983c2ad 100644 (file)
@@ -3,9 +3,6 @@
 
 #include <functional>
 
-struct afb_wsj1;
-struct sd_event;
-
 class AFBClient
 {
     AFBClient();
@@ -15,11 +12,15 @@ class AFBClient
     AFBClient &operator=(const AFBClient &) = delete;
 
 public:
+    typedef std::function<void(char const *label)> handler_fun;
+
     enum EventType {
        Event_Active = 1,
        Event_Inactive,
+
        Event_Visible,
        Event_Invisible,
+
        Event_SyncDraw,
        Event_FlushDraw,
     };
@@ -35,11 +36,11 @@ public:
     int deactivateSurface(const char *label);
     int endDraw(const char *label);
 
-    void set_event_handler(enum EventType et,
-          std::function<void(char const *label)> f);
+    void set_event_handler(enum EventType et, handler_fun f);
+
+    struct Impl;
 
 private:
-    struct afb_wsj1 *wsj1;
-    struct sd_event *loop;
+    Impl *d;
 };
 #endif // AFBCLIENT_H