Re: [PyQt] Need to draw rotating transparant image... without flickering!

2008-01-07 Thread David Boddie
On Sun, 30 Dec 2007 15:27:56 -0800 (PST), Wim wrote: > This is what I would like to do (simplified): I have 2 images (dome.png, > telescope.png) which are 100x100px, transparant and are meant to be painted > on top of each other, each rotated under a certain angle. These 2 angles > can vary with t

Re: [PyQt] check box controlers - tree View problem

2008-01-07 Thread David Boddie
On Fri, 28 Dec 2007 03:45:55 -0800 (PST), purest2 wrote: > I am now trying to write a similar program, however the systems people have > upgraded us to PYQT4. > > all the old classes are listed as out-of-date, so i am using the new stuff. > i am using a treeView and the nodes are QStandardItems. i

Re: [PyQt] qtable object

2008-01-07 Thread David Boddie
On Mon Dec 24 17:24:58 GMT 2007, Jean-Baptiste BUTET wrote: > I would like to be able to select a qtable object in order to copy and > paste it in a sheet for example. > > Qtable is Qtdesigner made. > when I select all, only last cell is copied. (only string in cells) > > Could someone explain m

[PyQt] problem using SIP on Windows Vista 64 bit

2008-01-07 Thread Quoc Tran
Hi, I am using PyQt on Vista 64 bit. I managed to successfully compile Python2.5, Qt4.3.3, SIP4.7.3 and PyQt4.3.3 using MSVC2005. Everything works great so far and now I'm trying to use SIP to create PyQt extensions and am running into problems. I can successfully use SIP to create a non Qt C+

Re: [PyQt] eric4 debian package

2008-01-07 Thread Detlev Offenbach
Hi Martin, that is great news. You should post this on the eric mailinglist as well. Detlev On Montag, 7. Januar 2008, Martin Höfling wrote: > Hi all, > > i've packaged eric 4.0.4 based on existing eric3 packages for ubuntu > (debian should also work). If anyone is interested in testing the sour

[PyQt] eric4 debian package

2008-01-07 Thread Martin Höfling
Hi all, i've packaged eric 4.0.4 based on existing eric3 packages for ubuntu (debian should also work). If anyone is interested in testing the source packages please mail me. Best Martin ___ PyQt mailing listPyQt@riverbankcomputing.com htt

Re: [PyQt] Problem updating QLabel font

2008-01-07 Thread Arve Knudsen
On 1/7/08, Phil Thompson <[EMAIL PROTECTED]> wrote: > > On Monday 07 January 2008, Arve Knudsen wrote: > > Hello > > > > I've run into what looks like a bug in PyQt. When changing the font of a > > QLabel at runtime, it doesn't update its appearance unless I call its > > update() method. I've verif

Re: [PyQt] Problem updating QLabel font

2008-01-07 Thread Mark Summerfield
On 2008-01-07, Phil Thompson wrote: > On Monday 07 January 2008, Arve Knudsen wrote: > > Hello > > > > I've run into what looks like a bug in PyQt. When changing the font of a > > QLabel at runtime, it doesn't update its appearance unless I call its > > update() method. I've verified that this prob

Re: [PyQt] Problem updating QLabel font

2008-01-07 Thread Phil Thompson
On Monday 07 January 2008, Arve Knudsen wrote: > Hello > > I've run into what looks like a bug in PyQt. When changing the font of a > QLabel at runtime, it doesn't update its appearance unless I call its > update() method. I've verified that this problem doesn't occur when using > Qt directly from

[PyQt] Problem updating QLabel font

2008-01-07 Thread Arve Knudsen
Hello I've run into what looks like a bug in PyQt. When changing the font of a QLabel at runtime, it doesn't update its appearance unless I call its update() method. I've verified that this problem doesn't occur when using Qt directly from C++. Even after calling update(), something isn't right ho

[PyQt] ANN: eric4 4.1.0 RC1 available

2008-01-07 Thread Detlev Offenbach
Hi, this is to announce the availability of a new eric 4.1 snapshot release. It fixes a few bugs and includes these new functions. - changed the plugin repository dialog to download multiple files - added a button to the plugin repository dialog to close it and open the plugin installation dia

Re: [PyQt] Bug in QTableView.setModel()

2008-01-07 Thread Andreas Pakulat
On 07.01.08 11:12:10, Aaron Digulla wrote: > Quoting Andreas Pakulat <[EMAIL PROTECTED]>: > >> On 06.01.08 21:13:44, Aaron Digulla wrote: >>> The root cause is that setModel() doesn't increment the usage counter of >>> the python class passed in, so Python will GC it if I don't save a >>> pointer e

Re: [PyQt] Bug in QTableView.setModel()

2008-01-07 Thread Aaron Digulla
Quoting Andreas Pakulat <[EMAIL PROTECTED]>: On 06.01.08 21:13:44, Aaron Digulla wrote: The root cause is that setModel() doesn't increment the usage counter of the python class passed in, so Python will GC it if I don't save a pointer elsewhere. Thats by purpose. One reason I can think of is

Re: [PyQt] Bug in QTableView.setModel()

2008-01-07 Thread Andreas Pakulat
On 06.01.08 21:13:44, Aaron Digulla wrote: > The root cause is that setModel() doesn't increment the usage counter of > the python class passed in, so Python will GC it if I don't save a > pointer elsewhere. Thats by purpose. One reason I can think of is that you often want to use the model elsewh