From 85392e71f90a0322fdc08359ef1d829cdcf67381 Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Tue, 10 Jul 2018 18:11:51 +0900 Subject: Copy source code from homescreen-2017 We decide to use homescreen instead of homescreen-2017. Copy the source code from homescreen-2017 and delete word "-2017". Revision: b4db06287bc997ded71deab50ff0ff5889b09e1f Bug-AGL: SPEC-1549 Change-Id: Id77226b7ce35bbc29c868281c37b76ea3f930ad5 Signed-off-by: zheng_wenlong --- sampleapptimedate/src/timedateprovider.cpp | 76 ------------------------------ 1 file changed, 76 deletions(-) delete mode 100644 sampleapptimedate/src/timedateprovider.cpp (limited to 'sampleapptimedate/src/timedateprovider.cpp') diff --git a/sampleapptimedate/src/timedateprovider.cpp b/sampleapptimedate/src/timedateprovider.cpp deleted file mode 100644 index 2511432..0000000 --- a/sampleapptimedate/src/timedateprovider.cpp +++ /dev/null @@ -1,76 +0,0 @@ -#include "timedateprovider.hpp" -#include - -TimeDateProvider::TimeDateProvider(QObject *parent) : - QObject(parent), - m_secondsTimerId(-1), - mp_dBusStatusBarProxy(0), - m_statusBarPlaceholder(-1) -{ - qDebug("D-Bus: register as org.agl.SampleAppTimeDate"); - // dbus setup - QDBusConnection dbus = QDBusConnection::sessionBus(); - - dbus.registerObject("/", this); - dbus.registerService("org.agl.sampleapptimedate"); - - - qDebug("D-Bus: connect to org.agl.homescreen /StatusBar"); - mp_dBusStatusBarProxy = new org::agl::statusbar("org.agl.homescreen", - "/StatusBar", - QDBusConnection::sessionBus(), - 0); -} - -TimeDateProvider::~TimeDateProvider() -{ - stop(); - - if (0 != mp_dBusStatusBarProxy) - { - mp_dBusStatusBarProxy->setStatusText(1, ""); - delete mp_dBusStatusBarProxy; - } -} - -void TimeDateProvider::start() -{ - qDebug("trying to start timer (if this lasts long, maybe the Home Screen Application is not launched."); - if ((-1 == m_statusBarPlaceholder) && (0 != mp_dBusStatusBarProxy)) - { - QList availablePlaceholder = mp_dBusStatusBarProxy->getAvailablePlaceholders(); - if (availablePlaceholder.size() > 0) - { - // just take the first available placeholder - m_statusBarPlaceholder = availablePlaceholder[0]; - qDebug("- using statusbar placeholder %d", m_statusBarPlaceholder); - - qDebug("- timer started"); - // callback every second - m_secondsTimerId = startTimer(1000); - } - } -} - -void TimeDateProvider::stop() -{ - if (-1 != m_secondsTimerId) - { - killTimer(m_secondsTimerId); - m_secondsTimerId = -1; - m_statusBarPlaceholder = -1; - } -} - -void TimeDateProvider::timerEvent(QTimerEvent *e) -{ - if (e->timerId() == m_secondsTimerId) - { - if (0 != mp_dBusStatusBarProxy) - { - QString toDisplay = QDateTime::currentDateTime().toString("hh:mm"); - qDebug("%s", toDisplay.toStdString().c_str()); - mp_dBusStatusBarProxy->setStatusText(m_statusBarPlaceholder, toDisplay); - } - } -} -- cgit 1.2.3-korg