Re: [PyQt] multiple inheritance suggestion

2012-04-14 Thread Luke Campagnola
On Sat, Apr 14, 2012 at 09:12, Phil Thompson wrote: > On Sun, 8 Apr 2012 22:40:04 -0400, Luke Campagnola > > wrote: > >As an example, consider the standard diamond > > inheritance problem: > > > >A > > /\ > > BC > > \/ > >D > > > > If A is a subclass of QObject, then presuma

Re: [PyQt] multiple inheritance suggestion

2012-04-14 Thread Phil Thompson
On Sun, 8 Apr 2012 22:40:04 -0400, Luke Campagnola wrote: > Howdy list, > > I'm trying to achieve some sort of multiple inheritance with custom classes > where each may define its own signals. I understand there are limitations > with SIP in this area, but It is not really necessary that QObject

[PyQt] multiple inheritance suggestion

2012-04-08 Thread Luke Campagnola
Howdy list, I'm trying to achieve some sort of multiple inheritance with custom classes where each may define its own signals. I understand there are limitations with SIP in this area, but It is not really necessary that QObject be inherited more than once. As an example, consider the standard dia