[PyQt] Probably a really simple Phonon question with gstreamer backend and kmix volume control

2013-09-10 Thread Michael Staggs
This is a screenshot of my program I've written and KMIX: http://imgur.com/COu7coD As you can see, it's a pretty nice pyqt program and everything works very well in opensuse. However, when I switch into kubuntu I run into a problem that you can see: in kmix, it shows TWO audio outputs for my pr

[PyQt] Building PyQt5

2013-09-10 Thread pwuertz
Hi, I just tried to compile PyQt5 on my Ubuntu 13.04 system. After successfully running configure.py, the compiler immediately stopped due to "Python.h" not being found. The include path configure.py wrote to the .pro files was /usr/local/include/python2.7, whereas my python headers are in /usr/lo

Re: [PyQt] SIP_ANYSLOT vs SIP_SLOT vs SIP_SLOT_CON()

2013-09-10 Thread Phil Thompson
On Tue, 10 Sep 2013 16:17:25 +0200, Sébastien Sablé wrote: > [sorry previous email was sent before I finished it] > > Hi, > > I want to bind with sip a connect method which can be used with a slot for > which the signature will change from one call to the other. That doesn't sound like a great

[PyQt] SIP_ANYSLOT vs SIP_SLOT vs SIP_SLOT_CON()

2013-09-10 Thread Sébastien Sablé
Hi, I want to bind with sip a connect method which can be used with a slot for which the signature will change from one call to the other: The class looks a bit like that: class Foo { Q_OBJECT public: void connect(const int eventType, QObject *receiver, const char *member); } void con

Re: [PyQt] SIP_ANYSLOT vs SIP_SLOT vs SIP_SLOT_CON()

2013-09-10 Thread Sébastien Sablé
[sorry previous email was sent before I finished it] Hi, I want to bind with sip a connect method which can be used with a slot for which the signature will change from one call to the other. The class looks a bit like that: class Foo { Q_OBJECT public: void connect(const int eventType, QOb