New concept of dynamically placing surfaces in static defined layout areas.
[staging/HomeScreen.git] / HomeScreen / src / homescreencontrolinterface.h
index 3480d30..3203088 100644 (file)
@@ -15,12 +15,18 @@ public:
     ~HomeScreenControlInterface();
 
 signals:
+    void newRequestsToBeVisibleApp(int pid);
 
-public slots:
+    QRect newRequestGetLayoutRenderAreaForSurfaceId(int surfaceId);
+    void newRequestRenderSurfaceToArea(int surfaceId, const QRect &renderArea);
+    void newRequestSurfaceIdToFullScreen(int surfaceId);
 
 //from homescreen_adapter.h
 public Q_SLOTS: // METHODS
+    QRect getLayoutRenderAreaForSurfaceId(int surfaceId);
     void hardKeyPressed(int key);
+    void renderSurfaceToArea(int surfaceId, const QRect &renderArea);
+    void requestSurfaceIdToFullScreen(int surfaceId);
 
 private:
     HomescreenAdaptor *mp_homeScreenAdaptor;