Re: pyQT 4

2005-07-25 Thread Ken Godee
> My question is : does anybody know when pyqt 4 will be distributed ? > http://www.riverbankcomputing.co.uk/pyqt/roadmap.php -- http://mail.python.org/mailman/listinfo/python-list

Re: Garbage collection with QT

2005-06-08 Thread Ken Godee
> Is there a way, to find out all references to the QMainWindow or its > hosted QTable, for having a mechanism to destroy them? > Yes, of coarse, the docs are your friend :) QObject::children() QObject::removeChild() QObject::parent() To find all the children for an instance you can create a lo

Re: Python RPM and CentOS

2005-05-17 Thread Ken Godee
The reasonable thing would be to use "yum". > Not really a Python question, but I thought some on this list may be > able to answer so here goes: > > I have several machines on which I must install CentOS. There are many > updates to CentOS and it's very time consuming to do the updates ov

Re: workaround for generating gui tools

2005-04-10 Thread Ken Godee
Jeremy Bowers wrote: On Sun, 10 Apr 2005 13:57:26 +0200, Diez B. Roggisch wrote: Domain-specific abstractions do that *faster* than GUI designers, not slower. And better, too, since every iteration tends to be fully functional and not just a "let's see what this looks like" prototype. Can you show

Re: Need Help: Server to pass py objects

2005-03-29 Thread Ken Godee
>I have a legacy system with data stored in binary files on a remote >server. >I need to access and modify the content of those files from a webserver >running on a different host. (All Linux) > >I would like to install a server on the legacy host that would use my >python >code to translate bet

Re: wxPython vs. pyQt

2005-03-17 Thread Ken Godee
tc wrote: Has anyone compiled binaries for qt/pyqt/eric3. i'd really like to try it. at the moment i work with wxWindows and BoaConstructor which i'm actually not so happy with. design of gui's with wx is not very efficient... so is there already a binary for qt/pyqt/eric3 available or when can i e

Re: PyQT installation

2005-01-01 Thread Ken Godee
John J. Lee wrote: [EMAIL PROTECTED] (Alex Martelli) writes: [...] Basically: if you want it on Windows for free, forget Qt Correct. I believe the book "C++ GUI programming Qt3" comes with a windows Qt gpl 3.x version. Just have to buy the book. No PyQt version to match thou. Blackadder from the K

Re: threading, qt, and the freakout

2004-11-29 Thread Ken Godee
Ben Floyd wrote: Hey everyone, Why doesn't this work? The code speaks much more clearly than I do, so i shortened it and pasted it below. Running this and clicking on 'Break Me' will... freak out the window... You can not mix GUI threads and non GUI threads. Just changing text may seem to work, bu