Re: [PyQt] connect problem on windows xp

2010-07-29 Thread Fabio Mauri
Attached you can find the Ui_Wdw class. In the last connect, I used a different style because for such a reason the QObject.connect() i used in the lines above wouldn't work while the signal.connect() does (on Ubuntu 10.04). Do you think that this problem is related to the current issue? Anyway the

Re: [PyQt] connect problem on windows xp

2010-07-29 Thread Sybren A . Stüvel
On Thu, Jul 29, 2010 at 08:59:16AM +0200, Fabio Mauri wrote: > Attached you can find the Ui_Wdw class. That wasn't my point. Please make a *minimal* bit of code that shows your problem. > In the last connect, I used a different style because for such a > reason the QObject.connect() i used in the

Re: [PyQt] debugging symbols

2010-07-29 Thread Hans-Peter Jansen
On Thursday 29 July 2010, 04:43:24 Luke Campagnola wrote: > Howdy, > > Can anyone tell me how to get debugging symbols for the pyqt windows > binaries? I have a few crashes occurring somewhere in QtCore, and so far > my current strategy of "hope the bug exists in Linux too" is not working. > My sea

Re: [PyQt] connect problem on windows xp

2010-07-29 Thread Fabio Mauri
Ok, this below is a minimal example. Launching this (with the gui file attached in the previous mail) in Ubuntu 10.04 I can see the prints on cmdline when clicking on pushbuttons, under windows xp I cannot see them. #!/usr/bin/python from twisted.internet import reactor from coherence.base import

Re: [PyQt] connect problem on windows xp

2010-07-29 Thread F.A.Pinkse
Hi Fabio To see you print() statements you need to lauch your script with python If you use pythonw the script is lauched and the communication channels are closed. Or you use one of these: def noneSelected(self): print ("signal catched 2") self.dtype.setText("signal catc

Re: [PyQt] connect problem on windows xp

2010-07-29 Thread Fabio Mauri
I solved the issue following linjunhalida's suggestion: adding QObject.__init__(self) in the __init__ function of my GUI, everything turns fine also on windows. Thank you linjunhalida, and thank you all! On Thu, Jul 29, 2010 at 4:56 PM, F.A.Pinkse wrote: > Hi Fabio > > To see you print() statem

[PyQt] Links to the web from html help files in a resource.

2010-07-29 Thread Robert Norman
I'm using a QTextBrowser for my help system and would like to have some of the hyperlinks bring up the users full browser so that they can, for examle, download support files from third party web sites. All the links, of course get the qrc path prepended to the links since all the html files

[PyQt] Which version of Python does dip REALLY work with?

2010-07-29 Thread Peter Milliken
Hi, I have Mark Summerfield's book on Rapid gui development with Python and Qt and followed the link in Appendix A and found "dip". I have Python 2.6.2. The web-site states it works with 2.6, 2.7 and 3.x, I realise it is 0.1 and is bound to have problems, but... First problem after installation

Re: [PyQt] Which version of Python does dip REALLY work wit h?

2010-07-29 Thread Phil Thompson
On Fri, 30 Jul 2010 07:13:06 +1000, Peter Milliken wrote: > Hi, > > I have Mark Summerfield's book on Rapid gui development with Python and Qt > and followed the link in Appendix A and found "dip". > > I have Python 2.6.2. The web-site states it works with 2.6, 2.7 and 3.x, I > realise it is 0.1

[PyQt] Intellisense/Auto-complete

2010-07-29 Thread dusan smitran
Im building a simple sql editor with tabs. How could i implement a Intellisense/Auto-complete feature where the user would hit alt+space and a dropdown menu would appere. A big "combobo"x where u would see 10 items at a time. And while u type u would filter this combobox. Tnx Dusn __

Re: [PyQt] PyQt Digest, Vol 72, Issue 53

2010-07-29 Thread Sean Decal
Hi, Been doing a few excersises from the PyQt4 Rapid Gui Programming with Python and Qt. The Chapter 13 Python Editor crashes after about 15 seconds on Linux and Windows using Python 2.6 and 2.7 does anyone else get this ? If I exit the program crashes I get a Segmentation Error in the Ge

[PyQt] how to set one putton press per shortcut key?

2010-07-29 Thread Steve Castellotti
Hello all- I have a set of buttons in my application which I want the user to be able to operate via mouse or keyboard. If they click the mouse pointer on the button, the button presses and stays down for as long as they hold down the mouse button. When they let go the button pops back up