Re: [PyQt] Re: PyQt book "Rapid GUI Programming with Python and Qt" now available

2007-10-29 Thread pyprog
On lun, 2007-10-29 at 16:05 +0100, kib2 wrote: > Hi, > > I just wanted to buy the book on Amazon.fr, and I saw something really > amazing : > price has changed from 58 euros to about 37 since this morning. > Is that normal ? > > Thanks, > > Christophe. Whaou, wonderful !!! . The command was ju

Re: [PyQt] Weird crashing

2007-10-29 Thread David Boddie
On Monday 29 October 2007 15:26:17 -0400, Jason Hihn wrote: > I have an application that works 90% of the time. It is rock-solid on > desktops, but the 10% is laptop installed base.  The laptops seem to have > two issues: > > On 1 computer in particular, python.exe crashes whenever you open a > do

Re: [PyQt] Re: PyQt book "Rapid GUI Programming with Python and Qt" now available

2007-10-29 Thread alteo_gange
Le lundi 29 octobre 2007, kib2 a écrit : > Hi, > > I just wanted to buy the book on Amazon.fr, and I saw something really > amazing : > price has changed from 58 euros to about 37 since this morning. > Is that normal ? Champagne! :) Thanks for this information! I will buy the book. In amazon.d

[PyQt] Weird crashing

2007-10-29 Thread Jason Hihn
This is a long shot. I have an application that works 90% of the time. It is rock-solid on desktops, but the 10% is laptop installed base. The laptops seem to have two issues: On 1 computer in particular, python.exe crashes whenever you open a document outside of the application, such as an

Re: [PyQt] QTimer memory leek

2007-10-29 Thread Giovanni Bajo
On 10/28/2007 11:58 AM, Phil Thompson wrote: On Friday 26 October 2007, Никитин Артем wrote: Hello, I got memory leak problem with QTimer (PyQt 4.3.1). Further, short example to detect problem. import sys from PyQt4 import QtCore, QtGui def schedule(): QtCore.QTimer.singleShot(0, schedule)

Re: [PyQt] Re: PyQt book "Rapid GUI Programming with Python and Qt" now available

2007-10-29 Thread kib2
Mark Summerfield a écrit : On 2007-10-29, kib2 wrote: Hi, I just wanted to buy the book on Amazon.fr, and I saw something really amazing : price has changed from 58 euros to about 37 since this morning. Is that normal ? I don't know! But obviously best to buy it straight away;-) Hi Mark, in

Re: [PyQt] Re: PyQt book "Rapid GUI Programming with Python and Qt" now available

2007-10-29 Thread Kerri Reno
I just got my book via UPS from Barnes & Noble this morning! Thanks so much, Mark! I'll try to give a review when I'm farther along. Kerri On 10/29/07, Mark Summerfield <[EMAIL PROTECTED]> wrote: > > On 2007-10-29, kib2 wrote: > > Hi, > > > > I just wanted to buy the book on Amazon.fr, and I sa

Re: [PyQt] Problems with QGraphicsSvgItem and QtCore

2007-10-29 Thread Phil Thompson
On Monday 29 October 2007, Gustav Magnus Vikstrøm wrote: > Hi > > Our application uses SVG graphics and I'm experiencing errors/segfaults > after exiting the application. Here is a sample program that reproduces > the error: > > from PyQt4.QtCore import * > from PyQt4.QtGui import *

Re: [PyQt] kapplication not quiting

2007-10-29 Thread Andres Riancho
Jim, On 10/29/07, Jim Bublitz <[EMAIL PROTECTED]> wrote: > On Monday 29 October 2007 08:04, Andres Riancho wrote: > > Marcos, > > > > On 10/29/07, Marcos Dione <[EMAIL PROTECTED]> wrote: > > > On Mon, Oct 29, 2007 at 09:36:14AM -0300, Andres Riancho wrote: > > > >And then, I try to kill the ob

Re: [PyQt] kapplication not quiting

2007-10-29 Thread Jim Bublitz
On Monday 29 October 2007 08:04, Andres Riancho wrote: > Marcos, > > On 10/29/07, Marcos Dione <[EMAIL PROTECTED]> wrote: > > On Mon, Oct 29, 2007 at 09:36:14AM -0300, Andres Riancho wrote: > > >And then, I try to kill the object like this: > > > > > > application.processEvents() > > >

Re: [PyQt] file dialog as input to io.read.array in scipy

2007-10-29 Thread massimo di stefano
Hi, i solved my issue: i changed in my module the line : from L = io.read_array(input_uno) to L = io.read_array(str(input_uno)) now all works fine :-) now read_arra is able to read the file, passed as string from the gui. thanks to python and qt people that helped me!!! ci

Re: [PyQt] Re: PyQt book "Rapid GUI Programming with Python and Qt" now available

2007-10-29 Thread Mark Summerfield
On 2007-10-29, kib2 wrote: > Hi, > > I just wanted to buy the book on Amazon.fr, and I saw something really > amazing : > price has changed from 58 euros to about 37 since this morning. > Is that normal ? I don't know! But obviously best to buy it straight away;-) Maybe they are slow adjusting to

Re: [PyQt] Re: PyQt book "Rapid GUI Programming with Python and Qt" now available

2007-10-29 Thread David Boddie
On Mon Oct 29 15:05:48 GMT 2007, kib2 wrote: > I just wanted to buy the book on Amazon.fr, and I saw something really > amazing : price has changed from 58 euros to about 37 since this morning. > Is that normal ? Maybe the original price was just an estimated price - or maybe someone at Amazon is

Re: [PyQt] Re: PyQt book "Rapid GUI Programming with Python and Qt" now available

2007-10-29 Thread kib2
Hi, I just wanted to buy the book on Amazon.fr, and I saw something really amazing : price has changed from 58 euros to about 37 since this morning. Is that normal ? Thanks, Christophe. ___ PyQt mailing listPyQt@riverbankcomputing.com http://www

Re: [PyQt] kapplication not quiting

2007-10-29 Thread Andres Riancho
Marcos, On 10/29/07, Marcos Dione <[EMAIL PROTECTED]> wrote: > On Mon, Oct 29, 2007 at 09:36:14AM -0300, Andres Riancho wrote: > >And then, I try to kill the object like this: > > > > application.processEvents() > > application.exit(0) > > application.quit() > >

[PyQt] Problems with QGraphicsSvgItem and QtCore

2007-10-29 Thread Gustav Magnus Vikstrøm
Hi Our application uses SVG graphics and I'm experiencing errors/segfaults after exiting the application. Here is a sample program that reproduces the error: from PyQt4.QtCore import * from PyQt4.QtGui import * from PyQt4.QtSvg import QGraphicsSvgItem app

Re: [PyQt] kapplication not quiting

2007-10-29 Thread Marcos Dione
On Mon, Oct 29, 2007 at 09:36:14AM -0300, Andres Riancho wrote: >And then, I try to kill the object like this: > > application.processEvents() > application.exit(0) > application.quit() > del application > >But when I try to create a new kapplication using

[PyQt] kapplication not quiting

2007-10-29 Thread Andres Riancho
List, I'm a pykde/pyqt newbie and I'm having some problems with kapplication that i'm almost sure you can help me with. I'm using a rather complex program, that in some place creates a kapplication object like this: kdecore.KCmdLineArgs.init(sys.argv[], "test", "", "N") applica

Re: [PyQt] Question about QTimer and QThreads

2007-10-29 Thread Darren Dale
On Monday 29 October 2007 04:15:45 am Andreas Pakulat wrote: > On 28.10.07 18:31:25, Darren Dale wrote: > > I am trying to understand how to run a second event loop using a qthread. > > The Qt docs indicate this is possible, but I haven't found any examples. > > I have a simple example that I think

Re: [PyQt] Re: PyQt book "Rapid GUI Programming with Python and Qt" now available

2007-10-29 Thread Mark Summerfield
On 2007-10-28, Reinhard Thies wrote: > Mark, > > when do you expect the book to be ready ? I preordert the book at amazin.de > but there is no delivery date. > > Thanks > Reinhard The books were physically printed in the US about 3 weeks ago and are now in the US distribution channels. My guess is

Re: [PyQt] Question about QTimer and QThreads

2007-10-29 Thread Andreas Pakulat
On 29.10.07 08:40:38, V. Armando Sole wrote: > Hello Darren, > > At 19:07 28/10/2007 -0400, Darren Dale wrote: > > Anyway, changing my example to > >use a.show() doesn't work, the thread's event loop is not started. I don't > >see any recent discussion on the list that seems relevent. > > Please

Re: [PyQt] Question about QTimer and QThreads

2007-10-29 Thread Andreas Pakulat
On 28.10.07 18:31:25, Darren Dale wrote: > I am trying to understand how to run a second event loop using a qthread. The > Qt docs indicate this is possible, but I haven't found any examples. I have a > simple example that I think should work, but doesn't. When I run my thread's > exec_(), it bl