aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/src/homescreencontrolinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'HomeScreen/src/homescreencontrolinterface.h')
-rw-r--r--HomeScreen/src/homescreencontrolinterface.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/HomeScreen/src/homescreencontrolinterface.h b/HomeScreen/src/homescreencontrolinterface.h
index e341758..3203088 100644
--- a/HomeScreen/src/homescreencontrolinterface.h
+++ b/HomeScreen/src/homescreencontrolinterface.h
@@ -15,15 +15,18 @@ public:
~HomeScreenControlInterface();
signals:
-
-signals:
void newRequestsToBeVisibleApp(int pid);
- void newRequestsToggleFullscreen();
+
+ 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 toggleFullScreen();
+ void renderSurfaceToArea(int surfaceId, const QRect &renderArea);
+ void requestSurfaceIdToFullScreen(int surfaceId);
private:
HomescreenAdaptor *mp_homeScreenAdaptor;