I wonder if is possible open a window of your favorite browser in irrlicht?
It could be done with c++ lib for system (exec, execv I think ), but I wonder if it can be implemented in the 2d gui of the engine.
Integrated browser
Yes. it is possible. I've tryed this witrh C++Builder under windows.
There are ActiveX control for MSExplorer I use it like component.
Another solution can be using of shell functions, but these two cases are not related with Irrlicht, but only with Windows programming. Can't say anything for Linux.
There are ActiveX control for MSExplorer I use it like component.
Another solution can be using of shell functions, but these two cases are not related with Irrlicht, but only with Windows programming. Can't say anything for Linux.
The IExplore activex object is pretty cool. And so is the mozilla activex object (http://www.iol.ie/~locka/mozilla/mozilla.htm). It has an identical API to the iexplore control, but uses Mozilla on the back-end. XDetcaptor wrote:Yes. it is possible. I've tryed this witrh C++Builder under windows.
There are ActiveX control for MSExplorer I use it like component.
Another solution can be using of shell functions, but these two cases are not related with Irrlicht, but only with Windows programming. Can't say anything for Linux.
Good stuff.