Re: [osg-users] OSG and QT example

2011-01-21 Thread Robert Osfield
Hi Benjamin, We have improved Qt integration checked into svn/trunk as part of the new osgQt library. Submissions would be best built upon this new work rather than introducing yet another variation of Qt integration. Cheers, Robert. On Thu, Jan 20, 2011 at 9:42 PM, Benjamin Wasty

Re: [osg-users] OSG and QT example

2011-01-20 Thread Sumit Pandey
Sounds quite interesting. -Original Message- From: osg-users-boun...@lists.openscenegraph.org [mailto:osg-users-boun...@lists.openscenegraph.org] On Behalf Of Benjamin Wasty Sent: Friday, January 21, 2011 3:13 AM To: osg-users@lists.openscenegraph.org Subject: Re: [osg-users] OSG and QT

Re: [osg-users] OSG and QT example

2010-08-03 Thread Jan Klimke
Hi, is there meanwhile a sort of standard way of integration osg views as qt widgets in a way that allows to handle them like normal widgets on the qt side ? Thank you! Cheers, Jan -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=30486#30486

Re: [osg-users] OSG and QT example

2010-08-03 Thread Don Leich
The best overview comes from examples/osgQtWidgets/osgQtWidgets.cpp... //We would need to document the following somewhere in order to guide people on //what they need to use... // //-- //There are two angles to consider. // //1. If someone wants a

Re: [osg-users] OSG and QT example

2010-04-07 Thread Ben Cain
mgb_osg wrote: Not sure if it's what you mean but you can easily create multiple OSGWidget windows with the same osg scene data in each of them and have different views into the same model in different windows. There are issues thut must be addressed: multi-threading, thread-safety, Qt

Re: [osg-users] OSG and QT example

2010-04-06 Thread Ben Cain
LEgregius wrote: Hi, Yes, it does fix the keyboard issues, at least most of them, and I have done some minor testing with the threading and it seems to work. Hey David, I'm not sure if this thread is still alive, but have you tested the case of rendering a single OSG scene-graph in

Re: [osg-users] OSG and QT example

2009-05-13 Thread Richard Baron Penman
hi David, I'm also interested in your work. Like Simon I had problems with QOSGWidget and was frustrated with the limitations of AdapterWidget. Richard On Mon, May 11, 2009 at 11:19 PM, Simon Loic simon1l...@gmail.com wrote: Hi David, Just to answer your point, I would be personally

Re: [osg-users] OSG and QT example

2009-05-11 Thread Simon Loic
Hi David, Just to answer your point, I would be personally interested in such an integration. So far I'm using the AdapterWidget of the ViewerQt example but I'm not fully satisfied. Indeed it suffers a couple of problems as : - the lack of multiple thread support - a bad translation between QT

Re: [osg-users] OSG and QT example

2009-05-11 Thread David Guthrie
Hi, Yes, it does fix the keyboard issues, at least most of them, and I have done some minor testing with the threading and it seems to work. ... Thank you! Cheers, David -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=11839#11839

[osg-users] OSG and QT example

2009-05-07 Thread paul1492
Is there a more complex example of using QT (4.5) with OSG (2.8) than the osgviewerQT example?  I want to use the AdapterWidget and interface an OSG viewer to a QT form which has been designed with buttons/controls using QT Designer. Thanks in advance, Paul P.

Re: [osg-users] OSG and QT example

2009-05-07 Thread Martin Beckett
Unless I'm misunderstanding there are already two ways to integrate osg with Qt (QOSGWidget and adapterWidget - plus a few composite versions) The osgviewerQT example is a little artificial to avoid the moc step. which is what I thought the OP was asking about. It would be nice to integrate