Re: [PyKDE] Documentation

2005-11-02 Thread Ken Godee
I'm a newbie in programming and in pyqt. I want to ask you if there is a documentation/book that explains every function and the usage of the function on pyqt. All the documentation I find explain the function for c++ application and not for python. Particurarly, I search documentation regarding t

[PyKDE] raiseW() not raising window anymore?

2005-08-11 Thread Ken Godee
Problem came about after system install/upgrade, to. CentOS 3.5, KDE 3.4.1, Qt 3.3.4, PyQt 3.14.1 sip 3.11, python 2.2.3, xfce 4.0.6 I have a "modeless" dialog that has a button that when clicked raises (used to) the applications main window also leaving the dialog open but now under, (but s

Re: [PyKDE] RPM packages for RHEL AS 3

2005-04-29 Thread Ken Godee
Anyone using pyQt with RHEL AS 3? It has KDE 3.1.3 and Python 2.2.3... We were going to do an in house application and we'd like to use pyQt for it, but I found no package and I wasn't willing to install compilation tools on a production server... Check out the sourceforge project "KDE for Red Ha

Re: [PyKDE] PyQt v4 Roadmap

2005-02-17 Thread Ken Godee
Phil Thompson wrote: I've put up a short roadmap for PyQt v4 on the website, and the text is below. Any comments welcome. Phil Very good news. I applaud your decision and your continuing commitment to PyQt. Thanks ___ PyKDE mailing listPyKDE@mats.imk.

Re: [PyKDE] QWidgetFactory problems

2005-02-09 Thread Ken Godee
Sorry to be a nag, but can any of you suggest atleast some temporary (even ugly) solution for my closeEvent problem, until a better solution (wink in Torsten's direction) is available ? Ugly solution - Some window managers (ie. icewm) allow you to remove the "X" close button. __

Re: [PyKDE] PyQT install fails

2004-11-28 Thread Ken Godee
Rick Graves wrote: Hello, I am trying to install eric3 on a CentOS-3 system. CentOS-3 is like RedHat's RHEL 3. I cannot install it because the PyQt install fails. I did a fresh CentOS-3 "developement" install to start. Or If you want to give it a try(and are bold with good download spee

Re: [PyKDE] Threading QApplications. Possible?

2004-09-20 Thread Ken Godee
def foo(): app=QApplication(sys.argv) button=QPushButton("Hello World", None) app.setMainWidget(button) button.show() app.exec_loop() And I say >>> thread.start_new_thread (foo, ()) Then the python console freezes Is it not possible o thread up multiple QApplications? How is thi

Re: [PyKDE] PyQt 3.12 introduces deadlock with QCustomEvent's destructor.

2004-08-16 Thread Ken Godee
Toby Dickenson wrote: On Monday 16 August 2004 17:09, Truls A. Tangstad wrote: It's a hard pill to swallow though, since this means our application will have to be infected with Qt in layers not at all related to GUI, just because GUI components can register callbacks etc. in them. Indeed. We have

Re: [PyKDE] which sql QT or Python

2004-05-28 Thread Ken Godee
John Fabiani wrote: Hi, Newbie question. I just read an article on the use of QT SQL commands. Are the SQL commands part of the PyQt package and if they are which is better Python. or QT SQL commands? TIA John "Which is better" don't really have that answer but a few things to think about

Re: [PyKDE] QLabel flashes on setPixmap

2004-04-18 Thread Ken Godee
problem; I really only want to display/update this single graphic. How would I go about eliminating the flashing? I've read a bit about eliminating flashing in custom widgets with double buffering, but this is a stock Qt widget and I was surprised that updating its pixmap was so visually jarring. d

Re: [PyKDE] Do you have an archive?

2004-02-12 Thread Ken Godee
[EMAIL PROTECTED] wrote: On Thu, 12 Feb 2004 14:20:20 -0700, Ken Godee <[EMAIL PROTECTED]> wrote: hcohen2 wrote: At least that increases the chance that you will have several fewer questions if someone has encountered the same problem and I can find it by reading about older experiences.

Re: [PyKDE] Do you have an archive?

2004-02-12 Thread Ken Godee
hcohen2 wrote: At least that increases the chance that you will have several fewer questions if someone has encountered the same problem and I can find it by reading about older experiences. This is the only one I know of at "The Mail Archive" http://www.mail-archive.com/pykde%40mats.imk.fraunh

Re: [PyKDE] QDate compare probs

2004-02-08 Thread Ken Godee
Ken Godee wrote: I'm trying to figure out if one date's <= to the other and having problems getting it to work. The two dates are fetched out of a db .. , 2004-02-07 00:00:00.00 2004-01-15 00:00:00.00 convert to a QDate instance. I guess I was just trying to get to fa

[PyKDE] QDate compare probs

2004-02-08 Thread Ken Godee
I'm trying to figure out if one date's <= to the other and having problems getting it to work. The two dates are fetched out of a db .. , 2004-02-07 00:00:00.00 2004-01-15 00:00:00.00 convert to a QDate instance. cudate1 = QDate.fromString((cufill[13].strftime("%Y/%m/%d")), Qt.ISODat

[PyKDE] signal/slots passing args - is this really how it's Done?

2004-02-06 Thread Ken Godee
Just checking, this really threw me. Needed to pass an arg to a python function/method via a Qt object signal. class timer_up(QDialog): def __init__(self,parent = None,name = None,modal = 0,fl = 0, us=0): QDialog.__init__(self,parent,name,modal,fl) self.num = us self.cw

Re: [PyKDE] Garbage collection, C++ destructor

2004-02-03 Thread Ken Godee
Simon Edwards wrote: hi all, How can a force a KProgressDialog object to be garbage collected and have its C++ destructor called? cheers, If I understand the question correctly, I use two different ways depending on what I'm doing with the object. 1. When creating an object pass the widget fla

Re: [PyKDE] who is building pyqt based on qt3.2.1 non-commercial version?

2004-01-30 Thread Ken Godee
Phil Thompson wrote: On Friday 30 January 2004 5:20 pm, Shunming Fang wrote: Hello,Guys, Do your guys know when the latest pyqtwill include qt3.2.1 non commercial version. I already got the qt boook plus qt3.2.1 non commercial version. No decision has yet been made as to whether this version

[PyKDE] Multi line - listBoxItem ???

2003-12-25 Thread Ken Godee
Does anyone know of a way to create a multiline listboxitem? I don't believe it's possible, but maybe I'm missing something? Instead of "This is one very long line" I'd like "This is one very long line" Don't want to use scroll bars to see rest of line, usual suspects don't work, \n, e

Re: [PyKDE] qApp.quit()

2003-08-15 Thread Ken Godee
Vincent Wagelaar wrote: Hi, In my maindialog i'm trying to close the application when an error has occurred. But my application won't stop running. a = QApplication(sys.argv) w = mainwindow() a.setMainWindow(w) a.exec_loop() class mainwindow(QMainWindow): def __init__(self, *args):

Re: [PyKDE] More documention?

2003-08-14 Thread Ken Godee
> Between the example programs packaged with PyQt and Boudewijn Rempt's book, > I've been able to make pretty decent headway in learning PyQt through trial > and error. However, at this point, I'm mostly parroting what I see, with only > a vague comprehension as to what's going on. For example,

Re: [PyKDE] pyQt on windows

2003-07-30 Thread Ken Godee
ems like it's a major > oversight rather than a legal arrangment. I mean, how could TT possibly > agree to something like that. Or Phil for that matter. > > Phil, is this something you were aware of? > > Greg Fortune > Fortune Solutions > > On Wednesday 30 July 2003 08:

Re: [PyKDE] pyQt on windows

2003-07-30 Thread Ken Godee
> But we're talking about UI here, where it's all the little things than > count. Well, for me the difference seemed huge, and if I had the dow, > sure I'd get me the latest Qt for Win ... provided that was my preferred > platform to 'romance the snake'. > You're missing something here, which m