![]() |
2010-11-28
, 08:38
|
|
Posts: 319 |
Thanked: 221 times |
Joined on Jan 2010
@ Finland
|
#101
|
![]() |
2010-11-28
, 09:13
|
|
Posts: 319 |
Thanked: 221 times |
Joined on Jan 2010
@ Finland
|
#103
|
![]() |
2010-11-28
, 11:07
|
|
Posts: 1,637 |
Thanked: 4,424 times |
Joined on Apr 2009
@ Germany
|
#104
|
The Following User Says Thank You to nicolai For This Useful Post: | ||
![]() |
2010-11-28
, 13:14
|
|
Posts: 319 |
Thanked: 221 times |
Joined on Jan 2010
@ Finland
|
#105
|
Funny, you can use a dbus-call, for example:
dbus-send --print-reply --type=method_call --dest=com.nokia.osso_filemanager /com/nokia/osso_filemanager com.nokia.osso_filemanager.open_folder string:/home/user/MyDocs/FCamera
to open any folder, but you have to make sure, that the filemanager
is already open.
So, from commandline I can always open any
folder under MyDocs, if I make two calls
dbus-send --print-reply --type=method_call --dest=com.nokia.osso_filemanager /com/nokia/osso_filemanager com.nokia.osso_filemanager.open_folder string:/home/user/MyDocs/
and then for example:
dbus-send --print-reply --type=method_call --dest=com.nokia.osso_filemanager /com/nokia/osso_filemanager com.nokia.osso_filemanager.open_folder string:/home/user/MyDocs/FCamera
Can you try if this is working from maemostash as well,
I mean: making two dbus-calls.
nicolai
![]() |
2010-11-28
, 17:56
|
|
Posts: 319 |
Thanked: 221 times |
Joined on Jan 2010
@ Finland
|
#106
|
![]() |
2010-11-28
, 18:29
|
|
Posts: 319 |
Thanked: 221 times |
Joined on Jan 2010
@ Finland
|
#107
|
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());
![]() |
2010-11-28
, 19:27
|
|
Posts: 2,154 |
Thanked: 2,186 times |
Joined on Dec 2009
@ Hellsinki, Finland
|
#108
|
Bugger!
Does not work every time.
I am calling the DBus, first open Filemanager and then goto to the desired directory like this:
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?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());
QStringList arguments; arguments << "run-standalone.sh dbus-send --type=method_call xxxx"; QProcess *process0 = new QProcess(this); process0->start(arguments); process0->waitForFinished();
![]() |
2010-11-28
, 19:40
|
|
Posts: 319 |
Thanked: 221 times |
Joined on Jan 2010
@ Finland
|
#109
|
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();
QDBusInterface fileManagerd("com.nokia.osso_filemanager", "/com/nokia/osso_filemanager", "com.nokia.osso_filemanager"); QDBusReply<int> reply = fileManagerd.call("open_folder", "/home/user/MyDocs"); if (reply.isValid()) { fileManagerd.call("open_folder", item->data(Qt::UserRole).toString()); }
![]() |
2010-11-28
, 21:57
|
|
Posts: 319 |
Thanked: 221 times |
Joined on Jan 2010
@ Finland
|
#110
|
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();
QProcess *proc = new QProcess(this); proc->start("run-standalone.sh dbus-send --type=method_call --dest=com.nokia.osso_filemanager /com/nokia/osso_filemanager com.nokia.osso_filemanager.open_folder string:/home/user/MyDocs"); proc->waitForFinished(); QDBusInterface fileManagerd("com.nokia.osso_filemanager", "/com/nokia/osso_filemanager", "com.nokia.osso_filemanager"); fileManagerd.call("open_folder", item->data(Qt::UserRole).toString());