aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/src/homescreencontrolinterface.h
diff options
context:
space:
mode:
authorMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-05-10 14:10:05 +0200
committerMarcus Fritzsch <marcus_fritzsch@mentor.com>2017-05-11 08:12:31 +0200
commit52ef216acfe810a482dbab0c4422dad6ad8e77b7 (patch)
tree4b79a1e2d15aee01ad284345275bd434a764a5ad /homescreen/src/homescreencontrolinterface.h
parent0d3a0050cd3d35dbda51931134bd81460a1d12b2 (diff)
HomeScreenControlInterface: use single afm_user_daemon
* The org.agl.homescreenappframeworkbindertizen should not be used here. * Simplify the implementation. Change-Id: I5d2dedf2dcacea2104ba38e4467fd8299a88d776 Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'homescreen/src/homescreencontrolinterface.h')
-rw-r--r--homescreen/src/homescreencontrolinterface.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/homescreen/src/homescreencontrolinterface.h b/homescreen/src/homescreencontrolinterface.h
index d3e262d..b68a2b2 100644
--- a/homescreen/src/homescreencontrolinterface.h
+++ b/homescreen/src/homescreencontrolinterface.h
@@ -20,15 +20,12 @@
#include <QObject>
#include "include/homescreen.hpp"
#include "homescreen_adaptor.h"
-#include <include/appframework.hpp>
-#include <appframework_proxy.h>
class HomeScreenControlInterface : public QObject
{
Q_OBJECT
public:
explicit HomeScreenControlInterface(QObject *parent = 0);
- ~HomeScreenControlInterface();
signals:
void newRequestsToBeVisibleApp(int pid);
@@ -47,9 +44,9 @@ public Q_SLOTS: // METHODS
void renderSurfaceToArea(int surfaceId, int layoutArea);
bool renderAppToAreaAllowed(int appCategory, int layoutArea);
void requestSurfaceIdToFullScreen(int surfaceId);
+
private:
HomescreenAdaptor *mp_homeScreenAdaptor;
- org::agl::appframework *mp_dBusAppFrameworkProxy;
};
#endif // HOMESCREENCONTROLINTERFACE_H