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 telepathy account

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

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

2011-12-06 Thread Sudheer K.
, Dec 6, 2011 at 8:15 AM, Sudheer K. scifi1...@gmail.com wrote: Hi, I downloaded telepathy mission control 5.8.0 source from freedesktop.org and built a deb package using HARMATTAN_ARMEL on scratchbox. My intention is to use telepathy-mission-control-5-dbg binary to debug my application

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

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

2011-11-16 Thread Sudheer K.
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. Thanks, Daniil On Sun, Nov 13, 2011 at 10:36 PM, Sudheer K. scifi1

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

Re: Aegis - Upstart script not working in Harmattan

2011-08-05 Thread Sudheer K.
/etc/init/ and trailing . conf so in 3rd party app case start and stop commands look like: start apps/jobname Hope this helps. Writing long answers on mobile+vkb isn't that handy :-) Cheers, Tumi On 3.8.2011, at 7.54, Sudheer K. scifi1...@gmail.com wrote: On Tue, Aug 2, 2011 at 2:29 AM

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

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 t...@tumi.fi 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

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

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()){ QListQVariant args;

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

2010-08-04 Thread Sudheer K .
Naresh Mehta nareshtechs at 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

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

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

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

2010-08-01 Thread Sudheer K
Alberto Mardegan mardy at 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,

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

2010-07-28 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 all

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

2010-07-28 Thread Sudheer K
Alberto Mardegan mardy at 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. Another related question. Is the specification

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

2010-07-28 Thread Sudheer K
Sudheer K scifi1947 at 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't know how to raise

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

2010-07-26 Thread Sudheer K
Alberto Mardegan mardy at 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:

Re: MC-Client error amp; quot; No Requests Interfaceamp;quot; , when Conn.I.Requests is implemented

2010-07-26 Thread Sudheer K
Alberto Mardegan mardy at 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:

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

2010-07-25 Thread Sudheer K
Felipe Crochik felipe at 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

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 .
I think my previous message was not posted because of attachments. So, posting again with the link to the source code in garage page.

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):

RE: How to get kinetic scrolling working using Qt creator

2010-06-05 Thread Sudheer K .
! 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, 2010 at 8:10 PM, Sudheer K. scifi@hotmail.com wrote: Hi All, I have

RE: How to get kinetic scrolling working using Qt creator

2010-06-05 Thread Sudheer K .
, Sudheer K. scifi@hotmail.com wrote: 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

RE: How to get kinetic scrolling working using Qt creator

2010-06-05 Thread Sudheer K .
://doc.qt.nokia.com/qt-maemo-4.6/qabstractkineticscroller.html#details Thanks, Daniil. On Sat, Jun 5, 2010 at 8:10 PM, Sudheer K. scifi@hotmail.com wrote: Hi All, I have created a QScrollArea to a QMainWindow in a form using Qt Creator. I have set the dynamic property

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

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 it

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