[PyQt] Crash with QAxContainer.QAxWidget

2008-10-23 Thread Patrick Hartling
I have been tracking down a crash when using QAxContainer.QAxWidget from PyQt 4.4.3 built against Qt 4.4.1. At this point, I believe that there is an issue with how a meta object gets associated with sipQAxContainerQAxWidget. Specifically, the sipTypeDef instantiated at the end of the gener

Re: [PyQt] Re: 2 litlle questions

2008-10-23 Thread David Boddie
On Thu Oct 23 16:12:47 BST 2008, kib2 wrote: > Mark Summerfield a écrit : > >> Another : I saw that Mark Summerfield recently played with the Poppler > >> bindings for Qt4. Is there any port of it for PyQt ? I know there's one > >> link on the Wiki, but there's not even a single word on the versio

[PyQt] gapless video playback with phonon?

2008-10-23 Thread Marcell Mars
is there a way to do gapless video playback with phonon? or even better transition effect in between two videos.. url with example would make my day ;) ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo

RE: [PyQt] problems with configure step on PyQT

2008-10-23 Thread Chang, Elizabeth
I just got this to work by getting the run time error to go away. I think the problem was that I had QT installed and then I installed PyQT on top of that. I did try it before but apparently I had remnants of QT directories and MINGW and I think somehow that interfered. Elizabeth _

Re: [PyQt] jpeg plugin not loading

2008-10-23 Thread Doug Bell
Phil Thompson wrote: > On Thu, 23 Oct 2008 07:17:18 -0400, Doug Bell <[EMAIL PROTECTED]> wrote: > > Phil Thompson wrote: > >> On Thu, 16 Oct 2008 08:02:11 -0400, Doug Bell <[EMAIL PROTECTED]> wrote: > >> > Hi, > >> > > >> > The plugin for jpeg image support is not loading on my windows > >> > inst

[PyQt] problems with configure step on PyQT

2008-10-23 Thread Chang, Elizabeth
Hi, I've spent a whole day now trying to install PyQT (C:\PyQt-win-gpl-4.4.3) I have Windows XP. When I install the binary installer, PyQt-Py2.5-gpl-4.4.3-1.exe, I cannot open QT Designer. I get a runtime error that closes the application before it even starts. So, I've been trying to comp

Re: [PyQt] jpeg plugin not loading

2008-10-23 Thread Phil Thompson
On Thu, 23 Oct 2008 07:17:18 -0400, Doug Bell <[EMAIL PROTECTED]> wrote: > Phil Thompson wrote: >> On Thu, 16 Oct 2008 08:02:11 -0400, Doug Bell <[EMAIL PROTECTED]> wrote: >> > Hi, >> > >> > The plugin for jpeg image support is not loading on my windows >> > installation of PyQt (from the 4.4.3-1

[PyQt] Re: 2 litlle questions

2008-10-23 Thread kib2
Mark Summerfield a écrit : On 2008-10-23, kib2 wrote: Hi, I'm having troubles in retrieving a QTextEdit selection. I join a little test app (main.py). Launch it, select all the text in the area then press F1, the quit. The output is really strange. In fact I need to split the retrieved lines, b

Re: [PyQt] jpeg plugin not loading

2008-10-23 Thread Doug Bell
Phil Thompson wrote: > On Thu, 16 Oct 2008 08:02:11 -0400, Doug Bell <[EMAIL PROTECTED]> wrote: > > Hi, > > > > The plugin for jpeg image support is not loading on my windows > > installation of PyQt (from the 4.4.3-1 binary installer). Jpeg images > > don't show up in a QTextBrowser and jpeg isn

Re: [PyQt] 2 litlle questions

2008-10-23 Thread Mark Summerfield
On 2008-10-23, kib2 wrote: > Hi, > > I'm having troubles in retrieving a QTextEdit selection. > I join a little test app (main.py). Launch it, select all the text in the > area then press F1, the quit. > The output is really strange. In fact I need to split the retrieved lines, > but the returned l

[PyQt] pyqtProperty bug?

2008-10-23 Thread Emiliano Mennucci
I'm creating a widget for QtDesigner, using python and pyqt4. In order to create a Qt property I wrote the following code: [...] def set_axis(self, axis): print "DEBUG: set_axis" self._axis = axis def get_axis(self): print "DEBUG: get_axis" return self._axis axisName = pyqtProp

Re: [PyQt] Trouble implementing QAbstractTableModel

2008-10-23 Thread Andreas Pakulat
On 22.10.08 23:49:55, comsatcat wrote: > Hello, > > I'm attempting to implement a QAbstractTableModel for a QTableView. The > data im attemptingto model is a single column hiarchy. > > Say I have the following data: > > unasigned > foo > bar > baby But thats a Tree, not a Table.

Re: [PyQt] QSpinBox with hex format

2008-10-23 Thread Mark Summerfield
On 2008-10-23, Nahuel Defossé wrote: > Hi > I'd be glad to receive any hint about how to subclass QSpinBox in order to > use hex format. > Thanks > Nahuel There's an example of subclassing a QSpinBox for roman numerals in my PyQt book: http://www.qtrac.eu/pyqtbook.html You can download the example