From dd8c90f87463d370c3076e13b7c6cc0e27c0d2f5 Mon Sep 17 00:00:00 2001 From: "Bocklage, Jens" Date: Tue, 8 Nov 2016 19:46:21 +0100 Subject: -Make the SampleNav app yellow. -Preparation for the new ApplicationFramework binding. The App Framework provides more information. --Adding afm D-Bus-interface introspection --Updating the AppInfo datatype to hold the new data: The application info consists of: string id; string version; int width; int height; string name; string description; string shortname; string author; string iconPath; -When pressing the AppLauncher Button or the Settings Button, the app layer is hidden. --Therefore, shideLayer and showLayer is introduced in the WindowManager API -If an application does not create its surface instantly, the HomeScreen retries to show the surface related to the pid. -New WindowManager function deleteLayoutById -Implement the complete HomeScreen API in the libhomescreen Signed-off-by: Bocklage, Jens --- libhomescreen/include/libhomescreen.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libhomescreen/include/libhomescreen.hpp') diff --git a/libhomescreen/include/libhomescreen.hpp b/libhomescreen/include/libhomescreen.hpp index db6ca2d..c028617 100644 --- a/libhomescreen/include/libhomescreen.hpp +++ b/libhomescreen/include/libhomescreen.hpp @@ -1,6 +1,8 @@ #ifndef LIBHOMESCREEN_HPP #define LIBHOMESCREEN_HPP +#include + // forward declarations struct _LibHomeScreenHomescreen; typedef struct _LibHomeScreenHomescreen LibHomeScreenHomescreen; @@ -20,7 +22,9 @@ public: ~LibHomeScreen(); // these are representing the D-Bus methods: + std::list getAllSurfacesOfProcess(int pid); sRectangle getLayoutRenderAreaForSurfaceId(int surfaceId); + int getSurfaceStatus(int surfaceId); void hardKeyPressed(int key); void renderSurfaceToArea(int surfaceId, const sRectangle &renderArea); void requestSurfaceIdToFullScreen(int surfaceId); -- cgit 1.2.3-korg