<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Exchange Server">
<!-- converted from rtf -->
<style><!-- .EmailQuote { margin-left: 1pt; padding-left: 4pt; border-left: #800000 2px solid; } --></style>
</head>
<body>
<font face="Calibri, sans-serif" size="2">
<div>Hello all,</div>
<div> </div>
<div>I have a question related to system time detection on Harmattan. I saw that there is a new package timehd .</div>
<div>How should it be used for getting system time changes. </div>
<div> </div>
<div>I tried with the following code :</div>
<div><font color="#1F497D">#define TIME_DBUS_INTERFACE "com.nokia.clockd"</font></div>
<div><font color="#1F497D">#define TIME_DBUS_PATH "/com/nokia/clockd"</font></div>
<div><font color="#1F497D">#define TIME_CHANGED "changed_time"</font></div>
<div> </div>
<div>Here I make the connection to service</div>
<div><font color="#215868"> QDBusConnection conn = QDBusConnection::systemBus();</font></div>
<div><font color="#215868"> bool ret = conn.connect( TIME_DBUS_INTERFACE ,</font></div>
<div><font color="#215868"> TIME_DBUS_PATH,</font></div>
<div><font color="#215868"> TIME_DBUS_INTERFACE,</font></div>
<div><font color="#215868"> TIME_CHANGED,</font></div>
<div><font color="#215868"> this,</font></div>
<div><font color="#215868"> SLOT(handleTimeChanged(qint32)) );</font></div>
<div><font color="#215868"> if ( ret )</font></div>
<div><font color="#215868"> qDebug( "::initialize - connect for time info successful" );</font></div>
<div><font color="#215868"> else</font></div>
<div><font color="#215868"> qDebug( "::initialize - connect for time info failed" );</font></div>
<div><font color="#215868">***********************************************</font></div>
<div><font color="#215868"> </font></div>
<div>This is the slot for notification</div>
<div><font color="#215868"> </font></div>
<div><font color="#215868">void TimeStatus::handleTimeChanged(qint32 a_value)</font></div>
<div><font color="#215868">{</font></div>
<div><font color="#215868"> qDebug("time changed %d",a_value);</font></div>
<div>}</div>
<div> </div>
<div> </div>
<div>Thanks in advance,</div>
<div>Vladimir</div>
<div> </div>
</font>
</body>
</html>