[PyQt] Android support?

2011-11-26 Thread zw g
Dear List, Sorry if this is stupid. Is it possible to develop apps for Android using PyQt? Any idea please share. Gui ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Android support?

2011-11-26 Thread zw g
Or, even iOS? Gui On Sat, Nov 26, 2011 at 7:04 PM, zw g pekingmas...@gmail.com wrote: Dear List, Sorry if this is stupid. Is it possible to develop apps for Android using PyQt? Any idea please share. Gui ___ PyQt mailing list

Re: [PyQt] Android support?

2011-11-26 Thread Phil Thompson
On Sat, 26 Nov 2011 19:04:16 +0800, zw g pekingmas...@gmail.com wrote: Dear List, Sorry if this is stupid. Is it possible to develop apps for Android using PyQt? Any idea please share. Gui In theory yes, it requires... Qt support - ongoing but not yet production ready (as I

Re: [PyQt] Android support?

2011-11-26 Thread zw g
Thanks for your quick reply, Phil. I googled that Necessitas can develop apps for Android in Qt4. (Still work in progress, no release version yet) If unofficial patch for python is available, then may i ask, is there any plan to support Android development by PyQt in the future? Gui On

Re: [PyQt] Android support?

2011-11-26 Thread Phil Thompson
On Sat, 26 Nov 2011 19:50:08 +0800, zw g pekingmas...@gmail.com wrote: Thanks for your quick reply, Phil. I googled that Necessitas can develop apps for Android in Qt4. (Still work in progress, no release version yet) If unofficial patch for python is available, then may i ask, is there

Re: [PyQt] Android support?

2011-11-26 Thread zw g
Thanks, Phil. You make that pretty clear. Gui On Sat, Nov 26, 2011 at 8:11 PM, Phil Thompson p...@riverbankcomputing.comwrote: On Sat, 26 Nov 2011 19:50:08 +0800, zw g pekingmas...@gmail.com wrote: Thanks for your quick reply, Phil. I googled that Necessitas can develop apps for

Re: [PyQt] Android support?

2011-11-26 Thread Albert Cervera i Areny
A Dissabte, 26 de novembre de 2011 13:11:48, Phil Thompson va escriure: On Sat, 26 Nov 2011 19:50:08 +0800, zw g pekingmas...@gmail.com wrote: Thanks for your quick reply, Phil. I googled that Necessitas can develop apps for Android in Qt4. (Still work in progress, no release

Re: [PyQt] Android support?

2011-11-26 Thread Tony Peña
Well... maybe this help http://www.pyside.org/ 2011/11/26 Albert Cervera i Areny alb...@nan-tic.com ** A Dissabte, 26 de novembre de 2011 13:11:48, Phil Thompson va escriure: On Sat, 26 Nov 2011 19:50:08 +0800, zw g pekingmas...@gmail.com wrote: Thanks for your quick reply, Phil.

[PyQt] Fwd: Android support?

2011-11-26 Thread Tony Peña
sorry . this one is my link not before http://thp.io/2011/pyside-android/ explain how use python with qt bindings for android cheers -- Forwarded message -- From: Tony Peña emperor...@gmail.com Date: 2011/11/26 Subject: Re: [PyQt] Android support? To:

[PyQt] How to use sipAPIDef::api_get_pyobject and sipQtAPI::qt_connect

2011-11-26 Thread Jack Cosgrove
Hi, I'm trying to connect a C++ signal to a Python slot. What is the best way to do this? My current approach is to use sipQtAPI::qt_connect, and to do this I need to apparently convert the C++ object to a PyObject using SIP. I do that using sipAPIDef::api_get_pyobject. However whenever I call

Re: [PyQt] How to use sipAPIDef::api_get_pyobject and sipQtAPI::qt_connect

2011-11-26 Thread Phil Thompson
On Sat, 26 Nov 2011 10:37:12 -0600, Jack Cosgrove jackcosgr...@gmail.com wrote: Hi, I'm trying to connect a C++ signal to a Python slot. What is the best way to do this? Two ways... 1. Make the receiver visible to C++ and use QObject::connect(), ie. decorate the slot with pyqtSlot(). 2.