Re: [SailfishDevel] Sending SMS Messages from Sailfish Alpha 2 from QML, partial success

2013-08-22 Thread christopher . lamb
Hi Joseph Thanks for your help Zitat von "Joseph Crowell" : Looking through the packages, it looks like a device or service (like haze) has to supply a service file to interface with. Haze has: org.freedesktop.Telepathy.ConnectionManager.haze.service I followed this thread "offline" with

Re: [SailfishDevel] Sending SMS Messages from Sailfish Alpha 2 from QML, partial success

2013-08-22 Thread Joseph Crowell
Looking through the packages, it looks like a device or service (like haze) has to supply a service file to interface with. Haze has: org.freedesktop.Telepathy.ConnectionManager.haze.service On 10/08/2013 11:35 PM, christopher.l...@thurweb.ch wrote: Hi John I have partially answered one of t

Re: [SailfishDevel] Sending SMS Messages from Sailfish Alpha 2 from QML, partial success

2013-08-22 Thread Joseph Crowell
Looks like it's in some portion of Mission Control. On 10/08/2013 11:35 PM, christopher.l...@thurweb.ch wrote: Hi John I have partially answered one of the questions from my last mail. This morning on sending an SMS from QML I got this output: void ConversationChannel::sendMessage(const Messa

Re: [SailfishDevel] Sending SMS Messages from Sailfish Alpha 2 from QML, partial success

2013-08-22 Thread Joseph Crowell
http://people.freedesktop.org/~smcv/telepathy-spec-contact_caps_clarification/spec/org.freedesktop.Telepathy.ChannelDispatcher.html On 10/08/2013 11:35 PM, christopher.l...@thurweb.ch wrote: Hi John I have partially answered one of the questions from my last mail. This morning on sending an SM

[SailfishDevel] Sending SMS Messages from Sailfish Alpha 2 from QML, partial success

2013-08-10 Thread christopher . lamb
Hi John I have partially answered one of the questions from my last mail. This morning on sending an SMS from QML I got this output: void ConversationChannel::sendMessage(const MessagePartList&) Buffering message until channel is ready tp-qt 0.9.3 WARN: (Too old?) Channel Dispatcher failed to

Re: [SailfishDevel] Sending SMS Messages from Sailfish Alpha 2 from QML

2013-08-10 Thread christopher . lamb
Hi John Yesterday I fought the good fight on several fronts 8.) 1) I had a stab at migrating your QmlMessages project to Qt5 / Sailfish Alpha 2. I did all the obvious stuff according to the porting guides, but then got to a stage where I had a screenful of errors from qqml.h, qquickitem.h

Re: [SailfishDevel] Sending SMS Messages from Sailfish Alpha 2 from QML

2013-08-09 Thread John Brooks
On Aug 9, 2013, at 10:23 AM, christopher.l...@thurweb.ch wrote: > Hi John > > I think the QML side should look like this: > >TelepathyChannelManager { >id: handler >} > >property var currentChannel: > handler.getConversation("/org/freedesktop/Telepathy/Account/ring/tel/acco

Re: [SailfishDevel] Sending SMS Messages from Sailfish Alpha 2 from QML

2013-08-09 Thread christopher . lamb
Hi John I think the QML side should look like this: TelepathyChannelManager { id: handler } property var currentChannel: handler.getConversation("/org/freedesktop/Telepathy/Account/ring/tel/account0", "12345") PullDownMenu { MenuItem {

Re: [SailfishDevel] Sending SMS Messages from Sailfish Alpha 2 from QML

2013-08-09 Thread christopher . lamb
Hi John Zitat von "John Brooks" : property var currentChannel: handler.getConversation("/org/freedesktop/Telepathy/Account/ring/tel/account0", "12345") onClicked: currentChannel.sendMessage("Hello world") I have installed telepathy-qt5 and telepathy-qt5-devel. I was also able to build org