Re: [PyQt] QPyNullVariant

2012-07-12 Thread Phil Thompson
On Thu, 12 Jul 2012 21:08:11 +0200, Rodolfo Zitellini wrote: > Hi All, > I'm trying to run a pyqt software (frescobaldi, > http://frescobaldi.org/) in macos using macports. I have macports > 2.1.1 on macosx 10.7.4, xcode 4.3.2 (qt 4.8.2, pyqt 4.9.1, sip 4.13.2, > for completeness). > > My problem

[PyQt] QPyNullVariant

2012-07-12 Thread Rodolfo Zitellini
Hi All, I'm trying to run a pyqt software (frescobaldi, http://frescobaldi.org/) in macos using macports. I have macports 2.1.1 on macosx 10.7.4, xcode 4.3.2 (qt 4.8.2, pyqt 4.9.1, sip 4.13.2, for completeness). My problem, it seems, is that object will never be null but only QPyNullVariant. Eg.:

[PyQt] Problem with icons

2012-07-12 Thread Szabo, Patrick (LNG-VIE)
Hi, I'm using Python 3 and Qt 4.8.2 The icons I'm setting and images in general work fine on my development machine but on any other machine they are not showing up. I've tried absolute and relative paths and now even with the resource-system but they just won't show up. I do the following e.g

[PyQt] PyQwt Signals [Was: Old vs New Signals]

2012-07-12 Thread Phil Thompson
Taking your examples in turn... self.picker.connect(self.picker, SIGNAL('selected(QwtPolygon)'), self.slotQwtPolygon) ...this works as expected. self.picker.selected[QwtPolygon](self.slotQwtPolygon) ...this doesn't work because... - PyQwt does not expose QwtPolygon as a Python type - selected(