I'm going to design "OgreWidget" class -A portable renderer widget with Qt.
(With my design), I think my class need to be inherited with QThread (for infinite render loop ) and QWidget ( target widget for ogre to render there) .
But according to many documentation and articles (for-example: http://doc.trolltech.com/4.6/moc.html#multiple-inheritance-requires-qobject-to-be-first ) , Virtual inheritance with QObject is not supported . Result of this inheritance will be : ‘QObject’ is an ambiguous base of ‘OgreWidget' err.
How should I resolve this problem ?
PS: In my old design , I create a separate QWidget , and Send It's WId to my OgreWidget as target widget . But I'm now going to design a better and cleaner interface.