From Don Liech, Qt/OSG integration example

This commit is contained in:
Robert Osfield
2009-06-19 11:31:15 +00:00
parent d0916e63c6
commit 9d792c279b
15 changed files with 1377 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
#include "testOutboardWin.h"
testOutboardWin::testOutboardWin(QWidget *parent)
: QDialog( parent )
{
ui.setupUi( this );
}
QWidget * testOutboardWin::getDrawingAreaWidget(void)
{
return ui.graphicsView;
}