summaryrefslogtreecommitdiffstats
path: root/HomeScreen/src/homescreencontrolinterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'HomeScreen/src/homescreencontrolinterface.cpp')
-rw-r--r--HomeScreen/src/homescreencontrolinterface.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/HomeScreen/src/homescreencontrolinterface.cpp b/HomeScreen/src/homescreencontrolinterface.cpp
index 057e742..bc66e53 100644
--- a/HomeScreen/src/homescreencontrolinterface.cpp
+++ b/HomeScreen/src/homescreencontrolinterface.cpp
@@ -24,6 +24,12 @@ HomeScreenControlInterface::~HomeScreenControlInterface()
delete mp_homeScreenAdaptor;
}
+QRect HomeScreenControlInterface::getLayoutRenderAreaForSurfaceId(int surfaceId)
+{
+ qDebug("getLayoutRenderAreaForSurfaceId %d", surfaceId);
+ return newRequestGetLayoutRenderAreaForSurfaceId(surfaceId);
+}
+
void HomeScreenControlInterface::hardKeyPressed(int key)
{
int pid = -1;
@@ -42,8 +48,14 @@ void HomeScreenControlInterface::hardKeyPressed(int key)
}
}
-void HomeScreenControlInterface::toggleFullScreen()
+void HomeScreenControlInterface::renderSurfaceToArea(int surfaceId, const QRect &renderArea)
+{
+ qDebug("requestSurfaceIdToFullScreen %d", surfaceId);
+ newRequestRenderSurfaceToArea(surfaceId, renderArea);
+}
+
+void HomeScreenControlInterface::requestSurfaceIdToFullScreen(int surfaceId)
{
- qDebug("toggleFullScreen");
- newRequestsToggleFullscreen();
+ qDebug("requestSurfaceIdToFullScreen %d", surfaceId);
+ newRequestSurfaceIdToFullScreen(surfaceId);
}