<div dir="ltr">You can set ViewerWidget as MainWindow's central widget, and that's it.<br></div><div class="gmail_extra"><br><div class="gmail_quote">2015-04-15 15:38 GMT+07:00 Christian Kunz <span dir="ltr"><<a href="mailto:christian.kunz83@gmail.com" target="_blank">christian.kunz83@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello everyone,<br>
<br>
I have a question regarding the combination of OSG and Qt 5.4.<br>
I already combined my OSG application with Qt. I used the example which is shipped with OSG: "osgviewerQt".<br>
At the moment my OSG application is quite simple. Its a 3D scene with a animated 6 axis robot.<br>
<br>
I added my root node as explained in the example:<br>
<br>
<br>
Code:<br>
<br>
    QApplication app( argc, argv );<br>
    osgQt::GraphicsWindowQt* gw = createGraphicsWindow( 50, 50, 640, 480 );<br>
<br>
    //osg::Node* scene = osgDB::readNodeFile("cow.osg");<br>
    osg::Node* scene = root;<br>
<br>
    ViewerWidget* widget = new ViewerWidget(gw, scene);<br>
    widget->setGeometry( 100, 100, 800, 600 );<br>
    widget->show();<br>
    return app.exec();<br>
<br>
<br>
<br>
Then my scene is rendered in a Qt Widget.<br>
<br>
The problem with this solution is, that it is not a Qt mainWindow. Is there a way to add this ViewerWidget which is inherited from QWidget to a normal Qt form?<br>
The best would be that you can see a placeholder in the forms editor of Qt creator. Does anyone know an example which is more complex than "osgviewerQt"?<br>
<br>
<br>
<br>
...<br>
Thank you!<br>
<br>
Cheers,<br>
Christian<br>
Code:<br>
<br>
<br>
<br>
<br>
------------------<br>
Read this topic online here:<br>
<a href="http://forum.openscenegraph.org/viewtopic.php?p=63403#63403" target="_blank">http://forum.openscenegraph.org/viewtopic.php?p=63403#63403</a><br>
<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</blockquote></div><br></div>