Re: [PyQt] simple charts with PyQT

2010-11-08 Thread bar tomas
Great! Many thanks for all the replies. On Fri, Nov 5, 2010 at 2:57 PM, Gaëtan Podevijn gpode...@gmail.com wrote: Maybe could you take a look at matplotlib [1]  ? [1] http://matplotlib.sourceforge.net 2010/11/5 Nick Gaens nickga...@gmail.com You can take a look at the pygooglechart module.

[PyQt] Matplotlib widget (was: simple charts with PyQT)

2010-11-08 Thread Hans Meine
Hi! Am 05.11.2010 um 15:57 schrieb Gaëtan Podevijn: Maybe could you take a look at matplotlib [1] ? [1] http://matplotlib.sourceforge.net Oh, good idea - I'll attach some code for embedding MPL plots in PyQt. IIRC this is just a refactored / more bare-bone version of something I found on

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread John Posner
On 10/30/2010 7:47 AM, Phil Thompson wrote: PyQt v4.8.1 has been released and is available from the usual place. Over the past year, downloads from http://www.riverbankcomputing.co.uk/software/pyqt/download have been impossible for me. More precisely, the download speed starts at about

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread Arnold Krille
On Monday 08 November 2010 14:11:07 John Posner wrote: On 10/30/2010 7:47 AM, Phil Thompson wrote: PyQt v4.8.1 has been released and is available from the usual place. Over the past year, downloads from http://www.riverbankcomputing.co.uk/software/pyqt/download have been impossible for me.

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread Darren Dale
On Mon, Nov 8, 2010 at 8:11 AM, John Posner jjpos...@optimum.net wrote: On 10/30/2010 7:47 AM, Phil Thompson wrote: PyQt v4.8.1 has been released and is available from the usual place. Over the past year, downloads from http://www.riverbankcomputing.co.uk/software/pyqt/download have been

[PyQt] How can i capture activated signal of Tray Icon??

2010-11-08 Thread Jebagnana Das
Hello all, Based on this example http://www.saltycrane.com/blog/2008/01/how-to-capture-tab-key-press-event-with/i've created a class as below class SystemTrayIcon(QtGui.QSystemTrayIcon): def __init__(self,parent,objectName): QtGui.QSystemTrayIcon.__init__(self,parent)

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread Phil Thompson
On Mon, 08 Nov 2010 08:11:07 -0500, John Posner jjpos...@optimum.net wrote: On 10/30/2010 7:47 AM, Phil Thompson wrote: PyQt v4.8.1 has been released and is available from the usual place. Over the past year, downloads from http://www.riverbankcomputing.co.uk/software/pyqt/download have

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread John Posner
On 11/8/2010 11:40 AM, Phil Thompson wrote: Out of curiosity, what are you using (ie. which browser) to download? Opera 10.63. I also tried IE 8.0.6001. Its first reported the xfer rate was 162 bytes/sec. (!) I'm located in New Jersey, USA. Tx, John

[PyQt] Error in calling QSignalMapper.__bases__

2010-11-08 Thread Giuseppe Corbelli
Debian Linux 2.6 Python 2.6.6 (r266:84292, Oct 9 2010, 11:40:09) [GCC 4.4.5] Qt 4.7.0~rc1-1 (Debian package, experimental repo) PyQt 4.8.1 (last release, compiled from source) When I try to execute this: from PyQt4 import QtCore QtCore.QObject.__bases__ (type 'sip.wrapper',)

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread Phil Thompson
On Mon, 08 Nov 2010 12:05:23 -0500, John Posner jjpos...@optimum.net wrote: On 11/8/2010 11:40 AM, Phil Thompson wrote: Out of curiosity, what are you using (ie. which browser) to download? Opera 10.63. I also tried IE 8.0.6001. Its first reported the xfer rate was 162 bytes/sec. (!)

Re: [PyQt] Error in calling QSignalMapper.__bases_ _

2010-11-08 Thread Phil Thompson
On Mon, 08 Nov 2010 19:13:59 +0100, Giuseppe Corbelli giuseppe.corbe...@copanitalia.com wrote: Debian Linux 2.6 Python 2.6.6 (r266:84292, Oct 9 2010, 11:40:09) [GCC 4.4.5] Qt 4.7.0~rc1-1 (Debian package, experimental repo) PyQt 4.8.1 (last release, compiled from source) When I try to

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread Arnold Krille
On Monday 08 November 2010 17:40:02 Phil Thompson wrote: On Mon, 08 Nov 2010 08:11:07 -0500, John Posner jjpos...@optimum.net wrote: On 10/30/2010 7:47 AM, Phil Thompson wrote: PyQt v4.8.1 has been released and is available from the usual place. Over the past year, downloads from

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread Knacktus
Am 08.11.2010 20:48, schrieb Arnold Krille: On Monday 08 November 2010 17:40:02 Phil Thompson wrote: On Mon, 08 Nov 2010 08:11:07 -0500, John Posnerjjpos...@optimum.net wrote: On 10/30/2010 7:47 AM, Phil Thompson wrote: PyQt v4.8.1 has been released and is available from the usual place.

Re: [PyQt] How can i capture activated signal of Tray Icon??

2010-11-08 Thread Zoltan Szalai
'activated' is a signal of QSystemTrayIcon. you have to connect it to a slot (the onTrayIconActivated method in this case) in order to catch it. i highly suggest this reading before step forward:

[PyQt] Translation troubles

2010-11-08 Thread Mikael Modin
Hi, I'm trying to translate a UI created using QDesigner, but I could never get it working so I wrote a quick minimal non-working sample in the hope that one of you could tell me what I'm doing wrong. main.py -- import sys

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread Giovanni Bajo
Il giorno 08/nov/2010, alle ore 14:11, John Posner jjpos...@optimum.net ha scritto: On 10/30/2010 7:47 AM, Phil Thompson wrote: PyQt v4.8.1 has been released and is available from the usual place. Over the past year, downloads from

Re: [PyQt] ANN: PyQt v4.8.1 Released

2010-11-08 Thread John Posner
On 11/8/2010 5:16 PM, Giovanni Bajo wrote: If you do a traceroute to riverbankcomputing.com, does any hop look saturated (very high ping time)? On my Windows/XP SP3 box: tracert http://www.riverbankcomputing.co.uk/news Tracing route to http://www.riverbankcomputing.co.uk/news [67.63.55.3]

Re: [PyQt] Translation troubles

2010-11-08 Thread Vincent Vande Vyvre
Le 08/11/10 22:27, Mikael Modin a crit: Hi, I'm trying to translate a UI created using QDesigner, but I could never get it working so I wrote a quick minimal non-working sample in the hope that one of you could tell me what I'm doing wrong. main.py