Re: [PyQt] Examples of Big PyQt application with sources

2010-01-19 Thread Geert Vancompernolle
On 19/01/2010 8:28, David Douard wrote: Le Thursday 14 January 2010 03:23:00 AON LAZIO, vous avez écrit : Hi, You guys know the sources where we can get source codes for some big pyqt applications? I mean the applications that are actually deployed for real use Thanks For

Re: [PyQt] First bottom-up GUI, acting strange

2009-04-19 Thread Geert Vancompernolle
Nonyaz wrote: I made an attempt to port over a little command line file DL script I wrote into a GUI as a practice working with PyQt. While I have seemingly achieved that goal, the resulting product is not acting as I suspected. When I start a download, the GUI will continue to update as long as

Re: [PyQt] Any Large PyQt Projects?

2009-02-22 Thread Geert Vancompernolle
Brent Villalobos wrote: I'm looking for examples from people who have written large PyQt applications and I would like to hear your opinions on what worked well and what did not specifically with choosing python over C/C++. In particular, how does your python application handle tasks that req

[PyQt] Possible to stop a QTimer.singleShot()?

2009-02-16 Thread Geert Vancompernolle
Hi, 1. Is it possible to stop a QTimer.singleShot() timer (pls. don't tell me to use the stop() function of a QTimer() object, I really want to know if the static function QTimer.singleShot() can be stopped before its time has elapsed)? 2. What happens if a second QTimer.singleShot() is laun

[PyQt] Avoiding freeze of the application

2009-02-07 Thread Geert Vancompernolle
Hi, I want to achieve the following: * My (Windows) application is trying to make a connection with a Linux server, using another application (plink, part of the Putty distro) * Since an external application is to be called, I'm using the method subprocess in this way: retcode = sub

Re: [PyQt] Add some text in QFileDialog

2009-02-02 Thread Geert Vancompernolle
projet...@club-internet.fr wrote: Hello, I would like to add some informations in a TextEdit or a Label in QFileDialog to help the users to know what it must searchs. How can I do that ? Best regards. Christophe. ___ PyQt mailing listPyQt@river

Re: [PyQt] Resizing widgets in a window.

2009-01-30 Thread Geert Vancompernolle
Sandro Dutra wrote: Hi. I create a mainWindow and put some widgets in there, textEdit for example, but if I maximize the mainWindow, the textEdit don't strech with the mainWindow. I try to set the size policy of the textEdit to Expanding | Expanding and tested some other things related to siz

Re: [PyQt] Dialogue box with hyperlink

2009-01-30 Thread Geert Vancompernolle
Sundance wrote: http://spyrit.svn.sourceforge.net/viewvc/spyrit/trunk/AboutDialog.py?revision=187&view=markup Basically, you use a QLabel that contains your link in HTML, and don't forget to setOpenExternalLinks( True ) on that label. Links are then opened when clicked with the user's default

[PyQt] Dialogue box with hyperlink

2009-01-27 Thread Geert Vancompernolle
Hi, Has anyone somewhere an example code of a small dialogue box which contains a hyperlink to a web site? I would like to point the user to some web site, in the confirmation dialogue I want to show. -- Best rgds, Geert *Use EcoCho