Re: [PyQt] Can't load UI files under Turkish locale

2007-08-10 Thread Phil Thompson
On Friday 10 August 2007 1:21 am, Ismail Dönmez wrote: > Ping? I'm waiting for your reply to Giovanni's question. Phil > On Thursday 02 August 2007 14:08:57 Ismail Dönmez wrote: > > Hi all, > > > > uic/properties.py line 220 says : > > > > getattr(widget, "set%s%s" % (propname[0].upper(), propna

[PyQt] Re: Can no longer copy QColor objects

2007-08-10 Thread matthias . oberlaender
> Message: 3 > Date: Tue, 7 Aug 2007 09:36:57 +0100 > From: Phil Thompson <[EMAIL PROTECTED]> > Subject: Re: [PyQt] Can no longer copy QColor objects > To: pyqt@riverbankcomputing.com > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset="iso-8859-1" > > On Tuesday 07 August 2007

Re: [PyQt] Signals across threads

2007-08-10 Thread Phil Thompson
On Wednesday 08 August 2007 3:15 pm, Gwendolyn van der Linden wrote: > Hi, > > I'm using PyQt4, version 4.2.3, on Windows XP. It seems that signals > emit()'ed from the GUI thread are delivered to other threads in the GUI > thread, rather than in the target thread. The following program > demonst

Re: [PyQt] Re: Can no longer copy QColor objects

2007-08-10 Thread Phil Thompson
On Friday 10 August 2007 12:28 pm, [EMAIL PROTECTED] wrote: > > Message: 3 > > > > Date: Tue, 7 Aug 2007 09:36:57 +0100 > > From: Phil Thompson <[EMAIL PROTECTED]> > > Subject: Re: [PyQt] Can no longer copy QColor objects > > To: pyqt@riverbankcomputing.com > > Message-ID: <[EMAIL PROTECTED]> > >

Re: [PyQt] Can't load UI files under Turkish locale

2007-08-10 Thread Giovanni Bajo
On 8/10/2007 1:01 PM, Ismail Dönmez wrote: Ping? I'm waiting for your reply to Giovanni's question. To reply Giovanni, yes uic is running from a program who uses system locale which is tr_TR.UTF-8. Are you saying that, in your system, as soon as you start the Python interpreter, the local

Re: [PyQt] Can't load UI files under Turkish locale

2007-08-10 Thread Ismail Dönmez
On Friday 10 August 2007 21:46:12 Giovanni Bajo wrote: > On 8/10/2007 1:01 PM, Ismail Dönmez wrote: > >>> Ping? > >> > >> I'm waiting for your reply to Giovanni's question. > > > > To reply Giovanni, yes uic is running from a program who uses system > > locale which is tr_TR.UTF-8. > > Are you sayi

Re: [PyQt] Can't load UI files under Turkish locale

2007-08-10 Thread Ismail Dönmez
On Friday 10 August 2007 10:42:49 Phil Thompson wrote: > On Friday 10 August 2007 1:21 am, Ismail Dönmez wrote: > > Ping? > > I'm waiting for your reply to Giovanni's question. To reply Giovanni, yes uic is running from a program who uses system locale which is tr_TR.UTF-8. Regards, ismail --

Re: [PyQt] Can't load UI files under Turkish locale

2007-08-10 Thread Ismail Dönmez
On Friday 10 August 2007 10:42:49 Phil Thompson wrote: > On Friday 10 August 2007 1:21 am, Ismail Dönmez wrote: > > Ping? > > I'm waiting for your reply to Giovanni's question. I can't see his reply in my mailer :-/ I will check web archives, thanks. Regards, ismail -- Perfect is the enemy of g

[PyQt] QGraphicsScene issue

2007-08-10 Thread Jason H
I started using Qt 4.3.1 and PyQt 4.3. When I added the QGraphicsScene, I got the error: QObject::startTimer: timers cannot be started from another thread With out me actually using any timers. Then I wrote the script below (Change sups.jpg) to another file you have on your system. Everytime it

Re: [PyQt] QGraphicsScene issue

2007-08-10 Thread Hernán Rajchert
I had the same problem but not related to the version. The problem started when i changed from PyQt4 import QtGui to from PyQt4.QtGui import * So for cleaning the code clean and avoiding the timer issue try: from PyQt4 import QtGui as G, QtCore as C and then use G.MainWindow etc... On 8/10/07, J