Re: Harmattan contacts application not recognizing custom account provider/service/service-type

2012-01-06 Thread Sudheer K.
On 12/29/2011 4:23 PM, Sudheer K. wrote: For my VICaR application, I need to display the action "Call with Vicar" for all telephone number fields on a contact card. This is very similar to how SIP (telepathy-sofiasip) works. I created a basic telepathy connection manager and a

Harmattan contacts application not recognizing custom account provider/service/service-type

2011-12-29 Thread Sudheer K.
For my VICaR application, I need to display the action "Call with Vicar" for all telephone number fields on a contact card. This is very similar to how SIP (telepathy-sofiasip) works. I created a basic telepathy connection manager and a telepathy account to use the CM. I have set the property "com.

Re: Binary compiled in scratchbox HARMATTAN_ARMEL fails to execute on N950

2011-12-06 Thread Sudheer K.
ts output here. > > > > Thanks, Daniil > > > > On Tue, Dec 6, 2011 at 8:15 AM, Sudheer K. wrote: > >> Hi, > >> > >> I downloaded telepathy mission control 5.8.0 source from > freedesktop.org and > >> built a deb package using H

Binary compiled in scratchbox HARMATTAN_ARMEL fails to execute on N950

2011-12-05 Thread Sudheer K.
Hi, I downloaded telepathy mission control 5.8.0 source from freedesktop.organd built a deb package using HARMATTAN_ARMEL on scratchbox. My intention is to use telepathy-mission-control-5-dbg binary to debug my application. The compilation was successful and I was able to install the deb on N950.

Re: Telepathy Mission Control - Account keeps disconnecting from custom connection in harmattan

2011-11-16 Thread Sudheer K.
Daniil Ivanov wrote: > Hi! > > As far as I understood from the explanation you changes presence to online > and then your connection manager starts to emit error disconnected signal. > Apparently you should debug your connection manager and find > reason why it disconnects. >

Telepathy Mission Control - Account keeps disconnecting from custom connection in harmattan

2011-11-13 Thread Sudheer K.
I have cross-posted this question from dev.nokia forum because I didn't get any response. Apologies in advance. I've created a custom telepathy connection manager in my application to integrate with harmattan's contacts application. Once the integration is in place, users should see a "Call vi

Re: Aegis - Upstart script not working in Harmattan

2011-08-04 Thread Sudheer K.
d already. > > Initctl commands identify jobs by path, excluding leading /etc/init/ and > trailing . conf so in 3rd party app case start and stop commands look like: > start apps/ > > Hope this helps. Writing long answers on mobile+vkb isn't that handy :-) > > Cheers, Tumi

Re: Aegis - Upstart script not working in Harmattan

2011-08-02 Thread Sudheer K.
On Tue, Aug 2, 2011 at 2:29 AM, Tuomo Tanskanen wrote: > (Posting from mobile, excuse top post) > > Hi, > > Harmatran has Upstart 1.2 and since 0.5 the init job directory has been > /etc/init/ . /etc/event.d/ is not used. This is the main reason for your > failure. > > Secondly, in SDK docs (dunn

Aegis - Upstart script not working in Harmattan

2011-08-02 Thread Sudheer K.
Hi, I am trying to launch my application daemon on boot by deploying a script, shake2skip-daemon [1] to /etc/event.d/ folder. The script is deployed using qmake project file syntax (INSTALLS = target launch, with launch.files=data/shake2skip-daemon and launch.path=/etc/event.d/). Initially I di

Re: How to create a MAFW plugin for Harmattan in Qt?

2011-07-28 Thread Sudheer K.
evelopers-boun...@maemo.org [ > maemo-developers-boun...@maemo.org] on behalf of ext Sudheer K. [ > scifi1...@gmail.com] > *Sent:* Thursday, July 28, 2011 8:39 PM > *To:* maemo-developers@maemo.org > *Subject:* How to create a MAFW plugin for Harmattan in Qt? > > I am trying to

How to create a MAFW plugin for Harmattan in Qt?

2011-07-28 Thread Sudheer K.
I am trying to create a plugin for Harmattan audio player that can be used to skip current song by shaking the phone. I got it to work by creating a daemon and monitoring dbus signals for mafw renderer. But I am looking for a more cleaner approach if it exists. I have looked at the very detailed M

Re: upload into extras-devel broken?

2010-08-08 Thread Sudheer K .
Roman Morawek morawek.at> writes: > > Is there something wrong with my package? > Or is there a general problem with the autobuilder? My package was queued since yesterday. I think there is something wrong with the autobuilder. Or is manual intervention (approval of some sort) needed before a pa

Re: How to add a telepathy account during package installation (and remove on package removal)?

2010-08-05 Thread Sudheer K
Finally I was able to figure what was causing the error. Because of the incorrect way I was passing the arguments, DBus was treating the Variant array as a single String. This is the code that works. if (iface->isValid()){ QList args; args.append("com.nokia.Account.Interface.Co

Re: QDBusConnection.connect failing for com.nokia.csd.Call.Instance in Fremantle PR 1.2

2010-08-04 Thread Sudheer K .
Naresh Mehta gmail.com> writes: > QDBusConnection connection = mDBusUtility.getConnection(); > bool status = connection.connect(QString(""), CSD_CALL_INSTANCE_PATH, > CSD_CALL_INSTANCE_INTERFACE, >         QString("AudioConnect"),this, SLOT(sendDTMF(const QDBusMessage&))); Code looks very famili

Re: How to add a telepathy account during package installation (and remove on package removal)?

2010-08-02 Thread Sudheer K
I tried to use org.freedesktop.Telepathy.AccountManager to set the property SecondaryVCardFields for a telepathy account but am not successful. First I verified that the DBus property SecondaryVCardFields exists in the interface com.nokia.Account.Interface.Compat. The value is blank but the proper

Re: How to add a telepathy account during package installation (and remove on package removal)?

2010-08-01 Thread Sudheer K
Alberto Mardegan users.sourceforge.net> writes: > You need to use the org.freedesktop.Telepathy.AccountManager interface > to create a new account. > The mc-tool command-line tool can also be used to create/edit/delete > accounts from a script. It's in the libmissioncontrol-utils package, > wh

How to add a telepathy account during package installation (and remove on package removal)?

2010-08-01 Thread Sudheer K
Hi, I need to add account details in /home/user/.rtcom-accounts/accounts.cfg for my custom connection manager automatically on package installation. Similar to ring account details, I want to avoid UI (like Haze plugin) because these values are pre-defined and user does not have to add/update anyt

Re: Mission Control: Any Dbus interface method to list all the available ChannelRequest objects?

2010-07-28 Thread Sudheer K
Sudheer K gmail.com> writes: > If this is not possible, may be I can throw an error from the > CreateChannel/EnsureChannel methods of my Connection Requests class. This > error > should make mission control remove the channel by itself. What do you think? > > And I don&

Re: Mission Control: Any Dbus interface method to list all the available ChannelRequest objects?

2010-07-28 Thread Sudheer K
Alberto Mardegan users.sourceforge.net> writes: > > On 07/28/2010 09:19 AM, Sudheer K wrote: > > Is there any way to list the object paths of all the channel requests in > > progress? With a dbus method call may be? > > IIRC, there isn't. > > > Anoth

Mission Control: Any Dbus interface method to list all the available ChannelRequest objects?

2010-07-27 Thread Sudheer K
Hi, I noticed that mission control creates a unique object path for each channel request in the format "/com/nokia/MissionControl/requests/r1". I need this path to call methods in the interface "org.freedesktop.Telepathy.Client.Interface.Requests". Is there any way to list the object paths of a

Re: MC-Client error & quot; No Requests Interface" , when Conn.I.Requests is implemented

2010-07-26 Thread Sudheer K
> Alberto Mardegan users.sourceforge.net> writes: > > > Implementing the interface is not enough; you also need to declare your > > interface in the org.freedesktop.Telepathy.Connection.Interfaces property: > > > > > http://telepathy.freedesktop.org/spec/Connection.html#org.freedesktop.Telepa

Re: MC-Client error " No Requests Interface" , when Conn.I.Requests is implemented

2010-07-26 Thread Sudheer K
Alberto Mardegan users.sourceforge.net> writes: > Implementing the interface is not enough; you also need to declare your > interface in the org.freedesktop.Telepathy.Connection.Interfaces property: > > http://telepathy.freedesktop.org/spec/Connection.html#org.freedesktop.Telepathy.Connection.I

Re: MC-Client error " No Requests Interface" , when Conn.I.Requests is implemented

2010-07-25 Thread Sudheer K
Felipe Crochik crochik.com> writes: > > > Sudheer, > Check my last posts on the tor thread and maemo.crochik.com... I think you >will find what you need to get you going... The basics to place calls and/or >send text messages with telepathy are there. > Felipe Hey Felipe, In your case you are

MC-Client error "No Requests Interface", when Conn.I.Requests is implemented

2010-07-25 Thread Sudheer K
Hi, I am working on a connection manager for N900 using Telepathy-Qt4 bindings. This is for tel protocol (based on telepathy-ring). The Connection manager is registered as service on session bus and the connection is available. When I try to initiate a new call (channel), I get the error "No Req

Re: Maemo-launcher does not load in scratchbox

2010-07-09 Thread Sudheer K .
I still have this problem. Can anyone help? Thanks, Sudheer ___ maemo-developers mailing list maemo-developers@maemo.org https://lists.maemo.org/mailman/listinfo/maemo-developers

Maemo-launcher does not load in scratchbox

2010-07-04 Thread Sudheer K .
Hi, For some reason, I am unable to launch Maemo SDK UI. Xephyr window remains blank even after starting Maemo UI. It was working fine until recently. Today I was trying to manually update Glib for compiling an app. I know I messed up something but I don't know what exactly. I don't want to r

RE: How to get kinetic scrolling working using Qt creator

2010-06-13 Thread Sudheer K .
010 at 10:14 AM, Daniil Ivanov > wrote: > > Hi Sudheer! > > > > The name of a tool is Qt Designer and it should allow to do what you want, > > however I'm wrong person to ask how to use Qt Designer. > > > > Thanks, Daniil. > > > > On Thu, Jun

RE: How to get kinetic scrolling working using Qt creator

2010-06-09 Thread Sudheer K .
Hi Daniil, Thanks for looking into the code. The main problem I have is that, Qt creator does not give enough flexibility to create the hierarchy that you suggested. This is the hierarchy created using Qt creator. http://i49.tinypic.com/2rxbm75.jpg - centralWidget is automatically created by

RE: How to get kinetic scrolling working using Qt creator

2010-06-08 Thread Sudheer K .
l = new QScrollArea; > scroll->setWidget(label); > > QMainWindow win; > win.setCentralWidget(scroll); > win.show(); > > return app.exec(); > } > > Thanks, Daniil. > > On Tue, Jun 8, 2010 at 4:41 PM, Sudheer K. wrote: > > I think my previous message w

RE: How to get kinetic scrolling working using Qt creator

2010-06-08 Thread Sudheer K .
I think my previous message was not posted because of attachments. So, posting again with the link to the source code in garage page. https://garage.maemo.org/plugins/ggit/browse.php/?p=vicar;a=tree;f=src/vicar-config/uis;h=3e2e395c649bd1d5d92490fb2e959b734c77ab1a;hb=af05031713c05157ffb173

RE: How to get kinetic scrolling working using Qt creator

2010-06-05 Thread Sudheer K .
aemo-developers@maemo.org > > > > Hi Sudheer! > > > > There is no such property as FingerScrollable and kinetic srolling > > is enabled by default for QScrollArea > > http://doc.qt.nokia.com/qt-maemo-4.6/qabstractkineticscroller.html#details > > &g

RE: How to get kinetic scrolling working using Qt creator

2010-06-05 Thread Sudheer K .
ngerScrollable and kinetic srolling > > is enabled by default for QScrollArea > > http://doc.qt.nokia.com/qt-maemo-4.6/qabstractkineticscroller.html#details > > > > Thanks, Daniil. > > > > On Sat, Jun 5, 2010 at 8:10 PM, Sudheer K. > > wrote: > > > Hi A

RE: How to get kinetic scrolling working using Qt creator

2010-06-05 Thread Sudheer K .
o-developers@maemo.org > > Hi Sudheer! > > There is no such property as FingerScrollable and kinetic srolling > is enabled by default for QScrollArea > http://doc.qt.nokia.com/qt-maemo-4.6/qabstractkineticscroller.html#details > > Thanks, Daniil. > > On Sat, Jun 5, 20

How to get kinetic scrolling working using Qt creator

2010-06-05 Thread Sudheer K .
Hi All, I have created a QScrollArea to a QMainWindow in a form using Qt Creator. I have set the dynamic property "FingerScrollable" to true (bool) for QMainWindow, QScrollArea and the contents of QScrollArea. This is the structure of my form objects in the format objectname (ClassName): Con

RE: Qt question: How to automatically enable numeric input mode for a field?

2010-05-13 Thread Sudheer K .
>Date: Fri, 14 May 2010 01:04:19 +0200 >From: rkma...@gmx.com >Subject: RE: Qt question: How to automatically enable numeric input mode for >a field? >To: scifi@hotmail.com; maemo-developers@maemo.org > >have you tried this hint ? ( this worked for the spin box, I could use the >

RE: Qt question: How to automatically enable numeric input mode for a field?

2010-05-13 Thread Sudheer K .
>Date: Fri, 14 May 2010 00:34:48 +0200 >From: rkma...@gmx.com >Subject: RE: Qt question: How to automatically enable numeric input mode for >afield? >To: scifi@hotmail.com; maemo-developers@maemo.org > >hi sudheer, as far as I know this is what its actually supposed to do , else

RE: Qt question: How to automatically enable numeric input mode for a field?

2010-05-13 Thread Sudheer K .
>Date: Fri, 14 May 2010 00:15:25 +0200 >From: rkma...@gmx.com >Subject: Re: Qt question: How to automatically enable numeric input mode for a >field? >To: scifi@hotmail.com; maemo-developers@maemo.org > >I dont know whats wrong with my mail client now, a control C just sends the

Qt question: How to automatically enable numeric input mode for a field?

2010-05-13 Thread Sudheer K .
Hi, I want to create a phone number field (QLineEdit) in my configuration widget. User can enter numbers and '+' or 'p' characters in the field. The key thing is I don't want the users to use the Fn key everytime they have to edit the number. Application should automatically enable number