├── .gitignore ├── AUTHORS.txt ├── CMakeLists.txt ├── CMakeModules ├── ListHandle.cmake ├── ModuleInstall.cmake ├── OsgCPack.cmake ├── OsgCPackConfig.cmake.in ├── OsgDetermineCompiler.cmake ├── OsgMacroUtils.cmake ├── UtilityMacros.cmake └── cmake_uninstall.cmake.in ├── CTestConfig.cmake ├── ChangeLog ├── LICENSE.txt ├── NEWS.txt ├── PlatformSpecifics └── Windows │ ├── OpenSceneGraphVersionInfo.rc.in │ ├── OpenThreadsVersionInfo.rc.in │ ├── VisualStudio_Syntax_Highlighting.txt │ ├── collect_mangled_names.bat │ ├── collect_mangled_names.js │ ├── icons │ ├── osg.ico │ ├── osg_icon.rc │ └── src │ │ ├── file.txt │ │ ├── make.bat │ │ ├── osg.xcf │ │ ├── osg16-32.png │ │ ├── osg16-4.png │ │ ├── osg16-8.png │ │ ├── osg16.xcf │ │ ├── osg32-32.png │ │ ├── osg32-4.png │ │ ├── osg32-8.png │ │ ├── osg32.xcf │ │ ├── osg48-32.png │ │ ├── osg48-4.png │ │ ├── osg48-8.png │ │ └── osg48.xcf │ └── osgShell.bat ├── README.md ├── doc └── Doxyfiles │ ├── all_Doxyfile │ ├── auto_Doxyfile │ ├── auto_Mainpage │ ├── core_Doxyfile │ ├── custom_Footer.html │ └── doxyfile.cmake ├── examples ├── CMakeLists.txt ├── osgQtBrowser │ ├── CMakeLists.txt │ └── osgQtBrowser.cpp ├── osgQtWidgets │ ├── CMakeLists.txt │ └── osgQtWidgets.cpp ├── osgqfont │ ├── CMakeLists.txt │ └── osgqfont.cpp └── osgviewerQt │ ├── CMakeLists.txt │ └── osgviewerQt.cpp ├── include └── osgQt │ ├── Export │ ├── GraphicsWindowQt │ ├── QFontImplementation │ ├── QGraphicsViewAdapter │ ├── QWebViewImage │ └── QWidgetImage ├── packaging └── pkgconfig │ └── openscenegraph-osgQt.pc.in └── src ├── CMakeLists.txt └── osgQt ├── CMakeLists.txt ├── GraphicsWindowQt.cpp ├── QFontImplementation.cpp ├── QGraphicsViewAdapter.cpp ├── QWidgetImage.cpp ├── ReaderQFont.cpp └── Version.in /.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/ListHandle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CMakeModules/ListHandle.cmake -------------------------------------------------------------------------------- /CMakeModules/ModuleInstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CMakeModules/ModuleInstall.cmake -------------------------------------------------------------------------------- /CMakeModules/OsgCPack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CMakeModules/OsgCPack.cmake -------------------------------------------------------------------------------- /CMakeModules/OsgCPackConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CMakeModules/OsgCPackConfig.cmake.in -------------------------------------------------------------------------------- /CMakeModules/OsgDetermineCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CMakeModules/OsgDetermineCompiler.cmake -------------------------------------------------------------------------------- /CMakeModules/OsgMacroUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CMakeModules/OsgMacroUtils.cmake -------------------------------------------------------------------------------- /CMakeModules/UtilityMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CMakeModules/UtilityMacros.cmake -------------------------------------------------------------------------------- /CMakeModules/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CMakeModules/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/NEWS.txt -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/OpenSceneGraphVersionInfo.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/OpenSceneGraphVersionInfo.rc.in -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/OpenThreadsVersionInfo.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/OpenThreadsVersionInfo.rc.in -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/VisualStudio_Syntax_Highlighting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/VisualStudio_Syntax_Highlighting.txt -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/collect_mangled_names.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/collect_mangled_names.bat -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/collect_mangled_names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/collect_mangled_names.js -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/osg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/osg.ico -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/osg_icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/osg_icon.rc -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/file.txt -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/make.bat -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg.xcf -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg16-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg16-32.png -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg16-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg16-4.png -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg16-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg16-8.png -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg16.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg16.xcf -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg32-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg32-32.png -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg32-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg32-4.png -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg32-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg32-8.png -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg32.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg32.xcf -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg48-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg48-32.png -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg48-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg48-4.png -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg48-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg48-8.png -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/icons/src/osg48.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/icons/src/osg48.xcf -------------------------------------------------------------------------------- /PlatformSpecifics/Windows/osgShell.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/PlatformSpecifics/Windows/osgShell.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/README.md -------------------------------------------------------------------------------- /doc/Doxyfiles/all_Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/doc/Doxyfiles/all_Doxyfile -------------------------------------------------------------------------------- /doc/Doxyfiles/auto_Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/doc/Doxyfiles/auto_Doxyfile -------------------------------------------------------------------------------- /doc/Doxyfiles/auto_Mainpage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/doc/Doxyfiles/auto_Mainpage -------------------------------------------------------------------------------- /doc/Doxyfiles/core_Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/doc/Doxyfiles/core_Doxyfile -------------------------------------------------------------------------------- /doc/Doxyfiles/custom_Footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/doc/Doxyfiles/custom_Footer.html -------------------------------------------------------------------------------- /doc/Doxyfiles/doxyfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/doc/Doxyfiles/doxyfile.cmake -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/osgQtBrowser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/examples/osgQtBrowser/CMakeLists.txt -------------------------------------------------------------------------------- /examples/osgQtBrowser/osgQtBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/examples/osgQtBrowser/osgQtBrowser.cpp -------------------------------------------------------------------------------- /examples/osgQtWidgets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/examples/osgQtWidgets/CMakeLists.txt -------------------------------------------------------------------------------- /examples/osgQtWidgets/osgQtWidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/examples/osgQtWidgets/osgQtWidgets.cpp -------------------------------------------------------------------------------- /examples/osgqfont/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/examples/osgqfont/CMakeLists.txt -------------------------------------------------------------------------------- /examples/osgqfont/osgqfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/examples/osgqfont/osgqfont.cpp -------------------------------------------------------------------------------- /examples/osgviewerQt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/examples/osgviewerQt/CMakeLists.txt -------------------------------------------------------------------------------- /examples/osgviewerQt/osgviewerQt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/examples/osgviewerQt/osgviewerQt.cpp -------------------------------------------------------------------------------- /include/osgQt/Export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/include/osgQt/Export -------------------------------------------------------------------------------- /include/osgQt/GraphicsWindowQt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/include/osgQt/GraphicsWindowQt -------------------------------------------------------------------------------- /include/osgQt/QFontImplementation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/include/osgQt/QFontImplementation -------------------------------------------------------------------------------- /include/osgQt/QGraphicsViewAdapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/include/osgQt/QGraphicsViewAdapter -------------------------------------------------------------------------------- /include/osgQt/QWebViewImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/include/osgQt/QWebViewImage -------------------------------------------------------------------------------- /include/osgQt/QWidgetImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/include/osgQt/QWidgetImage -------------------------------------------------------------------------------- /packaging/pkgconfig/openscenegraph-osgQt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/packaging/pkgconfig/openscenegraph-osgQt.pc.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/osgQt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/src/osgQt/CMakeLists.txt -------------------------------------------------------------------------------- /src/osgQt/GraphicsWindowQt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/src/osgQt/GraphicsWindowQt.cpp -------------------------------------------------------------------------------- /src/osgQt/QFontImplementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/src/osgQt/QFontImplementation.cpp -------------------------------------------------------------------------------- /src/osgQt/QGraphicsViewAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/src/osgQt/QGraphicsViewAdapter.cpp -------------------------------------------------------------------------------- /src/osgQt/QWidgetImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/src/osgQt/QWidgetImage.cpp -------------------------------------------------------------------------------- /src/osgQt/ReaderQFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/src/osgQt/ReaderQFont.cpp -------------------------------------------------------------------------------- /src/osgQt/Version.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieu/osgQt/HEAD/src/osgQt/Version.in --------------------------------------------------------------------------------