Re: [PyKDE] Trouble figuring out QCanvas and QCanvasView

2004-10-07 Thread David Boddie
On Wed, 06 Oct 2004 11:47:03, Bryan O'Sullivan wrote: On Wed, 2004-10-06 at 03:32 -0700, David Boddie wrote: That's disappointing to hear. Think of it as an opportunity to write an article for one of the developerworks, onlamp and so on sites :-) Well, good luck with that! ;-)

Re: [PyKDE] big Text in pyqt

2004-10-07 Thread Sundance
I heard Axel Mittendorf said: Hi, what is the most efficient way to display a big text in a pyqt app? Did you try to set the QTextEdit widget in LogText mode? t=QTextEdit() t.setTextFormat(QTextEdit.LogText) You may also want to turn undo/redo off: t.setUndoRedoEnabled(False) How much

Re: [PyKDE] Re: sip-3.11.1, PyKDE-3.11.3 build failure

2004-10-07 Thread Rex Dieter
Is sipv3 supported anymore? Any plans to fix this? -- Rex Rex Dieter wrote 09/27/04: Phil Thompson wrote: SIP v4.1.1 and v3.11.1 have been released. These are just bug fix releases required to build PyKDE. I'm still seeing build failures trying to build PyKDE-3.11.3 against this newer

Re: [PyKDE] Re: sip-3.11.1, PyKDE-3.11.3 build failure

2004-10-07 Thread Phil Thompson
On Thursday 07 October 2004 1:18 pm, Rex Dieter wrote: Is sipv3 supported anymore? It is deprecated. It should only be used by... - those who use Python 2.2 and earlier - those who use Qt 2 and earlier - commercial users who want to carefully manage the move to SIP 4 Any plans to fix this?

[PyKDE] setModal Not working.

2004-10-07 Thread Hihn, Jason
I have a QDialog, and I try to do: Dlg.setModal(False) But it gives me an Attribute Error without any kind of explanation. Doing a dir() on it, I dont see a setModal, though it is in Qt. There is a isModal() though. Any help? Thanks