Bugger! Does not work every time . I am calling the DBus, first open Filemanager and then goto to the desired directory like this: Code: QDBusInterface fileManagerd1("com.nokia.HildonDesktop.AppMgr", "/com/nokia/HildonDesktop/AppMgr", "com.nokia.HildonDesktop.AppMgr"); fileManagerd1.call("LaunchApplication", "/usr/bin/ossofilemanager"); QDBusInterface fileManagerd2("com.nokia.osso_filemanager", "/com/nokia/osso_filemanager", "com.nokia.osso_filemanager"); fileManagerd2.call("open_folder", item->data(Qt::UserRole).toString()); I was in the belief that the QDBusInterface.call would return only after it has finished, but that does not seem to be the case. Should I use some other type of call or try to make the main thread sleep for a while? I personnally don't like the sleep idea, but is there any other way?
QDBusInterface fileManagerd1("com.nokia.HildonDesktop.AppMgr", "/com/nokia/HildonDesktop/AppMgr", "com.nokia.HildonDesktop.AppMgr"); fileManagerd1.call("LaunchApplication", "/usr/bin/ossofilemanager"); QDBusInterface fileManagerd2("com.nokia.osso_filemanager", "/com/nokia/osso_filemanager", "com.nokia.osso_filemanager"); fileManagerd2.call("open_folder", item->data(Qt::UserRole).toString());
QStringList arguments; arguments << "run-standalone.sh dbus-send --type=method_call xxxx"; QProcess *process0 = new QProcess(this); process0->start(arguments); process0->waitForFinished();