Re: Review Request 108992: Simple optimizations in SignalPlotter

2013-03-08 Thread Raul Fernandes
> On Feb. 22, 2013, 1:32 a.m., Aaron J. Seigo wrote: > > plasma/widgets/signalplotter.cpp, line 230 > > > > > > no point in taking PODs out of the loop > > Raul Fernandes wrote: > Actually, the benefit exists

Re: Init KDEDModule after kamd?

2013-03-08 Thread Daniel Nicoletti
> if(watcher->connection().isConnected()) > init. This afaik is wrong, is connected with DBus. You should actuall setup the watcher and at the init do a call like: QDBusMessage message; message = QDBusMessage::createMethodCall(QLatin1String("org.freedesktop.DBus"),

Init KDEDModule after kamd?

2013-03-08 Thread Michail Vourlakos
Hello everyone one question: I want to init a kded module after kamd has completely started... is that possible through qdbus? I have tried : QDBusServiceWatcher *watcher = new QDBusServiceWatcher("org.kde.kactivitymanagerd", QDBusConnection::sessionBus(), QDBusServiceWatcher::WatchForRegi

Re: Can a KDEDModule start after kactivitymanagerd?

2013-03-08 Thread Aaron J. Seigo
On Friday, March 8, 2013 19:35:18 Michail Vourlakos wrote: > Is it possible for a KDEDModule to start after kactivitymanagerd or make > its initialization > after kactivitymanager? It can create a QDBusServiceWatcher object on the org.kde.kactivitymanagerd object and when it is available it can p

Re: KDED module and DBus signals

2013-03-08 Thread David Edmundson
On Fri, Mar 8, 2013 at 5:33 PM, Michail Vourlakos wrote: > Yes, kded-appmenu do this: >> >> $ qdbus org.kde.kded /modules/appmenu|grep signal|wc -l >> 6 >> >> regards, >> > Perfect that worked... > > Do you know what is the best way to debug a KDEDModule? > > You can use : http://quickgit.kde.org/

Can a KDEDModule start after kactivitymanagerd?

2013-03-08 Thread Michail Vourlakos
Is it possible for a KDEDModule to start after kactivitymanagerd or make its initialization after kactivitymanager? Regards, Michail ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/mailman/listinfo/plasma-devel

Re: KDED module and DBus signals

2013-03-08 Thread Michail Vourlakos
Yes, kded-appmenu do this: $ qdbus org.kde.kded /modules/appmenu|grep signal|wc -l 6 regards, Perfect that worked... Do you know what is the best way to debug a KDEDModule? ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/ma

Re: KDED module and DBus signals

2013-03-08 Thread Cedric Bellegarde
Le vendredi 8 mars 2013 15:34:10 Michail Vourlakos a écrit : > Can aKDED module exposeDBus signals? Yes, kded-appmenu do this: $ qdbus org.kde.kded /modules/appmenu|grep signal|wc -l 6 regards, -- Cédric ___ Plasma-devel mailing list Plasma-devel@kde.

KDED module and DBus signals

2013-03-08 Thread Michail Vourlakos
Hello everyone... Can aKDED module exposeDBus signals? from: qdbus org.kde.kded /modules/. it appears that it doesnt right? the only way is to create a KUniqueApplication? If that's the case how can I set that application toload when kde starts and close itwhen kde shutdowns? Regards, M