aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/src/mainwindow.h
diff options
context:
space:
mode:
authorBocklage, Jens <Jens_Bocklage@mentor.com>2016-10-05 16:25:19 +0200
committerBocklage, Jens <Jens_Bocklage@mentor.com>2016-10-05 16:25:19 +0200
commitc32114eb2ccbe142d73c06a5992544d6eacb97d0 (patch)
tree4525461f495d7aeb37258ef95b5fea7484f9d085 /HomeScreen/src/mainwindow.h
parent5a040cf1e77872dd567f6ffba50ed79fc27d5822 (diff)
Implemented proximity interface.v0.3.1
Signed-off-by: Bocklage, Jens <Jens_Bocklage@mentor.com>
Diffstat (limited to 'HomeScreen/src/mainwindow.h')
-rw-r--r--HomeScreen/src/mainwindow.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/HomeScreen/src/mainwindow.h b/HomeScreen/src/mainwindow.h
index d94546a..4b41761 100644
--- a/HomeScreen/src/mainwindow.h
+++ b/HomeScreen/src/mainwindow.h
@@ -19,6 +19,7 @@
#include <QMainWindow>
#include "daynightmode_proxy.h"
+#include "proximity_adapter.h"
#include "homescreencontrolinterface.h"
@@ -47,6 +48,9 @@ public:
public Q_SLOTS:
void dayNightModeSlot(int mode);
+// from proximity_adapter.h
+public Q_SLOTS:
+ void setObjectDetected(bool detected);
public slots:
void updateColorScheme();
@@ -71,6 +75,8 @@ private:
org::agl::daynightmode *mp_dBusDayNightModeProxy;
+ ProximityAdaptor *mp_proximityAdaptor;
+
HomeScreenControlInterface *mp_homeScreenControlInterface;
};