Active Topics

 



Notices


Reply
Thread Tools
rooster13's Avatar
Posts: 319 | Thanked: 221 times | Joined on Jan 2010 @ Finland
#101
Originally Posted by xenomorph72 View Post
Voted!

awesome app
Thank you!
 
moepda's Avatar
Posts: 334 | Thanked: 118 times | Joined on Apr 2010 @ United Kingdom
#102
likewise big thumbs up from me !!! vote added
 

The Following User Says Thank You to moepda For This Useful Post:
rooster13's Avatar
Posts: 319 | Thanked: 221 times | Joined on Jan 2010 @ Finland
#103
Originally Posted by moepda View Post
likewise big thumbs up from me !!! vote added
Thank you!
 
nicolai's Avatar
Posts: 1,637 | Thanked: 4,424 times | Joined on Apr 2009 @ Germany
#104
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
 

The Following User Says Thank You to nicolai For This Useful Post:
rooster13's Avatar
Posts: 319 | Thanked: 221 times | Joined on Jan 2010 @ Finland
#105
Originally Posted by nicolai View Post
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
Excellent idea Nicolai. I will try changing the open folder method so that it first opens the FileManager and then opens the folder.
 
rooster13's Avatar
Posts: 319 | Thanked: 221 times | Joined on Jan 2010 @ Finland
#106
I have released a new version of Shortcut Stash.
Version 0.1-6 is now available, and it is trying to fix the Filemanager open folder issue.

Please update and test it.
 

The Following 2 Users Say Thank You to rooster13 For This Useful Post:
rooster13's Avatar
Posts: 319 | Thanked: 221 times | Joined on Jan 2010 @ Finland
#107
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?

Last edited by rooster13; 2010-11-28 at 18:30. Reason: Explaining more...
 
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:
rooster13's Avatar
Posts: 319 | Thanked: 221 times | Joined on Jan 2010 @ Finland
#109
Originally Posted by d-iivil View Post
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();
Kiitos d-iivil,

I will first try like this:
Code:
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());
            }
If that does not work I'll try your way.
I guess the problem in my first try was that I was using two QDBusInterface objects instead of one.
 
rooster13's Avatar
Posts: 319 | Thanked: 221 times | Joined on Jan 2010 @ Finland
#110
Originally Posted by d-iivil View Post
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();
Hi d-iivil,

I tried your method like this:
Code:
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());
But still the same result first time it does not work and most of the time the second time it works.
 
Reply


 
Forum Jump


All times are GMT. The time now is 16:03.