View Single Post
d-iivil's Avatar
Posts: 2,154 | Thanked: 2,186 times | Joined on Dec 2009 @ Hellsinki, Finland
#108
Originally Posted by rooster13 View Post
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?
One way to do it would be call the dbus-message via QProcess and use waitForFinished -attribute.

edit:
Code:
QStringList arguments;
arguments << "run-standalone.sh dbus-send --type=method_call xxxx";
QProcess *process0 = new QProcess(this);
process0->start(arguments);
process0->waitForFinished();
__________________
If you're rich and you think I deserve a cold beer, you may donate one or two :-P

80's style stadium rock is back - FIRENOTE
Hi-Octane heavy metal - FORCE MAJEURE

Last edited by d-iivil; 2010-11-28 at 19:36.
 

The Following 2 Users Say Thank You to d-iivil For This Useful Post: