summaryrefslogtreecommitdiffstats
path: root/libhomescreen/include/libhomescreen.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'libhomescreen/include/libhomescreen.hpp')
-rw-r--r--libhomescreen/include/libhomescreen.hpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/libhomescreen/include/libhomescreen.hpp b/libhomescreen/include/libhomescreen.hpp
deleted file mode 100644
index 6baa805..0000000
--- a/libhomescreen/include/libhomescreen.hpp
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef LIBHOMESCREEN_HPP
-#define LIBHOMESCREEN_HPP
-
-#include <vector>
-
-// forward declarations
-struct _LibHomeScreenHomescreen;
-typedef struct _LibHomeScreenHomescreen LibHomeScreenHomescreen;
-
-typedef struct
-{
- int x;
- int y;
- int width;
- int height;
-} sRectangle;
-
-class LibHomeScreen
-{
-public:
- LibHomeScreen();
- ~LibHomeScreen();
-
- // these are representing the D-Bus methods:
- std::vector<int> getAllSurfacesOfProcess(int pid);
- int getSurfaceStatus(int surfaceId);
- void hardKeyPressed(int key);
- void renderSurfaceToArea(int surfaceId, int layoutArea);
- bool renderAppToAreaAllowed(int appCategory, int layoutArea);
- void requestSurfaceIdToFullScreen(int surfaceId);
-private:
- LibHomeScreenHomescreen *mp_libHomeScreenHomescreen_Proxy;
-};
-
-#endif // LIBHOMESCREEN_HPP
-