[osg-users] Changing mouse cursor

2010-03-23 Thread Carlos Sanches
Hi all ! How Can I change the mouse cursor for some other art that I did ? thanks ___ osg-users mailing list osg-users@lists.openscenegraph.org http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Re: [osg-users] Changing mouse cursor

2010-03-23 Thread Trajce (Nick) Nikolov
which platform? which OS? -Nick On Tue, Mar 23, 2010 at 3:26 PM, Carlos Sanches ces...@gmail.com wrote: Hi all ! How Can I change the mouse cursor for some other art that I did ? thanks ___ osg-users mailing list

Re: [osg-users] Changing mouse cursor

2010-03-23 Thread Carlos Sanches
Linux Ubuntu On Tue, Mar 23, 2010 at 10:27 AM, Trajce (Nick) Nikolov nikolov.tra...@gmail.com wrote: which platform? which OS? -Nick On Tue, Mar 23, 2010 at 3:26 PM, Carlos Sanches ces...@gmail.com wrote: Hi all ! How Can I change the mouse cursor for some other art that I did ? thanks

Re: [osg-users] Changing mouse cursor

2010-03-23 Thread Trajce (Nick) Nikolov
I am windows developer. I could help you on windows. Wait for the linux gurus to answer Sorry -Nick On Tue, Mar 23, 2010 at 3:38 PM, Carlos Sanches ces...@gmail.com wrote: Linux Ubuntu On Tue, Mar 23, 2010 at 10:27 AM, Trajce (Nick) Nikolov nikolov.tra...@gmail.com wrote: which

Re: [osg-users] Changing mouse cursor

2010-03-23 Thread Maxim Gammer
// osgViewer::Viewer::Windows windows; viewer-getWindows(windows); for(osgViewer::Viewer::Windows::iterator itr = windows.begin(); itr != windows.end();++itr) { //(*itr)-useCursor(false); (*itr)-setCursor(osgViewer::GraphicsWindow::NoCursor); } 2010/3/23 Trajce (Nick) Nikolov