![]() |
2011-05-26
, 19:56
|
|
Posts: 533 |
Thanked: 1,341 times |
Joined on Dec 2010
@ Italy
|
#2
|
void MafwHelper::GetCatalog(QString aggregate, int index, int count) { #ifdef Q_WS_MAEMO_5 QDBusInterface device(QLatin1String("org.freedesktop.Tracker"), QLatin1String("/org/freedesktop/Tracker/Metadata"), QLatin1String("org.freedesktop.Tracker.Metadata"), QDBusConnection::sessionBus()); QStringList par1 = QStringList() << aggregate; QStringList par2 = QStringList() << "SUM" << "COUNT" << "COUNT" << "CONCAT"; QStringList par3 = QStringList() << "Audio:Duration" << "Audio:Album" << "*" << "Audio:Album"; qDebug() << "DBusMessage: org.freedesktop.Tracker.Metadata::GetUniqueValuesWithAggregates"; QList<QVariant> args = QList<QVariant>() << "Music" << par1 << "" << par2 << par3 << false << index << count; device.callWithCallback(QLatin1String("GetUniqueValuesWithAggregates"), args, this, SLOT(GetCatalogFinishedSlot(QDBusMessage))); #endif } #ifdef Q_WS_MAEMO_5 void MafwHelper::GetCatalogFinishedSlot(QDBusMessage msg) { QVariant val = msg.arguments()[0]; QDBusArgument arg = qvariant_cast<QDBusArgument>(val); arg.beginArray(); while (!arg.atEnd()) { QList<QString> element; arg >> element; qDebug() << element; } arg.endArray(); } #endif
The Following User Says Thank You to sakya For This Useful Post: | ||
![]() |
2011-05-26
, 21:57
|
|
Posts: 2,473 |
Thanked: 12,265 times |
Joined on Oct 2009
@ Jerusalem, PS/IL
|
#3
|
The Following User Says Thank You to MohammadAG For This Useful Post: | ||
I tried to call this method with Qt using QDBusPendingCall, but I always receive an error in the reply.
The message I'm trying to call is this:
I'm not even sure that a QStringList parameter is correct for the array in dbusmessage...
Many thanks
My projects: smssend, groupsms, volumecontroldaemon, vodafone190, vodafone190 desktop widget, QtBatteryWidget, QtLockscreen, Lone Wolf
Donations are welcome
Last edited by sakya; 2011-05-26 at 12:28.